/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;

      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;

      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;

      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;

      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;

      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;

      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ──────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* ─── UTILITIES ─────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 5rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        max-width: 100%;
        margin-inline: auto;
        padding: 0 20px 0 20px;
      }
    }

    .section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .section-sm {
      padding: 4rem 0;
    }

    .section-header {
      margin-bottom: 3.5rem;
      max-width: 560px;
    }

    .section-header.centered {
      max-width: 640px;
      margin-inline: auto;
      text-align: center;
    }

    .section-header .label {
      margin-bottom: 0.75rem;
      display: block;
    }

    .section-header h2 {
      margin-bottom: 1rem;
    }

    .section-header p {
      font-size: 1.0625rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-ghost {
      background: transparent;
      color: var(--brand);
      padding-inline: 0;
    }

    .btn-ghost:hover {
      color: var(--brand-dark);
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-lg {
      padding: 0.9375rem 2rem;
      font-size: 1rem;
    }

    /* ─── PRICING HERO ───────────────────────────────────────────── */
    .pricing-hero {
      padding-top: 130px;
      padding-bottom: 5rem;
      position: relative;
      overflow: hidden;
      background: var(--canvas);
    }

    .pricing-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .pricing-hero-orb-1 {
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.10) 0%, transparent 65%);
    }

    .pricing-hero-orb-2 {
      position: absolute;
      bottom: -80px;
      left: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.06) 0%, transparent 65%);
    }

    .pricing-hero-orb-3 {
      position: absolute;
      bottom: -60px;
      right: -80px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(159, 69, 232, 0.07) 0%, transparent 65%);
    }

    .pricing-hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 70% 80% at 50% 20%, black 0%, transparent 80%);
    }

    .pricing-hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      margin-inline: auto;
    }

    .pricing-hero-inner .label {
      margin-bottom: 1rem;
      display: block;
    }

    .pricing-hero-inner h1 {
      margin-bottom: 1.25rem;
    }

    .pricing-hero-inner h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-hero-inner>p {
      font-size: 1.0625rem;
      line-height: 1.75;
      max-width: 540px;
      margin-inline: auto;
      margin-bottom: 2.5rem;
      color: var(--ink-500);
    }

    /* Billing Toggle */
    .billing-toggle-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .billing-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: var(--r-full);
      padding: 4px;
      box-shadow: var(--shadow-sm);
    }

    .billing-btn {
      padding: 0.5rem 1.375rem;
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--ink-400);
      cursor: pointer;
      border: none;
      background: transparent;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .billing-btn.active {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 3px 12px rgba(131, 39, 210, 0.3);
    }

    .billing-yearly-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.25rem 0.625rem;
      border-radius: var(--r-full);
      background: rgba(18, 183, 106, 0.1);
      border: 1px solid rgba(18, 183, 106, 0.2);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--success);
      margin-left: 0.375rem;
    }

    .billing-support {
      font-size: 0.8125rem;
      color: var(--ink-400);
    }

    /* ─── PRICING PLANS ──────────────────────────────────────────── */
    .plans-section {
      background: var(--canvas);
      padding: 2rem 0 6rem;
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      align-items: start;
    }

    .plan-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    /* Featured card */
    .plan-card.featured {
      border-color: var(--brand);
      background: var(--ink-900);
      box-shadow: 0 8px 48px rgba(131, 39, 210, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
      transform: translateY(-8px);
      overflow: visible !important;
    }

    @keyframes mascotHeartbeat {
      0% { transform: scale(1); }
      14% { transform: scale(1.08); }
      28% { transform: scale(1); }
      42% { transform: scale(1.08); }
      70% { transform: scale(1); }
    }

    .card-mascot-pricing {
      position: absolute;
      top: -55px;
      left: -45px;
      width: 110px;
      z-index: 20;
      filter: drop-shadow(0 12px 24px rgba(131, 39, 210, 0.3));
      animation: mascotHeartbeat 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
      pointer-events: none;
    }

    @media (max-width: 1024px) {
      .card-mascot-pricing {
        width: 90px;
        top: -45px;
        left: -30px;
      }
    }

    .plan-card.featured:hover {
      transform: translateY(-14px);
      box-shadow: 0 16px 64px rgba(131, 39, 210, 0.4);
    }

    .plan-card.featured::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -80px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.35) 0%, transparent 65%);
      pointer-events: none;
    }

    .plan-card.featured::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
      border-radius: inherit;
    }

    .plan-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.75rem;
      border-radius: var(--r-full);
      background: var(--brand);
      color: #fff;
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 2px 10px rgba(131, 39, 210, 0.4);
    }

    .plan-name {
      font-family: var(--ff-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.375rem;
      position: relative;
      z-index: 1;
    }

    .plan-card.featured .plan-name {
      color: #fff;
    }

    .plan-tagline {
      font-size: 0.875rem;
      color: var(--ink-400);
      line-height: 1.55;
      margin-bottom: 1.75rem;
      position: relative;
      z-index: 1;
    }

    .plan-card.featured .plan-tagline {
      color: rgba(255, 255, 255, 0.5);
    }

    .plan-price-row {
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }

    .plan-price {
      font-family: var(--ff-heading);
      font-size: 2.75rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .plan-card.featured .plan-price {
      color: #fff;
    }

    .plan-price .plan-currency {
      font-size: 1.5rem;
      font-weight: 700;
      vertical-align: top;
      margin-top: 0.35rem;
      display: inline-block;
    }

    .plan-price .plan-per {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-400);
    }

    .plan-card.featured .plan-price .plan-per {
      color: rgba(255, 255, 255, 0.4);
    }

    .plan-price-custom {
      font-family: var(--ff-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--ink-900);
      letter-spacing: -0.03em;
    }

    .plan-yearly-price {
      font-size: 0.8125rem;
      color: var(--ink-400);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .plan-card.featured .plan-yearly-price {
      color: rgba(255, 255, 255, 0.4);
    }

    .plan-yearly-price .save-tag {
      color: var(--success);
      font-weight: 700;
    }

    .plan-divider {
      height: 1px;
      background: var(--border-soft);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .plan-card.featured .plan-divider {
      background: rgba(255, 255, 255, 0.08);
    }

    .plan-features {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.875rem;
      color: var(--ink-600);
      line-height: 1.5;
    }

    .plan-card.featured .plan-feature {
      color: rgba(255, 255, 255, 0.7);
    }

    .plan-feature-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(18, 183, 106, 0.1);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--success);
    }

    .plan-card.featured .plan-feature-check {
      background: rgba(18, 183, 106, 0.2);
    }

    .plan-cta {
      display: block;
      width: 100%;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .plan-cta-btn {
      width: 100%;
      padding: 0.875rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
      display: block;
    }

    .plan-cta-btn.primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 16px rgba(131, 39, 210, 0.3);
    }

    .plan-cta-btn.primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(131, 39, 210, 0.45);
    }

    .plan-cta-btn.outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .plan-cta-btn.outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .plan-cta-btn.white {
      background: #fff;
      color: var(--brand);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .plan-cta-btn.white:hover {
      background: var(--brand-pale);
      transform: translateY(-1px);
    }

    /* ─── COMPARISON TABLE ───────────────────────────────────────── */
    .compare-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .compare-table-wrap {
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
    }

    .compare-table thead th {
      padding: 1rem 1.5rem;
      text-align: center;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
      border-bottom: 2px solid var(--border-soft);
    }

    .compare-table thead th:first-child {
      text-align: left;
    }

    .compare-table thead .th-starter,
    .compare-table thead .th-growth,
    .compare-table thead .th-enterprise {
      width: 16%;
    }

    .th-plan-name {
      font-size: 0.9375rem;
    }

    .th-growth .th-plan-name {
      color: var(--brand);
    }

    .compare-table tbody tr {
      border-bottom: 1px solid var(--border-soft);
      transition: background 0.15s;
    }

    .compare-table tbody tr:hover {
      background: var(--canvas);
    }

    .compare-table tbody tr:last-child {
      border-bottom: none;
    }

    .compare-table tbody td {
      padding: 1rem 1.5rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--ink-500);
    }

    .compare-table tbody td:first-child {
      text-align: left;
      font-weight: 500;
      color: var(--ink-700);
    }

    .compare-table tbody .cat-row td {
      background: var(--canvas);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-400);
      padding: 0.75rem 1.5rem;
    }

    .check-yes {
      color: var(--success);
      display: inline-flex;
    }

    .check-no {
      color: var(--ink-200);
      display: inline-flex;
    }

    .check-partial {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand);
      font-family: var(--ff-heading);
    }

    /* Growth column highlight in table */
    .compare-table .col-growth {
      background: rgba(131, 39, 210, 0.03);
    }

    /* ─── ADD-ONS ─────────────────────────────────────────────────── */
    .addons-section {
      background: var(--canvas);
      padding: 6rem 0;
    }

    .addons-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .addon-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .addon-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
      border-radius: inherit;
    }

    .addon-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .addon-card:hover::after {
      opacity: 1;
    }

    .addon-icon {
      width: 52px;
      height: 52px;
      background: var(--brand-pale);
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 1.375rem;
      color: var(--brand);
      transition: background 0.25s, transform 0.25s;
      position: relative;
      z-index: 1;
    }

    .addon-card:hover .addon-icon {
      background: var(--brand);
      color: #fff;
      transform: scale(1.05) rotate(-3deg);
    }

    .addon-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.875rem;
      position: relative;
      z-index: 1;
    }

    .addon-features {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.75rem;
      position: relative;
      z-index: 1;
    }

    .addon-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--ink-500);
    }

    .addon-feature-dot {
      width: 5px;
      height: 5px;
      background: var(--brand-mid);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .addon-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--brand);
      position: relative;
      z-index: 1;
      transition: gap 0.2s ease;
    }

    .addon-card:hover .addon-cta {
      gap: 0.6rem;
    }

    /* ─── FAQ ────────────────────────────────────────────────────── */
    .faq-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }

    .faq-left {
      position: sticky;
      top: 88px;
    }

    .faq-left-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.3125rem 0.875rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--brand-dark);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }

    .faq-left h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      margin-bottom: 1rem;
    }

    .faq-left p {
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }

    .faq-support-card {
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      padding: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .faq-support-icon {
      width: 48px;
      height: 48px;
      background: var(--brand-pale);
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      color: var(--brand);
      flex-shrink: 0;
    }

    .faq-support-label {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.2rem;
    }

    .faq-support-text {
      font-size: 0.8125rem;
      color: var(--brand);
      font-weight: 600;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border: 1.5px solid var(--border-soft);
      border-radius: var(--r-xl);
      margin-bottom: 0.75rem;
      background: var(--canvas);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .faq-item.faq-open {
      border-color: var(--brand-soft);
      background: var(--surface);
      box-shadow: var(--shadow-sm);
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }

    .faq-q-num {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 800;
      color: var(--ink-300);
      letter-spacing: 0.06em;
      flex-shrink: 0;
      width: 24px;
    }

    .faq-item.faq-open .faq-q-num {
      color: var(--brand);
    }

    .faq-q-text {
      flex: 1;
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--ink-900);
    }

    .faq-chevron {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--canvas);
      border: 1.5px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--ink-400);
      flex-shrink: 0;
      transition: transform 0.3s ease, background 0.2s, color 0.2s;
    }

    .faq-item.faq-open .faq-chevron {
      transform: rotate(180deg);
      background: var(--brand-pale);
      border-color: var(--brand-soft);
      color: var(--brand);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-item.faq-open .faq-answer {
      max-height: 200px;
    }

    .faq-answer-inner {
      padding: 0 1.5rem 1.5rem 3.75rem;
    }

    .faq-answer-inner p {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-500);
    }

    /* ─── TRUST STRIP ────────────────────────────────────────────── */
    .trust-section {
      background: var(--canvas);
      padding: 3rem 0;
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }

    .trust-icon {
      width: 40px;
      height: 40px;
      background: var(--brand-pale);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      color: var(--brand);
      flex-shrink: 0;
    }

    .trust-item-val {
      font-family: var(--ff-heading);
      font-size: 1.0625rem;
      font-weight: 800;
      color: var(--ink-900);
      line-height: 1.2;
    }

    .trust-item-label {
      font-size: 0.8125rem;
      color: var(--ink-400);
    }

    .trust-divider {
      width: 1px;
      height: 2.5rem;
      background: var(--border);
      flex-shrink: 0;
    }

    /* ─── FINAL CTA ─────────────────────────────────────────────── */
    .cta-section {
      background: var(--ink-900);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.2) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 660px;
      margin-inline: auto;
    }

    .cta-inner .label {
      color: var(--brand-mid);
      margin-bottom: 1rem;
      display: block;
    }

    .cta-inner h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      color: #fff;
      margin-bottom: 1.25rem;
    }

    .cta-inner>p {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: var(--brand-dark);
      padding: 0.9375rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      transition: all 0.2s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-cta-white:hover {
      background: var(--brand-pale);
      transform: translateY(-2px);
    }

    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      padding: 0.9375rem 2.25rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    .cta-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.75rem;
      flex-wrap: wrap;
    }

    .cta-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .cta-trust-item svg {
      color: var(--brand-mid);
    }



    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .plans-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
      }

      .plan-card.featured {
        transform: none;
      }

      .addons-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .faq-left {
        position: static;
      }


    }

    @media (max-width: 768px) {

      .nav-links,
      .nav-actions .btn {
        display: none;
      }

      .trust-inner {
        gap: 1.5rem;
      }

      .trust-divider {
        display: none;
      }

      .addons-grid {
        grid-template-columns: 1fr;
      }

      .compare-table thead th,
      .compare-table tbody td {
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
      }
    }

    @media (max-width: 640px) {}