/* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #1a0533;
      color: #e2d9f3;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ===== UTILITY ===== */
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #7C3AED;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 1rem;
      color: #a78bca;
      max-width: 560px;
      margin: 0 auto 48px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #7C3AED, #a855f7);
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #c4b5fd;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      border: 1.5px solid rgba(124, 58, 237, 0.5);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline:hover {
      background: rgba(124, 58, 237, 0.15);
      color: #fff;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 16px 0;
      background: rgba(26, 5, 51, 0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar-logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .navbar-logo span { color: #7C3AED; }
    .navbar-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .navbar-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: #a78bca;
      transition: color 0.2s;
    }
    .navbar-links a:hover { color: #fff; }
    .navbar-cta .btn-primary { padding: 10px 24px; font-size: 0.85rem; }
    .navbar-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .navbar-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #c4b5fd;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      padding: 160px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #c4b5fd;
      margin-bottom: 24px;
    }
    .hero-badge .dot {
      width: 6px;
      height: 6px;
      background: #a855f7;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero h1 .gradient-text {
      background: linear-gradient(135deg, #7C3AED, #c084fc, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.05rem;
      color: #a78bca;
      max-width: 480px;
      margin-bottom: 32px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-images {
      position: relative;
      z-index: 2;
    }
    .hero-dashboard-main {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 25px 80px rgba(124, 58, 237, 0.25);
      border: 1px solid rgba(124, 58, 237, 0.2);
    }
    .hero-dashboard-main img {
      width: 100%;
      height: auto;
    }
    .hero-float-card {
      position: absolute;
      background: rgba(30, 10, 60, 0.9);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 12px;
      padding: 14px 18px;
      animation: float 6s ease-in-out infinite;
    }
    .hero-float-card.card-1 {
      bottom: -20px;
      left: -30px;
    }
    .hero-float-card.card-2 {
      top: -15px;
      right: -20px;
      animation-delay: -3s;
    }
    .hero-float-card .card-value {
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
    }
    .hero-float-card .card-label {
      font-size: 0.7rem;
      color: #a78bca;
    }
    .hero-float-card .card-trend {
      font-size: 0.75rem;
      color: #34d399;
      font-weight: 600;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ===== PARTNERS ===== */
    .partners {
      padding: 60px 0;
      border-top: 1px solid rgba(124, 58, 237, 0.1);
      border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    .partners-label {
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #6b5b8a;
      margin-bottom: 32px;
    }
    .partners-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 56px;
      flex-wrap: wrap;
    }
    .partner-logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #4a3670;
      letter-spacing: -0.5px;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .partner-logo:hover { color: #7C3AED; }
    .partner-logo svg { width: 28px; height: 28px; }

    /* ===== STATS ===== */
    .stats {
      padding: 80px 0;
    }
    .stats .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .stat-card {
      text-align: center;
      padding: 40px 24px;
      background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(30, 10, 60, 0.5));
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 20px;
      transition: transform 0.3s, border-color 0.3s;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.35);
    }
    .stat-icon {
      width: 56px;
      height: 56px;
      background: rgba(124, 58, 237, 0.15);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .stat-icon svg { width: 26px; height: 26px; stroke: #a855f7; fill: none; stroke-width: 2; }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.95rem;
      color: #a78bca;
    }

    /* ===== TECHNOLOGY INNOVATION ===== */
    .tech-innovation {
      padding: 100px 0;
    }
    .tech-innovation .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .tech-phone-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .tech-phone-frame {
      width: 280px;
      border-radius: 36px;
      overflow: hidden;
      border: 3px solid rgba(124, 58, 237, 0.3);
      box-shadow: 0 30px 80px rgba(124, 58, 237, 0.2);
      position: relative;
      z-index: 2;
    }
    .tech-phone-frame img { width: 100%; height: auto; }
    .tech-glow {
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .tech-content .section-label { text-align: left; }
    .tech-content .section-title { text-align: left; }
    .tech-content p {
      color: #a78bca;
      margin-bottom: 28px;
      font-size: 1rem;
    }
    .tech-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
    .tech-feature {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .tech-feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(124, 58, 237, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tech-feature-icon svg { width: 20px; height: 20px; stroke: #a855f7; fill: none; stroke-width: 2; }
    .tech-feature h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
    .tech-feature p { font-size: 0.85rem; color: #8b7aab; margin: 0; }

    /* ===== EMPOWER FEATURES ===== */
    .empower {
      padding: 100px 0;
    }
    .empower .section-header { text-align: center; margin-bottom: 56px; }
    .empower .section-subtitle { margin: 0 auto 48px; }
    .empower-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    .empower-card {
      background: linear-gradient(160deg, rgba(124, 58, 237, 0.06), rgba(20, 5, 40, 0.6));
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
    }
    .empower-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.3);
    }
    .empower-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    .empower-card-body { padding: 28px; }
    .empower-card-icon {
      width: 44px;
      height: 44px;
      background: rgba(124, 58, 237, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .empower-card-icon svg { width: 22px; height: 22px; stroke: #a855f7; fill: none; stroke-width: 2; }
    .empower-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .empower-card p {
      font-size: 0.9rem;
      color: #8b7aab;
      line-height: 1.6;
    }

    /* ===== INTEGRATIONS ===== */
    .integrations {
      padding: 100px 0;
    }
    .integrations .section-header { text-align: center; }
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }
    .integration-item {
      background: rgba(124, 58, 237, 0.06);
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: 16px;
      padding: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .integration-item:hover {
      background: rgba(124, 58, 237, 0.12);
      border-color: rgba(124, 58, 237, 0.3);
      transform: translateY(-3px);
    }
    .integration-item svg { width: 36px; height: 36px; }

    /* ===== PRICING ===== */
    .pricing {
      padding: 100px 0;
    }
    .pricing .section-header { text-align: center; }
    .pricing-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 56px;
    }
    .pricing-toggle span { font-size: 0.9rem; font-weight: 600; color: #8b7aab; }
    .pricing-toggle span.active { color: #fff; }
    .toggle-switch {
      width: 48px;
      height: 26px;
      background: rgba(124, 58, 237, 0.3);
      border-radius: 50px;
      position: relative;
      cursor: pointer;
      border: none;
    }
    .toggle-switch::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background: #7C3AED;
      border-radius: 50%;
      top: 3px;
      left: 3px;
      transition: 0.3s;
    }
    .toggle-switch.yearly::after { left: 25px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: stretch;
    }
    .pricing-card {
      background: linear-gradient(160deg, rgba(124, 58, 237, 0.06), rgba(20, 5, 40, 0.6));
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: 24px;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, border-color 0.3s;
    }
    .pricing-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.3);
    }
    .pricing-card.featured {
      background: linear-gradient(160deg, rgba(124, 58, 237, 0.18), rgba(40, 10, 80, 0.8));
      border-color: rgba(124, 58, 237, 0.5);
      position: relative;
    }
    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #7C3AED, #a855f7);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 16px;
      border-radius: 50px;
      letter-spacing: 0.5px;
    }
    .pricing-plan-name {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #a855f7;
      margin-bottom: 16px;
    }
    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 8px;
    }
    .pricing-currency { font-size: 1.4rem; font-weight: 700; color: #fff; }
    .pricing-value { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; }
    .pricing-period { font-size: 0.9rem; color: #6b5b8a; }
    .pricing-desc {
      font-size: 0.85rem;
      color: #8b7aab;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(124, 58, 237, 0.12);
    }
    .pricing-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }
    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: #c4b5fd;
    }
    .pricing-feature svg { width: 18px; height: 18px; min-width: 18px; stroke: #a855f7; fill: none; stroke-width: 2.5; }
    .pricing-card .btn-primary { width: 100%; justify-content: center; }
    .pricing-card .btn-outline { width: 100%; justify-content: center; }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
      padding: 100px 0;
    }
    .testimonials .section-header { text-align: center; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      background: linear-gradient(160deg, rgba(124, 58, 237, 0.06), rgba(20, 5, 40, 0.5));
      border: 1px solid rgba(124, 58, 237, 0.12);
      border-radius: 20px;
      padding: 32px;
      transition: transform 0.3s, border-color 0.3s;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(124, 58, 237, 0.3);
    }
    .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
    .testimonial-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
    .testimonial-text {
      font-size: 0.95rem;
      color: #c4b5fd;
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(124, 58, 237, 0.3);
    }
    .testimonial-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
    .testimonial-role { font-size: 0.78rem; color: #8b7aab; }

    /* ===== FOOTER ===== */
    .footer {
      padding: 80px 0 32px;
      border-top: 1px solid rgba(124, 58, 237, 0.12);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand .navbar-logo { margin-bottom: 16px; display: inline-block; }
    .footer-brand p {
      font-size: 0.88rem;
      color: #8b7aab;
      max-width: 280px;
      margin-bottom: 20px;
    }
    .footer-socials { display: flex; gap: 12px; }
    .footer-social {
      width: 38px;
      height: 38px;
      background: rgba(124, 58, 237, 0.1);
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .footer-social:hover { background: rgba(124, 58, 237, 0.25); }
    .footer-social svg { width: 18px; height: 18px; stroke: #a78bca; fill: none; stroke-width: 2; }
    .footer-col h4 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-size: 0.88rem;
      color: #8b7aab;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #c4b5fd; }
    .footer-bottom {
      border-top: 1px solid rgba(124, 58, 237, 0.1);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p { font-size: 0.8rem; color: #6b5b8a; }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 0.8rem; color: #6b5b8a; transition: color 0.2s; }
    .footer-bottom-links a:hover { color: #a78bca; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero p { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .hero-images { max-width: 500px; margin: 0 auto; }
      .tech-innovation .container { grid-template-columns: 1fr; text-align: center; }
      .tech-content .section-label, .tech-content .section-title { text-align: center; }
      .tech-features { align-items: center; }
      .tech-phone-wrapper { order: -1; margin-bottom: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .navbar-links { display: none; }
      .navbar-toggle { display: flex; }
      .navbar-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 5, 51, 0.98);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(124, 58, 237, 0.15);
      }
      .stats .container { grid-template-columns: 1fr; }
      .empower-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .integrations-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-float-card { display: none; }
    }
    @media (max-width: 480px) {
      .partners-grid { gap: 32px; }
      .integrations-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-bottom { flex-direction: column; text-align: center; }
    }