/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    --fq-black:      #080808;
    --fq-dark:       #111111;
    --fq-mid:        #1c1c1c;
    --fq-border:     rgba(255,255,255,0.08);
    --fq-red:        #C41E3A;
    --fq-red-dark:   #9B1729;
    --fq-white:      #ffffff;
    --fq-off:        #f2f0ee;
    --fq-text:       #181818;
    --fq-muted:      #888888;
    --fq-sans:       'Barlow', system-ui, sans-serif;
    --fq-display:    'Oswald', 'Barlow', sans-serif;
    --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.fq-root {
    font-family: var(--fq-sans);
    color: var(--fq-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.fq-root *,
.fq-root a { text-decoration: none; }

.fq-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.fq-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 0;
    background: transparent;
    transition: background 0.4s var(--ease-out), border-bottom 0.4s;
}

.fq-nav--scrolled {
    background: rgba(8,8,8,0.96);
    border-bottom: 1px solid var(--fq-border);
    backdrop-filter: blur(12px);
}

.fq-nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 40px;
}

.fq-nav-logo img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.fq-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.fq-nav-links a {
    font-family: var(--fq-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    transition: color 0.2s;
}

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

.fq-nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.fq-nav-lang__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.fq-nav-lang__link:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--fq-white);
}

.fq-nav-lang__link.is-active {
    background: var(--fq-red);
    border-color: var(--fq-red);
    color: var(--fq-white);
}

.fq-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--fq-red);
    color: var(--fq-white);
    font-family: var(--fq-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
}

.fq-nav-cta:hover { background: var(--fq-red-dark); color: var(--fq-white); }

.fq-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
}

.fq-nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fq-white);
    transition: transform 0.3s, opacity 0.3s;
}

/* ─── EYEBROW ─────────────────────────────────────────────────── */
.fq-eyebrow {
    font-family: var(--fq-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fq-red);
    margin: 0 0 16px;
}

.fq-eyebrow--dark { color: var(--fq-red); }

/* ─── HERO ────────────────────────────────────────────────────── */
.fq-hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background: var(--fq-black);
    overflow: hidden;
}

.fq-hero-media {
    position: absolute;
    inset: 0;
    background: url('/brand-assets/img/carousel1.png') center / cover no-repeat;
    transform: scale(1.04);
    animation: fq-hero-ken 18s ease-in-out infinite alternate;
}

@keyframes fq-hero-ken {
    from { transform: scale(1.04) translate(0, 0); }
    to   { transform: scale(1.10) translate(-1%, -1%); }
}

.fq-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,8,8,0.90) 0%, rgba(8,8,8,0.72) 50%, rgba(8,8,8,0.55) 100%),
        linear-gradient(0deg, rgba(8,8,8,0.88) 0%, transparent 45%);
}

/* The body stretches to fill the hero and uses space-between
   so .fq-hero-top sits just below the navbar and .fq-hero-stats
   are pinned to the bottom — everything contained within 100svh */
.fq-hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 96px 40px 48px;   /* 96px ≈ navbar height + 14px gap */
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.fq-hero-top {
    display: flex;
    flex-direction: column;
}

.fq-hero-title {
    font-family: var(--fq-display);
    font-weight: 700;
    font-size: clamp(3.6rem, 9vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 12px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fq-hero-title__line {
    display: block;
    color: var(--fq-white);
}

.fq-hero-title__line--red { color: var(--fq-red); }

.fq-hero-title__line--outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--fq-white);
}

.fq-hero-desc {
    max-width: 580px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.60);
    margin: 0 0 28px;
}

.fq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.fq-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--fq-border);
    padding-top: 24px;
}

.fq-hero-stat {
    padding: 0 40px 0 0;
    margin-right: 40px;
    border-right: 1px solid var(--fq-border);
}

.fq-hero-stat:last-child { border-right: none; }

.fq-hero-stat strong {
    display: block;
    font-family: var(--fq-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fq-white);
    line-height: 1;
    margin-bottom: 6px;
}

.fq-hero-stat span {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fq-muted);
}

.fq-hero-scroll {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--fq-muted);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: fq-scroll-bob 2s ease-in-out infinite;
}

@keyframes fq-scroll-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(5px); }
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.fq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--fq-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.fq-btn:hover { transform: translateY(-2px); }

.fq-btn--red {
    background: var(--fq-red);
    color: var(--fq-white);
    box-shadow: 0 8px 28px rgba(196,30,58,0.35);
}

.fq-btn--red:hover {
    background: var(--fq-red-dark);
    color: var(--fq-white);
    box-shadow: 0 12px 36px rgba(196,30,58,0.45);
}

.fq-btn--outline {
    background: transparent;
    color: var(--fq-white);
    border: 1px solid rgba(255,255,255,0.35);
}

.fq-btn--outline:hover {
    background: rgba(255,255,255,0.08);
    color: var(--fq-white);
}

/* ─── CLIENTS STRIP ───────────────────────────────────────────── */
.fq-clients {
    background: var(--fq-mid);
    border-top: 1px solid var(--fq-border);
    border-bottom: 1px solid var(--fq-border);
    padding: 22px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

.fq-clients-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fq-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.fq-clients-track {
    display: flex;
    align-items: center;
    gap: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}

.fq-clients-track::-webkit-scrollbar { display: none; }

.fq-client-name {
    font-family: var(--fq-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    transition: color 0.2s;
}

.fq-client-name:hover { color: rgba(255,255,255,0.70); }

/* ─── SECTIONS ────────────────────────────────────────────────── */
.fq-section { padding: 100px 0; }

.fq-section--light { background: var(--fq-off); }
.fq-section--dark  { background: var(--fq-dark); }
.fq-section--black { background: var(--fq-black); }

.fq-section-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 80px;
    align-items: end;
    margin-bottom: 56px;
}

.fq-section-intro--light h2,
.fq-section-intro--light p { color: var(--fq-white); }

#industries-heading { color: var(--fq-white); }
#timeline-heading { color: var(--fq-white); }
#contact-heading { color: var(--fq-white); }

.fq-section-intro h2 {
    font-family: var(--fq-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
    color: var(--fq-text);
}

.fq-section-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--fq-muted);
    margin: 0;
    align-self: end;
}

/* ─── SERVICES BENTO ─────────────────────────────────────────── */
.fq-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 420px 260px;
    gap: 12px;
}

/* Featured cards: top row */
.fq-svc--a { grid-column: span 7; }
.fq-svc--b { grid-column: span 5; }

/* Small cards: bottom row — first 4 take span 3, last one fills the rest */
.fq-svc--small {
    grid-column: span 3;
    min-height: 0;
}

/* Use nth-child to assign exact column spans for the 5 small cards (3+2+3+2+2 = 12) */
.fq-bento .fq-svc--small:nth-child(3) { grid-column: span 3; }
.fq-bento .fq-svc--small:nth-child(4) { grid-column: span 2; }
.fq-bento .fq-svc--small:nth-child(5) { grid-column: span 3; }
.fq-bento .fq-svc--small:nth-child(6) { grid-column: span 2; }
.fq-bento .fq-svc--small:nth-child(7) { grid-column: span 2; }

.fq-svc {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
}

.fq-svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease-out);
    filter: brightness(0.55);
}

.fq-svc:hover .fq-svc-bg {
    transform: scale(1.06);
    filter: brightness(0.45);
}

.fq-svc::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.80) 0%, transparent 55%);
    pointer-events: none;
}

.fq-svc-body {
    position: relative;
    z-index: 1;
    padding: 24px 28px;
}

.fq-svc-num {
    display: block;
    font-family: var(--fq-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--fq-red);
    margin-bottom: 8px;
}

.fq-svc-body h3 {
    font-family: var(--fq-display);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fq-white);
    margin: 0 0 10px;
    line-height: 1.1;
}

.fq-svc--small .fq-svc-body h3 { font-size: 1.1rem; }

.fq-svc-body p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin: 0;
}

.fq-svc--small .fq-svc-body p { display: none; }

.fq-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--fq-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fq-svc-link::after {
    content: "→";
}

.fq-svc-link--compact {
    margin-top: 12px;
}

/* Red left border accent on hover */
.fq-svc::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--fq-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s var(--ease-out);
    z-index: 2;
}

.fq-svc:hover::before { transform: scaleY(1); }

/* ─── INDUSTRIES ─────────────────────────────────────────────── */
.fq-ind-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fq-ind-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    overflow: hidden;
    border: 1px solid var(--fq-border);
    transition: border-color 0.2s;
}

.fq-ind-card:hover { border-color: var(--fq-red); }

.fq-ind-img {
    overflow: hidden;
    background: var(--fq-mid);
}

.fq-ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
    transition: transform 0.5s var(--ease-out), filter 0.3s;
}

.fq-ind-card:hover .fq-ind-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.fq-ind-body {
    padding: 28px;
}

.fq-ind-body h3 {
    font-family: var(--fq-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fq-white);
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.fq-ind-body p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--fq-muted);
    margin: 0 0 16px;
}

.fq-ind-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fq-ind-logos span {
    padding: 5px 11px;
    border: 1px solid var(--fq-border);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
}

/* ─── BRAND / STORY ──────────────────────────────────────────── */
.fq-story {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    align-items: start;
}

.fq-story-copy h2 {
    font-family: var(--fq-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    line-height: 1.0;
}

.fq-story-copy p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0 0 20px;
}

.fq-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.fq-pillar {
    padding: 20px;
    border-top: 2px solid var(--fq-red);
    background: var(--fq-white);
}

.fq-pillar strong {
    display: block;
    font-family: var(--fq-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fq-text);
    margin-bottom: 8px;
}

.fq-pillar span {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--fq-muted);
}

.fq-story-visual {
    position: relative;
}

.fq-story-visual > img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.fq-story-cert {
    position: absolute;
    bottom: -24px;
    left: -32px;
    width: 140px;
    background: var(--fq-white);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.fq-story-cert img {
    width: 100%;
    display: block;
}

/* ─── TIMELINE ───────────────────────────────────────────────── */
.fq-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.fq-milestone { display: flex; flex-direction: column; }

.fq-milestone-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    transition: filter 0.4s;
}

.fq-milestone:hover .fq-milestone-img { filter: grayscale(0%); }

.fq-milestone-body {
    padding: 20px 0;
    border-top: 2px solid var(--fq-border);
    transition: border-color 0.3s;
}

.fq-milestone:hover .fq-milestone-body { border-color: var(--fq-red); }

.fq-milestone-year {
    display: inline-block;
    font-family: var(--fq-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--fq-red);
    margin-bottom: 10px;
}

.fq-milestone-body h3 {
    font-family: var(--fq-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--fq-white);
    margin: 0 0 8px;
}

.fq-milestone-body p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--fq-muted);
    margin: 0;
}

/* ─── PROJECTS ───────────────────────────────────────────────── */
.fq-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.fq-project {
    background: var(--fq-white);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.fq-project:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); }

.fq-project-img {
    overflow: hidden;
    height: 260px;
}

.fq-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.fq-project:hover .fq-project-img img { transform: scale(1.04); }

.fq-project-body { padding: 28px; }

.fq-project-body h3 {
    font-family: var(--fq-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.fq-project-body p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.fq-contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.fq-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.fq-contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}

.fq-contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fq-red);
    color: var(--fq-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.fq-contact-item strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fq-muted);
    margin-bottom: 6px;
}

.fq-contact-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

.fq-contact-item a {
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

.fq-contact-item a:hover { color: var(--fq-white); }

/* Form */
.fq-contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.fq-form-field { display: flex; flex-direction: column; gap: 6px; }

.fq-form-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fq-muted);
}

.fq-form-field input,
.fq-form-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--fq-border);
    color: var(--fq-white);
    padding: 14px 16px;
    font-family: var(--fq-sans);
    font-size: 0.93rem;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.fq-form-field input::placeholder,
.fq-form-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.fq-form-field input:focus,
.fq-form-field textarea:focus { border-color: var(--fq-red); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.fq-footer {
    background: var(--fq-black);
    border-top: 1px solid var(--fq-border);
    padding: 72px 0 0;
}

.fq-footer-top {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.fq-footer-brand img {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.fq-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--fq-muted);
    margin: 0;
}

.fq-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fq-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fq-footer-col strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    margin-bottom: 4px;
}

.fq-footer-col a,
.fq-footer-col span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

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

.fq-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--fq-border);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .fq-timeline { grid-template-columns: repeat(3, 1fr); }
    .fq-milestone:nth-child(4),
    .fq-milestone:nth-child(5) { display: none; }
    .fq-timeline { grid-template-columns: repeat(3, 1fr); }

    .fq-bento { grid-template-rows: 380px 220px; }
    .fq-svc--a { grid-column: span 6; }
    .fq-svc--b { grid-column: span 6; }
    .fq-svc--small { grid-column: span 4; }
}

@media (max-width: 900px) {
    .fq-container { padding: 0 24px; }

    .fq-nav-inner { padding: 16px 24px; }

    .fq-nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(280px, 80vw);
        flex-direction: column;
        align-items: flex-start;
        background: var(--fq-black);
        border-left: 1px solid var(--fq-border);
        padding: 100px 32px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

    .fq-nav-links--open { transform: translateX(0); }
    .fq-nav-links a { font-size: 15px; }
    .fq-nav-lang {
        margin-left: 0;
        margin-top: 8px;
    }
    .fq-nav-lang__link {
        min-width: 42px;
    }

    .fq-nav-burger { display: flex; }
    .fq-nav-cta { display: none; }

    .fq-hero-body { padding: 120px 24px 80px; }
    .fq-hero-title { font-size: clamp(3rem, 13vw, 5rem); }
    .fq-hero-stats { gap: 20px; }
    .fq-hero-stat { padding: 0; margin: 0; border: none; }

    .fq-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .fq-svc--a, .fq-svc--b, .fq-svc--small { grid-column: span 1; min-height: 260px; }
    .fq-svc--featured { min-height: 340px; }

    .fq-section-intro { grid-template-columns: 1fr; gap: 20px; }
    .fq-section--light .fq-section-intro,
    .fq-section--black .fq-section-intro,
    .fq-section--dark  .fq-section-intro { margin-bottom: 36px; }

    .fq-ind-grid { grid-template-columns: 1fr; }
    .fq-ind-card { grid-template-columns: 140px 1fr; }

    .fq-story { grid-template-columns: 1fr; gap: 40px; }
    .fq-story-visual { display: none; }
    .fq-pillars { grid-template-columns: 1fr; }

    .fq-timeline { grid-template-columns: repeat(2, 1fr); }
    .fq-milestone { display: flex; }
    .fq-milestone:nth-child(n) { display: flex; }

    .fq-projects-grid { grid-template-columns: 1fr; }

    .fq-contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .fq-footer-top { grid-template-columns: 1fr; gap: 40px; }
    .fq-footer-links { grid-template-columns: 1fr 1fr; }
    .fq-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
    .fq-hero-title { font-size: clamp(2.6rem, 14vw, 4rem); }
    .fq-hero-actions { flex-direction: column; }
    .fq-hero-stats { flex-direction: column; gap: 20px; }
    .fq-hero-stat { border: none; padding: 0; }

    .fq-bento { grid-template-columns: 1fr; }
    .fq-svc--a, .fq-svc--b, .fq-svc--small { min-height: 240px; }

    .fq-ind-card { grid-template-columns: 1fr; }
    .fq-ind-img { height: 180px; }

    .fq-timeline { grid-template-columns: 1fr; }

    .fq-form-row { grid-template-columns: 1fr; }

    .fq-clients { padding: 18px 24px; }

    .fq-footer-links { grid-template-columns: 1fr; }
}

/* ─── REACH / IMPACT SECTION ────────────────────────────────── */
.fq-reach {
    background: #ffffff;
    padding: 100px 0 80px;
}

.fq-reach-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 80px;
    align-items: end;
    margin-bottom: 52px;
}

.fq-reach-head h2 {
    font-family: var(--fq-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.0;
    margin: 0;
    color: var(--fq-text);
}

.fq-reach-accent { color: var(--fq-red); }

.fq-reach-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: #666;
    margin: 0;
    align-self: end;
}

/* Body: stage left, stats right */
.fq-reach-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: stretch;
    min-height: 480px;
}

.fq-reach-stage {
    position: relative;
    overflow: hidden;
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(196,30,58,0.18), transparent 36%),
        radial-gradient(circle at bottom right, rgba(196,30,58,0.12), transparent 30%),
        linear-gradient(145deg, #111111 0%, #171717 48%, #0b0b0b 100%);
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    color: #fff;
}

.fq-reach-stage__glow {
    position: absolute;
    inset: auto auto -140px -100px;
    width: 320px;
    height: 320px;
    background: rgba(196,30,58,0.16);
    filter: blur(60px);
    pointer-events: none;
}

.fq-reach-stage__header {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.fq-reach-kicker {
    margin: 0;
    color: rgba(255,255,255,0.48);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.fq-reach-stage__header strong {
    font-family: var(--fq-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    max-width: 12ch;
}

.fq-reach-stage__header span {
    max-width: 44rem;
    color: rgba(255,255,255,0.68);
    font-size: 0.96rem;
    line-height: 1.75;
}

.fq-reach-corridor {
    position: relative;
    height: 78px;
    margin-bottom: 26px;
}

.fq-reach-corridor__line {
    position: absolute;
    inset: 50% 0 auto;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(196,30,58,0.85) 40%, rgba(255,255,255,0.18) 100%);
}

.fq-reach-corridor__line::before,
.fq-reach-corridor__line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.85);
    background: var(--fq-red);
    transform: translateY(-50%) rotate(45deg);
}

.fq-reach-corridor__line::before { left: 10%; }
.fq-reach-corridor__line::after { right: 10%; }

.fq-reach-corridor__pulse {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(196,30,58,0.14);
    transform: translate(-50%, -50%);
    animation: fq-reach-drift 5.2s linear infinite;
}

.fq-reach-corridor__pulse--1 { left: 26%; animation-delay: 0s; }
.fq-reach-corridor__pulse--2 { left: 62%; animation-delay: 1.8s; }

@keyframes fq-reach-drift {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    15%  { opacity: 1; }
    50%  { transform: translate(40px, -50%) scale(1); }
    85%  { opacity: 1; }
    100% { opacity: 0; transform: translate(88px, -50%) scale(0.75); }
}

.fq-reach-clusters {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.fq-reach-cluster {
    padding: 22px 22px 20px;
    min-height: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.fq-reach-cluster--morocco {
    box-shadow: inset 3px 0 0 var(--fq-red);
}

.fq-reach-cluster--europe {
    box-shadow: inset 3px 0 0 rgba(255,255,255,0.28);
}

.fq-reach-cluster__eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.fq-reach-cluster__tag,
.fq-reach-cluster__count {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fq-reach-cluster__tag { color: rgba(255,255,255,0.55); }
.fq-reach-cluster__count { color: var(--fq-red); }

.fq-reach-cluster h3 {
    margin: 0 0 10px;
    font-family: var(--fq-display);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fq-reach-cluster p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.66);
    font-size: 0.92rem;
    line-height: 1.75;
}

.fq-reach-nodes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fq-reach-node {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fq-reach-node i {
    color: var(--fq-red);
    font-size: 11px;
}

.fq-reach-node em {
    padding-left: 6px;
    color: rgba(255,255,255,0.66);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.16em;
}

.fq-reach-node--hq {
    background: var(--fq-red);
    border-color: var(--fq-red);
}

.fq-reach-node--hq i,
.fq-reach-node--hq em {
    color: #fff;
}

.fq-reach-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.fq-reach-flow__item {
    padding: 14px 14px 12px;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.fq-reach-flow__item strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--fq-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}

.fq-reach-flow__item span {
    display: block;
    color: rgba(255,255,255,0.54);
    font-size: 0.78rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Stats grid */
.fq-reach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    align-self: stretch;
}

.fq-reach-stat {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 36px 28px;
    background: #fff;
    transition: background 0.2s;
    position: relative;
}

.fq-reach-stat::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 28px;
    width: 0;
    height: 2px;
    background: var(--fq-red);
    transition: width 0.4s var(--ease-out);
}

.fq-reach-stat:hover { background: #fafafa; }
.fq-reach-stat:hover::after { width: calc(100% - 56px); }

.fq-reach-stat__icon {
    width: 44px;
    height: 44px;
    background: rgba(196, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 1.15rem;
    color: var(--fq-red);
    flex-shrink: 0;
}

.fq-reach-stat__val {
    font-family: var(--fq-display);
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--fq-text);
    display: block;
}

.fq-reach-stat__val--text {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    letter-spacing: 0;
}

.fq-reach-stat__label {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #777;
}

.fq-reach-stat__label small {
    display: block;
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 2px;
}

/* CTA */
.fq-reach-cta {
    display: flex;
    justify-content: center;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Ghost button for light backgrounds */
.fq-btn--ghost {
    background: transparent;
    color: var(--fq-text);
    border: 1.5px solid rgba(0,0,0,0.2);
}

.fq-btn--ghost:hover {
    background: rgba(0,0,0,0.04);
    color: var(--fq-text);
    border-color: rgba(0,0,0,0.35);
}

/* ─── REACH RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .fq-reach-body { grid-template-columns: 1fr; gap: 32px; }
    .fq-reach-stage { padding: 28px; }
    .fq-reach-stats {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }
}

@media (max-width: 768px) {
    .fq-reach-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
    .fq-reach-stage { padding: 24px 20px; }
    .fq-reach-stage__header strong { max-width: none; }
    .fq-reach-corridor { height: 54px; }
    .fq-reach-clusters { grid-template-columns: 1fr; }
    .fq-reach-flow { grid-template-columns: 1fr; }
    .fq-reach-stats { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
    .fq-reach-stat { padding: 24px 20px; }
    .fq-reach-stat__val { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .fq-reach-stats { grid-template-columns: 1fr 1fr; }
    .fq-reach-corridor__line::before { left: 6%; }
    .fq-reach-corridor__line::after { right: 6%; }
    .fq-reach-node { width: 100%; justify-content: flex-start; }
    .fq-reach-stat { padding: 20px 16px; gap: 10px; }
    .fq-reach-stat__val { font-size: 2rem; }
    .fq-reach-stat__val--text { font-size: 1.4rem; }
}
