:root {
      /* PALETTE: mint + sage + lilac */
      --bg: #f5f7fb;
      --bg-soft: #f9fbff;
      --surface: #ffffff;
      --surface-soft: #f3f6fb;

      --text-main: #101827;
      --text-soft: #5f6c86;
      --text-softer: #9aa4c1;

      --primary: #2a9d8f;
      --primary-strong: #1b7a6d;
      --primary-soft: #c9f1ea;

      --accent: #8b5cf6;
      --accent-soft: #e5ddff;

      --chip-bg: #e3f2ed;
      --chip-border: #b8e0cf;

      --border-subtle: #dde3f0;
      --border-strong: #c2cbe6;

      --radius-lg: 1.25rem;
      --radius-md: 0.9rem;
      --radius-pill: 999px;

      --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.12);
      --shadow-subtle: 0 12px 35px rgba(15, 23, 42, 0.08);

      --transition-fast: 160ms ease-out;
      --transition-med: 220ms ease-out;
      --nav-height: 68px;
    }

    /* Responsive nav height */
    @media (max-width: 900px) {
      :root {
        --nav-height: auto;
      }
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
      color: var(--text-main);
      background:
        radial-gradient(circle at top left, rgba(129, 230, 217, 0.22), transparent 55%),
        radial-gradient(circle at top right, rgba(196, 181, 253, 0.23), transparent 60%),
        var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      /* Prevent horizontal scroll on mobile */
      overflow-x: hidden;
      width: 100%;
    }

    a {
      color: var(--accent);
      text-decoration: none;
      transition: color var(--transition-fast);
    }
    a:hover {
      color: #7c3aed;
    }

    .page {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem 3.5rem;
      width: 100%;
    }

    /* Responsive page padding */
    @media (max-width: 768px) {
      .page {
        padding: 0 1.2rem 2.5rem;
      }
    }

    @media (max-width: 480px) {
      .page {
        padding: 0 1rem 2rem;
      }
    }

    /* HEADER */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: linear-gradient(
        to bottom,
        rgba(249, 250, 252, 0.96),
        rgba(249, 250, 252, 0.9),
        transparent
      );
      padding: 0.6rem 1.5rem 0.5rem;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
      border-bottom: 1px solid rgba(221, 227, 240, 0.9);
      min-height: var(--nav-height);
      width: 100%;
    }

    @media (max-width: 900px) {
      header.site-header {
        flex-wrap: wrap;
        gap: 0.7rem;
        padding: 0.8rem 1.2rem;
        min-height: auto;
      }
    }

    @media (max-width: 480px) {
      header.site-header {
        padding: 0.7rem 1rem;
        gap: 0.5rem;
      }
    }

    .logo-block {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .logo-block {
        gap: 0.5rem;
      }
    }

    .logo-block img {
      height: 46px;
      width: auto;
      display: block;
      border-radius: 0.7rem;
      box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4),
        0 8px 22px rgba(15, 23, 42, 0.12);
    }

    @media (max-width: 640px) {
      .logo-block img {
        height: 38px;
      }
    }

    @media (max-width: 480px) {
      .logo-block img {
        height: 34px;
      }
    }

    .logo-text-wrap {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-title {
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 0.9rem;
      text-transform: uppercase;
      color: #0f172a;
    }

    @media (max-width: 640px) {
      .logo-title {
        font-size: 0.82rem;
      }
    }

    @media (max-width: 480px) {
      .logo-title {
        font-size: 0.75rem;
      }
    }

    .logo-tagline {
      font-size: 0.78rem;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .logo-tagline {
        font-size: 0.72rem;
      }
    }

    @media (max-width: 480px) {
      .logo-tagline {
        font-size: 0.68rem;
        display: none; /* Hide tagline on very small screens */
      }
    }

    nav.main-nav {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      padding: 0.25rem;
      border-radius: var(--radius-pill);
      background: rgba(244, 247, 252, 0.95);
      border: 1px solid rgba(210, 219, 238, 0.95);
    }

    @media (max-width: 900px) {
      nav.main-nav {
        display: none; /* Hidden by default on mobile */
        width: 100%;
        order: 3;
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.5rem;
      }

      nav.main-nav.mobile-open {
        display: flex; /* Show when toggled */
      }
    }

    nav.main-nav a {
      position: relative;
      margin: 0 0.1rem;
      font-size: 0.85rem;
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-pill);
      color: var(--text-soft);
      transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
    }

    @media (max-width: 900px) {
      nav.main-nav a {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0.6rem 0.9rem;
      }
    }

    @media (max-width: 640px) {
      nav.main-nav a {
        font-size: 0.82rem;
      }
    }

    nav.main-nav a:hover {
      color: var(--primary-strong);
      background: #d9f2ec;
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      nav.main-nav a:hover {
        transform: none; /* Disable lift on mobile */
      }
    }

    nav.main-nav a.active {
      background: var(--primary-strong);
      color: #f9fafb;
      box-shadow: 0 10px 24px rgba(27, 122, 109, 0.45);
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.85rem;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .header-cta {
        width: 100%;
        justify-content: center;
        order: 2;
        gap: 0.5rem;
      }
    }

    @media (max-width: 640px) {
      .header-cta {
        font-size: 0.8rem;
        gap: 0.4rem;
      }
    }

    @media (max-width: 480px) {
      .header-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
      }

      .header-cta .btn {
        width: 100%;
      }
    }

    .link-quiet {
      font-size: 0.8rem;
      color: var(--text-soft);
      text-decoration: underline dotted rgba(148, 163, 184, 0.9);
      text-underline-offset: 3px;
    }

    @media (max-width: 640px) {
      .link-quiet {
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .link-quiet {
        display: none; /* Hide on very small screens to save space */
      }
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.25rem;
      border-radius: var(--radius-pill);
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      font-weight: 500;
      letter-spacing: 0.01em;
      transition:
        background-color var(--transition-med),
        color var(--transition-med),
        border-color var(--transition-med),
        box-shadow var(--transition-med),
        transform var(--transition-fast);
    }

    @media (max-width: 640px) {
      .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.88rem;
        width: 100%; /* Full width on very small screens */
      }
    }

    .btn-primary {
      background-image: linear-gradient(135deg, var(--primary), #4ade80);
      color: #ecfdf5;
      box-shadow: 0 14px 38px rgba(16, 185, 129, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(16, 185, 129, 0.45);
    }

    @media (max-width: 900px) {
      .btn-primary:hover {
        transform: none; /* Disable lift on mobile for better touch UX */
      }
    }

    .btn-outline {
      background: #f1f5f9;
      border-color: #cbd5e1;
      color: var(--text-main);
      box-shadow: 0 10px 26px rgba(148, 163, 184, 0.25);
    }

    .btn-outline:hover {
      background: #e2e8f0;
      border-color: #94a3b8;
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      .btn-outline:hover {
        transform: none;
      }
    }

    .btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* MAIN */
    main {
      margin-top: 0.4rem;
      width: 100%;
    }

    /* HERO */
    .hero {
      padding: 2.6rem 0 1rem;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
      gap: 2.2rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.6rem;
        padding: 2rem 0 1rem;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding: 1.5rem 0 0.8rem;
        gap: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 1.2rem 0 0.6rem;
        gap: 1rem;
      }
    }

    .hero-eyebrow {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      margin-bottom: 0.75rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .hero-eyebrow {
        font-size: 0.72rem;
        gap: 0.4rem;
      }
    }

    @media (max-width: 480px) {
      .hero-eyebrow {
        font-size: 0.68rem;
        margin-bottom: 0.5rem;
      }
    }

    .hero-eyebrow::before {
      content: "";
      width: 18px;
      height: 1px;
      background: linear-gradient(to right, rgba(139, 92, 246, 0.9), transparent);
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .hero-eyebrow::before {
        width: 14px;
      }
    }

    .hero h1 {
      font-size: clamp(2.2rem, 2.6vw + 1.4rem, 2.9rem);
      line-height: 1.08;
      margin: 0 0 0.9rem;
      letter-spacing: -0.03em;
      color: #020617;
    }

    @media (max-width: 640px) {
      .hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.6rem;
      }
    }

    .hero h1 span.highlight {
      background-image: linear-gradient(120deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block; /* Better rendering on mobile */
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--text-soft);
      margin-bottom: 1.4rem;
      max-width: 32rem;
    }

    @media (max-width: 640px) {
      .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 1rem;
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    @media (max-width: 640px) {
      .hero-actions {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
      }

      .hero-actions .btn {
        width: 100%;
      }
    }

    .hero-meta {
      font-size: 0.82rem;
      color: var(--text-softer);
    }

    @media (max-width: 640px) {
      .hero-meta {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 480px) {
      .hero-meta {
        font-size: 0.75rem;
      }
    }

    .hero-meta span {
      color: var(--text-main);
      font-weight: 500;
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      gap: 0.95rem;
    }

    @media (max-width: 900px) {
      .hero-right {
        order: 2;
      }
    }

    @media (max-width: 640px) {
      .hero-right {
        gap: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero-right {
        gap: 0.7rem;
      }
    }

    .hero-metrics-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    @media (max-width: 900px) {
      .hero-metrics-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .hero-metrics-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.6rem;
      }
    }

    @media (max-width: 480px) {
      .hero-metrics-row {
        gap: 0.5rem;
      }
    }

    .metric-chip {
      background: var(--chip-bg);
      border-radius: 0.8rem;
      border: 1px solid var(--chip-border);
      padding: 0.7rem 0.75rem;
      box-shadow: var(--shadow-subtle);
    }

    @media (max-width: 640px) {
      .metric-chip {
        padding: 0.6rem 0.65rem;
      }
    }

    @media (max-width: 480px) {
      .metric-chip {
        padding: 0.55rem 0.6rem;
      }
    }

    .metric-chip-label {
      font-size: 0.72rem;
      color: var(--text-softer);
      margin-bottom: 0.1rem;
    }

    @media (max-width: 640px) {
      .metric-chip-label {
        font-size: 0.68rem;
      }
    }

    @media (max-width: 480px) {
      .metric-chip-label {
        font-size: 0.65rem;
      }
    }

    .metric-chip-value {
      font-size: 0.93rem;
      font-weight: 600;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .metric-chip-value {
        font-size: 0.88rem;
      }
    }

    @media (max-width: 480px) {
      .metric-chip-value {
        font-size: 0.85rem;
      }
    }

    .hero-note-card {
      background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
      border-radius: 0.9rem;
      border: 1px solid #d0e7ff;
      padding: 0.8rem 0.85rem;
      font-size: 0.84rem;
      color: #0f172a;
      box-shadow: 0 12px 32px rgba(148, 163, 184, 0.28);
    }

    @media (max-width: 640px) {
      .hero-note-card {
        font-size: 0.8rem;
        padding: 0.7rem 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .hero-note-card {
        font-size: 0.78rem;
        padding: 0.65rem 0.7rem;
      }
    }

    .hero-note-card strong {
      font-weight: 600;
    }

    /* HOW IT WORKS */
    .how-it-works {
      padding: 1.6rem 0 0.4rem;
    }

    @media (max-width: 640px) {
      .how-it-works {
        padding: 1.2rem 0 0.4rem;
      }
    }

    @media (max-width: 480px) {
      .how-it-works {
        padding: 1rem 0 0.3rem;
      }
    }

    .how-it-works-inner {
      background: var(--surface);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
      padding: 1.35rem 1.4rem 1.3rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 1.6rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .how-it-works-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .how-it-works-inner {
        padding: 1.2rem 1.2rem 1.1rem;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .how-it-works-inner {
        padding: 1rem;
        gap: 0.8rem;
      }
    }

    .how-copy-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .how-copy-title {
        font-size: 0.98rem;
      }
    }

    @media (max-width: 480px) {
      .how-copy-title {
        font-size: 0.95rem;
      }
    }

    .how-copy-body {
      font-size: 0.92rem;
      color: var(--text-soft);
      margin-bottom: 0.7rem;
    }

    @media (max-width: 640px) {
      .how-copy-body {
        font-size: 0.88rem;
        margin-bottom: 0.6rem;
      }
    }

    @media (max-width: 480px) {
      .how-copy-body {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
      }
    }

    .how-copy-points {
      font-size: 0.88rem;
      color: var(--text-soft);
      padding-left: 1rem;
      margin: 0.2rem 0 0;
    }

    @media (max-width: 640px) {
      .how-copy-points {
        font-size: 0.84rem;
        padding-left: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .how-copy-points {
        font-size: 0.82rem;
        padding-left: 0.8rem;
      }
    }

    .how-video {
      border-radius: 0.95rem;
      overflow: hidden;
      background: radial-gradient(circle at top left, #0f172a, #4b5563);
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #e5e7eb;
      font-size: 0.82rem;
      text-align: center;
      padding: 0.8rem;
      position: relative;
      border: 1px solid rgba(15, 23, 42, 0.18);
      min-height: 200px;
    }

    @media (max-width: 640px) {
      .how-video {
        font-size: 0.78rem;
        padding: 0.6rem;
        min-height: 180px;
      }
    }

    @media (max-width: 480px) {
      .how-video {
        font-size: 0.75rem;
        padding: 0.5rem;
        min-height: 160px;
      }
    }

    .how-video button {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(248, 250, 252, 0.7);
      background: rgba(15, 23, 42, 0.9);
      color: #f9fafb;
      padding: 0.4rem 0.95rem;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      backdrop-filter: blur(6px);
      transition:
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
    }

    @media (max-width: 640px) {
      .how-video button {
        font-size: 0.76rem;
        padding: 0.35rem 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .how-video button {
        font-size: 0.74rem;
        padding: 0.3rem 0.75rem;
      }
    }

    .how-video button::before {
      content: "▶";
      font-size: 0.7rem;
    }

    @media (max-width: 480px) {
      .how-video button::before {
        font-size: 0.65rem;
      }
    }

    .how-video button:hover {
      background: rgba(15, 23, 42, 0.96);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    }

    @media (max-width: 900px) {
      .how-video button:hover {
        transform: none;
      }
    }

    /* SECTION BASE */
    section {
      scroll-margin-top: calc(var(--nav-height) + 12px);
    }

    @media (max-width: 900px) {
      section {
        scroll-margin-top: 80px;
      }
    }

    section.block {
      padding: 2.6rem 0 1rem;
    }

    @media (max-width: 640px) {
      section.block {
        padding: 2rem 0 0.8rem;
      }
    }

    @media (max-width: 480px) {
      section.block {
        padding: 1.5rem 0 0.6rem;
      }
    }

    section h2 {
      font-size: 1.4rem;
      margin-bottom: 0.6rem;
      letter-spacing: -0.02em;
      color: #020617;
    }

    @media (max-width: 640px) {
      section h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
      }
    }

    @media (max-width: 480px) {
      section h2 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
      }
    }

    section p.section-intro {
      margin-top: 0;
      font-size: 0.94rem;
      color: var(--text-soft);
      max-width: 640px;
    }

    @media (max-width: 640px) {
      section p.section-intro {
        font-size: 0.88rem;
      }
    }

    @media (max-width: 480px) {
      section p.section-intro {
        font-size: 0.85rem;
      }
    }

    .pill {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.75rem;
      border-radius: var(--radius-pill);
      font-size: 0.72rem;
      background: var(--primary-soft);
      border: 1px solid #9ae6d9;
      color: #047857;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    @media (max-width: 640px) {
      .pill {
        font-size: 0.68rem;
        padding: 0.18rem 0.65rem;
      }
    }

    @media (max-width: 480px) {
      .pill {
        font-size: 0.65rem;
        padding: 0.15rem 0.6rem;
      }
    }

    .pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      margin-right: 0.45rem;
      background: radial-gradient(circle at center, #22c55e, #15803d);
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .pill::before {
        width: 6px;
        height: 6px;
        margin-right: 0.35rem;
      }
    }

    /* FEATURES GRID + CARD HOVER BORDER */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 1.25rem;
    }

    @media (max-width: 900px) {
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .features-grid {
        gap: 1rem;
        margin-top: 1rem;
      }
    }

    @media (max-width: 480px) {
      .features-grid {
        gap: 0.8rem;
        margin-top: 0.8rem;
      }
    }

    .feature-card {
      background: var(--surface);
      border-radius: var(--radius-md);
      padding: 1.1rem 1.1rem 1rem;
      border: 1px solid var(--border-subtle);
      font-size: 0.9rem;
      box-shadow: var(--shadow-subtle);
      position: relative;
      transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med),
        background var(--transition-med);
    }

    @media (max-width: 640px) {
      .feature-card {
        padding: 1rem;
        font-size: 0.88rem;
      }
    }

    @media (max-width: 480px) {
      .feature-card {
        padding: 0.9rem;
        font-size: 0.86rem;
      }
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: calc(var(--radius-md) + 2px);
      border: 2px solid transparent;
      pointer-events: none;
      transition: border-color var(--transition-med);
    }

    .feature-card:hover,
    .feature-card:focus-within {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(148, 163, 184, 0.32);
      background: linear-gradient(180deg, #ffffff, #f5f3ff);
      border-color: rgba(191, 219, 254, 0.001);
    }

    @media (max-width: 900px) {
      .feature-card:hover,
      .feature-card:focus-within {
        transform: none; /* Disable lift on mobile */
      }
    }

    .feature-card:hover::before,
    .feature-card:focus-within::before {
      border-color: rgba(139, 92, 246, 0.9);
    }

    .feature-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--text-softer);
      margin-bottom: 0.35rem;
    }

    @media (max-width: 640px) {
      .feature-label {
        font-size: 0.65rem;
      }
    }

    @media (max-width: 480px) {
      .feature-label {
        font-size: 0.62rem;
      }
    }

    .feature-card h3 {
      margin: 0 0 0.4rem;
      font-size: 1.02rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .feature-card h3 {
        font-size: 0.96rem;
        margin-bottom: 0.35rem;
      }
    }

    @media (max-width: 480px) {
      .feature-card h3 {
        font-size: 0.92rem;
        margin-bottom: 0.3rem;
      }
    }

    .feature-card p {
      margin: 0;
      color: var(--text-soft);
    }

    .feature-card ul {
      padding-left: 1.1rem;
      margin: 0.6rem 0 0;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .feature-card ul {
        padding-left: 1rem;
        margin-top: 0.5rem;
      }
    }

    @media (max-width: 480px) {
      .feature-card ul {
        padding-left: 0.9rem;
        margin-top: 0.4rem;
      }
    }

    .feature-card li {
      margin-bottom: 0.35rem;
    }

    @media (max-width: 640px) {
      .feature-card li {
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .feature-card li {
        margin-bottom: 0.25rem;
      }
    }

    /* SCREENS STRIP – fixed image, no crop, pop-out card */
    .screens-section {
      margin-top: 1.9rem;
      background: var(--surface-soft);
      border-radius: 1rem;
      border: 1px dashed var(--border-subtle);
      padding: 1rem 1.1rem 1.15rem;
    }

    @media (max-width: 640px) {
      .screens-section {
        margin-top: 1.5rem;
        padding: 0.9rem 1rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .screens-section {
        margin-top: 1.2rem;
        padding: 0.8rem 0.9rem 0.9rem;
      }
    }

    .screens-title {
      font-size: 1.02rem;
      margin-bottom: 0.3rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .screens-title {
        font-size: 0.96rem;
      }
    }

    @media (max-width: 480px) {
      .screens-title {
        font-size: 0.92rem;
      }
    }

    .screens-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
      margin-top: 0.85rem;
    }

    @media (max-width: 900px) {
      .screens-strip {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.8rem;
      }
    }

    @media (max-width: 640px) {
      .screens-strip {
        gap: 0.7rem;
        margin-top: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .screens-strip {
        gap: 0.6rem;
      }
    }

    .screens-strip figure {
      margin: 0;
      background: #ffffff;
      border-radius: 0.9rem;
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      font-size: 0.78rem;
      color: var(--text-soft);
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 26px rgba(148, 163, 184, 0.18);
      position: relative;
      transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med),
        background var(--transition-med);
    }

    @media (max-width: 640px) {
      .screens-strip figure {
        font-size: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .screens-strip figure {
        font-size: 0.72rem;
      }
    }

    .screens-strip figure::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: calc(0.9rem + 2px);
      border: 2px solid transparent;
      pointer-events: none;
      transition: border-color var(--transition-med);
    }

    .screens-strip figure:hover,
    .screens-strip figure:focus-within {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(148, 163, 184, 0.32);
      border-color: rgba(191, 219, 254, 0.001);
      background: linear-gradient(180deg, #ffffff, #f5f3ff);
    }

    @media (max-width: 900px) {
      .screens-strip figure:hover,
      .screens-strip figure:focus-within {
        transform: none;
      }
    }

    .screens-strip figure:hover::before,
    .screens-strip figure:focus-within::before {
      border-color: rgba(129, 140, 248, 0.95);
    }

    .screens-strip .screen-image-wrapper {
      width: 100%;
      height: 220px;
      background: #020617;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 640px) {
      .screens-strip .screen-image-wrapper {
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .screens-strip .screen-image-wrapper {
        height: 180px;
      }
    }

    .screens-strip img {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .screens-strip figcaption {
      padding: 0.4rem 0.7rem 0.6rem;
    }

    @media (max-width: 640px) {
      .screens-strip figcaption {
        padding: 0.35rem 0.6rem 0.5rem;
      }
    }

    @media (max-width: 480px) {
      .screens-strip figcaption {
        padding: 0.3rem 0.5rem 0.45rem;
      }
    }

    /* AUDIENCE TILES */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.35rem;
      margin-top: 1.25rem;
    }

    @media (max-width: 900px) {
      .audience-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
      }
    }

    @media (max-width: 640px) {
      .audience-grid {
        gap: 0.9rem;
        margin-top: 1rem;
      }
    }

    @media (max-width: 480px) {
      .audience-grid {
        gap: 0.8rem;
        margin-top: 0.8rem;
      }
    }

    .audience-card {
      background: var(--surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 1rem 1.1rem;
      font-size: 0.9rem;
      box-shadow: var(--shadow-subtle);
      position: relative;
      transition:
        transform var(--transition-med),
        border-color var(--transition-med),
        box-shadow var(--transition-med);
    }

    @media (max-width: 640px) {
      .audience-card {
        padding: 0.9rem 1rem;
        font-size: 0.88rem;
      }
    }

    @media (max-width: 480px) {
      .audience-card {
        padding: 0.8rem 0.9rem;
        font-size: 0.86rem;
      }
    }

    .audience-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: calc(var(--radius-md) + 2px);
      border: 2px solid transparent;
      pointer-events: none;
      transition: border-color var(--transition-med);
    }

    .audience-card:hover,
    .audience-card:focus-within {
      transform: translateY(-4px);
      border-color: rgba(165, 180, 252, 0.001);
      box-shadow: 0 22px 50px rgba(148, 163, 184, 0.32);
    }

    @media (max-width: 900px) {
      .audience-card:hover,
      .audience-card:focus-within {
        transform: none;
      }
    }

    .audience-card:hover::before,
    .audience-card:focus-within::before {
      border-color: rgba(129, 140, 248, 0.95);
    }

    .audience-card h3 {
      margin: 0 0 0.35rem;
      font-size: 0.98rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .audience-card h3 {
        font-size: 0.92rem;
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .audience-card h3 {
        font-size: 0.88rem;
      }
    }

    .audience-card p {
      margin: 0 0 0.5rem;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .audience-card p {
        margin-bottom: 0.4rem;
      }
    }

    @media (max-width: 480px) {
      .audience-card p {
        margin-bottom: 0.35rem;
      }
    }

    .audience-card ul {
      padding-left: 1.1rem;
      margin: 0;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .audience-card ul {
        padding-left: 1rem;
      }
    }

    @media (max-width: 480px) {
      .audience-card ul {
        padding-left: 0.9rem;
      }
    }

    .audience-card li {
      margin-bottom: 0.35rem;
    }

    @media (max-width: 640px) {
      .audience-card li {
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .audience-card li {
        margin-bottom: 0.25rem;
      }
    }

    /* FAQ SECTION */
    .faq-section {
      margin-top: 1.8rem;
    }

    @media (max-width: 640px) {
      .faq-section {
        margin-top: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      .faq-section {
        margin-top: 1.2rem;
      }
    }

    .faq-list {
      margin-top: 1.2rem;
      display: grid;
      gap: 1rem;
    }

    @media (max-width: 640px) {
      .faq-list {
        margin-top: 1rem;
        gap: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .faq-list {
        margin-top: 0.8rem;
        gap: 0.7rem;
      }
    }

    .faq-item {
      background: var(--surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-subtle);
      padding: 1rem 1.1rem;
      box-shadow: var(--shadow-subtle);
      transition:
        transform var(--transition-med),
        box-shadow var(--transition-med),
        border-color var(--transition-med);
    }

    @media (max-width: 640px) {
      .faq-item {
        padding: 0.9rem 1rem;
      }
    }

    @media (max-width: 480px) {
      .faq-item {
        padding: 0.8rem 0.9rem;
      }
    }

    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(148, 163, 184, 0.28);
      border-color: var(--accent);
    }

    @media (max-width: 900px) {
      .faq-item:hover {
        transform: none;
      }
    }

    .faq-item h3 {
      margin: 0 0 0.4rem;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .faq-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
      }
    }

    @media (max-width: 480px) {
      .faq-item h3 {
        font-size: 0.88rem;
        margin-bottom: 0.3rem;
      }
    }

    .faq-item p {
      margin: 0;
      font-size: 0.88rem;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .faq-item p {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 480px) {
      .faq-item p {
        font-size: 0.82rem;
      }
    }

    /* FLOW / ARCHITECTURE */
    .flow-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
      gap: 1.8rem;
      margin-top: 1.3rem;
    }

    @media (max-width: 900px) {
      .flow-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.4rem;
      }
    }

    @media (max-width: 640px) {
      .flow-grid {
        gap: 1.2rem;
        margin-top: 1rem;
      }
    }

    @media (max-width: 480px) {
      .flow-grid {
        gap: 1rem;
        margin-top: 0.8rem;
      }
    }

    .flow-steps {
      list-style: none;
      padding-left: 0;
      margin: 0;
      font-size: 0.9rem;
      background: var(--surface);
      border-radius: 1rem;
      border: 1px solid var(--border-subtle);
      padding: 0.9rem 1rem;
      box-shadow: var(--shadow-subtle);
    }

    @media (max-width: 640px) {
      .flow-steps {
        font-size: 0.88rem;
        padding: 0.8rem 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .flow-steps {
        font-size: 0.86rem;
        padding: 0.7rem 0.8rem;
      }
    }

    .flow-step {
      padding: 0.75rem 0;
      border-bottom: 1px dashed rgba(148, 163, 184, 0.55);
    }

    @media (max-width: 640px) {
      .flow-step {
        padding: 0.65rem 0;
      }
    }

    @media (max-width: 480px) {
      .flow-step {
        padding: 0.6rem 0;
      }
    }

    .flow-step:last-child {
      border-bottom: none;
    }

    .flow-step strong {
      display: block;
      font-size: 0.93rem;
      margin-bottom: 0.18rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .flow-step strong {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .flow-step strong {
        font-size: 0.88rem;
      }
    }

    .flow-step span {
      color: var(--text-soft);
    }

    .flow-diagram {
      background: linear-gradient(135deg, #f3e8ff, #e0f2fe);
      border-radius: var(--radius-md);
      border: 1px solid #d0bfff;
      padding: 1.1rem 1.2rem;
      font-size: 0.86rem;
      color: var(--text-soft);
      box-shadow: 0 18px 44px rgba(168, 145, 255, 0.4);
    }

    @media (max-width: 640px) {
      .flow-diagram {
        font-size: 0.84rem;
        padding: 1rem 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .flow-diagram {
        font-size: 0.82rem;
        padding: 0.9rem 1rem;
      }
    }

    .flow-diagram strong {
      color: #111827;
    }

    /* CTA BAND */
    .cta-band {
      margin-top: 2.6rem;
      background: radial-gradient(circle at top left, #22c55e, #2a9d8f);
      border-radius: 1.25rem;
      padding: 1.9rem 1.8rem 1.7rem;
      color: #ecfdf5;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.35rem;
      box-shadow: 0 24px 60px rgba(34, 197, 94, 0.5);
    }

    @media (max-width: 900px) {
      .cta-band {
        margin-top: 2rem;
        padding: 1.6rem 1.4rem 1.4rem;
        gap: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .cta-band {
        margin-top: 1.6rem;
        padding: 1.4rem 1.2rem 1.2rem;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .cta-band {
        margin-top: 1.4rem;
        padding: 1.2rem 1rem;
        gap: 0.8rem;
        text-align: center;
        justify-content: center;
      }
    }

    .cta-band h2 {
      margin: 0 0 0.35rem;
      font-size: 1.28rem;
      letter-spacing: -0.02em;
    }

    @media (max-width: 640px) {
      .cta-band h2 {
        font-size: 1.16rem;
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .cta-band h2 {
        font-size: 1.08rem;
        margin-bottom: 0.25rem;
      }
    }

    .cta-band p {
      margin: 0;
      font-size: 0.95rem;
      max-width: 460px;
      color: #e0f2f1;
    }

    @media (max-width: 640px) {
      .cta-band p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .cta-band p {
        font-size: 0.88rem;
        max-width: 100%;
      }
    }

    .cta-band .btn-primary {
      background-image: none;
      background: #f9fafb;
      color: #0f172a;
      border-color: transparent;
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.35);
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .cta-band .btn-primary {
        width: 100%;
      }
    }

    .cta-band .btn-primary:hover {
      background: #e5e7eb;
    }

    /* INQUIRY SECTION */
    .inquiry-section {
      cursor: default;
      margin-top: 2.35rem;
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 2fr);
      gap: 2.1rem;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .inquiry-section {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.6rem;
        margin-top: 2rem;
      }
    }

    @media (max-width: 640px) {
      .inquiry-section {
        gap: 1.4rem;
        margin-top: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-section {
        gap: 1.2rem;
        margin-top: 1.4rem;
      }
    }

    .inquiry-copy {
      font-size: 0.95rem;
      color: var(--text-soft);
    }

    @media (max-width: 640px) {
      .inquiry-copy {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-copy {
        font-size: 0.88rem;
      }
    }

    .inquiry-copy h2 {
      margin-top: 1.6rem;
      margin-bottom: 0.55rem;
    }

    @media (max-width: 640px) {
      .inquiry-copy h2 {
        margin-top: 1.4rem;
        margin-bottom: 0.5rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-copy h2 {
        margin-top: 1.2rem;
        margin-bottom: 0.4rem;
      }
    }

    .inquiry-copy ul {
      padding-left: 1.1rem;
      margin-top: 0.5rem;
    }

    @media (max-width: 640px) {
      .inquiry-copy ul {
        padding-left: 1rem;
        margin-top: 0.4rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-copy ul {
        padding-left: 0.9rem;
      }
    }

    .inquiry-copy li {
      margin-bottom: 0.35rem;
    }

    @media (max-width: 640px) {
      .inquiry-copy li {
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-copy li {
        margin-bottom: 0.25rem;
      }
    }

    .inquiry-form {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 1.35rem 1.5rem 1.3rem;
      border: 1px solid var(--border-subtle);
      font-size: 0.9rem;
      box-shadow: var(--shadow-soft);
    }

    @media (max-width: 640px) {
      .inquiry-form {
        padding: 1.2rem 1.3rem 1.1rem;
        font-size: 0.88rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form {
        padding: 1rem 1.1rem 0.9rem;
        font-size: 0.86rem;
      }
    }

    .inquiry-form h3 {
      margin-top: 0;
      margin-bottom: 0.8rem;
      font-size: 1.03rem;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      .inquiry-form h3 {
        font-size: 0.98rem;
        margin-bottom: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
      }
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem 1rem;
    }

    @media (max-width: 640px) {
      .form-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .form-grid {
        gap: 0.6rem;
      }
    }

    .form-row {
      margin-bottom: 0.75rem;
    }

    @media (max-width: 640px) {
      .form-row {
        margin-bottom: 0.65rem;
      }
    }

    @media (max-width: 480px) {
      .form-row {
        margin-bottom: 0.6rem;
      }
    }

    .inquiry-form label {
      display: block;
      font-size: 0.8rem;
      color: var(--text-softer);
      margin-bottom: 0.22rem;
    }

    @media (max-width: 640px) {
      .inquiry-form label {
        font-size: 0.78rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form label {
        font-size: 0.76rem;
      }
    }

    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
      width: 100%;
      padding: 0.5rem 0.65rem;
      border-radius: 0.6rem;
      border: 1px solid #cbd5e1;
      font-size: 0.88rem;
      background: #f9fafb;
      color: var(--text-main);
      outline: none;
      transition:
        border-color var(--transition-med),
        box-shadow var(--transition-med),
        background-color var(--transition-med),
        transform var(--transition-fast);
    }

    @media (max-width: 640px) {
      .inquiry-form input,
      .inquiry-form select,
      .inquiry-form textarea {
        font-size: 0.86rem;
        padding: 0.48rem 0.6rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form input,
      .inquiry-form select,
      .inquiry-form textarea {
        font-size: 0.85rem;
        padding: 0.5rem 0.65rem;
      }
    }

    .inquiry-form input::placeholder,
    .inquiry-form textarea::placeholder {
      color: #9ca3af;
    }

    .inquiry-form input:focus-visible,
    .inquiry-form select:focus-visible,
    .inquiry-form textarea:focus-visible {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(42, 157, 143, 0.55);
      background: #ffffff;
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      .inquiry-form input:focus-visible,
      .inquiry-form select:focus-visible,
      .inquiry-form textarea:focus-visible {
        transform: none;
      }
    }

    .inquiry-form textarea {
      min-height: 90px;
      resize: vertical;
    }

    @media (max-width: 640px) {
      .inquiry-form textarea {
        min-height: 80px;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form textarea {
        min-height: 75px;
      }
    }

    .inquiry-form small {
      font-size: 0.75rem;
      color: var(--text-softer);
    }

    @media (max-width: 640px) {
      .inquiry-form small {
        font-size: 0.72rem;
      }
    }

    @media (max-width: 480px) {
      .inquiry-form small {
        font-size: 0.7rem;
      }
    }

    .checkbox-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.6rem;
      font-size: 0.82rem;
    }

    @media (max-width: 640px) {
      .checkbox-row {
        gap: 0.5rem 1.4rem;
        font-size: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .checkbox-row {
        gap: 0.5rem 1.2rem;
        font-size: 0.78rem;
      }
    }

    .checkbox-row label {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-bottom: 0;
      color: var(--text-main);
    }

    @media (max-width: 480px) {
      .checkbox-row label {
        gap: 0.3rem;
      }
    }

    .checkbox-row input[type="checkbox"] {
      width: 14px;
      height: 14px;
      border-radius: 0.35rem;
      accent-color: var(--primary);
      flex-shrink: 0;
    }

    @media (max-width: 480px) {
      .checkbox-row input[type="checkbox"] {
        width: 13px;
        height: 13px;
      }
    }

    /* FOOTER */
    footer.site-footer {
      padding: 2.2rem 0 1.6rem;
      font-size: 0.85rem;
      color: var(--text-soft);
      border-top: 1px solid var(--border-subtle);
      margin-top: 3rem;
    }

    @media (max-width: 900px) {
      footer.site-footer {
        padding: 2rem 0 1.4rem;
        margin-top: 2.5rem;
      }
    }

    @media (max-width: 640px) {
      footer.site-footer {
        padding: 1.8rem 0 1.2rem;
        margin-top: 2rem;
        font-size: 0.82rem;
      }
    }

    @media (max-width: 480px) {
      footer.site-footer {
        padding: 1.5rem 0 1rem;
        margin-top: 1.6rem;
        font-size: 0.8rem;
      }
    }

    /* Grid layout */
    footer .footer-grid {
      display: grid;
      grid-template-columns: 2.2fr 1.1fr 1.3fr 1.1fr;
      gap: 1.8rem;
    }

    @media (max-width: 900px) {
      footer .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
      }
    }

    @media (max-width: 640px) {
      footer .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.4rem;
      }
    }

    @media (max-width: 480px) {
      footer .footer-grid {
        gap: 1.2rem;
      }
    }

    /* Headings */
    footer h4 {
      margin: 0 0 0.4rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-main);
    }

    @media (max-width: 640px) {
      footer h4 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
      }
    }

    @media (max-width: 480px) {
      footer h4 {
        font-size: 0.88rem;
        margin-bottom: 0.3rem;
      }
    }

    /* Lists */
    footer ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    footer li {
      margin-bottom: 0.35rem;
      line-height: 1.4;
    }

    @media (max-width: 640px) {
      footer li {
        margin-bottom: 0.3rem;
      }
    }

    @media (max-width: 480px) {
      footer li {
        margin-bottom: 0.25rem;
      }
    }

    /* Links */
    footer a {
      color: #5F6C86;
      text-decoration: none;
    }

    footer a:hover {
      color: #5F6C86;
      text-decoration: underline;
    }

    /* Social links */
    .footer-social {
      margin-top: 1.6rem;
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap;
      font-size: 0.85rem;
    }

    @media (max-width: 900px) {
      .footer-social {
        margin-top: 1.2rem;
      }
    }

    @media (max-width: 640px) {
      .footer-social {
        gap: 1.2rem;
        font-size: 0.82rem;
      }
    }

    @media (max-width: 480px) {
      .footer-social {
        margin-top: 1rem;
        gap: 1rem;
        font-size: 0.8rem;
      }
    }

    .footer-social a {
      color: var(--text-soft);
    }

    .footer-social a:hover {
      color: var(--text-main);
    }

    /* Compliance note */
    .footer-note {
      margin-top: 1.2rem;
      font-size: 0.75rem;
      color: var(--text-soft);
      line-height: 1.4;
      max-width: 720px;
    }

    @media (max-width: 640px) {
      .footer-note {
        margin-top: 1rem;
        font-size: 0.72rem;
      }
    }

    @media (max-width: 480px) {
      .footer-note {
        margin-top: 0.9rem;
        font-size: 0.7rem;
        line-height: 1.5;
      }
    }

    /* ADDITIONAL RESPONSIVE IMPROVEMENTS */

    /* Ensure images are responsive */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, li {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Improve tap targets for mobile (minimum 44x44px) */
    @media (max-width: 900px) {
      .btn,
      nav.main-nav a,
      .checkbox-row label,
      footer a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .checkbox-row label {
        justify-content: flex-start;
        min-width: auto;
      }
    }

    /* Optimize font rendering on mobile */
    @media (max-width: 900px) {
      body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }
    }

    /* Ensure proper spacing on very small screens */
    @media (max-width: 360px) {
      :root {
        --radius-lg: 1rem;
        --radius-md: 0.7rem;
      }

      .page {
        padding: 0 0.8rem 1.5rem;
      }

      header.site-header {
        padding: 0.6rem 0.8rem;
      }

      .hero h1 {
        font-size: 1.6rem;
      }

      section h2 {
        font-size: 1.1rem;
      }
    }

    /* Landscape mobile optimization */
    @media (max-height: 500px) and (orientation: landscape) {
      .hero {
        padding: 1rem 0 0.5rem;
      }

      section.block {
        padding: 1.2rem 0 0.5rem;
      }

      header.site-header {
        position: relative; /* Make header static on landscape mobile */
      }
    }

    /* Print styles */
    @media print {
      header.site-header,
      nav.main-nav,
      .header-cta,
      .btn,
      footer.site-footer {
        display: none;
      }

      body {
        background: white;
        color: black;
      }

      .page {
        max-width: 100%;
        padding: 0;
      }

      a {
        text-decoration: underline;
        color: black;
      }
    }

/* ══════════════════════════════════════════════════════════════
   TRUST BADGES SECTION (#trust-badges)
   ══════════════════════════════════════════════════════════════ */

#trust-badges {
  background: #f8fafc;
  border-top: 1px solid #e8edf3;
  border-bottom: 1px solid #e8edf3;
  padding: 48px 24px;
  text-align: center;
}

#trust-badges .trust-badges-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 28px;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 156px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.trust-badge-item img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.trust-badge-item .ssl-badge-svg {
  height: 64px;
  width: auto;
}

.trust-badge-caption {
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-badge-item .vapt-img {
  height: 28px;
  border-radius: 4px;
}

.vapt-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  justify-content: center;
}

.vapt-icon {
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .trust-badges-row {
    gap: 32px;
  }
}


/* ══════════════════════════════════════════════════════════════
   BUILT-FOR SECTION (#built-for)
   ══════════════════════════════════════════════════════════════ */

#built-for {
  padding: 64px 24px;
}

.built-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .built-for-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════════════════════
   DIFFERENTIATION / COMPARISON TABLE (#differentiation)
   ══════════════════════════════════════════════════════════════ */

#differentiation {
  padding: 64px 24px;
}

.diff-table-wrapper {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--surface);
  min-width: 560px;
}

.diff-table thead tr {
  background: #0f172a;
  color: #f9fafb;
}

.diff-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* KapitalNex column header — uses site accent (purple) */
.diff-table thead th:last-child {
  background: var(--accent);
  color: #fff;
}

.diff-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.15s;
}

.diff-table tbody tr:last-child {
  border-bottom: none;
}

.diff-table tbody tr:hover {
  background: var(--bg-soft);
}

.diff-table tbody td {
  padding: 14px 20px;
  color: var(--text-main);
  vertical-align: top;
  line-height: 1.5;
}

/* First two columns — muted, like other soft text on site */
.diff-table tbody td:nth-child(1),
.diff-table tbody td:nth-child(2) {
  color: var(--text-soft);
}

/* KapitalNex column — positive, uses accent-soft background */
.diff-table tbody td:last-child {
  color: var(--text-main);
  font-weight: 600;
  background: var(--accent-soft);
}

/* Checkmark uses accent colour */
.diff-table tbody td:last-child::before {
  content: "✓  ";
  color: var(--accent);
  font-weight: 700;
}