@import url("tailwind.css?v=21");

@font-face {
  font-family: 'Brockmann';
  src: url('assets/fonts/brockmann-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('assets/fonts/brockmann-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('assets/fonts/brockmann-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brockmann';
  src: url('assets/fonts/brockmann-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

  :root {
    /* Colour */
    --brand: #504FED;
    --brand-light: #6a69ff;
    --brand-pale: #ededff;
    --ink: #111111;
    --dark: #111111;
    --ink-body: #56565a;
    --ink-soft: #9999a6;
    --white: #ffffff;
    --off-white: #f7f7fc;
    --border: rgba(80,79,237,0.12);

    /* Font sizes */
    --fs-xs:      11px;
    --fs-sm:      12px;
    --fs-base-sm: 14px;
    --fs-base:    15px;
    --fs-md:      16px;
    --fs-lg:      18px;
    --fs-xl:      20px;
    --fs-2xl:     22px;
    --fs-3xl:     24px;

    /* Line heights */
    --lh-display: 1;
    --lh-heading: 1.08;
    --lh-snug:    1.2;
    --lh-body:    1.3;
    --lh-relaxed: 1.4;

    /* Font weights */
    --fw-regular:  400;
    --fw-medium:   500;
    --fw-semibold: 600;
    --fw-bold:     700;

    /* Letter spacing */
    --ls-tightest: -0.04em;
    --ls-tighter:  -0.03em;
    --ls-tight:    -0.025em;
    --ls-snug:     -0.01em;
    --ls-normal:    0;
    --ls-wide:      0.02em;
    --ls-wider:     0.1em;
    --ls-widest:    0.12em;
  }

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

  html {
    scroll-behavior: auto;
  }

  body {
    font-family: 'Brockmann', sans-serif;
    background: linear-gradient(145deg, #c8c6fb 0%, #e8e8ff 25%, #ffffff 50%, #e8e8ff 75%, #c8c6fb 100%);
    background-attachment: scroll;
    color: var(--ink-body);
    overflow-x: hidden;
    line-height: 1.2;
  }

  /* ── CURSOR GLOW ── */
  .cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,79,237,0.22) 0%, rgba(80,79,237,0.07) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.6s ease;
    will-change: transform;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.nav-hidden {
    transform: translateY(0);
  }

  nav:not(.nav-hidden) {
    transform: translateY(0);
  }

  .nav-logo svg path { fill: var(--brand); }

  .nav-logo svg { height: 28px; width: auto; }

  /* ── BURGER ── */
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1200;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand);
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    transform-origin: center;
  }

  /* burger stays as bars — no X transform */


  /* ── MENU CLOSE BUTTON ── */
  .menu-close {
    position: absolute;
    top: 28px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-family: 'Brockmann', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 0;
    opacity: 0;
    transition: color 0.2s, opacity 0.4s ease 0.3s;
  }

  .menu-overlay.open .menu-close { opacity: 1; }
  .menu-close:hover { color: white; }



  /* ── MENU CTA ── */
  .menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    margin-bottom: 64px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.32s, transform 0.4s ease 0.32s;
  }

  .menu-overlay.open .menu-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-cta-label {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: white;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.2s;
  }

  .menu-cta-label::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: white;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .menu-cta-arrow {
    font-size: 20px;
    color: white;
    transition: color 0.2s, transform 0.2s;
  }

  .menu-cta:hover .menu-cta-label { color: rgba(255,255,255,0.75); }
  .menu-cta:hover .menu-cta-label::after { transform: scaleX(0.35); }
  .menu-cta:hover .menu-cta-arrow { transform: translateX(6px); color: rgba(255,255,255,0.75); }

  /* ── FULLSCREEN MENU ── */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--brand);
    clip-path: inset(0px 0px 100% 100%); /* hidden by default, JS overrides with exact burger rect */
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    pointer-events: none;
  }

  .menu-overlay.open {
    pointer-events: all;
  }

  .menu-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 80px;
  }

  .menu-nav li a {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    color: white;
    text-decoration: none;
    letter-spacing: -0.03em;
    line-height: 1.05;
    display: inline-block;
    position: relative;
    transition: color 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
  }

  .menu-overlay.open .menu-nav li a {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-overlay.open .menu-nav li:nth-child(1) a { transition-delay: 0.08s; }
  .menu-overlay.open .menu-nav li:nth-child(2) a { transition-delay: 0.14s; }
  .menu-overlay.open .menu-nav li:nth-child(3) a { transition-delay: 0.20s; }
  .menu-overlay.open .menu-nav li:nth-child(4) a { transition-delay: 0.26s; }

  .menu-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    height: 3px;
    width: 0;
    background: white;
    transition: width 0.3s ease;
  }

  .menu-nav li a:hover { color: rgba(255,255,255,0.7); }
  .menu-nav li a:hover::after { width: 100%; }



  .menu-index {
    position: absolute;
    bottom: 48px;
    right: 80px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
  }
  .menu-overlay.open .menu-index { opacity: 1; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s;
  }
  .nav-cta::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: white;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s ease;
  }
  .nav-cta:hover { color: rgba(255,255,255,0.8); }
  .nav-cta:hover::after { transform: scaleX(0.35); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
  }

  .hero-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 48px;
    transform-origin: center bottom;
    will-change: transform, opacity;
  }

  .hero-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }


  .hero-title {
    font-family: 'Brockmann', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 5.5vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: normal;
    color: var(--brand);
  }

  .hero-body {
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    color: var(--ink);
    margin: 0;
    font-weight: var(--fw-regular);
  }

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

  /* ── HERO WORDMARK ── */
  .hero-wordmark {
    font-family: 'Brockmann', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
  }

  .hero-prefix {
    color: var(--ink);
  }

  .hero-word-slot {
    color: var(--brand-light);
    display: inline-block;
    font-weight: 400;
    padding: 0.08em 0 0.18em;
  }

  .hero-word-slot.exit {
    animation: wordExit 0.22s cubic-bezier(0.4, 0, 1, 1) forwards;
  }

  .hero-word-slot.enter {
    animation: wordEnter 0.32s cubic-bezier(0, 0, 0.2, 1) forwards;
  }

  @keyframes wordExit {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-20px); }
  }

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

  /* ── HERO SCROLL HINT ── */
  .hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    animation: heroEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 600ms;
  }

  .hero-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
  }

  .hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--brand);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%   { left: -100%; }
    50%  { left: 0%; }
    100% { left: 100%; }
  }

  .hero-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .mini-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }

  .mini-card .mini-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }

  .mini-card .mini-val {
    font-family: 'Brockmann', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }

  .mini-card .mini-desc {
    font-size: 13px;
    color: var(--ink-soft);
  }

  /* ── HERO ENTRANCE ── */
  @keyframes heroEnter {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes navSlide {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }


  .hero-title {
    animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 80ms;
  }

  .hero-body {
    animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 220ms;
  }

  .hero-actions {
    animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 360ms;
  }

  .hero-card-main {
    animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 160ms;
  }

  .hero-cards-row {
    animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 300ms;
  }

  /* ── TICKER ── */
  .ticker-wrap {
    overflow: hidden;
    background: var(--brand);
    padding: 18px 0;
    white-space: nowrap;
  }

  .ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 24s linear infinite;
  }

  .ticker-item {
    display: inline-flex;
    align-items: center;
    font-family: 'Brockmann', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85);
    padding: 0 28px;
  }

  .ticker-sep {
    display: inline-flex;
    align-items: center;
    font-family: 'Brockmann', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── STATEMENT ── */
  .statement-section {
    background: var(--brand);
    height: 250vh;
    position: relative;
  }

  .statement-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    gap: 64px;
    overflow: hidden;
  }

  /* ── Clients logo shuffle (inside statement section) ───────────────────── */
  .clients-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    opacity: 0;
    transition: opacity 0.6s ease;
    width: 100%;
  }

  .clients-logos-row {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .client-slot {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    height: 70px;
    opacity: 1;
    transition: opacity 0.38s ease;
  }

  .client-slot.logo-fade-out {
    opacity: 0;
  }

  .client-slot img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 42px;
    max-width: 160px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    object-fit: contain;
  }

  .client-slot img[alt="SAP"] { max-height: 60px; }
  .client-slot img[alt="Marc O'Polo"] { max-height: 64px; max-width: 200px; }
  .client-slot img[alt="Mirka"] { max-height: 64px; }

  .clients-text {
    width: 200px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
    border-left: 1px solid rgba(255,255,255,0.15);
    padding-left: 32px;
  }

  .statement-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
    margin: 0;
  }

  .statement-line {
    display: block;
    width: 100%;
    text-align: center;
    font-size: clamp(22px, 3.2vw, 52px);
    font-weight: var(--fw-bold);
    line-height: 1.08;

    letter-spacing: var(--ls-tight);
    color: rgba(255,255,255,0.18);
    transition: color 0.1s linear;
    will-change: color;
  }

  /* light-weight lines in statement */
  .statement-line--light { font-weight: var(--fw-regular); }
  .statement-line:not(.statement-line--light) + .statement-line--light { margin-top: 24px; }
  .statement-line--slash { font-weight: var(--fw-regular); }
  .statement-line--slash b { font-weight: var(--fw-bold); }

  /* ── LOGO STRIP ���─ */
  .logo-strip {
    overflow: hidden;
    background: transparent;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    white-space: nowrap;
  }

  .logo-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: ticker 30s linear infinite;
  }

  .logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
  }

  .logo-chip img {
    width: 140px;
    height: 56px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: 0.75;
  }

  /* ── SECTIONS ── */
  body.page-index section {
    padding: 120px 48px;
    min-height: 100vh;
    transition:
      opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }

  .section-eyebrow span { width: 24px; height: 1px; background: var(--ink-soft); display: inline-block; }

  .section-title {
    font-family: 'Brockmann', sans-serif;
    font-size: 50px;
    font-weight: var(--fw-regular);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    margin-bottom: 24px;
    color: var(--ink);
  }

  .section-subtitle {
    font-size: var(--fs-md);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
    color: var(--ink-body);
    max-width: 580px;
  }

  /* ── ADVISORY ── */
  .advisory {
    background: var(--white);
    color: var(--dark);
    padding: 0;
    padding-bottom: 0;
  }

  .services-stack {
    position: relative;
  }

  .service-card {
    position: sticky;
    top: 80px;
    background: #ffffff;
    padding: 0 48px;
    transform-origin: top center;
    will-change: transform;
    display: flex;
    justify-content: center;
  }

  .service-card-inner {
    padding: 52px 0 52px;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .service-title-row {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }

  .service-card-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-title {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(24px, 3.2vw, 52px);
    font-weight: var(--fw-regular);
    line-height: 1;
    letter-spacing: var(--ls-tight);
    color: var(--dark);
    text-transform: lowercase;
  }

  .service-slash {
    font-weight: normal;
  }

  .service-desc {
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: rgba(0,0,0,0.45);
    line-height: var(--lh-relaxed);
    max-width: 100%;
    margin: 0;
  }



  .service-ghost-num {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(56px, 7vw, 120px);
    font-weight: var(--fw-bold);
    line-height: 0.85;
    flex-shrink: 0;
    letter-spacing: var(--ls-tighter);
    background: linear-gradient(
      120deg,
      #504fED 0%,
      #6e5cf5 15%,
      #843DFF 30%,
      #a87aff 45%,
      #c4a8ff 55%,
      #843DFF 70%,
      #6e5cf5 85%,
      #504fED 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease-in-out infinite alternate;
    user-select: none;
    pointer-events: none;
  }

  /* ── GROWTH ENGINE ── */
  .growth-pin-wrap {
    height: 300vh; /* Faster scrolling, more sensitive */
    position: relative;
    background: #fff;
  }

  .growth-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    overflow: hidden;
  }

  .growth-main-title {
    font-family: 'Brockmann', sans-serif;
    font-size: 50px;
    font-weight: var(--fw-regular);
    line-height: var(--lh-heading);
    letter-spacing: var(--ls-tight);
    color: var(--ink);
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 900px;
  }


  .growth-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity, filter;
  }

  .growth-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  /* When moving out */
  .growth-card.exit {
    opacity: 0;
    transform: translateY(-80px) scale(0.95);
    filter: blur(12px);
  }

  /* When moving in from bottom */
  .growth-card.enter {
    opacity: 0;
    transform: translateY(80px) scale(1.05);
    filter: blur(12px);
  }

  .growth-card-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
    width: 100%;
    max-width: 550px; /* Keep text focused on the left */
    position: relative;
  }

  /* Diagram - Positioned Right */
  .growth-diagram-wrap {
    position: absolute;
    right: 48px; /* Aligned with section padding */
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 380px; /* Scaled down to fit within text height */
    pointer-events: none;
    z-index: 5;
  }
  
  .growth-diagram-wrap img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    text-transform: none;
    opacity: 0.8;
  }

  .stat-line {
    width: 110px;
    height: 1.5px;
    background: #000;
    opacity: 0.15;
    margin: 4px 0;
  }

  .stat-value-wrap {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 700;
    color: #504FED;
    line-height: 1;
    display: flex;
    align-items: baseline;
  }

  .stat-number { display: inline-block; }
  .stat-prefix, .stat-suffix { font-size: 0.8em; }

  @media (max-width: 1200px) {
    .growth-stats-grid {
      right: 24px;
      width: 400px;
      gap: 32px 40px;
    }
  }

  @media (max-width: 1024px) {
    .growth-card-inner {
      max-width: 100%;
    }
    .growth-stats-grid {
      position: static;
      transform: none;
      width: 100%;
      margin-top: 48px;
      gap: 32px;
    }
  }

  .growth-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .growth-num {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(48px, 8vw, 130px);
    font-weight: var(--fw-bold);
    line-height: 0.8;
    background: linear-gradient(135deg, var(--brand) 0%, #843DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
  }

  .growth-title {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(16px, 2.4vw, 34px);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-snug);
    color: var(--dark);
    line-height: 1.1;
  }

  .growth-slash {
    font-weight: var(--fw-bold);
    color: var(--ink);
  }

  .stat-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    max-width: 120px;
  }

  .stat-line {
    width: 110px; /* Shorter line as requested */
    height: 1px;
    background: var(--dark);
    opacity: 0.6;
  }

  .stat-value-wrap {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(40px, 4vw, 72px);
    font-weight: 700;
    color: #504FED;
    line-height: 1;
    display: flex;
    align-items: baseline;
    margin-top: 4px;
  }

  .stat-number { display: inline-block; }
  .stat-prefix, .stat-suffix { font-size: 0.8em; }

  @media (max-width: 1100px) {
    .growth-stats-grid {
      position: static;
      width: 100%;
      margin-top: 40px;
      gap: 32px;
    }
  }

  .growth-title-row {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .growth-num {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(48px, 8vw, 130px);
    font-weight: var(--fw-bold);
    line-height: 0.8;
    background: linear-gradient(135deg, var(--brand) 0%, #843DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
  }

  .growth-title {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(16px, 2.4vw, 34px);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-snug);
    color: var(--dark);
    line-height: 1.1;
  }

  /* ── HERO SCROLL ── */
  .hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--ink-soft);
    font-size: 11px;
    letter-spacing: 0.15em;
    opacity: 0.8;
  }

  .hero-scroll-line {
    width: 60px;
    height: 1.5px;
    background: rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
  }

  .hero-scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--brand);
    animation: scroll-line-anim 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }

  @keyframes scroll-line-anim {
    0% { left: -100%; }
    40% { left: 0; }
    60% { left: 0; }
    100% { left: 100%; }
  }

  .growth-desc {
    font-size: clamp(14.4px, 1.35vw, 18px);
    line-height: 1.5;
    color: rgba(0,0,0,0.6);
    max-width: 650px;
    text-wrap: pretty;
    margin: 0;
  }

  /* ── GROWTH STRATEGY STEPS ── */
  .growth-cards-container {
    position: relative;
    width: 100%;
    /* Removed max-width to allow stats grid to occupy the far right space */
    height: 400px; /* fixed height for cards to stack */
    margin: 0; /* Align left */
    z-index: 1;
  }

  @media (max-width: 900px) {
    .growth-section {
      padding: 0 24px;
    }
    .growth-title-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .growth-num {
      font-size: 80px;
    }
  }


  /* ── PORTFOLIO ── */
  /* ── PORTFOLIO PINNED HORIZONTAL SCROLL ── */
  #portfolio {
    padding: 0;
    min-height: unset; /* height controlled by JS */
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 25%, #e8e8ff 55%, #c8c6fb 100%);
    background-attachment: scroll;
  }

  .portfolio-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 80px 48px 72px;
    background: var(--white);
  }

  .portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-shrink: 0;
  }

  .portfolio-header .section-title {
    color: var(--ink);
  }

  .portfolio-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 500;
  }

  .portfolio-progress-bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
  }

  .portfolio-progress-fill {
    height: 100%;
    background: var(--brand);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
  }

  .portfolio-track {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    height: 420px;
    will-change: transform;
    min-width: max-content;
  }

  .project-card {
    flex: 0 0 400px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--off-white);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
  }

  .project-card.featured {
    flex: 0 0 560px;
  }

  .project-card:hover {
    box-shadow: 0 24px 56px rgba(80,79,237,0.1);
  }

  .project-thumb {
    width: 100%;
    flex: 0 0 220px;
    display: block;
    background-color: var(--brand-pale);
    background-size: 130% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: background-size 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .project-card:hover .project-thumb {
    background-size: 138% auto;
  }

  .project-card.featured .project-thumb { flex: 0 0 280px; }

  .project-info {
    padding: 24px;
  }

  .project-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-pale);
    padding: 4px 10px;
    border-radius: 100px;
  }

  .project-name {
    font-family: 'Brockmann', sans-serif;
    font-size: var(--fs-lg);
    font-weight: var(--fw-regular);
    letter-spacing: var(--ls-snug);
    margin-bottom: 8px;
    color: var(--ink);
  }

  .project-desc {
    font-size: 14px;
    color: var(--ink-body);
    line-height: var(--lh-relaxed);
    font-weight: var(--fw-regular);
  }

  /* ── Portfolio scroll arrows (mobile/tablet only) ── */
  .portfolio-scroll-wrap { position: relative; }

  .portfolio-arrow {
    display: none; /* hidden on desktop */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    font-size: 16px;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    align-items: center;
    justify-content: center;
  }

  .portfolio-arrow:hover { background: var(--white); }
  .portfolio-arrow:disabled { opacity: 0.25; pointer-events: none; }
  .portfolio-arrow--prev { left: 8px; }
  .portfolio-arrow--next { right: 8px; }



  /* ── TESTIMONIALS ── */
  .testi-pin-wrap {
    height: 130vh;         /* 100vh locked + 30vh to scroll off */
    position: relative;
    z-index: 10;
    margin-top: 0;
  }

  .testimonials-section {
    background: var(--brand);
    overflow: hidden;
    position: sticky;
    top: 0;
    height: 100vh;
  }

  /* Slow animated background glow */
  .testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 60%, rgba(180,130,255,0.28) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 80% 30%, rgba(60,20,180,0.35) 0%, transparent 70%);
    animation: testi-bg-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
  }

  @keyframes testi-bg-drift {
    0%   { opacity: 1; transform: scale(1) translate(0, 0); }
    50%  { opacity: 0.7; transform: scale(1.08) translate(3%, -4%); }
    100% { opacity: 1; transform: scale(1.04) translate(-3%, 5%); }
  }

  .testi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;         /* fills exactly the sticky section */
    position: relative;
    z-index: 1;
  }

  /* Left: sticky heading — intro animation */
  .testi-left {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 48px;
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
  }

  .testimonials-section.testi-visible .testi-left {
    opacity: 1;
    transform: translateX(0);
  }

  .testi-heading {
    font-family: 'Brockmann', sans-serif;
    font-size: 50px;
    font-weight: var(--fw-regular);
    line-height: 0.95;
    letter-spacing: var(--ls-tight);
    color: var(--white);
    margin: 0;
  }

  /* Right: vertical scrolling — intro animation */
  .testi-right {
    height: 100%;
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.1);
    position: relative;
    opacity: 0;
    transform: translateY(56px);
    transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1) 0.2s, transform 1.1s cubic-bezier(0.22,1,0.36,1) 0.2s;
  }

  .testimonials-section.testi-visible .testi-right {
    opacity: 1;
    transform: translateY(0);
  }

  /* Fade masks top and bottom */
  .testi-right::before, .testi-right::after { display: none;  }
  .testi-right::before {
    top: 0;
    background: linear-gradient(to bottom, var(--brand), transparent);
  }
  .testi-right::after {
    bottom: 0;
    background: linear-gradient(to top, var(--brand), transparent);
  }

  .testi-vertical-marquee {
    height: 100%;
    overflow: hidden;
  }

  .testi-vertical-inner {
    display: flex;
    flex-direction: column;
    gap: 1px;
    animation: scroll-up 35s linear infinite;
  }

  .testi-vertical-marquee:hover .testi-vertical-inner {
    animation-play-state: paused;
  }

  @keyframes scroll-up {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

  .testi-card {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 36px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
  }

  .testi-quote {
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255,255,255,0.88);
  }

  .testi-quote::before {
    content: '\201C';
    font-size: 36px;
    line-height: 1;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 10px;
    font-family: Georgia, serif;
  }

  .testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
  }

  .testi-name {
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--white);
  }

  .testi-role {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
  }


  /* ── DESIGN SYSTEMS ── */
  /* ── EXPERIENCE ── */

  .skills-sidebar h3 {
    font-family: 'Brockmann', sans-serif;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-snug);
    margin-bottom: 32px;
  }

  .skill-group {
    margin-bottom: 32px;
  }

  .skill-group-label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }

  .skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .skill-pill {
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    color: var(--ink-body);
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
  }

  /* ── ABOUT ── */
  .about-pin-wrap {
    height: 130vh;
    position: relative;
    z-index: 10;
  }

  .about-section {
    background: #EAEBFA;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Heading row */
  .about-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
  }

  .about-title {
    font-family: 'Brockmann', sans-serif;
    font-weight: var(--fw-regular);
    font-size: 50px;
    white-space: nowrap;
    line-height: 0.92;
    letter-spacing: var(--ls-tight);
    color: var(--ink);
    margin: 0;
    flex-shrink: 0;
  }

  .about-intro {
    font-size: 15px;
    line-height: 1.4;
    color: var(--ink-body);
    max-width: 400px;
    margin: 0;
  }

  /* Text link list */
  .about-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }

  .about-link {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-decoration: none;
    position: relative;
    transition: background 0.2s;
  }

  .about-links .about-link:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .about-link-tag {
    font-size: 10px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
    flex-shrink: 0;
    width: 72px;
    transition: color 0.2s;
  }

  .about-link-label {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: var(--fw-medium);
    color: var(--ink);
    flex: 1;
    line-height: 1.2;
    transition: color 0.2s;
  }

  .about-link-arrow {
    font-size: 18px;
    color: var(--ink-soft);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
  }

  .about-link:hover .about-link-tag   { color: var(--brand); }
  .about-link:hover .about-link-label { color: var(--brand); }
  .about-link:hover .about-link-arrow { color: var(--brand); transform: translate(3px, -3px); }

  /* Image preview that follows cursor */
  .about-img-preview {
    position: fixed;
    pointer-events: none;
    z-index: 9000;
    width: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.92) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  }

  .about-img-preview.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .about-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  /* ── FAQ SECTION ── */
  .faq-container {
    display: flex;
    gap: 80px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
    align-items: flex-start;
  }

  .faq-left {
    flex: 0 0 350px;
  }

  .faq-title {
    font-family: 'Brockmann', sans-serif;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
  }

  .faq-description {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(0,0,0,0.45);
    max-width: 320px;
  }

  .faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .faq-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 32px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    color: var(--ink);
    font-size: 18px;
    font-family: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: var(--brand) !important;
  }

  .faq-question:hover .faq-icon {
    transform: scale(1.15);
  }

  .faq-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }

  .faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    transform: translateY(-50%);
  }

  .faq-icon::after {
    top: 0;
    left: 50%;
    width: 1.5px;
    height: 100%;
    transform: translateX(-50%);
  }

  .faq-item.active .faq-icon::after,
  .faq-item:hover .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .faq-item.active .faq-question,
  .faq-item:hover .faq-question {
    color: var(--brand) !important;
  }

  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-item.active .faq-answer,
  .faq-item:hover .faq-answer {
    grid-template-rows: 1fr;
  }

  .faq-answer-inner {
    overflow: hidden;
    padding-left: 38px;
    padding-right: 40px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    color: var(--ink-body);
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer-inner,
  .faq-item:hover .faq-answer-inner {
    padding-bottom: 32px;
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 900px) {
    .faq-container {
      flex-direction: column;
      gap: 40px;
      padding: 0 24px;
    }
    .faq-left {
      flex: none;
      width: 100%;
    }
    .faq-question {
      font-size: 16px;
      padding: 24px 0;
    }
  }

  .blue-pin-wrap {
    height: 130vh;
    position: relative;
    z-index: 10;
  }

  .signature-blue-section {
    background-color: #504FED;
    position: sticky;
    top: 0;
    height: 100vh;
    width: calc(100vw + 30px);
    margin-left: calc(-50vw + 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 !important;
  }

  /* ── BLOG SECTION ── */
  .blog-container {
    width: calc(100vw + 30px);
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .blog-header {
    width: 100%;
    padding: 0 48px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align title and button on same baseline */
    gap: 40px;
    margin-bottom: 20px;
  }

  .blog-title-wrap {
    flex: 1;
  }

  .blog-section-title {
    font-family: 'Brockmann', sans-serif;
    font-weight: var(--fw-regular);
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 0.92;
    letter-spacing: var(--ls-tight);
    color: var(--white);
    margin: 0 0 16px;
    text-transform: lowercase;
  }

  .blog-section-title b {
    color: #FFFFFF;
    font-weight: var(--fw-bold);
  }

  .blog-subtitle {
    font-size: clamp(14px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 500px;
    line-height: 1.4;
  }

  /* White Blob Button Modifier */
  .blob-btn--white {
    color: #FFFFFF !important;
    margin: 0; /* Reset margin from previous move */
  }
  .blob-btn--white:before {
    border: 2px solid #FFFFFF !important;
  }
  .blob-btn--white .blob-btn__inner {
    background: transparent !important;
  }
  .blob-btn--white .blob-btn__blob {
    background: #FFFFFF !important;
  }
  .blob-btn--white:hover { color: #000000 !important; }
    .blob-btn--white:hover > span { color: #000000 !important; }

  /* Horizontal Marquee */
  .blog-marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
  }

  .blog-marquee-inner {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: blog-scroll-x 60s linear infinite;
  }

  .blog-marquee-wrap:hover .blog-marquee-inner {
    animation-play-state: paused;
  }

  @keyframes blog-scroll-x {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
  }

  .blog-card {
    flex: 0 0 400px;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
  }

  .blog-card:hover {
    transform: scale(1.02);
  }

  .blog-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.6s ease, opacity 0.4s ease;
    z-index: 0;
  }

  .blog-card:hover .blog-card-img {
    transform: scale(1.1);
    opacity: 0.85;
  }

  .blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    z-index: 1;
  }

  .blog-card-tag {
    align-self: flex-start;
    background: #FFFFFF;
    color: #504FED;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .blog-card-title {
    font-family: 'Brockmann', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
    margin: 0;
    letter-spacing: -0.01em;
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--brand);
    padding: 48px 48px 4vh;
    overflow: hidden;
    min-height: 100vh;
    height: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    z-index: 10;
    margin-top: 0;
    box-sizing: border-box;
  }

  .footer-logo-svg {
    color: var(--white);
  }

  .footer-main-wordmark {
    font-family: 'Brockmann', sans-serif;
    color: var(--white);
    line-height: 0.9;
    text-transform: lowercase;
    position: relative;
    z-index: 1;
  }

  .footer-main-wordmark .line-1 {
    font-size: clamp(50px, 7vw, 100px); /* Marketing is now larger */
    font-weight: 700;
    opacity: 1;
    margin-bottom: -10px;
    display: block;
  }

  .footer-main-wordmark .line-2 {
    font-size: clamp(40px, 5.5vw, 85px); /* Dunpol is smaller, bottom aligns with robot */
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .footer-main-wordmark .dot {
    opacity: 0.6;
  }

  .footer-wordmark-wrap {
    padding-bottom: 60px; /* Increased to push the border line down */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
  }

  /* ── FOOTER MAIN CONTENT ── */
  .footer-main-content {
    padding: 2vh 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 64px;
    color: #fff;
  }

  .footer-col-about .footer-logo {
    margin-bottom: 24px;
  }

  .footer-desc {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 32px;
    max-width: 420px;
    letter-spacing: -0.02em;
  }

  .footer-social-icons {
    display: flex;
    gap: 16px;
  }

  .footer-social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
  }

  .footer-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer-social-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
    color: #fff;
    opacity: 0.9;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  .footer-link:hover {
    opacity: 1;
  }

  .footer-info-item {
    margin-bottom: 40px;
  }

  .footer-info-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
    opacity: 0.9;
  }

  .footer-info-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.6;
    white-space: pre-line;
  }

  @media (max-width: 1100px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 60px 40px;
    }
  }

  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-col-about {
      grid-column: span 2;
    }
    .footer-wordmark {
      font-size: 80px;
    }
  }

  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .footer-col-about {
      grid-column: span 1;
    }
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    gap: 24px;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

  .footer-nav {
    display: flex;
    gap: 28px;
  }

  .footer-nav a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    text-transform: lowercase;
    transition: color 0.2s;
  }

  .footer-nav a:hover { color: var(--white); }

  .footer-social {
    display: flex;
    gap: 20px;
  }

  .footer-social a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-social a:hover { color: var(--white); }

  /* ── ANIMATIONS ── */
  /* ── SCROLL REVEAL ── */
  .fade-up {
    opacity: 0;
    transform: translateY(52px) scale(0.98);
    transition:
      opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Section-level entrance — default hidden, revealed by JS */
  body.page-index section:not(.hero) {
    opacity: 0;
    transform: translateY(36px);
  }

  body.page-index section.section-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .fade-up, .fade-left, .fade-right {
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    body.page-index section {
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    nav, .hero-wordmark, .hero-body, .hero-word-slot {
      animation: none !important;
    }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; background: #ffffff; backdrop-filter: none; -webkit-backdrop-filter: none; }
    body.page-index section { padding: 80px 24px; min-height: 100svh; box-sizing: border-box; }
    .about-section, .testimonials-section { min-height: unset; padding: 80px 24px; }
    .hero { padding: 0; min-height: 100svh; background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 25%, #e8e8ff 55%, #c8c6fb 100%); }
    .hero-content-wrap { padding: 0 24px 72px; }
    .hero-wordmark { font-size: 50px; line-height: 0.95; }
    .hero-scroll-hint { display: none; }

    #portfolio { height: 200svh; min-height: unset; background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 25%, #e8e8ff 55%, #c8c6fb 100%); }
    .portfolio-sticky {
      position: sticky;
      top: 0;
      height: 100svh;
      overflow: hidden;
      padding: 80px 24px 48px;
      justify-content: center;
      background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 25%, #e8e8ff 55%, #c8c6fb 100%);
    }
    .portfolio-track { overflow-x: auto; scroll-snap-type: x proximity; transform: none !important; min-width: unset; padding-bottom: 16px; scrollbar-width: none; }
    .portfolio-track::-webkit-scrollbar { display: none; }
    .project-card { flex: 0 0 80vw; scroll-snap-align: start; height: auto; }
    .project-card.featured { flex: 0 0 85vw; height: auto; }
    .project-thumb { flex: 0 0 160px; }
    .project-card.featured .project-thumb { flex: 0 0 160px; }
    .project-info { padding: 20px; }
    .project-desc { display: block; overflow: visible; white-space: normal; }
    .portfolio-arrow { display: flex; }
    .portfolio-progress { display: none; }
    .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .portfolio-progress { display: none; }
    .about-pin-wrap { height: 130svh; background: #EAEBFA; }
    .about-section { position: sticky; top: 0; height: 100svh; overflow: hidden; padding: 80px 24px; display: flex; flex-direction: column; justify-content: center; }
    .about-title { font-size: 36px; white-space: normal; }
    .about-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
    .about-intro { max-width: 100%; font-size: 14px; line-height: 1.5; }

    /* ── TESTIMONIALS — mobile/tablet ── */
    .testi-pin-wrap { height: 130svh; background: var(--brand); }
    .testimonials-section { position: sticky; top: 0; height: 100svh; overflow: hidden; padding: 32px 0; display: flex; flex-direction: column; justify-content: center; }
    .testi-layout { display: flex; flex-direction: column; gap: 12px; height: auto; }
    .testi-left { height: auto; padding: 0 24px; opacity: 1 !important; transform: none !important; }
    .testi-heading { white-space: nowrap; font-size: 36px; }
    .section-title { font-size: 36px; }
    .testi-right {
      border-left: none;
      border-top: none;
      overflow-x: auto;
      overflow-y: visible;
      height: auto !important;
      opacity: 1 !important;
      transform: none !important;
      scroll-snap-type: x proximity;
      scroll-padding-left: 24px;
      scrollbar-width: none;
      padding-left: 24px;
    }
    .testi-right::-webkit-scrollbar { display: none; }
    .testi-right::before, .testi-right::after { display: none;  }
    .testi-vertical-marquee { height: auto; overflow: visible; }
    .testi-vertical-inner {
      flex-direction: row;
      animation: none;
      gap: 16px;
      padding: 0 24px 0 0;
    }
    .testi-card {
      flex: 0 0 80vw;
      scroll-snap-align: start;
      border-bottom: none;
      border-right: 1px solid rgba(255,255,255,0.08);
      padding: 24px;
    }
    .site-footer { padding: 48px 24px 40px; background: var(--brand); }
    .footer-wordmark-wrap { padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-nav { flex-wrap: wrap; gap: 16px 24px; }
    .footer-social { gap: 16px; }
    .hero-cards-row { grid-template-columns: 1fr 1fr; }
    .note-layout { grid-template-columns: 1fr; gap: 40px; }
    .note-cards { grid-template-columns: 1fr 1fr; }
    .note-col-right { display: none; }
    .note-portrait--mobile { display: block; width: 100%; aspect-ratio: 3 / 2; margin: 24px 0 32px; }
    .note-portrait--mobile img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }


    /* ── LOGOS — tablet: 2 columns, 3 rows ── */
    .clients-inner { flex-direction: column; gap: 0; align-items: flex-start; }
    .clients-logos-row { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; row-gap: 16px; }
    .client-slot { height: 64px; }
    .client-slot img { left: 0; transform: translate(0, -50%); }
    .clients-text { display: none; }

    /* ── MOBILE MENU FIXES ── */
    .menu-overlay { padding: 80px 24px 60px; }
    .menu-close {
      top: 20px;
      right: 24px;
      gap: 8px;
      font-size: 12px;
    }
    .menu-close svg { width: 18px; height: 18px; }
    .menu-close-label { display: none; }
    .menu-index { right: 24px; bottom: 32px; }
    .menu-nav { margin-bottom: 48px; gap: 4px; }
    .menu-cta { margin-bottom: 40px; }
  }

  /* ── TABLET ONLY — project cards taller ── */
  @media (min-width: 481px) and (max-width: 900px) {
    .project-thumb { flex: 0 0 240px; }
    .project-card.featured .project-thumb { flex: 0 0 240px; }
  }

  #seo-mastery-root h2.seo-mastery-title {
    color: #000 !important;
  }

  #seo-mastery-root h2.seo-mastery-title .seo-mastery-slash {
    color: #504FED !important;
  }

  /* ── LOGO SVG INLINE ── */
  .logo-inline path { fill: var(--brand); }

  /* ── PHOTO STRIP ── */
  .photo-strip {
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  
  .photo-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 320px;
  }
  
  .photo-item {
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    overflow: hidden;
    transform: scale(1.02);
  }
  
  .photo-item:hover {
    filter: grayscale(0%);
    transform: scale(1);
    z-index: 1;
  }
  
  .photo-credit {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
  }
  
  @media (max-width: 480px) {
    /* ── LOGOS — mobile: single column ── */
    .clients-logos-row { grid-template-columns: 1fr; row-gap: 20px; }
    .client-slot { height: 56px; }

  }

  @media (max-width: 900px) {
    .photo-strip-inner {
      grid-template-columns: repeat(2, 1fr);
      height: 400px;
    }
  }

/* ── FOOTER ROBOT & FAQ ── */
.footer-robot-btn {
  position: absolute;
  bottom: -20px; /* Moved down to perfectly align with the text bottom */
  right: -40px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-robot-btn:hover {
  transform: scale(1.1);
}
.faq-bubble {
  position: absolute;
  top: 120px;
  right: 183px;
  background: #fff;
  color: #504fed;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.8) translateX(-6px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Brockmann', sans-serif;
  font-weight: 700;
  font-size: 19px;
  z-index: 11;
}
.faq-bubble::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
}
.footer-robot-btn.active .faq-bubble {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}
.faq-bubble:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 900px) {
  .faq-bubble {
    top: 20px;
    right: 180px;
    font-size: 16px;
    padding: 9px 16px;
  }
}

/* ── GLOBAL DROPDOWN NAVIGATION ── */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 8px 0;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Brockmann', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f8f8f8;
  color: var(--brand);
}

/* ============================================================
   SEO Tools "Belt" — local design tokens for the 3D loop section.
   Warm cream canvas, deep ink type, single coral accent.
   Scoped via .seo-belt so it doesn't bleed into the rest of the app.
   ============================================================ */
.seo-belt {
  --belt-bg: #EAEBFA;
  --belt-bg-deep: #EAEBFA;
  --belt-ink: oklch(0.18 0.025 270);
  --belt-ink-soft: oklch(0.42 0.02 270);
  --belt-line: oklch(0.18 0.025 270 / 0.12);
  --belt-card: oklch(1 0 0);
  --belt-accent: oklch(0.62 0.21 28);
  --belt-accent-soft: oklch(0.62 0.21 28 / 0.12);
}

/* Infinite marquee: row holds 2 copies of the same logo set;
   we translate by exactly -50% so the seam is invisible. */
@keyframes belt-loop-l {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes belt-loop-r {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

@keyframes belt-tick {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}

.belt-grain {
  background-image:
    radial-gradient(oklch(0.18 0.025 270 / 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* 3D Hardware Acceleration & Anti-Blur Optimization */
.seo-belt {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Force hardware-accelerated rendering on the animated row containers */
.seo-belt .flex.w-max.gap-5 {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Optimize card children under 3D transforms */
.seo-belt .flex.w-max.gap-5 > div {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}










/* Statement Stats Row */
.statement-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  gap: 50px;
}
.statement-stat-item {
  text-align: center;
  position: relative;
}
.statement-stat-item:not(:first-child) {
  padding-left: 50px;
}
.statement-stat-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.statement-stat-item h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1;
  font-family: 'Brockmann', sans-serif;
}
.statement-stat-item h3 span:not(.stat-number) {
  font-size: clamp(16px, 2vw, 24px);
}
.statement-stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
}
@media (max-width: 900px) {
  .statement-stats-row {
    flex-wrap: wrap;
    gap: 40px;
  }
  .statement-stat-item:not(:first-child) {
    padding-left: 0;
  }
  .statement-stat-item:not(:first-child)::before {
    display: none;
  }
}
/* --- GLOBAL FOOTER OVERRIDES --- */
.site-footer {
  min-height: 100vh !important;
  height: 100vh !important;
}

.site-footer .footer-heading {
  margin-bottom: 20px !important;
}

.site-footer .footer-links {
  gap: 10px !important;
}

.site-footer .footer-info-item {
  margin-bottom: 28px !important;
}

.site-footer .footer-info-label {
  margin-bottom: 6px !important;
}

.site-footer .footer-info-text {
  white-space: normal !important;
  line-height: 1.5 !important;
}

.site-footer .footer-main-wordmark .line-1,
.site-footer .footer-main-wordmark .line-2 {
  font-weight: 400 !important;
}

/* Ensure dots are hidden if JS is cached */
.site-footer .footer-main-wordmark .dot,
.site-footer .footer-logo a span:last-child {
  display: none !important;
}

/* ============================================================
   RELEASE HARDENING
   Shared accessibility, responsive, and no-CDN fallbacks.
   ============================================================ */

html {
  scroll-behavior: auto;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe,
object,
embed {
  max-width: 100%;
}

img,
video {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #ffcf33 !important;
  outline-offset: 3px !important;
}

::selection {
  color: #fff;
  background: var(--brand);
}

/* Content must remain usable when an animation/CDN script fails. */
section:not([hidden]),
.fade-up,
.bento-card {
  opacity: 1;
}

body.runtime-ready .fade-up:not(.visible) {
  opacity: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Legal layouts imported from the old design had fixed mobile widths. */
@media (max-width: 640px) {
  .mv-container,
  .mv-grid12,
  .mv-col-3,
  .mv-col-4-start-5,
  .mv-col-8-start-5,
  .mv-content-space,
  .mv-sidebar,
  .mv-doc-section,
  .mv-doc-head,
  .mv-doc-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mv-legal-box-btn,
  .mv-contact-btn,
  .mv-cta-solid {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
}

/* Service detail heroes contain a two-column form and cannot be locked to
   one viewport on phones/tablets. */
@media (max-width: 1023px) {
  .service-hero {
    height: auto !important;
    min-height: 100svh !important;
    max-height: none !important;
    align-items: flex-start !important;
    overflow: hidden !important;
  }

  .service-hero > .relative.mx-auto.w-full.grid {
    padding-top: 120px !important;
    padding-bottom: 72px !important;
    gap: 44px !important;
  }

  .service-hero .sticky {
    position: static !important;
    top: auto !important;
  }

  .service-hero h1,
  .service-hero h2 {
    font-size: clamp(2.25rem, 10vw, 4rem) !important;
    line-height: 1 !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .service-hero > .relative.mx-auto.w-full.grid {
    padding-inline: 20px !important;
    padding-top: 108px !important;
  }

  .service-hero .rounded-2xl {
    border-radius: 20px !important;
  }
}

/* Shared footer must grow with its content on every screen. */
.site-footer {
  height: auto !important;
  min-height: min(100svh, 900px) !important;
}

@media (max-width: 900px) {
  .site-footer {
    min-height: 0 !important;
    padding: 56px 24px 32px !important;
  }

  .footer-wordmark-wrap {
    min-height: 230px !important;
    padding-bottom: 24px !important;
  }

  .footer-wordmark-wrap > div[style*="position:absolute"] {
    right: -24px !important;
    bottom: -10px !important;
    transform: scale(0.68);
    transform-origin: bottom right;
  }

  .footer-main-content {
    padding-top: 24px !important;
  }

  .footer-bottom {
    gap: 18px;
    align-items: flex-start !important;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .footer-bottom,
  .footer-social {
    flex-direction: column !important;
  }

  .statement-stats-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 48px;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* The supplied homepage contained portfolio/testimonial material belonging
   to a different studio. Keep it out of the production experience until
   verified Dunpol case studies are supplied. */
body.page-index #portfolio,
body.page-index .testi-pin-wrap {
  display: none !important;
}

.signature-blue-section,
.signature-blue-section .blog-container {
  width: 100% !important;
  margin-left: 0 !important;
}

/* Only the verified Dunpol company profile is published. */
.footer-social-icons a:not(:last-child) {
  display: none !important;
}
/* CMS-managed footer content */
.footer-info-text a {
    color: inherit;
    text-decoration: none;
}

.footer-address {
    white-space: pre-line !important;
    overflow-wrap: anywhere;
}
