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

  :root {
    --navy:   #0B1220;
    --slate:  #1E2D3D;
    --teal:   #1FD4A0;
    --amber:  #FFB830;
    --cream:  #F5F4F0;
    --cream2: #E8E6DF;
    --grey:   #888888;
    --dgrey:  #444444;
    --teal-dk:#065C42;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── TILE CANVAS (reusable SVG tile pattern) ── */
  .tile-canvas {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .tile-canvas svg { width: 100%; height: 100%; }

  /* ── HERO VIDEO BACKGROUND ── */
  .hero-video-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  .hero-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
    will-change: opacity;
  }
  .hero-video-wrap video.active { opacity: 1; }

  /* layered overlays for legibility */
  .hero-overlay-base {
    position: absolute; inset: 0; z-index: 1;
    background: rgba(11,18,32,0.62);
  }
  .hero-overlay-grad {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
      105deg,
      rgba(11,18,32,0.88) 0%,
      rgba(11,18,32,0.55) 55%,
      rgba(11,18,32,0.25) 100%
    );
  }
  /* teal vignette bottom edge */
  .hero-overlay-vignette {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 180px; z-index: 3;
    background: linear-gradient(to top, rgba(11,18,32,0.9), transparent);
  }

  /* video switcher dots */
  .video-dots {
    position: absolute; bottom: 28px; right: 40px;
    z-index: 10;
    display: flex; gap: 8px; align-items: center;
  }
  .vdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none; padding: 0;
  }
  .vdot.active {
    background: var(--teal);
    transform: scale(1.4);
  }

  /* caption tag for current scene */
  .video-caption {
    position: absolute; bottom: 24px; left: 40px;
    z-index: 10;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    display: flex; align-items: center; gap: 8px;
    transition: opacity 0.4s;
  }
  .video-caption::before {
    content: '';
    width: 18px; height: 1.5px;
    background: var(--teal); opacity: 0.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    background: rgba(11,18,32,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31,212,160,0.12);
    transition: all 0.3s ease;
  }
  .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .nav-mark { display: grid; grid-template-columns: repeat(4,10px); grid-template-rows: repeat(4,10px); gap: 2px; }
  .nm { width: 10px; height: 10px; border-radius: 1.5px; }
  .nm-navy { background: #fff; }
  .nm-teal { background: var(--teal); }
  .nm-amber { background: var(--amber); }
  .nm-ghost { background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.15); }
  .nav-wordmark { line-height: 1; }
  .nav-wordmark span:first-child {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #fff;
    text-transform: uppercase;
  }
  .nav-wordmark span:last-child {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--teal);
    text-transform: uppercase;
  }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-cta {
    background: var(--teal);
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: 3px;
    font-weight: 700 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #2de8b0 !important; color: var(--navy) !important; }

  /* ── NAV DROPDOWN ── */
  .nav-dropdown {
    position: relative;
    /* Extend hover area downward so gap between toggle and panel stays hot */
    padding-bottom: 20px;
    margin-bottom: -20px;
  }
  .nav-dropdown > .nav-dropdown-toggle {
    display: flex; align-items: center; gap: 6px;
    cursor: pointer;
  }
  /* Chevron icon */
  .nav-dropdown-toggle svg {
    width: 10px; height: 10px;
    stroke: var(--teal);
    transition: transform 0.25s ease, stroke 0.2s;
    flex-shrink: 0;
  }
  .nav-dropdown:hover .nav-dropdown-toggle svg,
  .nav-dropdown-toggle:focus svg {
    transform: rotate(180deg);
    stroke: var(--teal);
  }
  /* Dropdown panel */
  .nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: rgba(11,18,32,0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(31,212,160,0.12);
    border-top: 2px solid var(--teal);
    border-radius: 0 0 4px 4px;
    /* padding-top creates invisible hover bridge above the visible panel */
    padding: 20px 0 8px;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
  }
  /* Invisible bridge above panel fills the gap between toggle and panel */
  .nav-dropdown-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 20px;
    background: transparent;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-panel a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    text-transform: none;
    transition: color 0.15s, background 0.15s, padding-left 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    white-space: nowrap;
  }
  .nav-dropdown-panel a:last-child { border-bottom: none; }
  .nav-dropdown-panel a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 2px;
    background: var(--teal);
    opacity: 0;
    transition: opacity 0.15s;
    flex-shrink: 0;
  }
  .nav-dropdown-panel a:hover {
    color: #fff;
    background: rgba(31,212,160,0.06);
    padding-left: 24px;
  }
  .nav-dropdown-panel a:hover::before { opacity: 1; }
  /* "View all services" footer link */
  .nav-dropdown-panel .nav-dropdown-all {
    margin: 6px 12px 4px;
    padding: 10px 16px;
    background: rgba(31,212,160,0.08);
    border: 1px solid rgba(31,212,160,0.2);
    border-radius: 3px;
    color: var(--teal) !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    justify-content: center;
    border-bottom: none !important;
    display: flex;
  }
  .nav-dropdown-all:hover {
    background: rgba(31,212,160,0.14) !important;
    color: var(--teal) !important;
    padding-left: 16px !important;
  }
  .nav-dropdown-all::before { display: none !important; }

  /* ── HAMBURGER BUTTON ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 200;
    position: relative;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,0.06); }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }
  /* Animate into X when open */
  .nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0; width: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── MOBILE MENU OVERLAY ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(11,18,32,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* Top padding clears the nav bar; bottom padding clears safe area */
    padding: 80px 32px 32px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 800;
    letter-spacing: -0.01em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    line-height: 1;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    display: block;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:hover { color: var(--teal); padding-left: 8px; }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu .mob-cta {
    margin-top: 20px;
    background: var(--teal);
    color: var(--navy) !important;
    padding: 14px 28px;
    border-radius: 3px;
    font-size: clamp(15px, 4vw, 18px);
    display: inline-block;
    width: auto;
    border-bottom: none !important;
  }
  .mobile-menu .mob-cta:hover {
    background: #2de8b0;
    padding-left: 28px !important;
  }
  /* Teal accent bar at top of mobile menu */
  .mob-close {
    position: fixed;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .mob-close:hover {
    background: rgba(31,212,160,0.12);
    border-color: var(--teal);
  }
  .mob-close svg {
    width: 18px; height: 18px;
    stroke: rgba(255,255,255,0.7);
    transition: stroke 0.2s;
  }
  .mob-close:hover svg { stroke: var(--teal); }
  .mobile-menu::before {
    content: '';
    position: fixed; top: 72px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--amber), transparent);
    z-index: 1;
  }
  /* Stagger animation for menu items */
  .mobile-menu.open a {
    animation: menuSlideIn 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-16px);
  }
  .mobile-menu.open a:nth-child(1) { animation-delay: 0.05s; }
  .mobile-menu.open a:nth-child(2) { animation-delay: 0.10s; }
  .mobile-menu.open a:nth-child(3) { animation-delay: 0.15s; }
  .mobile-menu.open a:nth-child(4) { animation-delay: 0.20s; }
  .mobile-menu.open a:nth-child(5) { animation-delay: 0.25s; }
  .mobile-menu.open a:nth-child(6) { animation-delay: 0.30s; }
  .mobile-menu.open a:nth-child(7) { animation-delay: 0.35s; }
  @keyframes menuSlideIn {
    to { opacity: 1; transform: translateX(0); }
  }

  /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: 72px;
  }
  .hero-inner {
    position: relative; z-index: 5;
    width: 100%;
    max-width: 1200px; margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
  }
  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-tag::before {
    content: '';
    display: block; width: 28px; height: 2px;
    background: var(--teal);
  }
  .hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(60px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 28px;
  }
  .hero-h1 em {
    font-style: normal;
    color: var(--teal);
  }
  .hero-rule {
    display: flex; gap: 0; margin-bottom: 32px;
  }
  .hero-rule span:first-child { width: 64px; height: 3px; background: var(--teal); }
  .hero-rule span:last-child  { width: 20px; height: 3px; background: var(--amber); }
  .hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 44px;
  }
  .hero-sub strong { color: #fff; font-weight: 500; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 32px; border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #2de8b0; transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 32px; border-radius: 3px;
    border: 1.5px solid rgba(255,255,255,0.25);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
  /* Ghost variant — white border/text on dark backgrounds, same teal hover as btn-secondary */
  .btn-secondary--ghost {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
  }
  .btn-secondary--ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
  }

  /* Hero stats bar */
  .hero-stats {
    display: flex; gap: 1px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item {
    flex: 1; padding: 0 24px 0 0;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px; font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--teal);
    line-height: 1;
  }
  .stat-lbl {
    font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
    line-height: 1.4;
  }

  /* Hero right: large logomark */
  .hero-mark-wrap {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-mark-grid {
    display: grid;
    grid-template-columns: repeat(4, 56px);
    grid-template-rows: repeat(4, 56px);
    gap: 10px;
  }
  .hm { width: 56px; height: 56px; border-radius: 6px; }
  .hm-navy  { background: #fff; }
  .hm-teal  { background: var(--teal); }
  .hm-amber { background: var(--amber); }
  .hm-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .mark-anim .hm { animation: tile-pulse 4s ease-in-out infinite; }
  .mark-anim .hm-teal  { animation-delay: 0.3s; }
  .mark-anim .hm-amber { animation-delay: 0.8s; }
  @keyframes tile-pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  /* ── ZERO SIFS BANNER ── */
  .sif-banner {
    background: var(--amber);
    padding: 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
    /* hide scrollbar visually on all browsers but keep it functional */
    scrollbar-width: none;        /* Firefox */
    -ms-overflow-style: none;     /* IE/Edge */
  }
  .sif-banner::-webkit-scrollbar { display: none; } /* Chrome/Safari */
  .sif-banner-inner {
    display: flex; align-items: center; gap: 24px;
    /* enough side padding so first/last items aren't flush to edge */
    padding: 0 32px;
    /* prevent wrapping so items stay in one scrollable row */
    white-space: nowrap;
    width: max-content;
    min-width: 100%;
    justify-content: center;
  }
  .sif-banner-txt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 800;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .sif-banner-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--navy); opacity: 0.35;
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .sif-banner-inner {
      justify-content: flex-start;
    }
  }

  /* ── SECTION SHARED ── */
  section { position: relative; }
  .section-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 100px 40px;
  }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before {
    content: ''; display: block;
    width: 20px; height: 2px; background: var(--teal);
  }
  .section-tag.amber { color: var(--amber); }
  .section-tag.amber::before { background: var(--amber); }
  .section-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900; line-height: 1;
    letter-spacing: -0.01em; text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
  }
  .section-h2.light { color: #fff; }
  .section-intro {
    font-size: 17px; font-weight: 300; line-height: 1.7;
    color: var(--dgrey); max-width: 560px;
  }
  .section-intro.light { color: rgba(255,255,255,0.6); }

  /* ── PROBLEM SECTION ── */
  #problem { background: var(--navy); }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
  }
  .problem-card {
    background: var(--slate);
    padding: 44px;
    position: relative; overflow: hidden;
    transition: background 0.25s;
  }
  .problem-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .problem-card:hover { background: #243444; }
  .problem-card:hover::after { transform: scaleX(1); }
  .problem-card.amber-accent::after { background: var(--amber); }
  .pc-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 72px; font-weight: 900;
    letter-spacing: -0.03em;
    color: rgba(31,212,160,0.12);
    line-height: 1;
    margin-bottom: 12px;
  }
  .problem-card.amber-accent .pc-num { color: rgba(255,184,48,0.12); }
  .pc-h { 
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 800;
    letter-spacing: 0.02em; text-transform: uppercase;
    color: #fff; margin-bottom: 14px;
  }
  .pc-p { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
  .pc-p strong { color: var(--teal); font-weight: 500; }
  .problem-card.amber-accent .pc-p strong { color: var(--amber); }

  /* ── SERVICES ── */
  #services { background: var(--cream); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
  }
  .svc-card {
    background: #fff;
    padding: 40px 36px;
    position: relative; overflow: hidden;
    text-decoration: none; color: inherit;
    display: block;
    transition: transform 0.2s;
  }
  .svc-card:hover { transform: translateY(-3px); }
  .svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
  }
  .svc-card.amber::before { background: var(--amber); }
  .svc-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(2, 10px);
    grid-template-rows: repeat(2, 10px);
    gap: 3px;
    align-content: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px;
  }
  .si { width: 10px; height: 10px; border-radius: 1.5px; }
  .svc-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 800;
    letter-spacing: 0.02em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 12px;
  }
  .svc-p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--dgrey); margin-bottom: 24px; }
  .svc-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal);
    display: flex; align-items: center; gap: 8px;
  }
  .svc-card.amber .svc-link { color: var(--amber); }
  .svc-link svg { transition: transform 0.2s; }
  .svc-card:hover .svc-link svg { transform: translateX(4px); }

  /* ── APPROACH / ZERO SIFs ── */
  #approach { background: var(--navy); overflow: hidden; }
  .approach-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
  }
  .approach-points { margin-top: 40px; }
  .ap-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    align-items: start;
  }
  .ap-item:last-child { border-bottom: none; }
  .ap-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    color: var(--teal); letter-spacing: 0.1em;
    padding-top: 2px;
  }
  .ap-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.03em;
    color: #fff; margin-bottom: 6px;
  }
  .ap-p { font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.5); }

  /* Big ZERO SIFS visual */
  .zero-sifs-visual {
    position: relative;
  }
  .zero-sifs-box {
    background: var(--slate);
    border: 1px solid rgba(31,212,160,0.15);
    padding: 48px;
    border-radius: 4px;
    text-align: center;
  }
  .zs-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 16px;
  }
  .zs-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 96px; font-weight: 900;
    letter-spacing: -0.04em; line-height: 1;
    color: #fff;
  }
  .zs-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px; font-weight: 700;
    color: var(--teal); letter-spacing: 0.1em;
    text-transform: uppercase; margin-top: 4px;
  }
  .zs-rule { display: flex; justify-content: center; gap: 0; margin: 20px 0; }
  .zs-rule span:first-child { width: 50px; height: 3px; background: var(--teal); }
  .zs-rule span:last-child  { width: 14px; height: 3px; background: var(--amber); }
  .zs-sub {
    font-size: 13px; font-weight: 300; line-height: 1.6;
    color: rgba(255,255,255,0.4);
    max-width: 240px; margin: 0 auto;
  }
  .zs-mark {
    display: grid;
    grid-template-columns: repeat(4, 28px);
    grid-template-rows: repeat(4, 28px);
    gap: 5px;
    margin: 32px auto 0;
    width: fit-content;
  }
  .zm { width: 28px; height: 28px; border-radius: 3px; }
  .zm-w { background: #fff; }
  .zm-t { background: var(--teal); }
  .zm-a { background: var(--amber); }
  .zm-g { background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.12); }

  /* ── ALAN ── */
  #alan { background: var(--cream); }
  .alan-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }
  .alan-card {
    background: var(--navy);
    border-radius: 4px; overflow: hidden;
    position: sticky; top: 100px;
  }
  .alan-img-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--slate);
    overflow: hidden;
    border-radius: 4px 4px 0 0;
  }
  .alan-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
  }
  .alan-card-info { padding: 28px; }
  .alan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: #fff; margin-bottom: 4px;
  }
  .alan-cred {
    font-size: 12px; font-weight: 500;
    color: var(--teal); letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .alan-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 2px;
  }
  .alan-content {}
  .alan-content .section-tag { margin-bottom: 12px; }
  .alan-body {
    font-size: 16px; font-weight: 300; line-height: 1.8;
    color: var(--dgrey); margin-bottom: 32px;
  }
  .alan-awards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    margin-bottom: 40px;
  }
  .award-item {
    background: #fff;
    border: 1px solid var(--cream2);
    padding: 16px 20px; border-radius: 3px;
  }
  .award-item p:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--navy); margin-bottom: 4px;
  }
  .award-item p:last-child {
    font-size: 12px; color: var(--grey); font-weight: 300;
  }

  /* ── CASE STUDIES ── */
  #casestudies { background: var(--slate); }
  #testimonials { background: #1E2D3D; }
  .cs-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2px; margin-top: 60px;
  }
  .cs-card {
    background: var(--navy);
    padding: 44px;
    position: relative; overflow: hidden;
  }
  .cs-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--teal);
  }
  .cs-card.amber::before { background: var(--amber); }
  .cs-org {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 16px;
  }
  .cs-card.amber .cs-org { color: var(--amber); }
  .cs-quote {
    font-size: 15px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin-bottom: 28px;
  }
  .cs-author { 
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.4);
  }
  .cs-author strong { color: #fff; font-weight: 600; }


  /* ── CASE STUDIES (new) ── */
  #caseblock { background: var(--cream); }
  .caseblock-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 48px;
    gap: 20px;
  }
  .cs-scroll-track {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) var(--cream2);
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Bleed full viewport width regardless of section-inner padding */
    margin-left: -40px;
    margin-right: -40px;
  }
  .cs-scroll-track::-webkit-scrollbar { height: 4px; }
  .cs-scroll-track::-webkit-scrollbar-track { background: var(--cream2); border-radius: 2px; }
  .cs-scroll-track::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
  .cs-cards-row {
    display: flex;
    flex-direction: row;
    gap: 2px;
    /* No explicit width — let cards define it */
  }
  .cs-cards-row .csc-card {
    /* Each card = exactly half the viewport width,
       accounting for half the gap between them.
       This makes exactly 2 visible at all times on desktop. */
    flex: 0 0 calc(50vw - 1px);
    scroll-snap-align: start;
  }
  .csc-card {
    background: #fff;
    display: flex; flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s;
    text-decoration: none; color: inherit;
  }
  .csc-card:hover { transform: translateY(-3px); }
  .csc-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .csc-card:hover::after { transform: scaleX(1); }
  .csc-img {
    width: 100%; height: 360px;
    background: var(--slate);
    overflow: hidden; position: relative; flex-shrink: 0;
  }
  .csc-img-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
  }
  /* tile icon in placeholder */
  .csc-tile-icon {
    display: grid;
    grid-template-columns: repeat(4, 8px);
    grid-template-rows: repeat(4, 8px);
    gap: 2px;
  }
  .cti { width: 8px; height: 8px; border-radius: 1px; }
  .csc-placeholder-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
  }
  .csc-body {
    padding: 24px 24px 28px;
    flex: 1; display: flex; flex-direction: column;
  }
  .csc-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 10px;
  }
  .csc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.01em;
    color: var(--navy); line-height: 1.1;
    margin-bottom: 10px;
  }
  .csc-desc {
    font-size: 13px; font-weight: 300; line-height: 1.6;
    color: var(--dgrey); flex: 1;
  }
  @media (max-width: 900px) {
    .cs-cards-row .csc-card { flex: 0 0 85vw; }
    .cs-scroll-track { margin-left: -20px; margin-right: -20px; }
    .caseblock-header { grid-template-columns: 1fr; gap: 16px; }
    .csc-img { height: auto; }
    .csc-img img { height: auto !important; object-fit: unset !important; }
  }

  /* ── CASE STUDIES scroll wrapper ── */
  .cs-scroll-wrapper {
    position: relative;
    overflow: visible;
  }
  .cs-nav-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(11,18,32,0.15);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
    flex-shrink: 0;
  }
  .cs-nav-prev { left: 40px; }
  .cs-nav-next { right: 40px; }
  .cs-nav-btn:hover:not(:disabled) {
    background: var(--navy); color: #fff; border-color: var(--navy);
  }
  .cs-nav-btn:disabled { opacity: 0.25; cursor: default; }

  /* ── INSIGHTS ── */
  /* ── INSIGHTS — editorial dark layout ── */
  #insights {
    background: var(--slate);
    border-top: 3px solid var(--teal);
  }
  .insights-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 40px;
    gap: 20px;
  }
  /* Insights: hero (image left / content right) + two text-only cards below */
  .ins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ins-img-col {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: block;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .ins-img-col img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }
  .ins-hero-noimg {
    position: absolute; inset: 0;
    background: var(--slate);
    background-image: repeating-linear-gradient(
      135deg,
      rgba(31,212,160,0.06) 0px, rgba(31,212,160,0.06) 1px,
      transparent 1px, transparent 18px
    );
  }
  .ins-featured-badge {
    position: absolute; bottom: 0; left: 0;
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--teal);
    background: rgba(11,18,32,0.75); backdrop-filter: blur(4px);
    border-top: 1px solid rgba(31,212,160,0.2);
    border-right: 1px solid rgba(31,212,160,0.2);
  }
  .ins-content-col {
    padding: 60px 56px;
    display: flex; flex-direction: column; justify-content: center;
    text-decoration: none; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: opacity 0.2s;
  }
  .ins-content-col:hover { opacity: 0.9; }
  .ins-content-col .ins-h { font-size: 42px; margin-bottom: 10px; }
  .ins-content-col .ins-p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 36px; line-height:1.4em; }
  .ins-content-col .ins-meta { margin-top: 12px; margin-bottom: 0; }
  .ins-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .ins-tag::before {
    content: ''; display: block;
    width: 16px; height: 2px; background: var(--teal);
  }
  .ins-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px; font-weight: 900;
    letter-spacing: -0.02em; text-transform: uppercase;
    color: #fff; margin-bottom: 5px;
    line-height: 1;
  }
  .ins-p {
    font-size: 15px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.55); margin-bottom: 24px;
  }
  .ins-meta {
    font-size: 12px; color: rgba(255,255,255,0.28);
    letter-spacing: 0.04em; margin-top: 12px; margin-bottom: 0;
  }
  .ins-read-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--teal); text-decoration: none;
    transition: gap 0.2s;
  }
  .ins-read-link:hover { gap: 14px; }
  .ins-item {
    padding: 40px 48px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column;
    text-decoration: none; color: rgba(255,255,255,0.28);
    transition: background 0.25s;
    position: relative;
  }
  .ins-item:last-child { border-right: none; }
  .ins-item:hover { background: rgba(255,255,255,0.03); }
  .ins-item::after {
    content: '';
    position: absolute; bottom: 0; left: 48px; right: 48px;
    height: 2px; background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .ins-item:hover::after { transform: scaleX(1); }
  .ins-item .ins-tag { margin-bottom: 12px; }
  .ins-item .ins-h {
    font-size: 26px; margin-bottom: 5px;
    color: rgba(255,255,255,0.9);
  }
  .ins-item .ins-p {
    font-size: 14px; margin-bottom: 16px; flex: 1; line-height:1.4em;
    color: rgba(255,255,255,0.45);
  }
  .ins-item .ins-meta { font-size: 11px; margin-bottom: 0; }
  @media (max-width: 900px) {
    .ins-grid { grid-template-columns: 1fr; }
    .ins-img-col { min-height: 260px; border-right: none; }
    .ins-content-col { border-right: none; padding: 40px 32px; }
    .ins-content-col .ins-h { font-size: 32px; }
    .ins-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 32px; }
    .ins-item::after { left: 32px; right: 32px; }
    .ins-item:last-child { border-bottom: none; }
  }

  /* ── CTA ── */
  #cta { background: var(--navy); }
  .cta-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 100px 40px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
  }
  .cta-h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900; line-height: 1;
    text-transform: uppercase; letter-spacing: -0.01em;
    color: #fff; margin-bottom: 12px;
  }
  .cta-h em { font-style: normal; color: var(--teal); }
  .cta-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); }
  .cta-actions { display: flex; flex-direction: column; gap: 12px; }

  /* ── FOOTER ── */
  footer {
    background: #060e1a;
    padding: 60px 40px 32px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .footer-top {
    display: grid; grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
  }
  .footer-brand .nav-wordmark span:last-child { margin-top: 2px; }
  .footer-brand p {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.35); margin-top: 16px;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 20px;
  }
  .footer-col a {
    display: block; text-decoration: none;
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: #fff; }
  .footer-btm {
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-btm p { font-size: 12px; color: rgba(255,255,255,0.2); }
  .footer-mark {
    display: flex; align-items: center; gap: 10px;
  }
  .footer-mark span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; color: var(--teal);
  }
  .mini-mark {
    display: grid; grid-template-columns: repeat(4,6px);
    grid-template-rows: repeat(4,6px); gap: 1.5px;
  }
  .mm { width:6px;height:6px;border-radius:1px; }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width:900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-mark-wrap { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .approach-inner { grid-template-columns: 1fr; }
    .alan-inner { grid-template-columns: 1fr; }
    /* Remove sticky so the card doesn't overlap content when scrolling on mobile */
    .alan-card { position: relative; top: auto; }
    /* Cap image height on small screens */
    .alan-img-placeholder { aspect-ratio: auto; height: auto; overflow: visible; }
    .alan-photo { height: auto; object-fit: unset; }
    .cs-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .tile-canvas { display: none; }
    .section-inner,.hero-inner,.approach-inner,.alan-inner,.cta-inner { padding: 60px 20px; }
    .hero-inner { padding: 60px 24px 80px; }
    .hero-sub { max-width: 100%; font-size: 15px; }
    /* Prevent hero-left from overflowing the viewport */
    .hero-left { width: 100%; min-width: 0; overflow: hidden; }
    /* Stack stats into 2x2 grid on small screens */
    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 0;
    }
    .stat-item {
      padding: 0 12px 0 0;
      border-right: none;
    }
    .stat-item:nth-child(odd) {
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-num { font-size: 32px; }
  }
  @media (max-width: 900px) {
    /* Mobile Services accordion */
    .mob-services-group {
      width: 100%;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mob-services-toggle {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      background: none; border: none; cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(24px, 6vw, 36px); font-weight: 800;
      letter-spacing: -0.01em; text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      padding: 12px 0;
      text-align: left;
      transition: color 0.2s;
    }
    .mob-services-toggle:hover,
    .mob-services-toggle.open { color: var(--teal); }
    .mob-services-toggle.open svg { transform: rotate(180deg); }
    .mob-services-toggle svg { transition: transform 0.3s; }
    .mob-services-panel {
      display: none;
      flex-direction: column;
      padding: 0 0 12px 16px;
      gap: 0;
    }
    .mob-services-panel.open { display: flex; }
    .mob-services-panel a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px; font-weight: 600;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      text-transform: none;
      letter-spacing: 0.02em;
      transition: color 0.15s, padding-left 0.15s;
    }
    .mob-services-panel a:last-child { border-bottom: none; }
    .mob-services-panel a:hover { color: var(--teal); padding-left: 8px; }
  }

  /* ══════════════════════════════════════════════════
     CONTACT PAGE
     ══════════════════════════════════════════════════ */

  /* Hero: override homepage full-bleed flex with 50/50 split grid */
  #hero.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: visible;
    background: none;
    width: 100%;
    min-height: 100vh;
    padding-top: 72px;
  }
  #hero.contact-hero .hero-left {
    background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 56px;
    position: relative; overflow: hidden;
  }
  /* Override homepage hero-h1 size for narrower split column */
  #hero.contact-hero .hero-h1 {
    font-size: clamp(44px, 5vw, 64px);
    margin-bottom: 24px;
  }
  #hero.contact-hero .hero-rule { margin-bottom: 12px; }
  #hero.contact-hero .hero-sub  { margin-bottom: 0; font-size: 18px; }

  /* Two-col layout inside hero-left: text + Alan photo */
  .contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 216px;
    gap: 32px;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .contact-hero-text { display: flex; flex-direction: column; justify-content: flex-start; }
  .contact-alan-img  {
    width: 216px; border-radius: 4px;
    object-fit: cover; object-position: top center;
    display: block; align-self: stretch; height: 100%;
  }

  /* Trust signals */
  .trust-row  { display: flex; flex-direction: column; gap: 28px; max-width: 480px; }
  .trust-item { display: flex; align-items: flex-start; gap: 20px; }
  .trust-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .trust-icon svg { stroke: var(--teal); width: 32px; height: 32px; }
  .trust-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.04em; color: #fff; margin-bottom: 4px;
  }
  .trust-text p { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.6; }

  /* Form side */
  .hero-right {
    background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 56px;
    position: relative;
  }
  .hero-right::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--teal), var(--amber), transparent);
  }

  .form-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 900; text-transform: uppercase;
    letter-spacing: -0.01em; color: var(--navy); margin-bottom: 6px;
  }
  .form-sub { font-size: 14px; font-weight: 300; color: var(--grey); margin-bottom: 32px; line-height: 1.6; }

  .contact-form { display: flex; flex-direction: column; gap: 0; }
  .form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-field   { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--navy); opacity: 0.6;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400;
    background: #fff; border: 1.5px solid var(--cream2);
    padding: 13px 16px; border-radius: 3px; color: var(--navy);
    transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    -webkit-appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(31,212,160,0.1);
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #bbb; }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 40px; cursor: pointer;
  }
  .req { color: var(--teal); margin-left: 2px; }

  .form-submit {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--navy); color: #fff;
    font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 32px; border-radius: 3px; border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s; width: 100%; justify-content: center;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--teal); color: var(--navy); transform: translateY(-1px); }
  .form-submit svg { stroke: currentColor; transition: transform 0.2s; }
  .form-submit:hover svg { transform: translateX(4px); }
  .form-privacy { font-size: 11px; color: var(--grey); text-align: center; margin-top: 14px; line-height: 1.6; }
  .form-privacy a { color: var(--navy); }

  /* Form success state */
  .form-success { display: none; text-align: center; padding: 48px 24px; }
  .form-success.visible { display: block; }
  .success-icon {
    width: 56px; height: 56px;
    background: rgba(31,212,160,0.12); border: 2px solid var(--teal); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  }
  .success-icon svg { stroke: var(--teal); }
  .success-h {
    font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900;
    text-transform: uppercase; color: var(--navy); margin-bottom: 10px;
  }
  .success-p { font-size: 14px; color: var(--grey); line-height: 1.6; }

  /* What happens next */
  #next { background: var(--cream); }
  .next-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
  .section-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px, 4vw, 52px); font-weight: 900;
    letter-spacing: -0.01em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 60px;
  }
  .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .step-card  { background: #fff; padding: 40px 36px; position: relative; overflow: hidden; }
  .step-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }
  .step-card:hover::before { transform: scaleX(1); }
  .step-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900;
    letter-spacing: -0.03em; color: rgba(31,212,160,0.1); line-height: 1; margin-bottom: 16px;
  }
  .step-h {
    font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.02em; color: var(--navy); margin-bottom: 10px;
  }
  .step-p { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--dgrey); }
  .step-time {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  }
  .step-time::before { content: ''; display: block; width: 12px; height: 1.5px; background: var(--teal); }

  /* Services quick list */
  #services-list  { background: var(--slate); }
  .services-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
  .services-2col  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .svc-list       { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .svc-list-item  {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.55); text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }
  .svc-list-item:last-child { border-bottom: none; }
  .svc-list-item:hover { color: #fff; padding-left: 8px; }
  .svc-dot { width: 6px; height: 6px; border-radius: 2px; background: var(--teal); opacity: 0; transition: opacity 0.2s; flex-shrink: 0; }
  .svc-list-item:hover .svc-dot { opacity: 1; }
  .svc-cta-block { position: sticky; top: 100px; }
  .svc-cta-block .section-tag        { color: rgba(255,255,255,0.4); }
  .svc-cta-block .section-tag::before { background: rgba(255,255,255,0.3); }
  #services-list .svc-h {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 900;
    text-transform: uppercase; letter-spacing: -0.01em; color: #fff; line-height: 1; margin-bottom: 20px;
  }
  #services-list .svc-h em { font-style: normal; color: var(--teal); }
  #services-list .svc-p { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
  .btn-teal {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--teal); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 14px 28px; border-radius: 3px; text-decoration: none; transition: background 0.2s;
  }
  .btn-teal:hover { background: #2de8b0; }

  /* Testimonial carousel */
  #testimonial { background: var(--navy); border-top: 3px solid var(--teal); }
  .testimonial-inner { max-width: 800px; margin: 0 auto; padding: 80px 40px; }
  .quote-mark {
    font-family: 'Barlow Condensed', sans-serif; font-size: 96px; font-weight: 900;
    color: rgba(31,212,160,0.15); line-height: 0.8; margin: 0;
  }
  .quote-text {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(22px, 3vw, 32px);
    font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: #fff; margin-bottom: 24px;
  }
  .quote-rule { display: flex; margin-bottom: 16px; }
  .quote-rule span:first-child { width: 40px; height: 2px; background: var(--teal); }
  .quote-rule span:last-child  { width: 12px; height: 2px; background: var(--amber); }
  .quote-author { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
  .quote-author strong { color: #fff; font-weight: 600; }

  .carousel-wrap  { position: relative; overflow: hidden; }
  .carousel-track { display: flex; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
  .carousel-slide { flex: 0 0 100%; width: 100%; }
  .carousel-controls {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 24px 40px 48px;
  }
  .carousel-dots { display: flex; gap: 10px; align-items: center; }
  .carousel-dot  {
    width: 8px; height: 8px; border-radius: 2px;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0;
    transition: background 0.25s, width 0.25s;
  }
  .carousel-dot.active { background: var(--teal); width: 24px; }
  .carousel-arrows { display: flex; gap: 10px; }
  .carousel-arrow  {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15); background: transparent;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, border-color 0.2s;
  }
  .carousel-arrow:hover:not(:disabled) { background: rgba(31,212,160,0.1); border-color: var(--teal); }
  .carousel-arrow:disabled { opacity: 0.25; cursor: default; }
  .carousel-arrow svg { stroke: rgba(255,255,255,0.7); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .carousel-arrow:hover:not(:disabled) svg { stroke: var(--teal); }

  /* Contact page mobile */
  @media (max-width: 900px) {
    #hero.contact-hero { grid-template-columns: 1fr; }
    #hero.contact-hero .hero-left { padding: 60px 24px; }
    .hero-right    { padding: 60px 24px; }
    .contact-hero-grid { grid-template-columns: 1fr; }
    .contact-alan-img  { display: none; }
    .form-row    { grid-template-columns: 1fr; }
    .steps-grid  { grid-template-columns: 1fr; }
    .services-2col { grid-template-columns: 1fr; gap: 40px; }
    .svc-cta-block { position: relative; top: auto; }
    .carousel-controls { padding: 20px 24px 40px; }
    .next-inner, .services-inner { padding: 60px 24px; }
  }
