
    :root {
      --primary: #4556d9;
      --primary-dark: #081225;
      --primary-soft: #eef2ff;
      --navy: #101b35;
      --indigo: #293a96;
      --purple: #4c1d95;
      --orange: #f47a22;
      --orange-dark: #d85d12;
      --orange-soft: #fff3e8;
      --yellow: #f6c84c;
      --teal: #14b8a6;
      --teal-soft: #ecfeff;
      --ink: #0f172a;
      --muted: #64748b;
      --line: #e2e8f0;
      --paper: #ffffff;
      --wash: #f8f9ff;
      --black: #050505;
      --green: #0f9f75;
      --shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
      --soft-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--wash);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
      padding-top: 80px;
    }

    body.menu-open {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(69, 86, 217, 0.1);
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
      backdrop-filter: blur(14px);
      transform: translateY(0);
      transition: transform 260ms ease, box-shadow 260ms ease;
      will-change: transform;
    }

    .site-header.header-hidden {
      box-shadow: none;
      transform: translateY(-100%);
    }

    .nav {
      min-height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .logo-mark {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 2px solid rgba(246, 200, 76, 0.65);
      border-radius: 50%;
      background: var(--paper);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
      flex: 0 0 auto;
    }

    .logo-mark img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .logo-title {
      color: var(--navy);
      font-size: 1.24rem;
      font-weight: 950;
      line-height: 1;
      letter-spacing: 0;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-cta,
    .button {
      position: relative;
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
      border: 0;
      border-radius: var(--radius);
      padding: 0 24px;
      color: var(--ink);
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22);
      font: inherit;
      font-weight: 800;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .nav-cta::after,
    .button::after,
    .floating-btn a::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
      transform: translateX(-150%);
      transition: transform 800ms ease;
    }

    .nav-cta:hover,
    .button:hover,
    .floating-btn a:hover {
      transform: translateY(-2px);
      background: linear-gradient(90deg, var(--yellow), var(--orange-dark));
      box-shadow: 0 18px 34px rgba(249, 115, 22, 0.28);
    }

    .nav-cta:hover::after,
    .button:hover::after,
    .floating-btn a:hover::after {
      transform: translateX(150%);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: var(--radius);
      background: var(--primary-soft);
      color: var(--primary);
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      z-index: 45;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      box-shadow: var(--soft-shadow);
      padding: 16px;
    }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      color: var(--muted);
      font-weight: 700;
    }

    .mobile-menu .nav-cta {
      margin-top: 8px;
      color: var(--ink);
      text-align: center;
    }

    .hero {
      padding: 56px 0 82px;
      background:
        linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 48%, var(--purple) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--orange-soft);
      font-size: 0.9rem;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.18);
    }

    .hero .eyebrow {
      position: relative;
      isolation: isolate;
      gap: 10px;
      width: fit-content;
      max-width: 100%;
      margin-bottom: 20px;
      padding: 9px 16px 9px 13px;
      border: 1px solid rgba(246, 200, 76, 0.2);
      border-radius: 999px;
      color: #ffffff;
      background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.07), rgba(246, 200, 76, 0.06), rgba(255, 255, 255, 0.04)),
        rgba(8, 18, 37, 0.7);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.035) inset,
        0 8px 18px rgba(244, 122, 34, 0.08);
      backdrop-filter: blur(6px);
    }

    .hero .eyebrow::before {
      width: 10px;
      height: 10px;
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      box-shadow:
        0 0 0 4px rgba(246, 200, 76, 0.08),
        0 0 10px rgba(246, 200, 76, 0.32);
    }

    .hero .eyebrow::after {
      content: "";
      position: absolute;
      inset: -3px -8px;
      z-index: -1;
      border-radius: inherit;
      background: radial-gradient(ellipse at center, rgba(246, 200, 76, 0.1), rgba(244, 122, 34, 0.035) 48%, transparent 72%);
      filter: blur(4px);
      opacity: 0.48;
    }

    h1 {
      max-width: 680px;
      margin-bottom: 18px;
      color: #ffffff;
      font-size: clamp(2.25rem, 5vw, 4.75rem);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 900;
    }

    h1 span {
      color: var(--yellow);
    }

    .text-indigo {
      color: var(--primary);
    }

    .hero-copy {
      max-width: 620px;
      color: rgba(238, 242, 255, 0.88);
      font-size: clamp(1rem, 1.7vw, 1.18rem);
      margin-bottom: 28px;
    }

    .button span,
    .nav-cta span,
    .floating-btn a span {
      position: relative;
      z-index: 1;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 24px 0 18px;
      color: rgba(238, 242, 255, 0.78);
      font-size: 0.9rem;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .trust-item svg {
      width: 17px;
      height: 17px;
      color: var(--orange-soft);
      flex: 0 0 auto;
    }

    .hero-image {
      display: block;
      width: min(560px, 100%);
      height: clamp(380px, 36vw, 470px);
      justify-self: end;
      align-self: start;
      margin-top: 2px;
      overflow: hidden;
      border-radius: var(--radius);
      background: rgba(8, 18, 37, 0.9);
      box-shadow: 0 30px 64px rgba(2, 6, 23, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .soft-band {
      background: linear-gradient(180deg, var(--wash) 0%, var(--primary-soft) 58%, var(--orange-soft) 100%);
      padding: 68px 0 74px;
    }

    .audience-section {
      position: relative;
    }

    .audience-kicker {
      display: block;
      margin-bottom: 12px;
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .audience-hub {
      position: relative;
      z-index: 1;
      width: min(330px, 100%);
      min-height: 330px;
      display: grid;
      place-items: center;
      margin: 8px auto 34px;
      padding: 36px;
      border-radius: 50%;
      color: #ffffff;
      text-align: center;
      background: linear-gradient(145deg, var(--primary-dark), var(--navy) 50%, var(--indigo));
      box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
    }

    .audience-hub strong {
      display: inline-grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin: 0 auto 18px;
      border-radius: 50%;
      color: var(--ink);
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      font-size: 0.82rem;
      font-weight: 900;
    }

    .audience-hub h3 {
      margin-bottom: 10px;
      font-size: clamp(1.35rem, 2.4vw, 1.8rem);
      line-height: 1.1;
    }

    .audience-hub p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 700;
    }

    .audience-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
    }

    .audience-card {
      min-height: 220px;
      padding: 22px 18px;
      border: 1px solid rgba(69, 86, 217, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.82);
      text-align: center;
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    }

    .audience-icon {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      margin: 0 auto 14px;
      color: var(--navy);
    }

    .audience-icon svg {
      width: 100%;
      height: 100%;
    }

    .audience-icon .accent {
      color: var(--orange);
    }

    .audience-card h3 {
      margin-bottom: 8px;
      color: var(--ink);
      font-size: 1.2rem;
      line-height: 1.16;
    }

    .audience-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .section {
      padding: 78px 0;
    }

    .section-heading {
      max-width: 780px;
      margin: 0 auto 44px;
      text-align: center;
    }

    .section-heading h2 {
      margin-bottom: 14px;
      color: var(--ink);
      font-size: clamp(1.85rem, 3.8vw, 3.2rem);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-heading p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 32px;
      align-items: stretch;
    }

    .solution-card,
    .white-card,
    .feature-card,
    .step-card,
    .faq-group,
    .plan-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    .solution-card {
      padding: 32px;
      border-color: rgba(69, 86, 217, 0.18);
      height: 100%;
    }

    .round-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary);
    }

    .solution-card h3,
    .white-card h2 {
      margin-bottom: 16px;
      color: var(--indigo);
      font-size: clamp(1.55rem, 2.6vw, 2.1rem);
      line-height: 1.18;
      font-weight: 900;
    }

    .check-list {
      display: grid;
      gap: 15px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: grid;
      grid-template-columns: 22px 1fr;
      gap: 10px;
      color: var(--muted);
    }

    .check-list li::before {
      content: "✓";
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      margin-top: 2px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--yellow));
      color: var(--ink);
      font-size: 0.72rem;
      font-weight: 900;
    }

    .white-card {
      padding: 34px 10px 34px 24px;
      box-shadow: none;
      border-color: transparent;
      background: transparent;
      align-self: center;
    }

    .white-card h2 {
      color: var(--ink);
    }

    .white-card p {
      color: var(--muted);
      font-size: 1.12rem;
      margin-bottom: 0;
    }

    .revenue-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
      gap: 44px;
      align-items: center;
      margin-top: 60px;
    }

    .revenue-grid h2 {
      margin-bottom: 12px;
      font-size: clamp(1.6rem, 3vw, 2.35rem);
      line-height: 1.16;
    }

    .revenue-grid p {
      color: var(--muted);
      font-size: 1.08rem;
      margin-bottom: 0;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .mini-stat {
      padding: 28px;
      border-right: 1px solid var(--line);
    }

    .mini-stat:last-child {
      border-right: 0;
    }

    .mini-stat span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .mini-stat strong {
      display: block;
      margin: 6px 0 5px;
      color: var(--primary);
      font-size: 1.75rem;
      line-height: 1.05;
    }

    .mini-stat small {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .gradient-panel {
      width: min(1120px, calc(100% - 32px));
      margin: 42px auto 0;
      padding: 62px 58px;
      overflow: hidden;
      border-radius: var(--radius);
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 48%, var(--indigo) 100%);
      box-shadow: 0 28px 58px rgba(15, 23, 42, 0.24);
    }

    .gradient-panel-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 56px;
      align-items: center;
    }

    .gradient-panel h2 {
      margin-bottom: 16px;
      font-size: clamp(1.9rem, 4vw, 3.1rem);
      line-height: 1.08;
      font-weight: 900;
    }

    .gradient-panel p {
      color: rgba(238, 242, 255, 0.9);
      font-size: 1.08rem;
      margin-bottom: 24px;
    }

    .gradient-panel .button {
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      color: var(--ink);
      box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24);
    }

    .gradient-panel .button:hover {
      background: linear-gradient(90deg, var(--yellow), var(--orange-dark));
    }

    .panel-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .panel-list li {
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      font-weight: 700;
    }

    .steps-grid,
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .step-card,
    .feature-card {
      padding: 28px;
      min-height: 210px;
    }

    .step-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 50%;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--orange));
      font-weight: 900;
    }

    .step-card h3,
    .feature-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
      line-height: 1.25;
    }

    .step-card p,
    .feature-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .features-section {
      background:
        linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 48%, var(--indigo) 100%);
      border-top: 0;
      border-bottom: 0;
      padding: 92px 0 104px;
    }

    .features-section .container {
      max-width: 1180px;
    }

    .features-section .section-heading {
      max-width: 790px;
      margin-bottom: 46px;
    }

    .features-section .section-heading::before {
      content: "Course toolkit";
      display: block;
      margin-bottom: 14px;
      color: var(--orange);
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .features-section .section-heading h2 {
      color: #ffffff;
      font-size: clamp(2.45rem, 5vw, 4.4rem);
      line-height: 1.07;
      text-shadow: none;
    }

    .features-section .section-heading p {
      width: min(720px, 100%);
      margin: 18px auto 0;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 800;
    }

    .features-section .features-grid {
      gap: 22px;
    }

    .features-section .feature-card {
      min-height: 236px;
      padding: 32px 28px;
      border-color: rgba(255, 255, 255, 0.18);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.07));
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(10px);
    }

    .features-section .feature-card h3 {
      color: #ffffff;
      font-size: clamp(1.55rem, 2.3vw, 2.15rem);
      line-height: 1.08;
    }

    .features-section .feature-card p {
      color: rgba(255, 255, 255, 0.84);
      font-weight: 700;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--primary-soft), var(--orange-soft));
      color: var(--primary);
    }

    .features-section .feature-icon {
      width: 38px;
      height: 38px;
      margin-bottom: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(238, 242, 255, 0.2), rgba(255, 243, 232, 0.18));
      color: var(--orange);
    }

    .comparison-wrap {
      overflow-x: auto;
      border: 1px solid rgba(69, 86, 217, 0.14);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--soft-shadow);
    }

    table {
      width: 100%;
      min-width: 760px;
      border-collapse: collapse;
    }

    th,
    td {
      padding: 18px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }

    th {
      background: var(--primary-soft);
      color: var(--indigo);
      font-size: 0.82rem;
      text-transform: uppercase;
      font-weight: 900;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    td {
      color: var(--muted);
    }

    td:first-child {
      color: var(--ink);
      font-weight: 900;
    }

    th.us,
    td.us {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 50%, var(--indigo) 100%);
      border-bottom-color: rgba(255, 255, 255, 0.14);
      box-shadow: inset 5px 0 0 var(--yellow);
    }

    th.us {
      color: var(--yellow);
    }

    td.us {
      color: #ffffff;
      font-weight: 900;
    }

    .pricing-section {
      background:
        linear-gradient(180deg, var(--wash) 0%, var(--primary-soft) 48%, var(--orange-soft) 100%);
    }

    .offer-shell {
      width: min(1080px, 100%);
      margin: 0 auto;
      overflow: hidden;
      border: 1px solid rgba(69, 86, 217, 0.14);
      border-radius: 10px;
      background: var(--paper);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
    }

    .offer-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
      padding: 34px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary-dark), var(--navy) 52%, var(--indigo));
    }

    .offer-label {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--orange);
      background: rgba(244, 122, 34, 0.14);
      font-size: 0.84rem;
      font-weight: 900;
    }

    .offer-top h2 {
      margin-bottom: 10px;
      font-size: clamp(1.8rem, 3vw, 2.45rem);
      line-height: 1.1;
    }

    .offer-top p {
      margin-bottom: 0;
      color: rgba(238, 242, 255, 0.74);
    }

    .offer-proof {
      min-width: 210px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.08);
      text-align: right;
    }

    .offer-proof strong {
      display: block;
      color: var(--yellow);
      font-size: 1.8rem;
      line-height: 1;
    }

    .offer-proof span {
      display: block;
      margin-top: 7px;
      color: rgba(238, 242, 255, 0.82);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      padding: 24px;
    }

    .plan-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 30px;
    }

    .plan-card.featured-plan {
      border-color: rgba(244, 122, 34, 0.44);
      background:
        linear-gradient(var(--paper), var(--paper)) padding-box,
        linear-gradient(135deg, var(--yellow), var(--orange), var(--primary)) border-box;
      box-shadow: 0 22px 52px rgba(244, 122, 34, 0.18);
      transform: translateY(-10px);
    }

    .plan-badge {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 18px;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--indigo);
      background: var(--primary-soft);
      font-size: 0.78rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .featured-plan .plan-badge {
      color: var(--ink);
      background: linear-gradient(90deg, var(--yellow), var(--orange));
    }

    .plan-card h3 {
      margin-bottom: 7px;
      color: var(--ink);
      font-size: 1.55rem;
      line-height: 1.16;
    }

    .plan-subtitle {
      min-height: 50px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .plan-price {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      margin-bottom: 22px;
    }

    .plan-price strong {
      color: var(--ink);
      font-size: clamp(3rem, 6vw, 4.5rem);
      line-height: 1;
      font-weight: 900;
    }

    .plan-price span {
      color: var(--muted);
      font-weight: 800;
      margin-bottom: 8px;
    }

    .plan-list {
      display: grid;
      gap: 12px;
      margin: 0 0 26px;
      padding: 0;
      list-style: none;
    }

    .plan-list li {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 10px;
      color: var(--muted);
    }

    .plan-list li::before {
      content: "✓";
      width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      margin-top: 3px;
      border-radius: 50%;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--orange));
      font-size: 0.66rem;
      font-weight: 900;
    }

    .plan-card .button {
      width: 100%;
      margin-top: auto;
    }

    .plan-note {
      padding: 0 24px 26px;
      color: var(--muted);
      text-align: center;
      font-size: 0.95rem;
      font-weight: 700;
    }

    .payment-offer {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
      gap: 24px;
      align-items: stretch;
      width: min(1120px, 100%);
      padding: 14px;
      border-radius: 24px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 48%, var(--indigo) 100%);
      box-shadow: 0 34px 74px rgba(15, 23, 42, 0.24);
    }

    .payment-copy {
      padding: clamp(30px, 4vw, 48px);
    }

    .payment-copy .offer-label {
      margin-bottom: 16px;
      color: var(--yellow);
      background: transparent;
      padding: 0;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .payment-copy h2 {
      max-width: 580px;
      margin-bottom: 18px;
      color: #ffffff;
      font-size: 4.25rem;
      line-height: 1.07;
      font-weight: 900;
    }

    .payment-copy p {
      max-width: 590px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 26px;
    }

    .payment-list {
      display: grid;
      gap: 15px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .payment-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 10px;
      align-items: start;
      color: #ffffff;
      font-weight: 800;
    }

    .payment-list li::before {
      content: "✓";
      color: var(--yellow);
      font-weight: 900;
    }

    .payment-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 460px;
      padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 46px);
      border-radius: 18px;
      background: var(--paper);
      color: var(--ink);
      text-align: center;
    }

    .payment-card .plan-badge {
      margin: 0 auto 22px;
      color: var(--indigo);
      background: var(--primary-soft);
    }

    .payment-price {
      display: block;
      margin-bottom: 24px;
    }

    .payment-price strong {
      display: block;
      color: var(--ink);
      font-size: 5.5rem;
      line-height: 0.95;
      letter-spacing: 0;
    }

    .payment-price span {
      display: block;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .payment-price .value-anchor {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      padding: 8px 16px;
      border: 1px solid rgba(69, 86, 217, 0.16);
      border-radius: 999px;
      color: var(--indigo);
      background: linear-gradient(135deg, var(--primary-soft), #fff8e8);
      font-size: 0.9rem;
      font-weight: 950;
      text-transform: uppercase;
    }

    .payment-card .button {
      width: 100%;
      min-height: 58px;
      justify-content: center;
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      box-shadow: 0 18px 34px rgba(249, 115, 22, 0.24);
    }

    .payment-button-note {
      margin: 10px 0 0;
      color: var(--navy);
      font-size: 0.92rem;
      font-weight: 900;
    }

    .payment-trust {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 11px;
      margin: 18px 0 0;
      padding: 14px;
      border: 1px solid rgba(69, 86, 217, 0.12);
      border-radius: var(--radius);
      background: linear-gradient(180deg, var(--primary-soft), rgba(255, 243, 232, 0.58));
    }

    .payment-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 58px;
      padding: 9px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.74);
      color: var(--navy);
      font-size: 0.82rem;
      font-weight: 900;
      line-height: 1.16;
      text-align: left;
    }

    .payment-logo {
      width: 54px;
      min-width: 54px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid rgba(69, 86, 217, 0.14);
      border-radius: 6px;
      background: #ffffff;
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    }

    .payment-logo svg {
      width: 24px;
      height: 24px;
      flex: 0 0 auto;
      color: var(--orange);
    }

    .upi-logo {
      gap: 4px;
      color: #172554;
      font-size: 1.02rem;
      font-weight: 950;
      letter-spacing: 0;
    }

    .upi-logo::after {
      content: "";
      width: 15px;
      height: 18px;
      display: block;
      clip-path: polygon(0 0, 100% 50%, 0 100%, 24% 50%);
      background: linear-gradient(90deg, #f97316 0 48%, #22c55e 52% 100%);
    }

    .card-network-logo {
      gap: 3px;
      width: 90px;
      min-width: 90px;
      font-size: 0.5rem;
      font-weight: 950;
      line-height: 1;
    }

    .card-network-logo span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 23px;
      height: 16px;
      padding: 0 3px;
      border-radius: 3px;
      color: #ffffff;
    }

    .card-network-logo span:nth-child(1) {
      background: #173b8f;
    }

    .card-network-logo span:nth-child(2) {
      background: linear-gradient(90deg, #eb001b 0 50%, #f79e1b 50% 100%);
    }

    .card-network-logo span:nth-child(3) {
      color: var(--navy);
      background: var(--yellow);
    }

    .trust-proof-logo {
      color: var(--indigo);
      background: linear-gradient(180deg, #ffffff, var(--primary-soft));
    }

    .payment-note {
      max-width: 430px;
      margin: 20px auto 0;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 800;
      line-height: 1.45;
    }

    .final-cta-section {
      padding: 34px 0 84px;
      background: var(--wash);
    }

    .final-cta {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 34px;
      align-items: center;
      padding: 42px;
      border: 1px solid rgba(246, 200, 76, 0.35);
      border-radius: 18px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--navy) 50%, var(--indigo) 100%);
      box-shadow: 0 30px 68px rgba(15, 23, 42, 0.24);
    }

    .final-cta-label {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--yellow);
      font-size: 0.84rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .final-cta h2 {
      max-width: 690px;
      margin-bottom: 14px;
      color: #ffffff;
      font-size: 2.65rem;
      line-height: 1.08;
      font-weight: 950;
    }

    .final-cta p {
      max-width: 660px;
      margin-bottom: 22px;
      color: rgba(238, 242, 255, 0.82);
      font-size: 1.06rem;
      font-weight: 700;
    }

    .final-cta-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .final-cta-proof li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.9rem;
      font-weight: 850;
    }

    .final-cta-proof li::before {
      content: "✓";
      color: var(--yellow);
      font-weight: 950;
    }

    .final-cta-action {
      width: min(330px, 100%);
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.09);
      text-align: center;
    }

    .final-cta-price {
      display: block;
      margin-bottom: 16px;
      color: var(--yellow);
      font-size: 2.65rem;
      line-height: 1;
      font-weight: 950;
    }

    .final-cta-action .button {
      width: 100%;
    }

    .final-cta-action small {
      display: block;
      margin-top: 12px;
      color: rgba(238, 242, 255, 0.78);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .faq-section {
      background: var(--wash);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .faq-group {
      padding: 24px;
      border-color: rgba(69, 86, 217, 0.12);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: var(--soft-shadow);
    }

    .faq-group h3 {
      margin-bottom: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--line);
      color: var(--indigo);
      font-size: 1.18rem;
    }

    details {
      border-bottom: 1px solid var(--line);
    }

    details:last-child {
      border-bottom: 0;
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 0;
      color: var(--ink);
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: var(--orange);
      font-size: 1.2rem;
      font-weight: 900;
    }

    details[open] summary::after {
      content: "-";
    }

    details p {
      padding: 0 0 16px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .site-footer {
      padding: 52px 0 28px;
      color: rgba(238, 242, 255, 0.76);
      background: var(--primary-dark);
    }

    .disclaimer {
      margin-bottom: 34px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-left: 4px solid var(--orange);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.05);
      color: rgba(238, 242, 255, 0.76);
      font-size: 0.92rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 32px;
    }

    .footer-grid h3,
    .footer-grid h4 {
      color: #ffffff;
      margin: 0 0 12px;
      font-size: 1.125rem;
      line-height: 1.4;
    }

    .footer-grid p,
    .footer-grid a {
      color: rgba(238, 242, 255, 0.66);
      font-size: 0.94rem;
    }

    .footer-grid ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-grid a:hover {
      color: #ffffff;
    }

    .copyright {
      margin-top: 36px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(238, 242, 255, 0.45);
      font-size: 0.84rem;
      text-align: center;
    }

    .floating-btn {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 55;
      padding: 12px 16px;
      background: rgba(247, 248, 255, 0.96);
      border-top: 1px solid rgba(69, 86, 217, 0.12);
      box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.12);
    }

    .floating-btn a {
      position: relative;
      display: inline-flex;
      width: 100%;
      min-height: 52px;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: var(--radius);
      color: var(--ink);
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(249, 115, 22, 0.24);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .mobile-menu.open {
        display: block;
      }

      .hero-grid,
      .split-grid,
      .revenue-grid,
      .gradient-panel-grid,
      .final-cta,
      .payment-offer,
      .offer-top {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 34px;
      }

      .hero-image {
        width: min(600px, 100%);
        height: clamp(340px, 58vw, 430px);
        justify-self: center;
        align-self: center;
        margin: 0 auto;
      }

      .steps-grid,
      .features-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .audience-grid .audience-card:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(340px, 100%);
      }

      .offer-proof {
        text-align: left;
      }
    }

    @media (max-width: 720px) {
      body {
        padding-top: 68px;
        padding-bottom: 78px;
      }

      .container {
        width: min(100% - 28px, 1180px);
      }

      .nav {
        min-height: 68px;
      }

      .mobile-menu {
        top: 68px;
      }

      .logo {
        gap: 8px;
      }

      .logo-mark {
        width: 42px;
        height: 42px;
      }

      .logo-title {
        font-size: 1rem;
      }

      .hero {
        padding: 24px 0 48px;
      }

      .hero .eyebrow {
        padding: 9px 13px;
        font-size: 0.82rem;
        line-height: 1.35;
      }

      h1 {
        font-size: 2.45rem;
      }

      .hero-image {
        display: block;
        width: min(100%, 560px);
        height: auto;
        aspect-ratio: 1200 / 795;
        justify-self: center;
        align-self: center;
        margin: 28px auto 0;
      }

      .hero-image img {
        height: 100%;
        object-fit: contain;
        object-position: center;
      }

      .mini-stats,
      .audience-grid,
      .steps-grid,
      .features-grid,
      .faq-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust-row {
        gap: 12px;
      }

      .trust-item {
        white-space: normal;
      }

      .audience-hub {
        width: min(280px, 100%);
        min-height: 280px;
        padding: 28px;
      }

      .audience-grid .audience-card:last-child {
        grid-column: auto;
        width: 100%;
      }

      .soft-band,
      .section {
        padding: 58px 0;
      }

      .section-heading {
        margin-bottom: 30px;
      }

      .solution-card,
      .step-card,
      .feature-card,
      .faq-group,
      .plan-card {
        padding: 22px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        padding: 16px;
      }

      .payment-offer {
        padding: 10px;
        border-radius: 18px;
      }

      .payment-copy {
        padding: 26px 20px 12px;
      }

      .payment-card {
        min-height: auto;
        padding: 32px 22px;
      }

      .final-cta-section {
        padding: 24px 0 60px;
      }

      .final-cta {
        padding: 30px 22px;
      }

      .final-cta h2 {
        font-size: 2.2rem;
      }

      .final-cta-action {
        width: 100%;
      }

      .payment-copy h2 {
        font-size: 2.5rem;
      }

      .payment-price strong {
        font-size: 4rem;
      }

      .plan-card.featured-plan {
        transform: none;
      }

      .white-card {
        padding: 8px 0 0;
      }

      .gradient-panel {
        width: min(100% - 28px, 1120px);
        padding: 34px 22px;
        margin-top: 16px;
      }

      .mini-stat {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .mini-stat:last-child {
        border-bottom: 0;
      }

      .floating-btn {
        display: block;
      }
    }
      /* Colorful, feature-specific toolkit illustrations. */
    .features-section .feature-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: rgba(111, 163, 255, 0.10);
      box-shadow: inset 0 0 0 1px rgba(168, 194, 255, 0.12);
    }
    .features-section .feature-icon svg { width: 56px; height: 56px; }
    .features-section .feature-card:nth-child(2) .feature-icon { background: rgba(255, 197, 104, .10); }
    .features-section .feature-card:nth-child(3) .feature-icon { background: rgba(194, 155, 255, .12); }
    .features-section .feature-card:nth-child(4) .feature-icon { background: rgba(76, 214, 174, .10); }
    .features-section .feature-card:nth-child(5) .feature-icon { background: rgba(86, 221, 200, .10); }
    .features-section .feature-card:nth-child(6) .feature-icon { background: rgba(255, 158, 169, .10); }
      /* Comparison rows use the same rounded surfaces as the page cards. */
    .comparison-wrap {
      overflow-x: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      padding: 0 2px 12px;
    }
    .comparison-wrap table {
      table-layout: fixed;
      border-collapse: separate;
      border-spacing: 0 12px;
      min-width: 720px;
    }
    .comparison-wrap th,
    .comparison-wrap td {
      padding: 24px;
      vertical-align: middle;
      font-size: 1rem;
      line-height: 1.55;
      border: 0;
      box-shadow: none;
    }
    .comparison-wrap thead th {
      background: transparent;
      color: var(--muted);
      font-size: .875rem;
      font-weight: 700;
      text-transform: none;
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .comparison-wrap th:first-child { width: 16%; }
    .comparison-wrap th:nth-child(2),
    .comparison-wrap th:nth-child(3) { width: 25%; }
    .comparison-wrap th:last-child { width: 34%; }
    .comparison-wrap tbody td {
      background: #fff;
      color: #526078;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .comparison-wrap tbody td:first-child {
      color: var(--ink);
      font-weight: 800;
      border-left: 1px solid var(--line);
      border-radius: var(--radius) 0 0 var(--radius);
    }
    .comparison-wrap thead th.us {
      background: var(--primary);
      color: #fff;
      border-radius: var(--radius);
      font-weight: 800;
      font-size: 1rem;
    }
    .comparison-wrap tbody td.us {
      background: #eef2ff;
      color: #293a96;
      font-weight: 700;
      border-color: #d9e0fa;
      border-left: 1px solid #d9e0fa;
      border-right: 1px solid #d9e0fa;
      border-radius: 0 var(--radius) var(--radius) 0;
      box-shadow: none;
    }
    .comparison-value { display: flex; align-items: flex-start; gap: 12px; }
    .comparison-check {
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      margin-top: 2px;
      border-radius: 50%;
      background: #d7f4e9;
      color: #137553;
      display: inline-grid;
      place-items: center;
    }
    .comparison-scroll-hint { display: none; }
    @media (max-width: 760px) {
      .comparison-wrap th, .comparison-wrap td { padding: 18px 16px; }
      .comparison-scroll-hint { display: block; margin: 0 0 8px; color: var(--muted); font-size: .875rem; text-align: right; }
    }
      /* Course emphasis: navy surfaces, yellow accents, bright green checks. */
    .comparison-wrap thead th.us {
      background: linear-gradient(135deg, #101b35, #293a96);
      color: #f6c84c;
      box-shadow: inset 4px 0 0 #f6c84c;
    }
    .comparison-wrap tbody td.us {
      background: linear-gradient(135deg, #101b35, #243477);
      color: #ffffff;
      border-color: #35477b;
      border-left-color: #f6c84c;
      box-shadow: inset 3px 0 0 #f6c84c;
    }
    .comparison-wrap .comparison-check {
      background: #164b43;
      color: #75f5b4;
      box-shadow: 0 0 0 1px rgba(117, 245, 180, .35), 0 0 12px rgba(76, 214, 174, .13);
    }
      .comparison-wrap .comparison-compact { display: none; }
    @media (max-width: 1199px) {
      .comparison-wrap > table:not(.comparison-compact) { display: none; }
      .comparison-scroll-hint { display: none; }
      .comparison-wrap { overflow: visible; padding: 0; }
      .comparison-wrap .comparison-compact {
        display: table;
        width: 100%;
        min-width: 0;
        table-layout: fixed;
        border-spacing: 0 8px;
      }
      .comparison-wrap .comparison-compact th,
      .comparison-wrap .comparison-compact td {
        width: 50%;
        padding: 18px;
        overflow-wrap: anywhere;
        font-size: 1rem;
      }
      .comparison-wrap .comparison-compact .comparison-category {
        padding: 20px 0 2px;
        background: transparent;
        color: var(--ink);
        font-weight: 800;
        text-transform: none;
        border: 0;
      }
      .comparison-wrap .comparison-compact .comparison-alternatives {
        color: #526078;
        font-weight: 400;
      }
      .comparison-source {
        display: block;
        font-size: .75rem;
        font-weight: 700;
        color: #526078;
        margin-bottom: 4px;
      }
      .comparison-alternatives > div + div {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--line);
      }
      .comparison-compact .comparison-value { gap: 10px; }
      .comparison-compact .comparison-value > span:last-child { min-width: 0; }
    }
    @media (max-width: 420px) {
      .comparison-wrap .comparison-compact th,
      .comparison-wrap .comparison-compact td { padding: 14px 10px; font-size: .875rem; }
      .comparison-compact .comparison-value { gap: 7px; }
      .comparison-compact .comparison-check { flex-basis: 18px; width: 18px; height: 18px; }
    }
      /* Unified navy palette with cooler light-section transitions. */
    .hero {
      background: linear-gradient(135deg, #081225 0%, #101b35 52%, #293a96 100%);
    }
    .features-section {
      background: linear-gradient(135deg, #081225 0%, #0c162c 48%, #101b35 100%);
    }
    .soft-band {
      background: linear-gradient(180deg, #f8f9ff 0%, #eef2ff 58%, #f4f6ff 100%);
    }
    .pricing-section {
      background: linear-gradient(180deg, #f8f9ff 0%, #eef2ff 48%, #f4f6ff 100%);
    }
    .copyright {
      color: rgba(238, 242, 255, 0.72);
    }
      /* Typography refinement; original saved in LP_FINAL-before-typography.html. */
    .hero h1 { font-size: clamp(2.125rem, 4.6vw, 4rem); line-height: 1.15; }
    .section-heading h2 { font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1.18; }
    .features-section .section-heading h2 { font-size: clamp(1.75rem, 3.6vw, 3rem); line-height: 1.18; }
    .features-section .feature-card h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.22; }
    .features-section .feature-card p,
    .payment-copy p { font-weight: 400; line-height: 1.65; }
    .payment-copy h2 { font-size: clamp(1.75rem, 3.3vw, 2.75rem); line-height: 1.18; }
    .payment-price strong { font-size: clamp(3rem, 5vw, 4.25rem); line-height: 1.08; }
    .final-cta h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); line-height: 1.18; }
    .payment-trust-item { font-size: .875rem; font-weight: 600; line-height: 1.4; }
    .audience-card p { font-size: 1rem; line-height: 1.55; }
    .audience-kicker,
    .features-section .section-heading::before,
    .offer-label,
    .final-cta-label,
    .copyright { font-size: .875rem; }
    @media (max-width: 1199px) {
      .comparison-compact .comparison-source { font-size: .875rem; line-height: 1.45; }
    }
    @media (max-width: 720px) {
      .hero h1 { font-size: clamp(2.125rem, 5.3vw, 2.375rem); }
      .section-heading h2,
      .features-section .section-heading h2,
      .payment-copy h2 { font-size: clamp(1.75rem, 4.45vw, 2rem); }
      .features-section .feature-card h3 { font-size: 1.375rem; }
      .payment-price strong { font-size: clamp(3rem, 7.3vw, 3.25rem); }
      .final-cta h2 { font-size: clamp(1.75rem, 4.2vw, 1.875rem); }
      .hero .eyebrow { font-size: .875rem; line-height: 1.45; }
    }
    @media (max-width: 420px) {
      .comparison-wrap .comparison-compact th,
      .comparison-wrap .comparison-compact td { font-size: .9375rem; line-height: 1.55; }
    }
      /* Final CTA: solid brand navy and the established yellow-orange action. */
    .final-cta {
      background: var(--primary-dark);
      border: 1px solid rgba(246, 200, 76, .25);
      box-shadow: 0 18px 42px rgba(8, 18, 37, .16);
    }
    .final-cta-action {
      background: var(--navy);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 12px;
    }
    .final-cta-price { color: var(--yellow); }
    .final-cta-action .button {
      min-height: 54px;
      padding: 12px 20px;
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      color: var(--ink);
      border: 1px solid rgba(246, 200, 76, .7);
      border-radius: 10px;
      font-weight: 700;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 6px 16px rgba(0, 0, 0, .2);
    }
    .final-cta-action .button::after { content: none; }
    .final-cta-action .button:hover {
      background: linear-gradient(90deg, var(--yellow), var(--orange-dark));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 8px 20px rgba(0, 0, 0, .24);
      transform: translateY(-1px);
    }
    .final-cta-action .button:focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 4px;
    }
    .final-cta-action .button:active { transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .final-cta-action .button { transition: none; }
      .final-cta-action .button:hover { transform: none; }
    }
      .payment-copy h2 { color: var(--yellow); }
      /* Preserve the entire hero image on desktop and tablet. */
    @media (min-width: 721px) {
      .hero-image { height: auto; }
      .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
      }
    }
      /* Restore the original filled desktop hero frame. */
    @media (min-width: 981px) {
      .hero-image {
        height: clamp(380px, 36vw, 470px);
        display: block;
        align-self: start;
        justify-self: end;
        background: rgba(8, 18, 37, 0.9);
      }
      .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
      }
    }
      /* Audience hover motion inspired by the supplied reference. */
    @media (hover: hover) and (pointer: fine) {
      .audience-card { transition: transform 250ms ease, box-shadow 250ms ease; }
      .audience-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 40px rgba(15, 23, 42, .14);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .audience-card { transition: none; }
      .audience-card:hover { transform: none; }
    }
  
.info-page{padding:48px 0 72px}.info-layout{width:min(860px,calc(100% - 32px));margin:auto}.breadcrumbs{font-size:14px;color:#64748b;margin-bottom:24px}.breadcrumbs a:hover{color:#4556d9}.info-page h1{font-size:clamp(32px,5vw,48px);line-height:1.15;color:#101b35;margin-bottom:30px}.article-content{background:#fff;border:1px solid #e2e8f0;border-radius:8px;padding:clamp(22px,4vw,48px);font-size:16px;line-height:1.8;overflow-wrap:anywhere}.article-content h2,.article-content h3,.article-content h4{color:#101b35;line-height:1.35;margin:32px 0 14px}.article-content h2{font-size:25px}.article-content h3{font-size:21px}.article-content p{margin-bottom:20px}.article-content ul,.article-content ol{padding-left:25px;margin-bottom:24px}.article-content li{margin:8px 0}.article-content a{color:#4556d9;text-decoration:underline;text-underline-offset:3px}.article-content blockquote{margin:24px 0;padding-left:20px;border-left:3px solid #4556d9}.skip-link{position:absolute;left:16px;top:-80px;z-index:100;background:white;padding:12px}.skip-link:focus{top:12px}
/* Contact address: muted, accessible click-to-reveal disclosure. */
.legal-footer-text{font-size:12px;color:#888888;text-align:left;margin-top:20px;font-family:sans-serif}
.registered-address{display:inline;border:0;padding:0}
.registered-address summary{display:inline;cursor:pointer;text-decoration:underline;color:#555555;list-style:none;font-size:inherit;padding:0}
.registered-address summary::after,.registered-address[open] summary::after{display:none;content:none}.registered-address summary::-webkit-details-marker{display:none}
.registered-address summary:hover{color:#333333}
.registered-address summary:focus-visible{outline:2px solid #4556d9;outline-offset:4px}
.registered-address address{font-style:normal;margin-top:8px;color:#888888}

/* Emphasize online support while keeping the office disclosure secondary. */
.contact-support-box{width:fit-content;max-width:100%;padding:22px 34px;border:1px solid #cbd3fa;border-radius:999px;background:#f0f3ff;margin:24px 0 0}
.article-content .contact-support-box p{margin:0;font-size:16px;line-height:1.75}
.article-content .contact-support-box p+p{margin-top:5px}
.contact-support-box strong{color:#101b35}
.article-content .contact-support-box a{color:#3546c5;font-weight:600}
.article-content .legal-footer-text{margin-top:32px;padding-top:16px;border-top:1px solid #eef0f4;color:#737b88;font-size:12px}
.legal-footer-text>strong{font-weight:400}
.legal-footer-text .registered-address summary{font-weight:400;color:#687180;text-underline-offset:3px}
.legal-footer-text .registered-address summary:hover{color:#3546c5}
.legal-footer-text .registered-address address{color:#737b88}
@media(max-width:600px){.contact-support-box{width:100%;border-radius:28px;padding:20px}.article-content .contact-support-box p{font-size:15px}.contact-support-box p+p{margin-top:12px}.contact-support-box strong{display:block}}

.info-layout > .legal-footer-text{margin:20px 0 0;padding:0 clamp(22px,4vw,48px);border:0;color:#737b88;overflow-wrap:anywhere}

/* Language navigation */
.language-bar{background:#111727;color:#fff;border-bottom:1px solid rgba(255,255,255,.08);font-size:14px;padding:8px 16px}
.language-bar-inner{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:4px 10px;max-width:1180px;margin:auto}
.language-bar ul{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;list-style:none;padding:0;margin:0;gap:0}
.language-bar li{display:flex;align-items:center}
.language-bar li+li::before{content:"|";color:#fff;opacity:.8;margin:0 10px}
.language-bar a{color:#c7c9d1;display:inline-block;padding:3px 0;text-decoration:none;line-height:1.6}
.language-bar a:hover{color:#fff;text-decoration:underline;text-underline-offset:4px}
.language-bar a:focus-visible{outline:2px solid #f6c84c;outline-offset:4px;border-radius:2px}
@media(max-width:600px){.language-bar{padding:10px 16px}.language-bar-inner{gap:4px}.language-bar-inner>span{width:100%;text-align:center}.language-bar li+li::before{margin:0 7px}.language-bar a{padding:5px 0}}
