    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #0b0f14;
      --graphite: #111827;
      --cream: #ffffff;
      --cream-60: rgba(255,255,255,0.6);
      --cream-35: rgba(255,255,255,0.35);
      --cream-15: rgba(255,255,255,0.15);
      --cream-08: rgba(255,255,255,0.08);
      --cream-05: rgba(255,255,255,0.05);
      --blue: #2563eb;
      --blue-60: rgba(37,99,235,0.6);
      --blue-40: rgba(37,99,235,0.40);
      --blue-25: rgba(37,99,235,0.25);
      --blue-12: rgba(37,99,235,0.12);
      --blue-06: rgba(37,99,235,0.06);
      --purple: #7c3aed;
      --purple-40: rgba(124,58,237,0.40);
    }

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

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }

    /* ─── NOISE ─────────────────────────────────────── */
    .noise {
      position: fixed; inset: 0; z-index: 9999; pointer-events: none;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    /* ─── LOADING ─────────────────────────────────────── */
    .loading {
      position: fixed; inset: 0; z-index: 9000;
      background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: opacity 0.7s ease 0.2s, visibility 0.7s ease 0.2s;
    }
    .js .loading { opacity: 1; visibility: visible; }
    .loading.done { opacity: 0; visibility: hidden; }
    .loading-bar-wrap {
      width: 160px; height: 1px;
      background: var(--cream-15); position: relative; overflow: hidden;
    }
    .loading-bar {
      position: absolute; left: 0; top: 0; height: 1px;
      background: var(--blue); width: 0%;
      box-shadow: 0 0 8px var(--blue-60);
    }

    /* ─── NAV ─────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; justify-content: space-between; align-items: center;
      padding: 2rem 4rem;
      transition: background 0.4s, backdrop-filter 0.4s;
      opacity: 0; animation: navIn 0.8s ease 2s forwards;
    }
    @keyframes navIn { to { opacity: 1; } }

    .nav-logo {
      display: flex; align-items: center; text-decoration: none;
    }
    .nav-logo img {
      height: 32px; width: auto;
      display: block;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; color: var(--cream-60);
      text-decoration: none; letter-spacing: 0.04em;
      transition: color 0.25s;
    }
    .nav-links a:hover { color: var(--cream); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav-lang {
      font-size: 0.76rem;
      color: var(--cream-60);
      text-decoration: none;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid var(--cream-15);
      padding: 0.55rem 0.85rem;
      transition: color 0.25s, border-color 0.25s, background 0.25s;
    }
    .nav-lang:hover {
      color: var(--cream);
      border-color: var(--cream-35);
      background: var(--cream-05);
    }
    .nav-cta {
      font-size: 0.82rem; color: var(--blue);
      text-decoration: none; letter-spacing: 0.06em;
      border: 1px solid var(--blue-40); padding: 0.55rem 1.4rem;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
    }
    .nav-cta:hover { background: var(--blue-12); border-color: var(--blue); }

    /* ─── HERO ─────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex; flex-direction: column; justify-content: center;
      padding: 10rem 4rem 5rem;
      position: relative; overflow: hidden;
      opacity: 0; animation: heroIn 1.2s ease 1.8s forwards;
    }
    @keyframes heroIn { to { opacity: 1; } }
    .hero-orb {
      position: absolute; pointer-events: none;
      width: 900px; height: 900px;
      top: -250px; right: -200px;
      background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, rgba(96,165,250,0.07) 45%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
    }

    .hero-eyebrow {
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue-60);
      margin-bottom: 2.5rem;
    }
    .hero-title {
      font-size: clamp(3.5rem, 7vw, 9.5rem);
      font-weight: 800; line-height: 0.97;
      letter-spacing: -0.035em; margin-bottom: 2.5rem;
    }
    .dim { opacity: 0.22; }
    .hero-services {
      display: flex; flex-wrap: wrap; gap: 0.6rem;
      margin-bottom: 4rem;
    }
    .hero-pill {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 0.75rem; letter-spacing: 0.06em;
      color: var(--cream-60);
      border: 1px solid var(--cream-15);
      padding: 0.4rem 0.9rem;
      border-radius: 0;
    }
    .hero-pill.hl {
      color: var(--blue);
      border-color: var(--blue-25);
      background: var(--blue-06);
    }
    a.hero-pill {
      text-decoration: none;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    a.hero-pill:hover {
      color: var(--cream);
      border-color: var(--cream-35);
      background: var(--cream-05);
    }
    a.hero-pill.hl:hover {
      border-color: var(--blue-60);
      background: var(--blue-12);
    }
    .hero-bottom {
      display: flex; justify-content: space-between;
      align-items: flex-end; gap: 4rem; margin-top: 4rem;
    }
    .hero-desc {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1rem; line-height: 1.72;
      color: var(--cream-60); max-width: 400px;
    }
    .hero-actions { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
    .hero-scroll {
      display: block; margin-top: 2.5rem;
      font-size: 0.72rem; letter-spacing: 0.14em;
      color: var(--cream-35); text-align: right;
    }
    .hero-visual { display: none; }
    .hero-iso { width: 100%; height: auto; display: block; }

    /* Hero CTA buttons */
    .hero-btn-primary {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.8rem 1.7rem; border-radius: 0;
      background: transparent; color: var(--blue);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em;
      text-decoration: none; white-space: nowrap;
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.15s;
      border: 1px solid var(--blue);
    }
    .hero-btn-primary:hover { background: var(--blue-12); transform: translateY(-1px); }
    .hero-btn-ghost {
      display: inline-flex; align-items: center; gap: 0.45rem;
      padding: 0.8rem 1.5rem; border-radius: 0;
      border: 1px solid var(--cream-15); color: var(--cream-60);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 0.88rem; text-decoration: none; white-space: nowrap;
      transition: color 0.25s, border-color 0.25s, background 0.25s;
    }
    .hero-btn-ghost:hover { color: var(--cream); border-color: var(--cream-35); background: var(--cream-05); }

    /* ─── ACTION BUTTON ─────────────────────────────────────── */
    .action-btn {
      display: inline-flex; flex-direction: column;
      text-decoration: none; gap: 0.85rem; min-width: 210px;
    }
    .action-btn hr { border: none; border-top: 1px solid var(--cream-15); transition: border-color 0.3s; }
    .action-btn .btn-inner { display: flex; justify-content: space-between; align-items: center; }
    .action-btn p { font-size: 0.88rem; color: var(--cream-60); transition: color 0.3s; }
    .action-btn .arr { color: var(--cream-35); transition: transform 0.3s, color 0.3s; }
    .action-btn:hover p { color: var(--cream); }
    .action-btn:hover hr { border-top-color: var(--blue); }
    .action-btn:hover .arr { transform: translateX(5px); color: var(--blue); }

    /* ─── SECTIONS ─────────────────────────────────────── */
    section { padding: 8rem 4rem; }
    .section-label {
      display: block; font-size: 0.7rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--blue-60); margin-bottom: 4rem;
    }
    .section-title {
      font-size: clamp(2.2rem, 4.5vw, 5rem);
      font-weight: 700; line-height: 1.06; letter-spacing: -0.025em;
    }
    .section-body {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1.05rem; line-height: 1.75; color: var(--cream-60);
    }
    .hr { border: none; border-top: 1px solid var(--cream-15); }

    /* ─── PROBLEM ─────────────────────────────────────── */
    .problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; }
    .problem-tag {
      font-size: clamp(1.6rem, 3vw, 3.2rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
    }
    .problem-right { display: flex; flex-direction: column; gap: 2rem; }
    .problem-right p {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1.05rem; line-height: 1.75; color: var(--cream-60);
    }
    .callout {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1.15rem; font-weight: 600; color: var(--cream);
      line-height: 1.5; padding: 2rem;
      border: 1px solid var(--cream-15);
      border-left: 2px solid var(--blue);
      background: var(--blue-12);
      letter-spacing: -0.01em;
    }

    /* ─── SOLUTION ─────────────────────────────────────── */
    .solution-big {
      font-size: clamp(1.7rem, 3.2vw, 3.2rem);
      font-weight: 700; line-height: 1.2; letter-spacing: -0.022em;
      max-width: 820px; margin-bottom: 5rem;
    }
    .solution-list {
      display: grid; grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--cream-15);
    }
    .solution-item {
      padding: 2rem 0; border-bottom: 1px solid var(--cream-15);
      display: flex; gap: 1.5rem; align-items: flex-start;
    }
    .solution-item:nth-child(odd) { padding-right: 4rem; }
    .solution-item:nth-child(even) {
      padding-left: 4rem;
      border-left: 1px solid var(--cream-15);
    }
    .s-num { font-size: 0.68rem; color: var(--blue-60); min-width: 1.5rem; padding-top: 0.15rem; font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; }
    .s-text { font-size: 1.05rem; font-weight: 500; }

    /* ─── HOW IT WORKS ─────────────────────────────────────── */
    .hiw-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8rem; margin-bottom: 6rem; align-items: end;
    }
    .steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--cream-15);
    }
    .step {
      padding: 3rem 3.5rem 3rem 0;
      border-right: 1px solid var(--cream-15);
    }
    .step:last-child { border-right: none; padding-right: 0; padding-left: 3.5rem; }
    .step:nth-child(2) { padding-left: 3.5rem; }
    .step-num {
      font-size: 3.5rem; font-weight: 800; color: var(--blue-40);
      line-height: 1; margin-bottom: 2rem; letter-spacing: -0.05em;
    }
    .step-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.8rem; }
    .step-desc { font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; font-size: 0.9rem; line-height: 1.65; color: var(--cream-60); }

    /* ─── FEATURES ─────────────────────────────────────── */
    .features-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8rem; margin-bottom: 5rem; align-items: end;
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--cream-15);
    }
    .feat {
      padding: 1.65rem 0; border-bottom: 1px solid var(--cream-08);
      display: flex; gap: 1.5rem; align-items: center;
    }
    .feat:nth-child(odd) { padding-right: 4rem; }
    .feat:nth-child(even) { padding-left: 4rem; border-left: 1px solid var(--cream-08); }
    .f-num { font-size: 0.68rem; color: var(--blue-60); min-width: 1.5rem; font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; }
    .f-text { font-size: 0.95rem; font-weight: 500; }

    /* ─── WHITE-LABEL ─────────────────────────────────────── */
    .wl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
    .wl-quote {
      font-size: clamp(1.8rem, 3.5vw, 3.5rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
    }
    .wl-tag {
      font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--cream-35); margin-bottom: 1.5rem; display: block;
    }
    .wl-body p {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1rem; line-height: 1.75; color: var(--cream-60); margin-bottom: 2rem;
    }

    /* ─── HERO EYEBROW ──────────────────────────────── */
    .hero-eyebrow {
      display: flex; align-items: center; gap: 0.6rem;
      margin-bottom: 2.2rem;
    }
    .hero-tag {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--cream-35);
    }
    .hero-tag.dim { color: var(--cream-35); }
    .hero-tag-sep { color: var(--cream-15); font-size: 0.9rem; }

    /* Primary CTA button */
    .primary-btn { background: var(--blue); border-color: var(--blue) !important; }
    .primary-btn hr { border-color: transparent !important; }
    .primary-btn .btn-inner p, .primary-btn .arr { color: var(--cream) !important; }
    .primary-btn:hover { background: #1d4ed8; }

    /* ─── WEBSITE SPOTLIGHT ──────────────────────────── */
    .ws-section { padding: 8rem 4rem; }
    .ws-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }
    .ws-title {
      font-size: clamp(2rem, 4vw, 4rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    .ws-body {
      font-size: 1rem; color: var(--cream-60); line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .ws-features { display: flex; flex-direction: column; gap: 0.75rem; }
    .ws-feat {
      display: flex; align-items: center; gap: 0.85rem;
      font-size: 0.9rem; color: var(--cream-60);
    }
    .ws-feat-dot {
      flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%;
      background: var(--blue);
    }

    /* Mock browser card */
    .ws-card {
      border: 1px solid var(--cream-15); border-radius: 0;
      overflow: hidden; background: var(--graphite);
    }
    .ws-card-bar {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.9rem 1.2rem;
      border-bottom: 1px solid var(--cream-08);
      background: var(--cream-05);
    }
    .ws-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
    .ws-dot.r { background: #ff5f57; }
    .ws-dot.y { background: #febc2e; }
    .ws-dot.g { background: #28c840; }
    .ws-url {
      flex: 1; text-align: center;
      font-size: 0.72rem; color: var(--cream-35);
      background: var(--cream-08); border-radius: 0;
      padding: 0.25rem 1rem; margin: 0 0.5rem;
    }
    .ws-card-body { padding: 0; }
    .ws-mock-hero {
      padding: 3rem 2.5rem 2.5rem;
      background: linear-gradient(135deg, #0b0f14 0%, #111827 100%);
      border-bottom: 1px solid var(--cream-08);
    }
    .ws-mock-tag {
      display: inline-flex; align-items: center;
      font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue); border: 1px solid var(--blue-40);
      border-radius: 0; padding: 0.25rem 0.75rem;
      margin-bottom: 1.2rem;
    }
    .ws-mock-h {
      font-size: 1.6rem; font-weight: 800; line-height: 1.1;
      letter-spacing: -0.03em; margin-bottom: 0.5rem;
    }
    .ws-mock-sub { font-size: 0.78rem; color: var(--cream-35); margin-bottom: 1.5rem; }
    .ws-mock-btn {
      display: inline-block;
      font-size: 0.78rem; font-weight: 600;
      background: var(--blue); color: var(--cream);
      padding: 0.5rem 1.2rem; border-radius: 0;
    }
    .ws-mock-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--cream-08);
    }
    .ws-stat {
      display: flex; flex-direction: column; gap: 0.2rem;
      padding: 1.2rem; border-right: 1px solid var(--cream-08);
      align-items: center; text-align: center;
    }
    .ws-stat:last-child { border-right: none; }
    .ws-stat-n { font-size: 1.1rem; font-weight: 800; color: var(--blue); }
    .ws-stat span:last-child { font-size: 0.68rem; color: var(--cream-35); }

    /* ─── VISION ─────────────────────────────────────── */
    .vision-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
    .vision-big {
      font-size: clamp(2rem, 4vw, 4.5rem);
      font-weight: 700; line-height: 1.1; letter-spacing: -0.025em;
    }
    .vision-body p {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; font-size: 1rem; line-height: 1.75;
      color: var(--cream-60); margin-bottom: 2rem;
    }

    /* ─── ACCENT TEXT ─────────────────────────────────────── */
    .gradient-text {
      background: linear-gradient(135deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── PORTFOLIO ──────────────────────────────────── */
    .portfolio-section { padding: 8rem 4rem; }
    .portfolio-header { margin-bottom: 4rem; max-width: 600px; }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .pf-link { display: block; text-decoration: none; }
    .pf-link:hover .pf-preview { opacity: 0.85; }
    .pf-preview { transition: opacity 0.25s; }

    .pf-card {
      border: 1px solid var(--cream-15);
      border-radius: 0;
      overflow: hidden;
      background: var(--graphite);
      transition: border-color 0.3s, transform 0.3s;
    }
    .pf-card:hover { border-color: var(--cream-35); transform: translateY(-4px); }

    .pf-preview {
      height: 220px;
      position: relative;
      overflow: hidden;
    }
    .pf-preview--1 { background: linear-gradient(135deg, #0f1f3d 0%, #1a3a6b 50%, #0d1b36 100%); }
    .pf-preview--2 { background: linear-gradient(135deg, #1a0d2e 0%, #3d1a5c 50%, #160b26 100%); }
    .pf-preview--3 { background: linear-gradient(135deg, #0d2318 0%, #1a4a30 50%, #0a1e12 100%); }

    .pf-browser-bar {
      display: flex; align-items: center; gap: 0.4rem;
      padding: 0.6rem 0.9rem;
      background: rgba(0,0,0,0.3);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .pf-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
    .pf-dot.r { background: rgba(255,95,87,0.7); }
    .pf-dot.y { background: rgba(254,188,46,0.7); }
    .pf-dot.g { background: rgba(40,200,64,0.7); }
    .pf-url {
      flex: 1; text-align: center;
      font-size: 0.65rem; color: var(--cream-35);
      background: rgba(255,255,255,0.06);
      border-radius: 0; padding: 0.2rem 0.8rem;
      margin: 0 0.4rem;
    }

    .pf-mock-content { padding: 1.2rem 1rem; }
    .pf-mock-headline { height: 10px; border-radius: 0; background: rgba(255,255,255,0.2); margin-bottom: 0.5rem; width: 70%; }
    .pf-mock-sub { height: 7px; border-radius: 0; background: rgba(255,255,255,0.1); margin-bottom: 0.9rem; width: 50%; }
    .pf-mock-btn { height: 20px; width: 80px; border-radius: 0; background: var(--blue-40); margin-bottom: 1rem; }
    .pf-mock-cards { display: flex; gap: 0.5rem; }
    .pf-mock-card { flex: 1; height: 50px; border-radius: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
    .pf-screenshot-wrap { overflow: hidden; height: 185px; }
    .pf-screenshot { width: 100%; height: auto; display: block; object-fit: cover; object-position: top; }

    .pf-info { padding: 1.4rem 1.4rem 1.6rem; }
    .pf-meta {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 0.5rem;
    }
    .pf-type { font-size: 0.72rem; color: var(--cream-35); letter-spacing: 0.04em; }
    .pf-year { font-size: 0.72rem; color: var(--cream-35); }
    .pf-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.9rem; }
    .pf-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .pf-tag {
      font-size: 0.68rem; letter-spacing: 0.04em;
      color: var(--cream-60); border: 1px solid var(--cream-15);
      padding: 0.25rem 0.6rem; border-radius: 0;
    }

    /* ─── CTA ─────────────────────────────────────── */
    .cta-section {
      padding: 10rem 4rem 8rem;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; pointer-events: none;
      width: 800px; height: 600px;
      bottom: -200px; left: -150px;
      background: radial-gradient(ellipse, rgba(37,99,235,0.10) 0%, rgba(96,165,250,0.05) 45%, transparent 70%);
      filter: blur(80px);
    }
    .cta-big {
      font-size: clamp(2.8rem, 7vw, 8rem);
      font-weight: 800; line-height: 0.96; letter-spacing: -0.04em; margin-bottom: 2.5rem;
    }
    .cta-sub {
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      color: var(--cream-60); line-height: 1.65; max-width: 560px; margin-bottom: 5rem;
    }

    /* Contact channels */
    .contact-channels {
      display: flex; flex-direction: column; gap: 1rem;
      max-width: 680px; margin-bottom: 3.5rem;
    }
    .contact-channel {
      display: flex; align-items: center; gap: 1.5rem;
      padding: 1.6rem 2rem;
      border: 1px solid var(--cream-15);
      border-radius: 0;
      text-decoration: none;
      color: var(--cream);
      background: var(--cream-05);
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .contact-channel:hover {
      border-color: var(--blue-40);
      background: var(--blue-06);
      transform: translateX(4px);
    }
    .contact-channel.primary {
      border-color: var(--blue-40);
      background: var(--blue-06);
    }
    .contact-channel.primary:hover {
      border-color: var(--blue);
      background: var(--blue-12);
    }
    .channel-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 0;
      background: var(--cream-08);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue);
    }
    .contact-channel.primary .channel-icon { background: var(--blue-25); color: var(--cream); }
    .channel-text {
      flex: 1; display: flex; flex-direction: column; gap: 0.3rem;
    }
    .channel-text strong { font-size: 1rem; font-weight: 600; }
    .channel-text span { font-size: 0.85rem; color: var(--cream-60); }
    .channel-arrow {
      color: var(--cream-35); font-size: 1.1rem;
      transition: transform 0.2s, color 0.2s;
    }
    .contact-channel:hover .channel-arrow { transform: translateX(4px); color: var(--blue); }

    /* Contact note */
    .contact-note {
      display: flex; align-items: center; gap: 0.75rem;
      font-size: 0.85rem; color: var(--cream-35); max-width: 560px;
    }
    .contact-note-dot {
      flex-shrink: 0;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue); display: inline-block;
    }

    /* ─── SOLUTION BADGE ──────────────────────────────── */
    .ws-item { position: relative; }
    .s-badge {
      margin-left: auto;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--blue);
      border: 1px solid var(--blue-40); border-radius: 0;
      padding: 0.2rem 0.55rem;
    }

    /* ─── CONTACT LAYOUT ─────────────────────────────── */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: start; margin-top: 3rem;
    }
    .contact-left .cta-big { font-size: clamp(2.2rem, 5vw, 6rem); margin-bottom: 1.8rem; }
    .contact-right { position: sticky; top: 6rem; }

    /* Form card */
    .cf-card {
      background: var(--cream-05);
      border: 1px solid var(--cream-15);
      border-radius: 0;
      padding: 2.5rem;
    }
    .cf-title {
      font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem;
    }
    .cf-sub {
      font-size: 0.85rem; color: var(--cream-60); margin-bottom: 2rem; line-height: 1.55;
    }
    .cf-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .cf-field { display: flex; flex-direction: column; gap: 0.45rem; }
    .cf-field label {
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--cream-60);
    }
    .cf-field input, .cf-field textarea {
      background: var(--cream-08);
      border: 1px solid var(--cream-15);
      border-radius: 0;
      padding: 0.75rem 1rem;
      min-height: 44px;
      color: var(--cream);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
      -webkit-appearance: none;
    }
    .cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--cream-35); }
    .cf-field input:focus, .cf-field textarea:focus { border-color: var(--blue-60); }

    /* Checkboxes */
    .cf-checks {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    }
    .cf-check {
      display: flex; align-items: center; gap: 0.6rem;
      padding: 0.6rem 0.85rem;
      border: 1px solid var(--cream-15);
      border-radius: 0;
      cursor: pointer;
      font-size: 0.82rem; color: var(--cream-60);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      user-select: none;
    }
    .cf-check:hover { border-color: var(--blue-40); color: var(--cream); background: var(--blue-06); }
    .cf-check input[type="checkbox"] {
      accent-color: var(--blue);
      width: 14px; height: 14px; flex-shrink: 0;
      margin: 0; padding: 0; border: none; background: none;
    }
    .cf-check:has(input:checked) {
      border-color: var(--blue-60); background: var(--blue-12); color: var(--cream);
    }

    /* Submit button */
    .cf-submit {
      display: flex; align-items: center; justify-content: center; gap: 0.75rem;
      width: 100%; padding: 0.9rem 1.5rem;
      background: transparent; color: var(--cream);
      border: 1px solid var(--cream-35); border-radius: 0;
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 0.9rem; font-weight: 600;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s, transform 0.15s;
      margin-top: 0.25rem;
    }
    .cf-submit:hover { background: var(--cream-08); border-color: var(--cream); transform: translateY(-1px); }
    .cf-submit:active { transform: translateY(0); }
    .cf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
    .cf-btn-arrow { transition: transform 0.2s; }
    .cf-submit:hover .cf-btn-arrow { transform: translateX(4px); }

    /* Success state */
    .cf-success {
      display: none; align-items: center; gap: 0.75rem;
      padding: 0.9rem 1.2rem;
      background: rgba(34,197,94,0.1);
      border: 1px solid rgba(34,197,94,0.3);
      border-radius: 0;
      font-size: 0.88rem; color: #4ade80;
      margin-top: 0.25rem;
    }
    .cf-success.show { display: flex; }
    .cf-legal {
      margin-top: 0.25rem;
      font-size: 0.78rem;
      line-height: 1.65;
      color: var(--cream-35);
    }
    .cf-legal a,
    .payment-disclaimer a { color: var(--blue); text-decoration: none; }
    .cf-legal a:hover,
    .payment-disclaimer a:hover { text-decoration: underline; }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      padding: 4rem 4rem 0;
      border-top: 1px solid var(--cream-15);
      display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem;
    }
    .footer-brand .f-logo {
      font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; margin-bottom: 1.5rem; display: block;
    }
    .footer-brand p { font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; font-size: 0.8rem; color: var(--cream-35); line-height: 1.85; }
    .footer-col h4 {
      font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--cream-35); margin-bottom: 1.5rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 0.65rem; }
    .footer-col a { font-size: 0.88rem; color: var(--cream-60); text-decoration: none; transition: color 0.25s; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom {
      padding: 2.5rem 4rem;
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid var(--cream-08); margin-top: 4rem;
    }
    .footer-bottom p { font-size: 0.75rem; color: var(--cream-35); font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; }

    .payment-disclaimer {
      margin-top: 1.5rem;
      padding: 1rem 1.15rem;
      border: 1px solid var(--cream-15);
      background: var(--cream-05);
      font-size: 0.78rem;
      line-height: 1.7;
      color: var(--cream-35);
      max-width: 860px;
    }

    /* ─── LEGAL PAGES ───────────────────────────────── */
    .legal-page .hero {
      min-height: auto;
      padding: 8rem 4rem 3rem;
      opacity: 1;
      animation: none;
    }
    .legal-page .hero-bottom { margin-top: 2rem; }
    .legal-page .nav-logo { text-decoration: none; }
    .legal-page .nav-links a,
    .legal-page .nav-cta,
    .legal-page .footer-col a { text-decoration: none; }
    .legal-shell {
      max-width: 820px;
      margin: 0 auto;
      padding: 0 4rem 6rem;
    }
    .legal-card {
      border: 1px solid var(--cream-15);
      background: linear-gradient(180deg, var(--cream-05) 0%, rgba(255,255,255,0.02) 100%);
      padding: 3rem;
    }
    .legal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.5rem;
      margin-bottom: 2rem;
      font-size: 0.78rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--cream-35);
    }
    .legal-body {
      color: var(--cream-60);
      font-size: 1rem;
      line-height: 1.8;
    }
    .legal-body h2 {
      color: var(--cream);
      font-size: 1.5rem;
      line-height: 1.25;
      margin: 2.5rem 0 1rem;
      letter-spacing: -0.02em;
    }
    .legal-body h2:first-child { margin-top: 0; }
    .legal-body p { margin-bottom: 1rem; }
    .legal-body ul {
      margin: 0 0 1.25rem 1.15rem;
      padding: 0;
    }
    .legal-body li { margin-bottom: 0.7rem; }
    .legal-callout {
      margin: 1.75rem 0;
      padding: 1.25rem 1.35rem;
      border-left: 2px solid var(--blue);
      border: 1px solid var(--blue-25);
      background: var(--blue-06);
      color: var(--cream);
    }
    .legal-callout strong {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.92rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--blue);
    }

    /* ─── PAYMENT PAGE ──────────────────────────────── */
    .pay-section {
      min-height: calc(100dvh - 80px);
      padding: 9rem 4rem 6rem;
      display: flex; align-items: center;
      background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(37,99,235,0.07) 0%, transparent 70%);
    }
    .pay-grid {
      display: grid; grid-template-columns: 1fr 360px;
      gap: 6rem; width: 100%; max-width: 1060px;
      margin: 0 auto; align-items: start;
    }
    .pay-details .section-label { display: block; margin-bottom: 1.5rem; }
    .pay-title {
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 800; line-height: 1.02;
      letter-spacing: -0.03em; color: var(--cream);
      margin-bottom: 1.5rem;
    }
    .pay-desc {
      font-size: 1rem; line-height: 1.72;
      color: var(--cream-60); max-width: 400px; margin-bottom: 2.5rem;
    }
    .pay-includes { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
    .pay-include-item {
      display: flex; align-items: center; gap: 0.7rem;
      font-size: 0.9rem; color: var(--cream-60); line-height: 1.4;
    }
    .pay-check { flex-shrink: 0; }
    .pay-card {
      background: var(--graphite);
      border: 1px solid var(--cream-08);
      border-top: 2px solid var(--blue);
      padding: 2.5rem; position: sticky; top: 100px;
    }
    .pay-card-label {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.14em; color: var(--cream-35);
      text-transform: uppercase; margin-bottom: 0.4rem;
    }
    .pay-card-billing { font-size: 0.82rem; color: var(--cream-35); margin-bottom: 2rem; }
    .pay-btn {
      display: block; width: 100%; padding: 1rem 1.5rem;
      background: var(--blue); color: var(--cream);
      text-decoration: none; font-size: 0.95rem; font-weight: 600;
      letter-spacing: 0.03em; text-align: center;
      transition: background 0.2s, transform 0.15s;
    }
    .pay-btn:hover { background: #1d4ed8; transform: translateY(-1px); }
    .pay-trust {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.73rem; color: var(--cream-35);
      margin-top: 1rem; line-height: 1.5;
    }
    .pay-questions {
      display: block; margin-top: 1.25rem;
      font-size: 0.76rem; color: var(--cream-35);
      text-decoration: none; text-align: center;
      transition: color 0.2s;
    }
    .pay-questions:hover { color: var(--cream-60); }
    /* Payment pages — override nav animation (no loading screen on these pages) */
    .pay-page nav { opacity: 1; animation: none; }

    /* Hub payment page */
    .pay-hub-layout { max-width: 780px; width: 100%; }
    .pay-hub-services {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--cream-15); margin: 2rem 0 3rem;
    }
    .pay-service-tile {
      padding: 1.5rem 1.5rem 1.5rem 0;
      border-right: 1px solid var(--cream-15);
    }
    .pay-service-tile:not(:first-child) { padding-left: 1.5rem; }
    .pay-service-tile:last-child { border-right: none; padding-right: 0; }
    .pay-service-tile-num {
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
      color: var(--cream-35); margin-bottom: 0.75rem; display: block;
    }
    .pay-service-tile-name {
      font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      color: var(--cream); margin-bottom: 0.55rem;
    }
    .pay-service-tile-desc { font-size: 0.82rem; color: var(--cream-60); line-height: 1.65; }
    .pay-service-tile-link {
      font-size: 0.72rem; letter-spacing: 0.06em; color: var(--blue);
      text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem;
      margin-top: 0.9rem; transition: opacity 0.2s;
    }
    .pay-service-tile-link:hover { opacity: 0.7; }
    .pay-service-tile--active { border-left: 2px solid var(--blue); padding-left: 1.25rem; }
    .pay-hub-contact {
      background: var(--graphite); border: 1px solid var(--cream-08);
      border-top: 2px solid var(--blue); padding: 2rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem; flex-wrap: wrap;
    }
    .pay-hub-contact-text { font-size: 0.88rem; color: var(--cream-60); line-height: 1.65; }
    .pay-hub-contact-text strong {
      display: block; color: var(--cream); font-weight: 700; margin-bottom: 0.25rem;
    }
    .pay-hub-btn {
      display: inline-flex; align-items: center; white-space: nowrap;
      padding: 0.75rem 1.5rem; background: var(--blue); color: var(--cream);
      text-decoration: none; font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.03em; transition: background 0.2s, transform 0.15s; flex-shrink: 0;
    }
    .pay-hub-btn:hover { background: #1d4ed8; transform: translateY(-1px); }
    .pay-disclaimer {
      margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-08);
      font-size: 0.74rem; color: var(--cream-35); line-height: 1.75;
    }

    .pay-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.5rem 4rem; border-top: 1px solid var(--cream-08); gap: 2rem;
    }
    .pay-footer-legal { display: flex; gap: 1.25rem; }
    .pay-footer-legal a, .pay-footer-copy {
      font-size: 0.76rem; color: var(--cream-35); text-decoration: none; transition: color 0.2s;
    }
    .pay-footer-legal a:hover { color: var(--cream-60); }

    /* ─── WHO WE HELP CARDS ────────────────────────── */
    .wh-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--cream-15);
      margin-top: 4rem;
    }
    .wh-card {
      padding: 3rem 3rem 3rem 0;
      border-right: 1px solid var(--cream-15);
    }
    .wh-card:nth-child(2) { padding-left: 3rem; }
    .wh-card:last-child { border-right: none; padding-left: 3rem; }
    .wh-num {
      font-size: 0.68rem; color: var(--blue-60);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif; margin-bottom: 1.5rem;
    }
    .wh-title {
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 1rem; line-height: 1.3;
    }
    .wh-body {
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 0.9rem; line-height: 1.72; color: var(--cream-60);
    }

    /* ─── AI ASSISTANTS ──────────────────────────────── */
    #ai-assistants .features-header { gap: 4rem; margin-bottom: 2.5rem; }
    .ai-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--cream-15);
      margin-top: 2.5rem;
    }
    .ai-card {
      padding: 2rem 2rem 2rem 0;
      border-right: 1px solid var(--cream-15);
    }
    .ai-card:not(:first-child) { padding-left: 2rem; }
    .ai-card:nth-child(even) { border-right: 1px solid var(--cream-15); padding-right: 2rem; }
    .ai-card:last-child { border-right: none; padding-right: 0; }
    .ai-card .wh-num { margin-bottom: 0.45rem; }
    .ai-card .wh-title { margin-bottom: 0.6rem; }
    .ai-bottom {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; margin-top: 3rem;
      padding-top: 2.5rem; border-top: 1px solid var(--cream-15);
    }
    .ai-cta-title {
      font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem;
      line-height: 1.2; letter-spacing: -0.02em;
    }
    .ai-cta-body {
      font-size: 0.95rem; color: var(--cream-60); line-height: 1.65;
    }

    /* ─── MOCKUP PAGE ────────────────────────────────── */
    .mockup-page .hero-orb { top: -200px; left: 50%; transform: translateX(-50%); }
    .mockup-hero {
      padding: 8rem 4rem 6rem;
      position: relative;
      overflow: hidden;
    }
    .mockup-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
      max-width: 1400px;
      margin: 0 auto;
    }
    .mockup-hero-left { position: sticky; top: 6rem; }
    .mockup-headline {
      font-size: clamp(2.8rem, 5vw, 6rem);
      font-weight: 800;
      line-height: 0.97;
      letter-spacing: -0.04em;
      margin-bottom: 1.8rem;
    }
    .mockup-sub {
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      color: var(--cream-60);
      line-height: 1.65;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }
    .mockup-proof {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 3rem;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--cream-60);
    }
    .proof-check {
      color: var(--blue);
      font-weight: 700;
      flex-shrink: 0;
    }
    .mockup-channels-label {
      font-size: 0.78rem;
      color: var(--cream-35);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    /* Select styling (matches cf-field inputs) */
    .cf-select {
      background: var(--cream-08);
      border: 1px solid var(--cream-15);
      border-radius: 0;
      padding: 0.75rem 1rem;
      min-height: 44px;
      color: var(--cream);
      font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      width: 100%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
    }
    .cf-select:focus { border-color: var(--blue-60); }
    .cf-select option {
      background: #1a2234;
      color: var(--cream);
    }

    /* Contractors page */
    .contractors-hero {
      padding: 9rem 4rem 5rem;
      position: relative;
      overflow: hidden;
    }
    .contractors-headline {
      font-size: clamp(2.8rem, 6vw, 7.5rem);
      font-weight: 800;
      line-height: 0.97;
      letter-spacing: -0.04em;
      max-width: 900px;
      margin-bottom: 2rem;
    }
    .contractors-sub {
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      color: var(--cream-60);
      max-width: 560px;
      line-height: 1.65;
      margin-bottom: 3rem;
    }
    .contractors-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      border: 1px solid var(--cream-15);
      margin-top: 3rem;
    }
    .pain-card {
      padding: 2rem 1.75rem;
      border-right: 1px solid var(--cream-15);
    }
    .pain-card:last-child { border-right: none; }
    .pain-num {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--cream-35);
      margin-bottom: 1rem;
      display: block;
    }
    .pain-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: var(--cream);
    }
    .pain-desc {
      font-size: 0.82rem;
      color: var(--cream-35);
      line-height: 1.6;
    }
    .contractors-section {
      padding: 8rem 4rem;
    }
    .contractors-cta {
      padding: 8rem 4rem;
      text-align: center;
      border-top: 1px solid var(--cream-15);
    }
    .contractors-cta-headline {
      font-size: clamp(2.2rem, 5vw, 5.5rem);
      font-weight: 800;
      line-height: 0.97;
      letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
    }
    .contractors-cta-sub {
      font-size: 1rem;
      color: var(--cream-60);
      max-width: 480px;
      margin: 0 auto 2.5rem;
      line-height: 1.65;
    }

    /* ─── REVEAL ─────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.85s ease, transform 0.85s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }
    .d5 { transition-delay: 0.5s; }

    /* ─── MOBILE ─────────────────────────────────────── */
    /* ─── TABLET (≤ 900px) ──────────────────────────── */
    @media (max-width: 900px) {
      /* Nav */
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .nav-actions { gap: 0.55rem; }

      /* Hero */
      .hero { padding: 6.5rem 1.5rem 4rem; min-height: 100svh; justify-content: flex-start; }
      .hero-eyebrow { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
      .hero-title { font-size: clamp(2.2rem, 9vw, 5rem); margin-bottom: 2rem; }
      .hero-services { gap: 0.45rem; margin-bottom: 2.5rem; }
      .hero-pill { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
      .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; margin-top: 2.5rem; }
      .hero-desc { max-width: 100%; font-size: 0.95rem; }
      .hero-actions { flex-wrap: wrap; }
      .hero-scroll { text-align: left; }

      /* Portfolio */
      .portfolio-section { padding: 4rem 1.5rem; }
      .portfolio-grid { grid-template-columns: 1fr; gap: 1.2rem; }

      /* Sections */
      section { padding: 4rem 1.5rem; }
      .hr { margin: 0 1.5rem !important; }

      /* Website spotlight */
      .ws-section { padding: 4rem 1.5rem; }
      .ws-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .ws-title { font-size: clamp(1.8rem, 7vw, 3rem); }
      .ws-card { order: -1; }
      .ws-mock-h { font-size: 1.3rem; }
      .ws-stat-n { font-size: 0.95rem; }

      /* Problem / Solution / Features / Vision */
      .problem-inner, .hiw-header, .features-header,
      .wl-inner, .vision-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .wh-grid { grid-template-columns: 1fr; }
      .wh-card { border-right: none; padding: 2rem 0 !important; border-bottom: 1px solid var(--cream-15); }
      .wh-card:last-child { border-bottom: none; }
      .solution-list, .features-grid { grid-template-columns: 1fr; }
      .solution-item:nth-child(odd),
      .solution-item:nth-child(even),
      .feat:nth-child(odd),
      .feat:nth-child(even) { padding: 1.4rem 0; border-left: none; }

      /* How it works */
      .steps { grid-template-columns: 1fr; }
      .step { border-right: none; padding: 2rem 0 !important; border-bottom: 1px solid var(--cream-15); }
      .step:last-child { border-bottom: none; }

      /* Contact */
      .cta-section { padding: 5rem 1.5rem; }
      .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
      .contact-right { position: static; }
      .contact-channels { max-width: 100%; }
      .contact-channel { padding: 1rem 1rem; }
      .cf-card { padding: 1.8rem 1.5rem; }
      .cf-row { grid-template-columns: 1fr; }
      .cf-checks { grid-template-columns: 1fr 1fr; }
      /* Payment page */
      .pay-grid { grid-template-columns: 1fr; gap: 3rem; }
      .pay-card { position: static; }
      .pay-section { padding: 6rem 2rem 4rem; align-items: flex-start; }
      .pay-footer { padding: 1.5rem 2rem; flex-wrap: wrap; }
      .pay-hub-services { grid-template-columns: 1fr; }
      .pay-service-tile { padding: 1.25rem 0; border-right: none; border-bottom: 1px solid var(--cream-15); }
      .pay-service-tile:last-child { border-bottom: none; }
      .pay-hub-contact { flex-direction: column; align-items: flex-start; }
      .legal-page .hero { padding: 6.5rem 1.5rem 2rem; }
      .legal-shell { padding: 0 1.5rem 4rem; }
      .legal-card { padding: 2rem 1.5rem; }

      /* AI Assistants */
      #ai-assistants .features-header { gap: 2.5rem; margin-bottom: 2rem; }
      .ai-grid { grid-template-columns: repeat(2, 1fr); }
      .ai-card {
        padding: 1.5rem 1.5rem 1.5rem 0 !important;
        border-right: 1px solid var(--cream-15) !important;
        border-bottom: 1px solid var(--cream-15) !important;
      }
      .ai-card:not(:first-child) { padding-left: 1.5rem !important; }
      .ai-card:nth-child(even) { border-right: none !important; padding-right: 0 !important; }
      .ai-card:nth-child(3),
      .ai-card:nth-child(4) { border-bottom: none !important; }
      .ai-card:last-child { border-bottom: none !important; }
      .ai-bottom { grid-template-columns: 1fr; gap: 2.5rem; }

      /* Footer */
      footer { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 3rem 1.5rem 0; }
      .footer-bottom { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
    }

    /* ─── PHONE (≤ 480px) ───────────────────────────── */
    @media (max-width: 480px) {
      /* Nav */
      nav { padding: 0.9rem 1.5rem; }
      .nav-actions { gap: 0.45rem; }
      .nav-lang { padding: 0.45rem 0.65rem; font-size: 0.7rem; letter-spacing: 0.08em; }
      .nav-cta { padding: 0.45rem 0.9rem; font-size: 0.73rem; letter-spacing: 0.04em; }
      .nav-logo span { font-size: 0.65rem !important; }

      /* Hero */
      .hero { padding: 5.5rem 1.5rem 3.5rem; }
      .hero-eyebrow { display: none; }
      .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.08; margin-bottom: 1.5rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-btn-primary, .hero-btn-ghost { justify-content: center; text-align: center; }
      .hero-services { gap: 0.35rem; margin-bottom: 2.5rem; }
      .hero-pill { font-size: 0.65rem; padding: 0.3rem 0.65rem; }
      .hero-visual { display: block; width: 100%; margin-top: 2.5rem; overflow: hidden; }

      /* Payment page */
      .pay-section { padding: 5rem 1.5rem 3rem; }
      .pay-card { padding: 1.75rem; }
      .pay-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
      .pay-desc { font-size: 0.92rem; }
      .pay-footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }

      /* Mockup page phone */
      .mockup-proof { grid-template-columns: 1fr; }
      .contractors-actions { flex-direction: column; align-items: stretch; }

      /* Website spotlight */
      .ws-section { padding: 3rem 1.5rem; }
      .ws-mock-stats { grid-template-columns: repeat(3,1fr); }
      .ws-stat { padding: 0.9rem 0.5rem; }
      .ws-stat-n { font-size: 0.85rem; }
      .ws-stat span:last-child { font-size: 0.6rem; }

      /* Mockup page */
      .mockup-hero { padding: 4rem 1.5rem 3rem; }
      .mockup-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .mockup-hero-left { position: static; }
      .mockup-headline { font-size: clamp(2.4rem, 8vw, 4rem); }
      .mockup-proof { grid-template-columns: 1fr 1fr; }

      /* Contractors page */
      .contractors-hero { padding: 6rem 1.5rem 3rem; }
      .contractors-headline { font-size: clamp(2.2rem, 8vw, 4rem); }
      .pain-grid { grid-template-columns: 1fr; }
      .pain-card { border-right: none; border-bottom: 1px solid var(--cream-15); }
      .pain-card:last-child { border-bottom: none; }
      .contractors-section { padding: 4rem 1.5rem; }
      .contractors-cta { padding: 4rem 1.5rem; }

      /* Sections */
      section { padding: 3.5rem 1.5rem; }
      .hr { margin: 0 1.5rem !important; }

      /* Section titles */
      .section-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
      .vision-big { font-size: clamp(1.8rem, 9vw, 3rem); }

      /* Contact */
      .cta-section { padding: 4rem 1.5rem; }
      .cf-card { padding: 1.5rem 1.5rem; border-radius: 0; }
      .cf-checks { grid-template-columns: 1fr; }
      .cf-check { padding: 0.55rem 0.75rem; }
      .contact-channel { gap: 1rem; }
      .channel-icon { width: 38px; height: 38px; }
      .legal-meta { flex-direction: column; gap: 0.45rem; }
      .legal-card { padding: 1.5rem 1.25rem; }

      /* Footer */
      footer { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 0; }
      .footer-bottom { padding: 1.5rem 1.2rem; }

      /* Solution badge */
      .s-badge { display: none; }

      /* AI Assistants phone */
      .ai-grid { grid-template-columns: 1fr; }
      .ai-card {
        border-right: none !important;
        padding: 1.25rem 0 !important;
        border-bottom: 1px solid var(--cream-15) !important;
      }
      .ai-card:nth-child(even) { padding-left: 0 !important; }
      .ai-card:nth-child(3),
      .ai-card:nth-child(4) { border-bottom: 1px solid var(--cream-15) !important; }
      .ai-card:last-child { border-bottom: none !important; }
    }
