  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Space+Grotesk:wght@400;500;700&display=swap');

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

  :root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #161616;
    --border: rgba(255,255,255,0.07);
    --text: #f0f0f0;
    --muted: #b0b0b0;
    --accent: #C8FF00; /* lime-acid — signature color */
    --accent2: #1a1a1a;
    --white: #ffffff;
    --radius: 2px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 48px;
    background: rgba(8,8,8,0.3);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
  }

  .logo span { color: var(--accent); }

  nav a.nav-cta {
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  nav a.nav-cta:hover { opacity: 0.85; }

  /* ─── HERO ────────────────────────────────────── */
    

  #hero-grid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }


  .hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--accent);
  }

  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 132px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--white);
    max-width: 900px;
    margin-bottom: 32px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .h1-light {
    color: var(--white);
  }

  /* Final period of a headline — accent green */
  .accent-dot {
    color: var(--accent);
  }

  .hero-sub {
    font-size: 20px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex; gap: 16px; align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform 0.15s, opacity 0.15s;
  }
  .btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }

  .btn-ghost {
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s;
    padding: 16px 0;
  }
  .btn-ghost:hover { color: var(--white); }

  /* ─── SERVICES ────────────────────────────────── */
  .services {
    padding: 120px 48px;
    background: var(--bg);
  }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 64px;
    max-width: 600px;
    line-height: 1.1;
  }

  .tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .tile {
    background: var(--bg2);
    padding: 48px 40px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    display: flex; flex-direction: column;
    overflow: hidden;
  }

  .tile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .tile:hover { background: var(--bg3); }
  .tile:hover::after { transform: scaleX(1); }

  .tile-number {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }

  .tile-icon {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1;
  }

  .tile-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .tile-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 32px;
  }

  .tile-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: gap 0.2s;
  }
  .tile:hover .tile-cta { gap: 12px; }

  /* ─── MODAL ───────────────────────────────────── */
  .overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(4,2,12,0.94);
    z-index: 200;
    align-items: center; justify-content: center;
    padding: 24px;
    backdrop-filter: blur(8px);
  }
  .overlay.active { display: flex; }

  .modal {
    background: var(--bg2);
    border: 1px solid var(--border);
    max-width: 760px;
    width: 100%;
    position: relative;
    animation: modalIn 0.25s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none;
    color: var(--muted); font-size: 20px;
    cursor: pointer; z-index: 1;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--white); }

  .modal-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .modal-video-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    color: var(--muted);
    text-align: center;
  }

  .play-btn {
    width: 64px; height: 64px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 20px;
  }

  .modal-video-placeholder p {
    font-size: 13px;
    color: var(--muted);
  }

  .modal-body {
    padding: 36px 40px;
  }

  .modal-service-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .modal-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .modal-actions {
    display: flex; gap: 12px;
    flex-wrap: wrap;
  }

  .btn-call {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color 0.2s, color 0.2s;
    position: relative;
    text-decoration: none;
  }
  .btn-call:hover { border-color: var(--white); }

  .phone-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .phone-tooltip::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--border);
  }
  .btn-call:hover .phone-tooltip { opacity: 1; }

  .btn-enquiry {
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-enquiry:hover { opacity: 0.85; }

  /* ─── CONTACT ─────────────────────────────────── */
  .contact {
    padding: 120px 48px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
  }

  .contact-left .section-title { margin-bottom: 24px; }

  .contact-detail {
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 40px;
  }

  .contact-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px;
    color: var(--muted);
  }

  .contact-item a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item a:hover { color: var(--white); }

  .contact-item-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--accent);
    flex-shrink: 0;
  }

  /* form */
  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  input, textarea, select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
  }

  textarea { min-height: 100px; resize: vertical; }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
  }

  select option { background: var(--bg2); }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .btn-submit {
    width: 100%;
    background: var(--accent);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

  .success-msg {
    display: none;
    text-align: center;
    padding: 48px 24px;
  }
  .success-msg.show { display: block; }
  .success-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .success-msg h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .success-msg p { color: var(--muted); font-size: 15px; }

  /* ─── FOOTER ──────────────────────────────────── */
  footer {
    padding: 32px 48px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }

  .footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
  }
  .footer-logo span { color: var(--accent); }

  .footer-copy {
    font-size: 13px;
    color: var(--muted);
  }

  footer a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--white); }

  /* ─── HIGHLIGHT FORM ──────────────────────────── */
  @keyframes highlight-pulse {
    0% { border-color: var(--accent); box-shadow: 0 0 0 0 rgba(200,255,0,0.3); }
    70% { border-color: var(--accent); box-shadow: 0 0 0 8px rgba(200,255,0,0); }
    100% { border-color: var(--border); }
  }
  .field-highlight { animation: highlight-pulse 1s ease forwards; }

  /* ─── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 900px) {
    nav {
      padding: 14px 16px;
      gap: 12px;
    }
    nav a.nav-cta {
      font-size: 10px;
      padding: 7px 10px;
      letter-spacing: 0.02em;
      white-space: nowrap;
      overflow: visible;
      text-overflow: unset;
      max-width: none;
      flex-shrink: 0;
    }
    .logo {
      font-size: 15px;
      flex-shrink: 0;
    }
      .hero-stats { gap: 28px; flex-wrap: wrap; }
    .services { padding: 80px 24px; }
    .tiles { grid-template-columns: 1fr; }
    .contact { padding: 80px 24px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 24px; flex-direction: column; align-items: flex-start; }
  }

  /* BRANDS TICKER */
  .brands {
    padding: 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    overflow: hidden;
  }
  .brands-label {
    font-size: 11px; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--muted);
    text-align: center; margin-bottom: 28px;
  }
  .brands-track-wrap {
    overflow: hidden; position: relative;
  }
  .brands-track-wrap::before, .brands-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  }
  .brands-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
  .brands-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
  .brands-track {
    display: flex; gap: 48px; align-items: center;
    animation: brandScroll 30s linear infinite;
    width: max-content;
  }
  .brands-track:hover { animation-play-state: paused; }
  @keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  /* brand logos — silhouette filled with a single colour (mask), grey by
     default and lime on hover, matching the old text behaviour */
  .brand-logo {
    width: 144px;
    height: 36px;
    flex-shrink: 0;
    background-color: var(--muted);
    -webkit-mask: var(--logo) center / contain no-repeat;
    mask: var(--logo) center / contain no-repeat;
    transition: background-color 0.3s;
    cursor: default;
  }
  .brand-logo:hover { background-color: var(--accent); }

  /* RESPONSIVE hero grid */
  @media (max-width: 900px) {
            .brands { padding: 40px 24px; }
  }


  /* TESTIMONIALS SLIDER */
  .testimonials {
    padding: 100px 48px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  .testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .testimonials-header .section-title { margin-bottom: 0; }
  .slider-nav {
    display: flex;
    gap: 8px;
  }
  .slider-btn {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: border-color .2s, color .2s;
  }
  .slider-btn:hover { border-color: var(--accent); color: var(--accent); }

  .testimonials-track-wrap {
    overflow: hidden;
  }
  .testimonials-track {
    display: flex;
    gap: 16px;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  }
  .testimonial {
    flex: 0 0 calc(33.333% - 11px);
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }
  .testimonial-stars {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 2px;
  }
  .testimonial-quote {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }
  .testimonial-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }
  .testimonial-role {
    font-size: 11px;
    color: var(--muted);
    margin-top: 1px;
  }

  @media(max-width: 900px) {
    .testimonials { padding: 80px 24px; }
    .testimonial { flex: 0 0 calc(100% - 0px); }
  }


  .hero {
    position: relative;
    overflow: hidden;
    background: #080808;
    width: 100%;
    /* fallback height before JS runs (ref 1920x1010) */
    height: min(55.7vw, 1070px);
  }

  /* Design stage: fixed 820px tall, fluid in width so it always fills the
     viewport (headline left, phone right, Ivo centered). JS only scales it
     DOWN below 1440px so smaller desktops/tablets shrink proportionally. */
  .hero-stage {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    transform-origin: top left;
    /* Reference design is 1920 wide. Up to 1920 the stage is scaled uniformly
       (identical on all desktops/tablets); beyond 1920 it stretches a little. */
    width: max(1920px, calc(100vw / 1.5));
    height: 1070px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  /* Ivo — large background figure, the centre of the header, with a big ground shadow. */
  .hero-figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* green light spilling from the phone side — motivates Ivo's rim light */
  .hero-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 58% 78% at 72% 66%,
      rgba(200, 255, 0, 0.20) 0%,
      rgba(200, 255, 0, 0.08) 38%,
      transparent 68%);
  }
  .hero-figure img {
    display: block;
    height: 980px;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.55));
  }
  /* big soft shadow pooled on the ground beneath Ivo */
  .hero-figure::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 135%;
    height: 130px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 42%, transparent 72%);
    z-index: -1;
    pointer-events: none;
  }

  .hero-left {
    padding: 140px 56px 80px 48px;
    position: relative;
    z-index: 2;
  }

  .hero-photo {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
  }

  /* soft accent glow behind the phone */
  .hero-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(200,255,0,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ─── INTERACTIVE PHONE MOCKUP ───────────────── */
  .phone-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .phone-mockup {
    position: relative;
    width: 340px;
    flex-shrink: 0;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  }

  .phone-frame {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
  }

  /* screen rectangle measured from the mockup image (inside the bezel) */
  .phone-screen {
    position: absolute;
    left: 8.46%;
    top: 4.2%;
    width: 83.09%;
    height: 91.6%;
    border-radius: 9% / 4.3%;
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
  }

  .phone-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .phone-screen.is-playing .phone-video { opacity: 1; }

  .phone-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(200, 255, 0, 0.92);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, opacity 0.3s ease;
  }
  .phone-play svg { width: 24px; height: 24px; margin-left: 2px; }
  .phone-play:hover { transform: translate(-50%, -50%) scale(1.08); }
  .phone-screen.is-playing .phone-play { opacity: 0; pointer-events: none; }

  .phone-hint {
    position: absolute;
    left: 50%;
    bottom: 9%;
    transform: translateX(-50%);
    max-width: 86%;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    color: #111;
    background: rgba(255, 255, 255, 0.88);
    padding: 6px 10px;
    border-radius: 6px;
    display: none;
    z-index: 4;
  }
  .phone-hint.show { display: block; }

  /* video picker beside the phone */
  .video-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
  }
  .picker-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .picker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 10px 14px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .picker-item:hover { border-color: var(--accent); color: var(--white); }
  .picker-item.is-active {
    border-color: var(--accent);
    color: var(--white);
    background: var(--bg3);
  }
  .picker-thumb {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: var(--accent);
    font-size: 11px;
    border-radius: 4px;
  }
  .picker-name { font-size: 13px; font-weight: 600; white-space: nowrap; }


  /* ─── FORM: error message + loading state ─────── */
  .error-msg {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 80, 80, 0.4);
    background: rgba(255, 80, 80, 0.08);
    color: #ff8080;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
  }
  .error-msg.show { display: block; }

  .btn-submit.is-loading {
    opacity: 0.7;
    cursor: not-allowed;
  }
  .btn-submit:disabled { cursor: not-allowed; }

  /* ─── MODAL: fit on one mobile screen (no scroll) ─ */
  @media (max-width: 900px) {
    .overlay {
      padding: 0;
      align-items: flex-end;
    }
    .modal {
      width: 100%;
      max-width: 100%;
      max-height: 92vh;
      overflow-y: auto;
      border-radius: 0;
      margin: 0;
    }
    .modal-video {
      aspect-ratio: 16/9;
      min-height: 180px;
      flex-shrink: 0;
    }
    .modal-body {
      padding: 16px 20px;
      overflow: hidden;
    }
    .modal-service-label {
      font-size: 10px;
      margin-bottom: 6px;
    }
    .modal-title {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .modal-desc {
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .modal-actions {
      gap: 8px;
    }
    .btn-call, .btn-enquiry {
      padding: 12px 16px;
      font-size: 13px;
      width: 100%;
      justify-content: center;
    }
  }

  /* ─── HERO LAYOUT responsive (placed last to win cascade order) ─── */
  /* NARROW PORTRAIT phones (≤559px). Text full-width on top; below it Ivo
     bleeding off the left edge and the phone (with the showreel picker beneath
     it) right-aligned within a 400px column. Wider portrait windows and all
     landscape screens use the side-by-side blocks further below. */
  @media (max-width: 559px) and (orientation: portrait) {
    .hero { height: auto; padding: 92px 0 0; }
    .hero-stage {
      position: relative;       /* containing block for the absolutely-placed Ivo */
      width: 100%;
      height: auto;
      transform: none;
      display: grid;
      grid-template-columns: 1fr;   /* single column; phone right-aligns to edge */
      align-items: end;
    }
    .hero-stage::after { display: none; }

    .hero-left { grid-column: 1; grid-row: 1; padding: 0 24px clamp(60px, 17vw, 104px); }
    .hero h1 { font-size: clamp(34px, 12vw, 54px); }

    /* Ivo — absolute, bottom-left. Both Ivo and the phone scale with viewport
       WIDTH so the pair always fills the row: the phone sits at the right edge
       and Ivo grows toward it, keeping a small proportional gap and never
       leaving an empty strip on the right (which the old 400px cap did). */
    .hero-figure {
      position: absolute;
      left: -21vw;                            /* balanced so there's a gap on BOTH sides of Ivo */
      bottom: 0;
      height: clamp(480px, 130vw, 685px);     /* tall enough that his head stays above the phone */
      transform: none;
      z-index: 0;
      pointer-events: none;
      display: block;
    }
    .hero-figure img {
      display: block;
      height: 100%;
      width: auto;
      max-width: none;
    }
    .hero-figure::after { display: none; }

    /* phone + showreel buttons, right-aligned to the viewport edge */
    .hero-photo {
      grid-column: 1;
      grid-row: 2;
      width: 100%;
      height: auto;
      padding: 0 14px 22px 0;
      justify-content: flex-end;
      align-items: flex-end;
    }
    .phone-stage,
    .phone-mockup,
    .video-picker { width: clamp(140px, 38.5vw, 220px); }
    .phone-stage { flex-direction: column; gap: 12px; align-items: stretch; }
    .video-picker { flex-direction: column; gap: 7px; align-items: stretch; }
    .picker-item { padding: 8px 10px; gap: 8px; justify-content: flex-start; }
    .picker-thumb { width: 22px; height: 22px; }
    .picker-name { font-size: 12px; }
  }

  /* WIDE PORTRAIT windows (560–767px) — narrow desktop browser windows / large
     foldables ("tablet" view). Mimic the desktop composition rather than shrinking
     everything: a BIG headline on the left and a BIG Ivo kept at a steady size,
     allowed to sit (partly) behind the text — a left dark scrim keeps the copy
     legible over him — with the phone on the right. Only the body copy uses a
     readable fixed size (the desktop's scaled sub would be unreadably tiny here). */
  @media (min-width: 560px) and (max-width: 767px) and (orientation: portrait) {
    .hero { height: auto; padding: 92px 0 0; }
    .hero-stage {
      position: relative;
      width: 100%;
      max-width: none;
      margin: 0;
      height: auto;
      min-height: 470px;
      transform: none;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;  /* text (Ivo floats over) | phone */
      align-items: center;
      column-gap: clamp(10px, 2vw, 24px);
      padding: 0 20px 16px;
    }
    .hero-stage::after {
      display: block;
      background: radial-gradient(ellipse 58% 72% at 76% 64%,
        rgba(200, 255, 0, 0.18), transparent 68%);
    }

    /* Ivo — big, steady size, bottom-aligned, sitting just left of the phone
       and overlapping the text's right side (he stays BEHIND it via z-index). */
    .hero-figure {
      position: absolute;
      bottom: 0;
      right: clamp(118px, 19vw, 168px);
      left: auto;
      transform: none;
      z-index: 1;
      pointer-events: none;
      display: block;
    }
    .hero-figure img {
      display: block;
      width: auto;
      max-width: none;
      height: clamp(420px, 62vw, 540px);
    }
    .hero-figure::after { display: none; }

    .hero-left {
      grid-column: 1;
      grid-row: 1;
      position: relative;
      z-index: 2;                /* text over Ivo */
      align-self: center;
      padding: 28px 0;
      max-width: 480px;
    }
    /* dark scrim behind the copy so it stays readable where Ivo overlaps */
    .hero-left::before {
      content: '';
      position: absolute;
      inset: -32px -90px -32px -100vw;
      z-index: -1;
      background: linear-gradient(90deg,
        rgba(8, 8, 8, 0.92) 48%, rgba(8, 8, 8, 0.55) 74%, transparent);
      pointer-events: none;
    }
    .hero-eyebrow { margin-bottom: 14px; font-size: 10px; letter-spacing: 0.12em; gap: 8px; }
    .hero h1 { font-size: clamp(42px, 7.4vw, 60px); line-height: 1.0; margin-bottom: 0; max-width: 100%; }
    .hero-sub { font-size: 15px; line-height: 1.5; margin-top: 18px; max-width: 330px; }
    .hero-actions { margin-top: 22px; }
    .btn-primary { font-size: 13px; padding: 12px 24px; }
    .btn-ghost { font-size: 13px; }

    .hero-photo {
      grid-column: 2;
      grid-row: 1;
      align-self: end;
      z-index: 2;
      height: auto;
      padding: 0 0 16px 0;
      justify-content: flex-end;
      align-items: flex-end;
    }
    .phone-stage,
    .phone-mockup,
    .video-picker { width: min(18vw, 130px); }
    .phone-stage { flex-direction: column; gap: 10px; align-items: stretch; }
    .video-picker { flex-direction: column; gap: 7px; align-items: stretch; }
    .picker-item { padding: 7px 10px; gap: 8px; justify-content: flex-start; }
    .picker-thumb { width: 20px; height: 20px; }
    .picker-name { font-size: 12px; }
  }

  /* LANDSCAPE (short & wide: landscape phones + short desktop windows).
     Stacking text-over-visuals fails here — the tall text eats the whole short
     viewport and pushes the visuals out of sight. Instead lay it out like a
     compact desktop: text + CTA on the LEFT, Ivo and the phone side-by-side on
     the RIGHT, the whole hero filling exactly one screen with no scroll. All
     sizes are driven by viewport HEIGHT (vh) so it always fits the short height. */
  @media (max-height: 600px) and (orientation: landscape) {
    .hero { height: auto; min-height: 100vh; padding: 64px 0 0; }
    .hero-stage {
      position: relative;
      width: 100%;
      max-width: none;
      margin: 0;
      height: auto;
      min-height: calc(100vh - 64px);
      transform: none;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;  /* text | Ivo | phone */
      align-items: end;
      column-gap: clamp(16px, 3vw, 48px);
      padding: 0 clamp(20px, 4vw, 56px);
    }
    .hero-stage::after {
      display: block;
      background: radial-gradient(ellipse 60% 80% at 78% 70%,
        rgba(200, 255, 0, 0.16), transparent 70%);
    }

    .hero-left {
      grid-column: 1;
      grid-row: 1;
      align-self: center;
      padding: 0;
      max-width: 620px;
    }
    .hero-eyebrow { margin-bottom: clamp(8px, 1.8vh, 16px); font-size: clamp(8px, 1.2vh, 10px); letter-spacing: 0.12em; gap: 8px; }
    .hero h1 { font-size: clamp(38px, 10.8vh, 66px); line-height: 0.98; }
    .hero-sub {
      font-size: clamp(12px, 2.1vh, 16px);
      line-height: 1.45;
      margin: clamp(10px, 2.2vh, 22px) 0 0;
      max-width: 460px;
    }
    .hero-actions { margin-top: clamp(12px, 2.6vh, 26px); }
    .btn-primary { font-size: clamp(12px, 1.8vh, 14px); padding: clamp(9px, 1.7vh, 13px) clamp(18px, 3.4vh, 26px); }
    .btn-ghost { font-size: clamp(12px, 1.8vh, 14px); }

    /* Ivo + phone bottom-aligned on the right, sized by height to fit the screen */
    .hero-figure {
      position: static;
      grid-column: 2;
      grid-row: 1;
      align-self: end;
      transform: none;
      height: auto;
      z-index: 0;
      pointer-events: none;
      display: block;
    }
    .hero-figure img {
      display: block;
      width: auto;
      max-width: none;
      height: min(82vh, 340px);
    }
    .hero-figure::after { display: none; }

    .hero-photo {
      grid-column: 3;
      grid-row: 1;
      align-self: end;
      height: auto;
      padding: 0 0 clamp(6px, 1.5vh, 16px) 0;
      justify-content: flex-end;
      align-items: flex-end;
    }
    .phone-stage,
    .phone-mockup,
    .video-picker { width: min(26vh, 142px); }
    .phone-stage { flex-direction: column; gap: clamp(6px, 1.4vh, 12px); align-items: stretch; }
    .video-picker { flex-direction: column; gap: clamp(4px, 0.9vh, 7px); align-items: stretch; }
    .picker-item { padding: clamp(5px, 1.1vh, 8px) 10px; gap: 8px; justify-content: flex-start; }
    .picker-thumb { width: clamp(16px, 3vh, 22px); height: clamp(16px, 3vh, 22px); }
    .picker-name { font-size: clamp(10px, 1.9vh, 12px); }
  }

  /* Small landscape phones: the left text column gets narrow, so the long
     sub-paragraph would wrap into many lines and overflow the short height.
     Drop it here — headline + CTA + visuals carry the hero; the full copy is
     still shown in portrait. (Wider landscape ≥820px keeps the paragraph.) */
  @media (orientation: landscape) and (max-height: 540px) and (max-width: 819px) {
    .hero-sub { display: none; }
    .hero h1 { font-size: clamp(34px, 9.8vh, 56px); }
    .hero-actions { margin-top: clamp(14px, 3vh, 24px); }
  }
