    :root { --dot-bg: #d5dce8; --dot-color: #8a9bbf; --dot-warm: #bbb0a4; }
    :target { scroll-margin-top: 72px; }
    #solutions { scroll-margin-top: 80px; }

    /* Suppress all transitions/animations during initial page load to prevent
       elements with starting transforms (drawers, panels) from animating in. */
    body.preload, body.preload *, body.preload *::before, body.preload *::after {
      transition: none !important;
      animation-duration: 0s !important;
      animation-delay: 0s !important;
    }
    .eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: .06em; margin-bottom: 14px; }

    /* ── Hero ───────────────────────────────────────────────── */
    .hero {
      background: var(--bg);
      min-height: calc(100vh - 64px);
      position: relative;
      display: flex;
      flex-direction: column;
      border-bottom: 1px solid var(--border);
      overflow: clip;
    }
    /* Hero topo SVG — anchored to the center of .hero__content (title + subtitle
       + actions). --topo-anchor-x/y mark the SVG's visual center within its
       viewBox; translate(-anchor) shifts the SVG so that point sits at the
       position anchor (50%/50% of .hero__content). --topo-offset-x/y nudge the
       final position. Responsive sizing via --topo-scale. */
    .hero__topo {
      --topo-anchor-x: 36%;
      --topo-anchor-y: 33%;
      --topo-offset-x: 8px;
      --topo-offset-y: -48px;
      position: absolute;
      left: 50%;
      top: 50%;
      width: clamp(500px, 90vw, 1400px);
      height: clamp(500px, 90vw, 1400px);
      pointer-events: none;
      overflow: visible;
      z-index: 0;
      transform-origin: var(--topo-anchor-x) var(--topo-anchor-y);
      transform: translate(calc(-1 * var(--topo-anchor-x) + var(--topo-offset-x)), calc(-1 * var(--topo-anchor-y) + var(--topo-offset-y))) scale(var(--topo-scale, 1.43)) scaleX(-1) rotate(-90deg);
    }
    .hero__topo path { pointer-events: none; }
    .hero__inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 160px 48px 0;
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }
    .hero__content {
      text-align: center;
      max-width: 860px;
      margin-bottom: 56px;
      position: relative;
      isolation: isolate;
    }
    .hero__content > :not(.hero__topo) { position: relative; z-index: 1; }
    .hero__headline {
      font-family: var(--font-display);
      font-size: 64px;
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 20px;
      white-space: nowrap;
    }
    .hero__subtext .highlight {
      position: relative;
      color: var(--text);
      font-weight: 600;
      padding: 0 3px;
      z-index: 1;
    }
    .hero__subtext .highlight__punct {
      color: var(--text-muted);
      font-weight: 400;
    }
    .hero__subtext .highlight::before {
      content: '';
      position: absolute;
      top: -3px;
      bottom: -3px;
      left: 0;
      width: 0;
      background: rgba(59,107,173,0.28);
      box-shadow: 0 0 0 rgba(59,107,173,0.55);
      z-index: -1;
      animation:
        highlight-fill 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards,
        shadow-drop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) 1.3s forwards;
    }
    .hero__subtext .highlight:nth-child(2)::before {
      animation:
        highlight-fill 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards,
        shadow-drop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) 1.8s forwards;
    }
    @keyframes highlight-fill { to { width: 100%; } }
    @keyframes shadow-drop { to { box-shadow: 4px 4px 0 rgba(59,107,173,0.55); } }

    .hero__subtext {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.65;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 36px;
    }
    .hero__actions { display: flex; gap: 12px; margin-bottom: 28px; justify-content: center; }
    .hero__visual {
      border-radius: 8px;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16/10;
      position: relative;
      background: var(--dot-bg);
    }
    .hero__visual img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* ── Peers / Logos bar ──────────────────────────────────── */
    .peers {
      background: #ffffff;
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }
    .peers .container {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .peers__label {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .peers__logos {
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-left: auto;
    }
    .peers__logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .peers__logo img {
      height: 32px;
      width: auto;
      flex-shrink: 0;
      object-fit: contain;
    }
    .peers__logo-name {
      font-size: 11px;
      font-weight: 600;
      color: #000;
      letter-spacing: 0.03em;
      line-height: 1.3;
    }

    /* ── Results ────────────────────────────────────────────── */
    .results {
      background: var(--navy);
      padding: 88px 0 96px;
      position: relative;
      overflow: hidden;
    }
    .results__bg {
      position: absolute;
      top: clamp(40px, calc(72px - 1.88vw), 54px);
      left: calc(20.11vw - 323px);
      width: clamp(1308px, calc(1124px + 19.17vw), 1451px);
      height: auto;
      pointer-events: none;
      z-index: 0;
      overflow: visible;
      transform: rotate(5deg);
      transform-origin: center center;
    }
    .results__bg path { fill: none; }
    .results__inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .results__header {
      width: 100%;
      margin-bottom: 72px;
    }
    .results__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: #fff;
      margin-bottom: 12px;
    }
    .results__subtitle { font-size: 17px; color: rgba(255,255,255,0.72); margin-top: 8px; }
    .results__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      row-gap: 56px;
      width: 100%;
    }
    .results__grid > div {
      padding: 0 48px;
      border-left: 1px solid rgba(255,255,255,0.08);
    }
    .results__grid > div:nth-child(odd) { border-left: none; }
    /* Pillar layout — the live Results section markup */
    .results__pillar { text-align: left; padding: 0 28px; }
    .results__pillar-title {
      font-family: var(--font-display);
      font-size: clamp(22px, 2vw, 26px);
      font-weight: 500;
      color: #fff;
      letter-spacing: 0.005em;
      margin-bottom: 12px;
      line-height: 1.2;
      text-align: center;
    }
    .results__pillar-desc {
      font-size: 14.5px;
      line-height: 1.65;
      color: rgba(255,255,255,0.62);
      text-align: center;
      max-width: 360px;
      margin: 0 auto;
    }

    /* ── What we offer (hero-integrated) ───────────────────── */
    .hero__offer {
      width: 100%;
      position: relative;
      z-index: 1;
      padding-top: 76px;
      padding-bottom: 80px;
    }
    /* Tabs */
    .offer__tabs-wrap { position: relative; }
    .offer__tab-nav-wrap {
      margin: 0 0 56px;
    }
    .offer__tab-nav {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .offer__tab-nav::-webkit-scrollbar { display: none; }
    .offer__tab-btn {
      flex: 1;
      font-family: var(--font-body);
      font-size: 16px; font-weight: 500;
      padding: 14px 8px 16px;
      background: transparent;
      border: none;
      color: var(--text-2);
      cursor: pointer;
      transition: color .3s;
      text-align: center;
      white-space: nowrap;
    }
    /* Numeric prefix ("01 / Smart Search") — signals "there are four products"
       without requiring auto-cycle or hidden state. Uses data-num attribute. */
    .offer__tab-btn::before {
      content: attr(data-num) " / ";
      font-weight: 500;
      opacity: 0.45;
      margin-right: 2px;
    }
    .offer__tab-btn:hover { color: var(--text); }
    .offer__tab-btn.is-active { color: var(--text); }
    .offer__tab-btn.is-active::before { opacity: 0.6; }
    .offer__tab-bar {
      height: 1px;
      background: #ddd8cc;
      position: relative;
    }
    .offer__tab-indicator {
      position: absolute;
      top: -0.5px;
      left: 0;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: transform .35s ease-out;
      pointer-events: none;
    }
    .offer__tab-panels-outer {
      overflow: hidden;
      transition: height .35s cubic-bezier(.25,.46,.45,.94);
    }
    .offer__tab-panels {
      display: flex;
      align-items: flex-start;
      transition: transform .4s cubic-bezier(.25,.46,.45,.94);
      will-change: transform;
    }
    .offer__tab-panel {
      flex: 0 0 100%;
      display: grid;
      grid-template-columns: 1fr 600px;
      grid-template-rows: 1fr auto auto 1fr;
      grid-template-areas:
        ".     visual"
        "title visual"
        "body  visual"
        ".     visual";
      column-gap: 40px;
      padding: 10px;
    }
    .offer__tab-panel .offer__tab-title { grid-area: title; }
    .offer__tab-panel .offer__tab-visual { grid-area: visual; }
    .offer__tab-text {
      grid-area: body;
      display: flex;
      flex-direction: column;
    }
    .offer__tab-cta { margin-top: auto; align-self: flex-start; }
    .offer__tab-title {
      font-family: var(--font-display);
      font-size: 23px; font-weight: 500;
      color: var(--text);
      margin: 0 0 6px;
      letter-spacing: 0.01em;
      line-height: 1.2;
    }
    .offer__tab-desc {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-2);
      margin: 0 0 8px;
    }
    .offer__tab-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .offer__tab-list li {
      font-size: 14px;
      color: var(--text-2);
      padding-left: 18px;
      position: relative;
    }
    .offer__tab-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 8px;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }
    .offer__tab-visual {
      flex: 0 0 340px;
      height: 240px;
      background: #e8e3d8;
      border: 1px solid #ddd8cc;
      border-radius: 10px;
    }
    .offer__tab-visual--video {
      height: auto;
      overflow: hidden;
      background: var(--bg);
      border-radius: 8px;
      border: 6px solid rgba(59, 107, 173, 0.125);
      align-self: start;
      position: relative;
    }
    .offer__tab-visual--video video {
      width: 100%;
      height: auto;
      display: block;
    }
    /* Minimal timeline at the bottom edge of the animation frame.
       Reset + animated by index.html on each `lamnLoopStart` from the
       iframe — duration matches the actual animation loop length. */
    .offer__tab-timeline {
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: var(--accent);
      pointer-events: none;
    }

    /* Offer responsive */
    @media (max-width: 1000px) {
      .offer__tab-panel {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "title" "visual" "body";
        row-gap: 20px;
        align-content: start;
      }
      .offer__tab-visual--video { width: 100%; }
      .offer__tab-cta { margin-top: 16px; }
    }
    @media (max-width: 900px) {
      .offer__tab-visual:not(.offer__tab-visual--video) { height: 280px; }
    }


    /* ── How we work ───────────────────────────────────────── */
    .hiw {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 80px 0 100px;
    }
    .hiw__header { margin-bottom: 64px; }
    .hiw__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 16px;
    }
    .hiw__subtitle { font-size: 16px; color: var(--text-2); max-width: 540px; line-height: 1.65; }
    .hiw__steps {
      display: flex;
      flex-direction: column;
      max-width: 760px;
      margin: 0 auto;
      position: relative;
    }
    .hiw__step {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 28px;
      padding: 28px 0;
      border-top: 1px solid var(--border);
      align-items: start;
    }
    .hiw__step:last-of-type { border-bottom: 1px solid var(--border); }
    .hiw__step-num {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      color: var(--accent);
      letter-spacing: 0.02em;
      line-height: 1;
    }
    .hiw__step-body { display: flex; flex-direction: column; }
    .hiw__step-title {
      font-family: var(--font-display);
      font-size: clamp(20px, 1.8vw, 24px);
      font-weight: 500;
      letter-spacing: 0.005em;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .hiw__step-desc {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
    }
    .hiw__footer {
      max-width: 760px;
      margin: 48px auto 0;
      text-align: center;
    }
    .hiw__industries-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .hiw__industries-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .hiw__industry-tag {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-2);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px 14px;
    }
    .hiw__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      transition: gap .2s ease;
    }
    .hiw__cta:hover { gap: 12px; }

    /* ── Results pillar (centered modifier) ─────────────────── */
    .results__pillar--centered {
      grid-column: 1 / -1;
      max-width: 260px;
      margin: 0 auto;
    }

    /* ── Team ───────────────────────────────────────────────── */
    .team {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 56px 0;
    }
    .team__header { margin-bottom: 64px; }
    .team__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 16px;
    }
    .team__subtitle { font-size: 16px; color: var(--text-2); max-width: 460px; }
    .team__grid {
      display: grid;
      grid-template-columns: repeat(2, 290px);
      gap: 26px;
      margin-bottom: 36px;
    }
    .team__card:hover .team__photo { transform: scale(1.02); }
    .team__card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .team__card:hover { border-color: rgba(59, 107, 173, 0.28); }
    .team__photo {
      width: 100%;
      aspect-ratio: 290 / 220;
      transition: transform .6s ease;
      background: #d2d2d2;
      display: block;
      object-fit: cover;
      object-position: center 20%;
    }
    .team__info { padding: 20px; }
    .team__name {
      font-family: var(--font-body);
      font-size: 14px; font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 7px;
    }
    .team__role {
      font-size: 13px; font-weight: 400;
      color: var(--text-2); margin-bottom: 1px;
    }
    .team__link {
      font-family: var(--font-body);
      font-size: 15px; font-weight: 500;
      color: var(--accent-hover);
      text-decoration: none;
      letter-spacing: 0.02em;
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.15s;
    }
    .team__link:hover { gap: 10px; }
    .team__link::after { content: '→'; }

    /* ── News ───────────────────────────────────────────────── */
    .news {
      background: #ffffff;
      border-top: 1px solid var(--border);
      padding: 56px 0;
    }
    .news__header { margin-bottom: 56px; }
    .news__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .news__subtitle { font-size: 16px; color: var(--text-2); }
    .news__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .news__card {
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex; flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .news__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .news__card-img { width: 100%; height: 200px; background: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 16px; }
    .news__card-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
    .news__card-body { padding: 18px 20px; flex: 1; background: #ffffff; }
    .news__card-date {
      font-size: 12px; font-weight: 600;
      color: var(--navy); letter-spacing: 0.04em; margin-bottom: 10px;
    }
    .news__card-title {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 400;
      color: var(--text); line-height: 1.35; letter-spacing: 0.04em;
    }
    .news__card-title sup { font-size: 0.55em; }
    .news__card-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: rgba(59,107,173,.08); border-radius: 3px; padding: 3px 7px; margin-bottom: 10px; }
    .news__card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
    .news__more { margin-top: 40px; display: flex; justify-content: center; }

    /* ── FAQ ────────────────────────────────────────────────── */
    .faq {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 56px 0;
    }
    .faq__header { margin-bottom: 48px; }
    .faq__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .faq__subtitle { font-size: 16px; color: var(--text-2); }
    .faq__list {
      border-top: 1px solid var(--border);
    }
    .faq__item { border-bottom: 1px solid var(--border); }
    .faq__q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 4px;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 500;
      color: var(--text);
      transition: color .15s;
    }
    .faq__q:hover { color: var(--accent); }
    .faq__icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform .3s ease, color .15s;
    }
    .faq__q:hover .faq__icon { color: var(--accent); }
    .faq__item.is-open .faq__icon { transform: rotate(180deg); color: var(--accent); }
    .faq__a {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .3s ease;
    }
    .faq__item.is-open .faq__a { grid-template-rows: 1fr; }
    .faq__a-inner { overflow: hidden; }
    .faq__a-inner p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      padding: 0 4px 24px;
      margin: 0;
      max-width: 760px;
    }
    .faq__a-inner a { color: var(--accent); }

    /* ── CTA ────────────────────────────────────────────────── */
    .cta {
      background: var(--bg-dark);
      border-top: 1px solid var(--border);
      padding: 56px 0;
    }
    .cta__inner {
      max-width: 1100px; margin: 0 auto; padding: 0 48px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .cta__title {
      font-family: var(--font-display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 400;
      letter-spacing: 0.04em;
      color: #fff; line-height: 1.1; margin-bottom: 14px;
    }
    .cta__subtitle { font-size: 16px; color: rgba(255,255,255,0.4); margin-bottom: 32px; }
    .cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .cta__form { display: flex; flex-direction: column; gap: 12px; }
    .cta__input {
      font-family: var(--font-body); font-size: 14px;
      padding: 12px 16px; border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: #fff;
      transition: border-color 0.15s; width: 100%;
    }
    .cta__input::placeholder { color: rgba(255,255,255,0.28); }
    .cta__input:focus { border-color: var(--accent); }
    textarea.cta__input { resize: vertical; min-height: 110px; }
    .cta__form .btn:disabled { opacity: .65; cursor: default; }
    .cta__form-msg { font-size: 13px; line-height: 1.5; min-height: 1em; }
    .cta__form-msg--success { color: rgba(255,255,255,0.78); }
    .cta__form-msg--error   { color: #ffb39a; }

    @media (min-width: 1335px) {
      .results__bg { left: clamp(-55px, calc(52.28vw - 753px), 140px); }
    }

    /* ── Responsive ─────────────────────────────────────────── */

    /* Tablet ≤ 960px */
    @media (max-width: 960px) {
      /* Container */
      .container,
      .results__inner,
      .cta__inner,
      .footer .container,
      .footer__bottom { padding-left: 24px; padding-right: 24px; }

      /* Navbar */
      .navbar .container { padding-left: 24px; padding-right: 24px; }

      /* Hero */
      .hero__inner {
        grid-template-columns: 1fr;
        padding: 120px 24px 0;
        gap: 40px;
      }
      .hero__headline { white-space: normal; }
      .hero__content { margin-bottom: 0; }
      .hero__offer { padding-top: 56px; padding-bottom: 120px; }
      .hero__topo { --topo-scale: 1.43; }

      /* Tabs — scale down at tablet widths so longer labels still fit */
      .offer__tab-btn { font-size: 15px; }

      /* Results */
      .results__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
      .results__grid > div:nth-child(odd) { border-left: none; }
      .results__grid > div:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.08); }
      .results__bg { display: none; }

      /* Team */
      .team__grid { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 100%; }
      .team__info { padding: 12px; }
      .team__name { font-size: 11px; }
      .team__role { font-size: 11px; }

      /* News */
      .news__grid { grid-template-columns: 1fr 1fr; }

      /* CTA */
      .cta__inner { grid-template-columns: 1fr; gap: 48px; }

      /* Footer */
      .footer .container { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* Narrow tablet 601–880px */
    @media (max-width: 880px) {
      .hero__topo { --topo-scale: 1.72; }
    }

    /* Headline scaling 601–769px: smoothly drop from 64px to 44px */
    @media (min-width: 601px) and (max-width: 769px) {
      .hero__headline { font-size: clamp(44px, calc(11.83vw - 27px), 64px); }
    }

    /* Mobile ≤ 600px */
    @media (max-width: 600px) {
      /* Container */
      .container,
      .results__inner,
      .cta__inner,
      .footer .container,
      .footer__bottom { padding-left: 16px; padding-right: 16px; }

      /* Hero — remove full-viewport lock on mobile */
      .hero { min-height: auto; }
      .hero__inner { padding: 100px 20px 0; gap: 0; }
      .hero__content { margin-bottom: 0; }
      .hero__offer { padding-top: 44px; padding-bottom: 100px; }
      .hero__headline { font-size: clamp(32px, 8vw, 44px); }
      .hero__subtext { font-size: 16px; max-width: 100%; }
      .hero__actions { flex-direction: column; align-items: center; }

      /* Hero topo SVG — scale up for narrow screens */
      .hero__topo { --topo-scale: 2.27; }

      /* Tabs — horizontal scroll, more readable colour */
      .offer__tab-btn { flex: 0 0 auto; font-size: 13px; padding: 12px 16px 14px; color: var(--text-2); }
      .offer__tab-btn.is-active { color: var(--text); }
      .offer__tab-nav-wrap { margin-bottom: 32px; }

      .offer__tab-title { font-size: 20px; }
      .offer__tab-visual:not(.offer__tab-visual--video) { flex: none; width: 100%; height: 180px; }

      /* How it works */
      /* HIW timeline stays vertical at this breakpoint */

      /* Peers */
      .peers .container { flex-direction: column; align-items: center; gap: 14px; text-align: center; }
      .peers__logos { margin-left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; justify-items: center; }
      .peers__logo { height: 40px; align-items: center; }
      .peers__logo img { height: 40px; width: auto; max-width: 100%; object-fit: contain; }
      .peers__logo-name { font-size: 10px; }

      /* How it works */
      /* HIW timeline: tighter on mobile, number above title */
      .hiw__step { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
      .hiw__step-num { font-size: 22px; }

      /* Results */
      .results__inner { padding: 0 16px; }
      .results { padding: 64px 0 72px; }
      .results__grid { grid-template-columns: 1fr; gap: 36px 0; }
      .results__grid > div { padding: 0 16px; border-left: none; }
      .results__grid > div:nth-child(even) { border-left: none; }
      /* Mobile-only reorder: Confidential, Cost efficient, Scalable, Specialized */
      .results__grid > div:nth-child(1) { order: 1; }
      .results__grid > div:nth-child(2) { order: 3; }
      .results__grid > div:nth-child(3) { order: 2; }
      .results__grid > div:nth-child(4) { order: 4; }


      /* Team */
      .team { padding: 56px 0; }
      .team__header { text-align: center; }
      .team__grid { justify-content: center; }
      .team__photo { aspect-ratio: 290 / 220; }

      /* News */
      .news { padding: 56px 0; }
      .news__header { text-align: center; }
      .news__grid { grid-template-columns: 1fr; }
      .news__card-img { height: 160px; }

      /* FAQ */
      .faq { padding: 56px 0; }
      .faq__header { text-align: center; }
      .faq__q { font-size: 16px; gap: 14px; }

      /* CTA */
      .cta { padding: 56px 0; }
      .cta__title { font-size: clamp(32px, 7vw, 48px); }
      .cta__actions { flex-wrap: wrap; }

      /* Footer */
      .footer .container { grid-template-columns: 1fr; }
      .footer { padding: 0 0 28px; }
      .footer .container { padding-top: 40px; }
    }
