

    :root {
      --primary: #7c3aed;
      --secondary: #06b6d4;
      --accent: #f59e0b;
      --accent-pink: #ec4899;
      --accent-green: #22c55e;
      --dark: #0b1020;
      --dark-soft: #131a2e;
      --muted: #64748b;
      --light-bg: #f6f7ff;
      --light-card: rgba(255, 255, 255, 0.78);
      --card-border: rgba(124, 58, 237, 0.12);
      --gradient-main: linear-gradient(135deg, #7c3aed 0%, #06b6d4 45%, #ec4899 100%);
      --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08), rgba(236, 72, 153, 0.08));
      --gradient-dark: linear-gradient(135deg, #0b1020 0%, #151b34 45%, #22103a 100%);
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.06), transparent 25%),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.07), transparent 25%),
        linear-gradient(180deg, #fcfcff 0%, #f8faff 100%);
      scroll-behavior: smooth;
    }

    .navbar {
      backdrop-filter: blur(14px);
      background: rgba(255, 255, 255, 0.72);
      border-bottom: 1px solid rgba(124, 58, 237, 0.08);
      box-shadow: 0 10px 30px rgba(11, 16, 32, 0.04);
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: -0.03em;
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-link {
      font-weight: 600;
      color: #334155;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .btn-primary {
      padding: 0.9rem 1.45rem;
      border: 0;
      background: var(--gradient-main);
      border-radius: 0.95rem;
      font-weight: 700;
      box-shadow: 0 14px 35px rgba(124, 58, 237, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(124, 58, 237, 0.34);
    }

    .btn-outline-dark,
    .btn-light {
      padding: 0.9rem 1.45rem;
      border-radius: 0.95rem;
      font-weight: 700;
    }

    .btn-outline-dark {
      border-color: rgba(124, 58, 237, 0.25);
      color: var(--dark);
      background: rgba(255,255,255,0.72);
    }

    .btn-outline-dark:hover,
    .btn-light:hover {
      transform: translateY(-1px);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 8rem 0 5rem;
      background:
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.18), transparent 25%),
        radial-gradient(circle at 85% 20%, rgba(6, 182, 212, 0.18), transparent 25%),
        radial-gradient(circle at 75% 80%, rgba(236, 72, 153, 0.12), transparent 22%),
        linear-gradient(180deg, #f6f4ff 0%, #ffffff 72%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1rem;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: 999px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: 0 10px 30px rgba(11, 16, 32, 0.06);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.4rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
      font-weight: 800;
      margin: 1rem 0 1.25rem;
    }

    .hero h1 .gradient-text,
    .section-heading h2 .gradient-text {
      background: var(--gradient-main);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p.lead {
      color: var(--muted);
      font-size: 1.12rem;
      max-width: 42rem;
    }

    .hero-card,
    .feature-card,
    .testimonial-card,
    .pricing-card,
    .faq-card,
    .contact-card,
    .metric-card {
      border: 1px solid var(--card-border);
      border-radius: 1.5rem;
      background: var(--light-card);
      backdrop-filter: blur(14px);
      box-shadow: 0 16px 45px rgba(17, 24, 39, 0.08);
    }

    .hero-card {
      padding: 1.25rem;
    }

    .dashboard-shell {
      background: var(--gradient-dark);
      color: #fff;
      border-radius: 1.35rem;
      padding: 1.25rem;
      min-height: 520px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .dashboard-shell::before {
      content: "";
      position: absolute;
      inset: auto -60px -60px auto;
      width: 220px;
      height: 220px;
      background: rgba(236, 72, 153, 0.25);
      filter: blur(42px);
      border-radius: 50%;
    }

    .dashboard-shell::after {
      content: "";
      position: absolute;
      inset: -60px auto auto -50px;
      width: 180px;
      height: 180px;
      background: rgba(6, 182, 212, 0.22);
      filter: blur(38px);
      border-radius: 50%;
    }

    .mini-panel {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1rem;
      padding: 1rem;
      height: 100%;
      backdrop-filter: blur(10px);
    }

    .stat-pill {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 1rem;
      padding: 0.8rem 1rem;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .section {
      padding: 5rem 0;
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 3rem;
    }

    .section-heading .eyebrow {
      color: var(--accent-pink);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.82rem;
      margin-bottom: 0.75rem;
      display: inline-block;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card,
    .faq-card,
    .contact-card,
    .metric-card {
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover,
    .metric-card:hover,
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 52px rgba(17, 24, 39, 0.12);
    }

    .icon-box {
      width: 58px;
      height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.14), rgba(236, 72, 153, 0.14));
      color: var(--primary);
      font-size: 1.35rem;
      margin-bottom: 1rem;
      border: 1px solid rgba(124, 58, 237, 0.08);
    }

    .feature-card h5,
    .pricing-card h4,
    .testimonial-card h5,
    .faq-card h5 {
      font-weight: 700;
    }

    .text-muted-custom {
      color: var(--muted);
    }

    .metric-card h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.35rem;
    }

    .split-showcase {
      background: var(--gradient-soft);
    }

    .pricing-card.popular {
      border: 2px solid rgba(236, 72, 153, 0.28);
      transform: translateY(-8px);
      position: relative;
      overflow: hidden;
    }

    .pricing-card.popular::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
      pointer-events: none;
    }

    .pricing-badge {
      display: inline-block;
      padding: 0.42rem 0.82rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.12));
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 800;
      margin-bottom: 1rem;
      border: 1px solid rgba(124, 58, 237, 0.08);
    }

    .plan-switch {
      display: inline-flex;
      gap: 0.6rem;
      align-items: center;
      flex-wrap: wrap;
      margin: 0.75rem 0 1.2rem;
    }

    .plan-pill {
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 700;
      background: rgba(124, 58, 237, 0.08);
      color: var(--primary);
    }

    .plan-pill.yearly {
      background: rgba(34, 197, 94, 0.12);
      color: #15803d;
    }

    .price {
      display: flex;
      align-items: flex-end;
      gap: 0.25rem;
      margin-bottom: 0.35rem;
    }

    .price .currency {
      font-size: 1.1rem;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 0.55rem;
    }

    .price .amount {
      font-size: 3rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.05em;
    }

    .price .period {
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 0.45rem;
    }

    .yearly-price {
      color: #0f172a;
      font-weight: 700;
      margin-bottom: 0;
    }

    .yearly-price span {
      color: #15803d;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .pricing-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.85rem;
      color: var(--dark);
    }

    .pricing-card ul li i {
      color: var(--accent-green);
      margin-top: 0.2rem;
    }

    .testimonial-quote {
      font-size: 1.02rem;
      color: #334155;
      margin-bottom: 1.25rem;
    }

    .avatar-dot {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e9d5ff, #bae6fd, #fbcfe8);
      color: #6d28d9;
      font-weight: 800;
    }

    .faq-card {
      padding: 0;
      overflow: hidden;
    }

    .accordion-button {
      font-weight: 700;
      padding: 1.2rem 1.25rem;
      background: rgba(255,255,255,0.7);
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.08));
      color: #0f172a;
      box-shadow: none;
    }

    .accordion-item {
      border: 0;
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
      background: transparent;
    }

    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      margin-bottom: 1rem;
      color: #334155;
    }

    .contact-list i {
      color: var(--accent-pink);
      font-size: 1.1rem;
      margin-top: 0.15rem;
    }

    .form-control {
      border-radius: 1rem;
      border: 1px solid rgba(124, 58, 237, 0.14);
      padding: 0.9rem 1rem;
      box-shadow: none;
    }

    .form-control:focus {
      border-color: rgba(124, 58, 237, 0.42);
      box-shadow: 0 0 0 0.25rem rgba(124, 58, 237, 0.12);
    }

    .cta-banner {
      background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 48%, #ec4899 100%);
      color: white;
      border-radius: 1.9rem;
      padding: 2.7rem;
      box-shadow: 0 24px 60px rgba(124, 58, 237, 0.24);
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -30px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      filter: blur(10px);
    }

    footer {
      border-top: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
    }

    .social-links a {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #f5f3ff, #ecfeff, #fdf2f8);
      color: #0f172a;
      text-decoration: none;
      transition: 0.2s ease;
      border: 1px solid rgba(124, 58, 237, 0.08);
    }

    .social-links a:hover {
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
    }

    @media (max-width: 991.98px) {
      .hero {
        padding-top: 7rem;
      }

      .dashboard-shell {
        min-height: auto;
      }
    }