:root {
    --ink: #12272b;
    --ink-2: #1a3638;
    --ink-3: #284849;
    --cyan: #abd8d8;
    --cyan-soft: #d8eeee;
    --accent: #f1fd0d;
    --paper: #f0f3f1;
    --white: #ffffff;
    --muted: #647878;
    --line: rgba(18, 39, 43, .15);
    --line-light: rgba(255, 255, 255, .16);
    --shadow: 0 24px 70px rgba(12, 31, 34, .12);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 36px;
    --container: 1280px;
    --font-body: "Stack Sans Text", "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Stack Sans Notch", "Arial Black", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.04em; line-height: 1.03; }
h1 { font-size: clamp(3.2rem, 7vw, 7.4rem); }
h2 { font-size: clamp(2.5rem, 4.7vw, 5.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
em { color: var(--accent); font-style: normal; }
::selection { color: var(--ink); background: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(90px, 10vw, 160px) 0; }
.section-light { background: var(--white); }
.section-dark { color: var(--white); background: var(--ink); }
.section-cyan { background: var(--cyan); }
.sr-only {
    position: absolute !important; width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important; overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--ink); background: var(--accent); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; color: var(--ink-2); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 1px; content: ""; background: currentColor; }
.eyebrow-light { color: var(--cyan); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(241, 253, 13, .12); }
.eyebrow .status-dot { margin-right: 4px; }
.eyebrow .status-dot + * { margin-left: 0; }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 20px; padding: 14px 23px; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 750; line-height: 1.2; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 1.15em; transition: transform .25s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button-accent { color: var(--ink); background: var(--accent); }
.button-accent:hover { background: #fbff8a; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.button-light { color: var(--ink); background: var(--white); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-outline { color: var(--ink); border-color: rgba(18,39,43,.35); background: transparent; }
.button-outline:hover { border-color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 800; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { color: var(--white); }
.center-action { margin-top: 54px; text-align: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 40px; color: rgba(255,255,255,.65); font-size: .82rem; }
.breadcrumbs a:hover { color: var(--accent); }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.72); font-size: clamp(1.08rem, 1.7vw, 1.34rem); line-height: 1.55; }
.section-heading { margin-bottom: 60px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr); align-items: end; gap: clamp(40px, 9vw, 130px); }
.split-heading h2 { max-width: 900px; margin-bottom: 0; }
.split-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 1.08rem; }

/* Header */
.site-announcement { position: relative; z-index: 60; color: var(--white); background: #0c1c1f; border-bottom: 1px solid rgba(255,255,255,.08); }
.announcement-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; font-size: .71rem; letter-spacing: .08em; text-transform: uppercase; }
.announcement-inner b { color: var(--accent); }
.announcement-inner a { color: var(--cyan); font-weight: 800; }
.site-header { position: sticky; z-index: 50; top: 0; color: var(--white); background: rgba(18, 39, 43, .94); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { display: grid; width: 48px; height: 48px; place-items: center; overflow: hidden; border-radius: 50%; background: transparent; }
.brand-mark img { width: 46px; height: 46px; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; color: var(--cyan); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 650; }
.main-nav > a:not(.nav-cta), .nav-dropdown > button { position: relative; padding: 28px 0; border: 0; color: rgba(255,255,255,.76); background: none; cursor: pointer; }
.main-nav > a:not(.nav-cta)::after, .nav-dropdown > button::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; content: ""; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:hover, .main-nav > a.is-active, .nav-dropdown > button:hover, .nav-dropdown > button.is-active { color: var(--white); }
.main-nav > a:hover::after, .main-nav > a.is-active::after, .nav-dropdown > button:hover::after, .nav-dropdown > button.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; padding: 13px 17px; color: var(--ink); border-radius: 10px; background: var(--accent); transition: color .2s ease, background .2s ease, transform .2s ease; }
.site-header:not(.is-scrolled) .nav-cta:hover,
.site-header:not(.is-scrolled) .nav-cta:focus-visible { color: var(--ink); background: var(--accent); transform: translateY(-2px); }
.nav-dropdown { position: relative; }
.nav-dropdown > button { font-weight: 650; }
.nav-dropdown > button span { margin-left: 6px; }
.nav-panel { position: absolute; top: calc(100% + 1px); right: -300px; display: grid; width: min(780px, calc(100vw - 48px)); grid-template-columns: .82fr 1.5fr; padding: 28px; color: var(--ink); border-radius: 0 0 20px 20px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.nav-dropdown:hover .nav-panel, .nav-dropdown.is-open .nav-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-panel-intro { padding: 24px; border-radius: 14px; background: var(--cyan-soft); }
.nav-panel-intro .eyebrow { margin-bottom: 16px; }
.nav-panel-intro p { font-size: 1.05rem; }
.nav-panel-intro > a { font-weight: 800; }
.nav-service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; padding: 10px 0 10px 26px; }
.nav-service-list a { display: flex; align-items: center; gap: 13px; padding: 10px 6px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.03rem; }
.nav-service-list a:hover { color: #4a5b00; }
.nav-service-list span { color: var(--muted); font-family: var(--font-body); font-size: .68rem; }
.nav-panel-agency { right: auto; left: -190px; width: min(650px, calc(100vw - 48px)); grid-template-columns: .9fr 1.1fr; }
.nav-agency-list { display: grid; padding: 3px 0 3px 24px; }
.nav-agency-list a { display: grid; grid-template-columns: 34px 1fr; gap: 2px 12px; padding: 11px 5px; border-bottom: 1px solid var(--line); }
.nav-agency-list a:last-child { border-bottom: 0; }
.nav-agency-list a > span { grid-row: 1 / 3; align-self: center; color: var(--muted); font-size: .66rem; font-weight: 800; }
.nav-agency-list strong { font-family: var(--font-display); font-size: 1rem; }
.nav-agency-list small { color: var(--muted); font-size: .7rem; }
.nav-agency-list a:hover strong { color: #4a5b00; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; background: transparent; cursor: pointer; }
.menu-toggle i { display: block; width: 19px; height: 2px; margin: 5px auto; background: var(--white); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }

/* Home hero */
.home-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.home-hero::before { position: absolute; inset: 0; content: ""; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-glow-a { top: 9%; right: 8%; width: 380px; height: 380px; background: rgba(171,216,216,.18); }
.hero-glow-b { bottom: 0; left: 4%; width: 300px; height: 300px; background: rgba(241,253,13,.08); }
.home-hero-grid { position: relative; z-index: 1; display: grid; min-height: auto; grid-template-columns: 1fr; justify-items: center; gap: clamp(38px, 5vw, 64px); padding: 92px 0 104px; }
.home-hero-copy { width: min(100%, 980px); text-align: center; }
.home-hero h1 { max-width: 900px; margin: 0 auto 26px; font-size: clamp(3.15rem, 5vw, 5.5rem); }
.painted-word { position: relative; z-index: 0; display: inline-block; white-space: nowrap; }
.painted-word em { position: relative; z-index: 2; color: var(--white); }
.painted-word img { position: absolute; z-index: 1; right: -4%; bottom: -8%; width: 112%; height: 33%; object-fit: fill; opacity: .92; pointer-events: none; transform: rotate(-2deg); }
.home-hero .hero-lead { max-width: 790px; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-top: 34px; }
.hero-reassurance { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0; margin: 30px 0 0; list-style: none; color: rgba(255,255,255,.68); font-size: .86rem; }
.hero-reassurance span { color: var(--accent); }
.hero-video { position: relative; width: min(100%, 800px); padding: 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; background: rgba(255,255,255,.065); box-shadow: 0 40px 110px rgba(0,0,0,.38); backdrop-filter: blur(18px); }
.hero-video::before { position: absolute; z-index: -1; inset: 28px -22px -22px 28px; content: ""; border: 1px solid rgba(171,216,216,.24); border-radius: inherit; }
.hero-video-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 7px 8px 16px; color: var(--cyan); font-size: .67rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.hero-video-heading span { display: inline-flex; align-items: center; gap: 9px; }
.hero-video-heading i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 16px var(--accent); }
.hero-video-heading small { color: rgba(255,255,255,.5); font-size: .62rem; font-weight: 700; letter-spacing: .06em; }
.hero-video-frame { position: relative; overflow: hidden; border-radius: 20px; background: #081416; box-shadow: 0 24px 55px rgba(0,0,0,.3); aspect-ratio: 16 / 9; }
.hero-video-frame::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.hero-video-frame iframe { width: 100%; height: 100%; border: 0; }
.youtube-facade { position: absolute; inset: 0; display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; color: var(--white); border: 0; background: #081416; cursor: pointer; }
.youtube-facade > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.youtube-facade::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(8,20,22,.04), rgba(8,20,22,.34)); transition: background .3s ease; }
.youtube-facade:hover > img { filter: saturate(1.06) brightness(1.04); transform: scale(1.015); }
.youtube-facade:hover::after { background: linear-gradient(180deg, transparent, rgba(8,20,22,.2)); }
.youtube-facade-play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 74px; height: 54px; place-items: center; border-radius: 16px; background: #ff0033; box-shadow: 0 18px 45px rgba(0,0,0,.34); transform: translate(-50%, -50%); transition: transform .25s ease, background .25s ease; }
.youtube-facade-play i { width: 0; height: 0; margin-left: 4px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid var(--white); }
.youtube-facade:hover .youtube-facade-play { background: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.youtube-facade:hover .youtube-facade-play i { border-left-color: var(--ink); }
.youtube-facade-label { position: absolute; z-index: 2; right: 18px; bottom: 16px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(8,20,22,.72); font-size: .66rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.youtube-facade-noscript { position: absolute; z-index: 3; right: 18px; bottom: 16px; left: 18px; padding: 12px; color: var(--white); border-radius: 10px; background: var(--ink); text-align: center; }
.hero-video-caption { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; padding: 18px 10px 8px; }
.hero-video-caption strong { color: var(--white); font-family: var(--font-display); font-size: .93rem; line-height: 1.1; }
.hero-video-caption span { padding-left: 18px; color: rgba(255,255,255,.58); border-left: 1px solid rgba(255,255,255,.16); font-size: .7rem; line-height: 1.45; }
.hero-command { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: rgba(8, 26, 29, .72); box-shadow: 0 36px 100px rgba(0,0,0,.34); backdrop-filter: blur(20px); transform: rotate(1.6deg); }
.hero-command::before { position: absolute; inset: 14px -14px -14px 14px; z-index: -1; content: ""; border: 1px solid rgba(171,216,216,.28); border-radius: 28px; }
.command-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line-light); font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.command-top span { color: var(--cyan); }
.command-top i { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 22px var(--accent); }
.command-score { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 24px; padding: 34px 0; }
.score-ring { position: relative; display: grid; width: 140px; height: 140px; place-content: center; text-align: center; border: 13px solid rgba(171,216,216,.18); border-top-color: var(--accent); border-right-color: var(--cyan); border-radius: 50%; transform: rotate(-20deg); }
.score-ring span, .score-ring small { transform: rotate(20deg); }
.score-ring span { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.score-ring small { margin-top: 6px; color: rgba(255,255,255,.55); font-size: .58rem; text-transform: uppercase; }
.mini-label { color: var(--cyan); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.command-score h2 { margin: 10px 0 0; font-size: 2.1rem; }
.command-lines { display: grid; gap: 18px; padding: 24px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.command-lines > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; font-size: .75rem; }
.command-lines b { color: var(--cyan); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.command-lines i { grid-column: 1 / -1; height: 4px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,.1); }
.command-lines i::before { display: block; width: var(--progress); height: 100%; content: ""; background: linear-gradient(90deg, var(--cyan), var(--accent)); }
.hero-command > a { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; font-size: .8rem; }
.hero-command > a span { color: rgba(255,255,255,.55); }
.hero-command > a b { color: var(--accent); }
.hero-ticker { position: relative; z-index: 2; overflow: hidden; padding: 16px 0; color: var(--ink); background: var(--accent); font-family: var(--font-display); font-weight: 900; letter-spacing: -.02em; }
.hero-ticker > div { display: flex; width: max-content; align-items: center; gap: 34px; animation: ticker 22s linear infinite; }
.hero-ticker i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Trust */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip-inner { display: grid; min-height: 118px; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-logos { display: flex; min-width: 0; align-items: center; justify-content: space-around; gap: 28px; filter: grayscale(1); opacity: .68; }
.trust-logos img { width: auto; height: auto; max-width: 70px; max-height: 38px; object-fit: contain; }
.trust-strip-inner > a { font-weight: 800; white-space: nowrap; }

/* Home sections */
.intro-section { overflow: hidden; }
.intro-arrow-3d { position: absolute; z-index: 0; bottom: -120px; left: -95px; width: 430px; opacity: .72; filter: saturate(.9); transform: rotate(7deg); }
.intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .4fr 1.6fr; gap: 70px; }
.intro-kicker { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; }
.big-number { color: rgba(18,39,43,.12); font-family: var(--font-display); font-size: 8rem; font-weight: 900; line-height: .8; }
.intro-copy h2 { max-width: 980px; margin-bottom: 34px; }
.intro-copy h2 em { color: var(--ink-3); }
.intro-copy p { max-width: 760px; color: var(--muted); font-size: 1.16rem; }
.services-showcase { color: var(--white); background: var(--ink-2); }
.services-showcase::before { position: absolute; top: 0; right: 10%; width: 420px; height: 420px; content: ""; background: radial-gradient(circle, rgba(171,216,216,.14), transparent 68%); }
.services-showcase .split-heading > p { color: var(--white); }
.service-list { border-top: 1px solid var(--line-light); }
.service-row { display: grid; grid-template-columns: 55px minmax(210px, .72fr) minmax(300px, 1.15fr) 140px 55px; align-items: center; gap: 26px; padding: 25px 12px; border-bottom: 1px solid var(--line-light); transition: color .25s ease, background .25s ease, padding .25s ease; }
.service-row > span { color: var(--cyan); font-size: .72rem; }
.service-row h3, .service-row p { margin: 0; }
.service-row h3 { font-size: 1.65rem; }
.service-row p { color: rgba(255,255,255,.59); font-size: .91rem; }
.service-row i { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-style: normal; }
.service-row-visual { width: 135px; height: 78px; object-fit: contain; opacity: .7; filter: drop-shadow(0 14px 15px rgba(0,0,0,.18)); transition: transform .3s ease, opacity .3s ease; }
.service-row:hover { padding-inline: 24px; color: var(--ink); background: var(--accent); }
.service-row:hover > span, .service-row:hover p { color: rgba(18,39,43,.7); }
.service-row:hover i { border-color: var(--ink); }
.service-row:hover .service-row-visual { opacity: 1; transform: translateY(-4px) rotate(-4deg) scale(1.08); }
.swiss-section { background: var(--white); }
.swiss-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(390px, .75fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.swiss-visual { position: relative; min-height: 680px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); }
.swiss-visual::before { position: absolute; inset: 0; content: ""; opacity: .18; background-image: radial-gradient(circle, var(--cyan) 1.4px, transparent 1.4px); background-size: 26px 26px; }
.swiss-orb { position: absolute; z-index: 0; bottom: -16%; left: -20%; width: 650px; opacity: .8; }
.swiss-hand-circle { position: absolute; z-index: 1; top: 16%; left: 15%; width: 70%; opacity: .75; transform: rotate(-10deg); }
.ch-map { position: absolute; z-index: 2; top: 50%; left: 50%; width: min(72%, 510px); height: 470px; transform: translate(-50%, -50%); }
.ch-map::before { position: absolute; inset: 0; content: ""; border: 1px solid rgba(171,216,216,.35); background: rgba(171,216,216,.12); clip-path: polygon(7% 25%, 24% 13%, 41% 17%, 55% 5%, 72% 18%, 91% 20%, 96% 37%, 84% 50%, 91% 66%, 74% 74%, 67% 92%, 48% 86%, 34% 97%, 26% 79%, 8% 72%, 13% 53%, 1% 42%); }
.ch-map::after { position: absolute; inset: 26px; content: ""; border: 1px solid rgba(241,253,13,.2); clip-path: polygon(7% 25%, 24% 13%, 41% 17%, 55% 5%, 72% 18%, 91% 20%, 96% 37%, 84% 50%, 91% 66%, 74% 74%, 67% 92%, 48% 86%, 34% 97%, 26% 79%, 8% 72%, 13% 53%, 1% 42%); }
.ch-map-code { position: absolute; z-index: 0; top: 50%; left: 50%; color: rgba(241,253,13,.09); font-family: var(--font-display); font-size: 12rem; font-weight: 900; line-height: 1; transform: translate(-50%, -50%); }
.ch-city { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(12,28,31,.82); box-shadow: 0 10px 25px rgba(0,0,0,.2); font-size: .66rem; font-weight: 850; line-height: 1; backdrop-filter: blur(8px); transition: color .2s ease, background .2s ease, transform .2s ease; }
.ch-city i { width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 11px rgba(241,253,13,.8); }
.ch-city:hover { color: var(--ink); background: var(--accent); transform: translateY(-3px); }
.ch-city:hover i { background: var(--ink); box-shadow: none; }
.ch-city-geneve { top: 27%; left: 42%; }
.ch-city-lausanne { top: 51%; left: 25%; }
.ch-city-zurich { top: 59%; left: 42%; }
.ch-city-berne { top: 49%; left: 55%; }
.ch-city-bale { top: 39%; right: 10%; }
.ch-city-fribourg { top: 39%; left: 6%; }
.ch-city-neuchatel { top: 35%; left: 55%; }
.ch-card { position: absolute; z-index: 2; min-width: 200px; padding: 17px 19px; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.ch-card span, .ch-card b { display: block; }
.ch-card span { margin-bottom: 6px; color: var(--cyan); font-size: .62rem; letter-spacing: .13em; }
.ch-card-a { top: 11%; left: 7%; }
.ch-card-b { right: 7%; bottom: 10%; }
.swiss-copy h2 { margin-bottom: 30px; }
.swiss-copy > p { color: var(--muted); font-size: 1.08rem; }
.swiss-copy .swiss-coverage { margin-top: -5px; color: var(--ink-3); font-size: .92rem; font-weight: 700; }
.swiss-city-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 5px; }
.swiss-city-links a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink-3); font-size: .72rem; font-weight: 800; transition: background .2s ease, border-color .2s ease; }
.swiss-city-links a:hover { border-color: var(--ink); background: var(--accent); }
.swiss-service-links { padding-top: 18px; border-top: 1px solid var(--line); font-size: .82rem !important; line-height: 1.65; }
.swiss-service-links a { color: var(--ink); font-weight: 850; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.check-list { display: grid; gap: 0; padding: 0; margin: 34px 0 38px; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: flex; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.check-list span { color: var(--muted); font-size: .7rem; font-weight: 800; }
.results-section { background: var(--cyan); }
.results-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 55px; }
.results-header .eyebrow { margin: 0; }
.results-header h2 { margin: 0; color: var(--ink-3); font-family: var(--font-body); font-size: .84rem; font-weight: 600; letter-spacing: 0; line-height: 1.5; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(18,39,43,.25); border-left: 1px solid rgba(18,39,43,.25); }
.results-grid article { min-height: 330px; padding: clamp(34px, 4vw, 58px); border-right: 1px solid rgba(18,39,43,.25); border-bottom: 1px solid rgba(18,39,43,.25); }
.results-grid strong { display: block; margin-bottom: 60px; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); font-weight: 900; letter-spacing: -.07em; line-height: .8; }
.results-grid h3 { margin-bottom: 14px; }
.results-grid p { margin: 0; color: var(--ink-3); font-size: .89rem; }
.projects-section { background: var(--paper); }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.project-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 15px 50px rgba(18,39,43,.08); }
.project-art { position: relative; display: grid; min-height: 390px; place-items: center; overflow: hidden; color: var(--white); background: var(--ink-2); }
.project-art::before { position: absolute; width: 280px; height: 280px; content: ""; border: 1px solid rgba(255,255,255,.3); border-radius: 42% 58% 67% 33% / 47% 32% 68% 53%; transition: transform .5s ease; }
.project-art::after { position: absolute; width: 140px; height: 140px; content: ""; border-radius: 50%; background: var(--accent); opacity: .82; filter: blur(1px); mix-blend-mode: screen; }
.project-art span { position: relative; z-index: 2; font-family: var(--font-display); font-size: 8rem; font-weight: 900; text-shadow: 0 12px 30px rgba(0,0,0,.2); }
.project-art i { position: absolute; right: 10%; bottom: 10%; width: 120px; height: 8px; background: var(--cyan); transform: rotate(-16deg); }
.project-card:hover .project-art::before { transform: rotate(35deg) scale(1.12); }
.project-eurobat .project-art { background: #243d86; }.project-eurobat .project-art::after { background: #ff6b35; }
.project-maison .project-art { background: #491f1b; }.project-maison .project-art::after { background: #ff9b54; }
.project-moon .project-art { background: #181b4a; }.project-moon .project-art::after { background: #9f8cff; }
.project-opaddle .project-art { background: #164d60; }.project-opaddle .project-art::after { background: #63e6be; }
.project-powertec .project-art { background: #373737; }.project-powertec .project-art::after { background: #ffdd00; }
.project-creteil .project-art { background: #9e3c4a; }.project-creteil .project-art::after { background: #ffd4b8; }
.project-streetart .project-art { background: #2c1747; }.project-streetart .project-art::after { background: #ff2f92; }
.project-card-copy { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 10px 30px; padding: 28px 30px 31px; }
.project-card-copy p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.project-card-copy h2, .project-card-copy h3 { margin: 0; }
.project-card-copy h2 { font-size: 2.1rem; }
.project-card-copy a { font-size: .82rem; font-weight: 800; }
.project-logo { position: relative; z-index: 2; width: min(48%, 230px); max-height: 130px; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(0,0,0,.2)); }
.client-library-section { background: var(--white); }
.client-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.client-logo-card { display: grid; min-height: 175px; align-content: space-between; padding: 24px 20px 18px; margin: 0; overflow: hidden; border: 1px solid rgba(18,39,43,.09); border-radius: 16px; background: var(--paper); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.client-logo-card:hover { border-color: rgba(18,39,43,.2); box-shadow: 0 16px 38px rgba(18,39,43,.09); transform: translateY(-4px); }
.client-logo-card img { width: 100%; height: 92px; object-fit: contain; }
.client-logo-card figcaption { padding-top: 14px; color: var(--muted); border-top: 1px solid rgba(18,39,43,.09); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.client-logo-card.is-dark { background: var(--ink); }
.client-logo-card.is-dark figcaption { color: var(--cyan); border-color: rgba(255,255,255,.14); }
.method-section { overflow: hidden; color: var(--white); background: var(--ink); }
.method-section::after { position: absolute; right: -10%; bottom: -40%; width: 650px; height: 650px; content: ""; border: 1px solid rgba(171,216,216,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(171,216,216,.025), 0 0 0 180px rgba(171,216,216,.018); }
.method-intro { position: relative; z-index: 1; max-width: 900px; }
.method-timeline { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 70px 0 0; list-style: none; border-top: 1px solid var(--line-light); }
.method-timeline li { min-height: 280px; padding: 30px; border-right: 1px solid var(--line-light); }
.method-timeline li:first-child { border-left: 1px solid var(--line-light); }
.method-timeline > li > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 70px; color: var(--ink); border-radius: 50%; background: var(--accent); font-size: .7rem; font-weight: 900; }
.method-timeline h3 { margin-bottom: 14px; }
.method-timeline p { color: rgba(255,255,255,.6); font-size: .89rem; }
.testimonial-feature { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: .46fr 1.54fr; gap: 70px; }
.testimonial-rating { padding-right: 50px; border-right: 1px solid var(--line); }
.testimonial-rating > span { color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.testimonial-rating strong { display: block; margin: 20px 0 8px; font-family: var(--font-display); font-size: 7rem; line-height: .8; letter-spacing: -.08em; }
.testimonial-rating div { color: #e8bc00; letter-spacing: .15em; }
.testimonial-rating p { margin-top: 12px; color: var(--muted); font-size: .8rem; }
.testimonial-grid blockquote { margin: 0; }
.testimonial-grid blockquote > p { margin-bottom: 50px; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.12; }
.testimonial-grid blockquote footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-grid blockquote a { font-weight: 800; }
.price-preview { background: var(--paper); }
.price-preview-grid { display: grid; grid-template-columns: 1.2fr .7fr; align-items: center; gap: clamp(60px, 10vw, 160px); }
.price-preview-grid h2 { margin-bottom: 30px; }
.price-preview-grid > div:first-child > p { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.price-card-feature { padding: clamp(34px, 5vw, 62px); border-radius: var(--radius-lg); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.price-card-feature > span { color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-card-feature strong { display: inline-block; margin-top: 30px; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); letter-spacing: -.08em; line-height: .8; }
.price-card-feature > small { color: rgba(255,255,255,.6); }
.price-card-feature ul { display: grid; gap: 12px; padding: 26px 0; margin: 28px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); list-style: none; color: rgba(255,255,255,.72); }
.home-contact { color: var(--white); background: var(--ink-2); }
.visual-universe-section { overflow: hidden; color: var(--white); background: var(--ink-2); }
.visual-universe-section { padding-bottom: clamp(64px, 7vw, 105px); }
.visual-universe-section::before { position: absolute; top: -230px; right: -130px; width: 560px; height: 560px; content: ""; border: 1px solid rgba(171,216,216,.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(171,216,216,.025), 0 0 0 160px rgba(171,216,216,.018); }
.visual-universe-section .split-heading > p { color: rgba(255,255,255,.62); }
.visual-universe-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.visual-universe-card { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.04); }
.visual-universe-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s ease; }
.visual-universe-card:hover img { transform: scale(1.035); }
.visual-universe-card figcaption { padding: 14px 17px; color: var(--cyan); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-block { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; }
.contact-block-copy { padding-top: 30px; }
.contact-block-copy h2 { margin-bottom: 30px; }
.contact-block-copy > p { color: rgba(255,255,255,.64); font-size: 1.08rem; }
.contact-direct { display: flex; flex-direction: column; gap: 6px; margin-top: 44px; font-family: var(--font-display); font-size: 1.3rem; }
.contact-block-form { padding: clamp(30px, 4vw, 50px); color: var(--ink); border-radius: var(--radius-lg); background: var(--white); }

/* Forms */
.lead-form { position: relative; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: grid; gap: 8px; color: var(--ink-3); font-size: .76rem; font-weight: 800; }
.field-label { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-3); }
.required-mark { color: #b73333; font-size: .9rem; font-weight: 950; line-height: 1; }
.form-wide { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(18,39,43,.18); border-radius: 10px; color: var(--ink); background: #f8faf9; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
input, select { height: 54px; padding: 0 15px; }
textarea { min-height: 130px; padding: 14px 15px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--ink-3); background: var(--white); box-shadow: 0 0 0 4px rgba(171,216,216,.35); }
[aria-invalid="true"] { border-color: #b73333 !important; box-shadow: 0 0 0 3px rgba(183,51,51,.12) !important; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; color: var(--muted); font-size: .76rem; font-weight: 500; }
.consent input { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); }
.consent a { text-decoration: underline; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 26px; }
.form-footer p { margin: 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.form-status { margin-top: 14px; color: #8c1d1d; font-size: .82rem; font-weight: 700; }
.alert { padding: 14px 16px; margin-bottom: 22px; border-radius: 10px; font-size: .88rem; font-weight: 700; }
.alert-success { color: #164223; background: #dff5e5; border: 1px solid #9ed6ae; }
.alert-error { color: #791e1e; background: #fde6e6; border: 1px solid #efb2b2; }

/* Generic page heroes */
.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero::before { position: absolute; inset: 0; content: ""; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 75% 40%, black, transparent 72%); }
.compact-hero-grid { position: relative; z-index: 1; display: grid; min-height: 560px; grid-template-columns: 1.38fr .62fr; align-items: end; gap: 80px; padding: 95px 0 100px; }
.compact-hero h1 { max-width: 850px; margin-bottom: 0; font-size: clamp(3.5rem, 6vw, 6.7rem); }
.compact-hero-grid > div:last-child { padding-bottom: 16px; }
.compact-hero-grid .button { margin-top: 24px; }
.service-hero-grid { position: relative; z-index: 1; display: grid; min-height: 690px; grid-template-columns: 1.16fr .84fr; align-items: center; gap: 80px; padding: 70px 0 90px; }
.service-hero h1 { max-width: 780px; margin-bottom: 28px; font-size: clamp(3.15rem, 5.15vw, 5.65rem); }
.service-hero-hook { max-width: 740px; margin: -8px 0 17px; color: var(--accent); font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.75rem); font-weight: 800; line-height: 1.2; }
.service-hero-visual { position: relative; display: grid; min-height: 510px; place-items: center; }
.service-visual-orb { position: absolute; z-index: 0; top: -12%; right: -26%; width: 580px; opacity: .55; }
.service-visual-circle { position: absolute; z-index: 1; top: 49%; left: 50%; width: 470px; opacity: .76; transform: translate(-50%, -50%) rotate(-12deg); }
.service-workspace { position: relative; z-index: 2; display: grid; width: min(100%, 530px); min-height: 430px; place-items: center; }
.service-workspace::before { position: absolute; inset: 10% 2%; content: ""; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; background: rgba(255,255,255,.035); backdrop-filter: blur(10px); transform: rotate(3deg); }
.service-workspace > img { position: relative; z-index: 2; width: 108%; max-width: none; max-height: 470px; object-fit: contain; filter: drop-shadow(0 34px 38px rgba(0,0,0,.33)); transform: rotate(-2deg); }
.service-orbit { position: relative; display: grid; width: 430px; height: 430px; place-items: center; border: 1px solid rgba(171,216,216,.27); border-radius: 50%; }
.service-orbit::before, .service-orbit::after { position: absolute; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.service-orbit::before { inset: 45px; }
.service-orbit::after { inset: 95px; }
.orbit-core { position: relative; z-index: 2; display: grid; width: 190px; height: 190px; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--accent); box-shadow: 0 0 80px rgba(241,253,13,.16); }
.orbit-core b { max-width: 160px; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.orbit-core small { margin-top: 10px; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.orbit-label { position: absolute; z-index: 3; padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.08); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(8px); }
.orbit-label-a { top: 8%; left: 16%; }.orbit-label-b { top: 48%; right: -7%; }.orbit-label-c { bottom: 8%; left: 12%; }
.service-promise { position: absolute; right: 0; bottom: 0; max-width: 290px; padding: 16px 18px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.07); }
.service-promise span { color: var(--cyan); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.service-promise p { margin: 7px 0 0; color: rgba(255,255,255,.72); font-size: .8rem; }
.local-marker { position: absolute; z-index: 5; right: 0; bottom: 18px; min-width: 165px; padding: 16px 18px; color: var(--ink); border-radius: 14px; background: var(--accent); box-shadow: 0 18px 50px rgba(0,0,0,.22); transform: rotate(-3deg); }
.local-marker span, .local-marker strong, .local-marker small { display: block; }
.local-marker span { font-family: var(--font-display); font-size: 2.4rem; line-height: .8; }
.local-marker strong { margin-top: 10px; font-size: .82rem; }
.local-marker small { margin-top: 2px; opacity: .65; font-size: .62rem; text-transform: uppercase; }
.local-conversion { overflow: hidden; color: var(--white); background: var(--ink-2); }
.local-conversion::after { position: absolute; right: -120px; bottom: -240px; width: 580px; height: 580px; content: ""; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--accent), var(--cyan) 35%, var(--ink) 72%); opacity: .38; }
.local-conversion-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(55px, 9vw, 130px); }
.local-conversion-grid h2 { max-width: 850px; margin-bottom: 0; }
.local-conversion-grid p { color: rgba(255,255,255,.66); font-size: 1.05rem; }
.local-conversion-grid .button { margin-top: 20px; }
.local-seo-editorial-visual { position: relative; margin: clamp(42px, 6vw, 78px) 0 0; overflow: hidden; border: 1px solid rgba(18,39,43,.16); border-radius: var(--radius-lg); background: var(--ink); box-shadow: 0 28px 75px rgba(18,39,43,.14); }
.local-seo-editorial-visual::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: inherit; pointer-events: none; }
.local-seo-editorial-visual img { display: block; width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.local-seo-editorial-visual figcaption { position: absolute; right: clamp(18px, 3vw, 34px); bottom: clamp(18px, 3vw, 34px); left: clamp(18px, 3vw, 34px); display: grid; grid-template-columns: minmax(160px,.26fr) minmax(0,.74fr); align-items: center; gap: 28px; padding: 20px 24px; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(9,30,33,.88); backdrop-filter: blur(14px); }
.local-seo-editorial-visual figcaption span { color: var(--accent); font-size: .66rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.local-seo-editorial-visual figcaption p { margin: 0; color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.55; }
.local-seo-context-visual { box-shadow: 0 28px 75px rgba(18,39,43,.11); }
.local-landing-page .faq-grid > div:first-child h2 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); transition: transform .25s ease, background .25s ease; }
.capability-card:hover { transform: translateY(-6px); background: var(--cyan-soft); }
.card-index { display: inline-grid; width: 38px; height: 38px; place-items: center; margin-bottom: 62px; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: .68rem; font-weight: 800; }
.capability-card h3 { margin-bottom: 14px; }
.capability-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.process-heading { position: sticky; top: 150px; align-self: start; }
.process-heading h2 { margin-bottom: 28px; }
.process-heading p { color: rgba(255,255,255,.62); }
.process-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line-light); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line-light); }
.process-list > li > span { color: var(--accent); font-size: .7rem; font-weight: 800; }
.process-list h3 { margin-bottom: 10px; font-size: 2rem; }
.process-list p { max-width: 550px; margin: 0; color: rgba(255,255,255,.6); }
.deliverables-section { background: var(--paper); }
.deliverables-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.deliverables-grid h2 { margin-bottom: 30px; }
.deliverables-grid > div > p { max-width: 630px; color: var(--muted); }
.deliverables-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0; margin: 0; list-style: none; }
.deliverables-list li { display: flex; min-height: 100px; align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); font-family: var(--font-display); font-weight: 800; }
.deliverables-list span { display: grid; width: 30px; height: 30px; place-items: center; flex: 0 0 30px; border-radius: 50%; background: var(--accent); font-family: var(--font-body); font-size: .72rem; }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-stats > div { padding: 30px 20px; border-right: 1px solid rgba(18,39,43,.2); }
.proof-stats > div:first-child { border-left: 1px solid rgba(18,39,43,.2); }
.proof-stats strong { display: block; margin-bottom: 16px; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4.5rem); letter-spacing: -.07em; line-height: .8; }
.proof-stats span { color: var(--ink-3); font-size: .73rem; }
.large-quote { margin: 0; padding-left: 50px; border-left: 1px solid rgba(18,39,43,.25); }
.large-quote p { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.15; }
.large-quote footer { color: var(--ink-3); font-size: .78rem; font-weight: 800; }
.service-review-slider { display: flex; gap: 14px; padding: 4px 4px 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.service-review-card { display: flex; min-width: min(390px, 88%); min-height: 230px; flex-direction: column; padding: 27px; margin: 0; border: 1px solid rgba(18,39,43,.2); border-radius: 18px; background: rgba(255,255,255,.42); scroll-snap-align: start; }
.service-review-card > span { color: #697500; font-size: .72rem; letter-spacing: .14em; }
.service-review-card p { margin: 18px 0 24px; color: var(--ink); font-family: var(--font-display); font-size: 1.18rem; font-weight: 750; line-height: 1.35; }
.service-review-card footer { display: grid; gap: 2px; margin-top: auto; color: var(--ink-3); font-size: .73rem; }
.service-review-card footer small { color: var(--muted); }
.service-guide .source-note { margin-top: clamp(48px, 6vw, 78px); }
.service-page .trust-strip { background: var(--white); }
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-grid > div:first-child { position: sticky; top: 140px; align-self: start; }
.faq-grid > div:first-child p { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; font-family: var(--font-body); letter-spacing: 0; }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; border: 0; background: none; text-align: left; cursor: pointer; font-weight: 800; }
.accordion-item button i { position: relative; width: 23px; height: 23px; flex: 0 0 23px; border: 1px solid var(--line); border-radius: 50%; }
.accordion-item button i::before, .accordion-item button i::after { position: absolute; top: 50%; left: 50%; width: 9px; height: 1px; content: ""; background: var(--ink); transform: translate(-50%, -50%); }
.accordion-item button i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(0deg); }
.accordion-panel { padding: 0 45px 26px 0; color: var(--muted); }
.accordion-panel p { max-width: 750px; margin: 0; }

/* Directory */
.service-directory { background: var(--paper); }
.directory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.directory-card { display: flex; min-height: 420px; flex-direction: column; padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, background .25s ease; }
.directory-card:nth-child(4n+2), .directory-card:nth-child(4n+3) { background: var(--cyan-soft); }
.directory-card:hover { transform: translateY(-6px); background: var(--accent); }
.directory-card-top { display: flex; justify-content: space-between; margin-bottom: 70px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.directory-card-visual { width: 100%; height: 145px; margin: -34px 0 28px; object-fit: contain; object-position: right center; filter: drop-shadow(0 18px 22px rgba(18,39,43,.12)); transition: transform .3s ease; }
.directory-card:hover .directory-card-visual { transform: translateY(-6px) rotate(-2deg) scale(1.03); }
.directory-card h2 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.5rem); }
.directory-card p { max-width: 580px; color: var(--muted); }
.directory-card .text-link { margin-top: auto; align-self: flex-start; }
.choice-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.choice-section h2 { font-size: clamp(2.55rem, 4vw, 4.45rem); }
.choice-list { border-top: 1px solid rgba(18,39,43,.25); }
.choice-list a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 10px; border-bottom: 1px solid rgba(18,39,43,.25); }
.choice-list a:hover { background: rgba(255,255,255,.28); }
.choice-list span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.choice-list b { font-size: .78rem; }

/* About */
.about-hero-grid { position: relative; z-index: 1; display: grid; min-height: 680px; grid-template-columns: 1.32fr .68fr; align-items: end; gap: 90px; padding: 78px 0 122px; }
.about-hero .breadcrumbs { margin-bottom: 24px; }
.about-hero-proof-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 42px; margin-bottom: 28px; }
.about-hero-proof-row .hero-google-rating,
.about-hero-proof-row .eyebrow { margin: 0; }
.about-hero-proof-row .hero-google-rating { flex: 0 0 auto; }
.about-hero h1 { max-width: 950px; margin: 0; font-size: clamp(3.2rem, 5vw, 5.7rem); }
.about-manifesto { padding-bottom: 15px; }
.about-manifesto p { color: rgba(255,255,255,.72); font-size: 1.12rem; }
.about-manifesto .button { margin-top: 22px; }
.story-grid { display: grid; grid-template-columns: .45fr 1.55fr; gap: 80px; }
.story-index { display: flex; min-height: 430px; flex-direction: column; padding: 35px; color: var(--white); border-radius: var(--radius); background: var(--ink); }
.story-index span { color: var(--cyan); font-size: .7rem; letter-spacing: .13em; }
.story-index strong { margin: auto 0; font-family: var(--font-display); font-size: 6rem; letter-spacing: -.08em; transform: rotate(-90deg); }
.story-index small { color: rgba(255,255,255,.58); }
.story-copy { max-width: 850px; }
.story-copy p { color: var(--muted); font-size: 1.08rem; }
.story-copy blockquote { margin: 40px 0 0; padding: 25px 0 0 30px; border-top: 1px solid var(--line); border-left: 4px solid var(--accent); font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; }
.values-section { color: var(--white); background: var(--ink-2); }
.values-section { padding-top: clamp(64px, 7vw, 105px); }
.values-section .split-heading > p { color: rgba(255,255,255,.6); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.values-grid article { min-height: 290px; padding: 32px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.values-grid span { display: block; margin-bottom: 80px; color: var(--accent); font-size: .7rem; }
.values-grid p { color: rgba(255,255,255,.6); font-size: .9rem; }
.timeline-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; }
.agency-timeline { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.agency-timeline li { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.agency-timeline span { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; }
.agency-timeline p { margin: 0; color: var(--muted); }
.founder-section { background: var(--cyan); }
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 100px; }
.founder-portrait { position: relative; width: min(100%, 470px); aspect-ratio: 1; margin: 0 auto; overflow: hidden; border: 12px solid rgba(255,255,255,.62); border-radius: 50%; background: var(--ink); box-shadow: 0 28px 70px rgba(18,39,43,.2); }
.founder-portrait::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(18,39,43,.18); border-radius: inherit; pointer-events: none; }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.founder-monogram { position: relative; display: grid; min-height: 480px; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); }
.founder-monogram::before { position: absolute; width: 330px; height: 330px; content: ""; border: 1px solid rgba(171,216,216,.3); border-radius: 50%; box-shadow: 0 0 0 45px rgba(171,216,216,.05), 0 0 0 90px rgba(171,216,216,.03); }
.founder-monogram span { position: relative; z-index: 1; color: var(--accent); font-family: var(--font-display); font-size: 9rem; font-weight: 900; letter-spacing: -.12em; }
.founder-monogram i { position: absolute; right: 25px; bottom: 22px; color: var(--cyan); font-style: normal; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.founder-grid h2 { margin-bottom: 25px; }
.founder-grid p { max-width: 650px; color: var(--ink-3); font-size: 1.08rem; }

/* Reviews */
.review-summary { display: flex; align-items: center; gap: 25px; padding: 22px; border: 1px solid var(--line-light); border-radius: 18px; background: rgba(255,255,255,.06); }
.review-summary > strong { display: inline-flex; align-items: flex-end; gap: 12px; font-family: var(--font-display); font-size: 4.5rem; letter-spacing: -.08em; line-height: .8; white-space: nowrap; }
.review-summary > strong small { padding-bottom: 2px; font-size: 1rem; letter-spacing: 0; }
.review-summary div span { color: var(--accent); letter-spacing: .12em; }
.review-summary p { margin: 4px 0 0; color: rgba(255,255,255,.6); font-size: .75rem; }
.reviews-section { background: var(--paper); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reviews-google-action { margin-top: clamp(38px, 5vw, 62px); }
.review-guide .source-note { margin-top: clamp(38px, 5vw, 62px); }
.review-card { display: flex; min-height: 390px; flex-direction: column; padding: 32px; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.review-card > div { margin-bottom: 32px; color: #d8ad00; letter-spacing: .14em; }
.review-card > p { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.35; }
.review-card footer { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 4px 12px; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.review-card footer > span { display: grid; width: 42px; height: 42px; place-items: center; grid-row: 1 / 3; border-radius: 50%; background: var(--cyan-soft); font-family: var(--font-display); font-weight: 900; }
.review-card footer b, .review-card footer small { line-height: 1.1; }
.review-card footer small { color: var(--muted); }
.recommendation-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.recommendation-section h2 { max-width: 680px; font-size: clamp(2.55rem, 3.8vw, 4.35rem); }
.recommendation-points > p { font-size: 1.12rem; }

/* Pricing */
.pricing-hero-grid { position: relative; z-index: 1; display: grid; min-height: 620px; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; padding: 95px 0 100px; }
.pricing-hero h1 { margin: 0; font-size: clamp(3.5rem, 6.2vw, 6.8rem); }
.pricing-highlight { padding: 34px; border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.pricing-highlight > span { color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.pricing-highlight strong { display: block; margin-top: 24px; font-family: var(--font-display); font-size: 5.5rem; letter-spacing: -.08em; line-height: .8; }
.pricing-highlight small { color: var(--accent); font-weight: 800; }
.pricing-highlight p { margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: .85rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { display: flex; min-height: 600px; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.pricing-card-featured { color: var(--white); background: var(--ink); }
.pricing-card-head { display: flex; justify-content: space-between; margin-bottom: 44px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pricing-card-featured .pricing-card-head { color: var(--cyan); }
.pricing-card h2 { margin-bottom: 15px; font-size: 2rem; }
.pricing-card > p { min-height: 70px; color: var(--muted); font-size: .88rem; }
.pricing-card-featured > p { color: rgba(255,255,255,.62); }
.pricing-card .price { margin: 25px 0; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-card-featured .price { border-color: var(--line-light); }
.pricing-card .price strong { font-family: var(--font-display); font-size: 3.2rem; letter-spacing: -.06em; }
.pricing-card .price small { color: var(--muted); }
.pricing-card ul { display: grid; gap: 12px; padding: 0; margin: 0 0 35px; list-style: none; font-size: .86rem; }
.pricing-card ul span { margin-right: 9px; color: #718000; }
.pricing-card-featured ul { color: rgba(255,255,255,.7); }
.pricing-card-featured ul span { color: var(--accent); }
.pricing-card .button { width: 100%; margin-top: auto; }
.pricing-card-featured .button-outline { color: var(--white); border-color: var(--line-light); }
.pricing-note { max-width: 900px; margin: 50px auto 0; color: var(--muted); text-align: center; font-size: .8rem; }
.pricing-guide .source-note { max-width: 1050px; padding-top: 30px; margin: clamp(72px, 8vw, 104px) 0 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .82rem; }
.pricing-guide .source-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.included-section { background: var(--cyan-soft); }
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included-grid article { min-height: 230px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.included-grid span { display: block; margin-bottom: 70px; color: var(--muted); font-size: .7rem; }
.included-grid p { color: var(--muted); }

/* Portfolio */
.portfolio-section { background: var(--paper); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 45px; }
.filter-bar button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: .78rem; font-weight: 800; }
.filter-bar button:hover, .filter-bar button.is-active { color: var(--white); background: var(--ink); }
.project-card[hidden] { display: none; }
.portfolio-source { max-width: 850px; margin: 50px auto 0; color: var(--muted); text-align: center; font-size: .8rem; }
.portfolio-source a { color: var(--ink); font-weight: 800; }

/* Media */
.insights-section { background: var(--paper); }
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.insight-card { display: flex; min-height: 400px; flex-direction: column; padding: clamp(30px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.insight-card:nth-child(2), .insight-card:nth-child(3) { background: var(--cyan-soft); }
.insight-card > span { margin-bottom: 60px; color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .13em; }
.insight-card h2 { font-size: clamp(2rem, 3.3vw, 3.6rem); }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; align-self: flex-start; }

/* Tools */
.tools-hero-grid { position: relative; z-index: 1; display: grid; min-height: 650px; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(50px, 7vw, 110px); padding: 82px 0 92px; }
.tools-hero-copy h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3.2rem, 5.2vw, 5.7rem); }
.tools-hero-copy .hero-actions { justify-content: flex-start; }
.tools-hero .button-outline { color: var(--white); border-color: rgba(255,255,255,.35); }
.tools-hero .button-outline:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,.08); }
.tools-hero-board { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(171,216,216,.3); border-radius: 28px; background: rgba(255,255,255,.055); box-shadow: 24px 24px 0 rgba(0,0,0,.12); backdrop-filter: blur(12px); }
.tools-hero-board::after { position: absolute; right: -80px; bottom: -110px; width: 260px; height: 260px; content: ""; border-radius: 50%; background: var(--accent); opacity: .12; filter: blur(10px); }
.tools-hero-board-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); color: var(--cyan); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.tools-hero-board-top b { color: var(--accent); }
.tools-hero-metrics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin: 34px 0 32px; }
.tools-hero-metrics > div { min-height: 150px; padding: 8px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.tools-hero-metrics > div:first-child { padding-left: 0; }
.tools-hero-metrics > div:last-child { padding-right: 0; border-right: 0; }
.tools-hero-metrics strong, .tools-hero-metrics span { display: block; }
.tools-hero-metrics strong { color: var(--accent); font-family: var(--font-display); font-size: clamp(2.8rem, 4.5vw, 4.6rem); line-height: .9; }
.tools-hero-metrics span { max-width: 100px; margin-top: 38px; color: rgba(255,255,255,.68); font-size: .72rem; line-height: 1.35; }
.tools-hero-board > p { position: relative; z-index: 1; max-width: 460px; margin: 0; color: rgba(255,255,255,.62); font-size: .78rem; }
.tools-index { position: relative; z-index: 3; background: var(--paper); border-bottom: 1px solid var(--line); }
.tools-index-inner { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: 50px; padding-top: 30px; padding-bottom: 30px; }
.tools-index-inner > p { margin: 0; color: var(--muted); font-size: .82rem; }
.tools-index-inner > p span { color: var(--ink); font-weight: 850; }
.tools-index nav { display: grid; grid-template-columns: repeat(4, 1fr); }
.tools-index nav a { display: flex; min-height: 56px; align-items: center; gap: 10px; padding: 10px 16px; border-left: 1px solid var(--line); font-size: .75rem; font-weight: 800; }
.tools-index nav a:hover { color: #4a5b00; background: var(--cyan-soft); }
.tools-index nav span { color: var(--muted); font-size: .62rem; }
.tools-category { background: var(--white); scroll-margin-top: 105px; }
.tools-category-tint { background: var(--paper); }
.tools-category-heading h2 { max-width: 840px; font-size: clamp(2.7rem, 4.6vw, 5.1rem); }
.tools-category-heading > p { align-self: end; padding-bottom: 7px; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool-card { display: flex; min-height: 330px; flex-direction: column; padding: 30px; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.tools-category:not(.tools-category-tint) .tool-card:nth-child(3n+2), .tools-category:not(.tools-category-tint) .tool-card:nth-child(3n+3) { background: var(--cyan-soft); }
.tool-card:hover { color: var(--ink); background: var(--accent) !important; box-shadow: 0 20px 48px rgba(18,39,43,.12); transform: translateY(-6px); }
.tool-card-meta { display: flex; justify-content: space-between; margin-bottom: 52px; color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tool-card h3 { max-width: 360px; margin-bottom: 15px; font-size: clamp(1.7rem, 2.2vw, 2.25rem); }
.tool-card h3 a { display: inline-flex; align-items: flex-start; gap: 13px; color: var(--ink); }
.tool-card h3 a span { margin-top: .14em; font-family: var(--font-body); font-size: .52em; transition: transform .25s ease; }
.tool-card h3 a:hover span, .tool-card h3 a:focus-visible span { transform: translate(3px, -3px); }
.tool-card h3 a:focus-visible { border-radius: 4px; outline: 3px solid var(--ink); outline-offset: 4px; }
.tool-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.tools-capability-grid { grid-template-columns: repeat(3, 1fr); }
.tools-guide .source-note { max-width: 980px; padding-top: 32px; margin: clamp(72px, 8vw, 104px) 0 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .82rem; }
.tools-guide .source-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 3px; }

/* Careers */
.careers-section { background: var(--paper); }
.career-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.career-card { display: flex; min-height: 570px; flex-direction: column; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.career-card:nth-child(2) { background: var(--cyan-soft); }
.career-meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 65px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.career-card h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 3.6vw, 4rem); }
.career-card > p { color: var(--muted); }
.career-card h3 { margin: 30px 0 15px; font-family: var(--font-body); font-size: .72rem; letter-spacing: .11em; text-transform: uppercase; }
.career-card ul { display: grid; gap: 10px; padding: 0; margin: 0 0 35px; list-style: none; color: var(--muted); font-size: .86rem; }
.career-card li span { margin-right: 9px; color: #718000; }
.career-card .button { margin-top: auto; align-self: flex-start; }
.spontaneous-card { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-top: 24px; padding: clamp(35px, 5vw, 65px); color: var(--white); border-radius: var(--radius); background: var(--ink); }
.spontaneous-card .eyebrow, .spontaneous-card h2 { grid-column: 1; }
.spontaneous-card .eyebrow { color: var(--white); }
.spontaneous-card h2 { margin: 0; }
.spontaneous-card p { grid-column: 2; grid-row: 1 / 3; margin: 0; color: rgba(255,255,255,.65); }
.spontaneous-card a { color: var(--accent); font-weight: 800; }

/* FAQ page */
.faq-page-section { background: var(--white); }
.faq-page-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 90px; }
.faq-guide .source-note { max-width: 980px; padding-top: 30px; margin: clamp(72px, 8vw, 104px) 0 0; color: var(--muted); border-top: 1px solid var(--line); font-size: .82rem; }
.faq-guide .source-note a { color: var(--ink); font-weight: 800; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.faq-side { position: sticky; top: 140px; align-self: start; padding: 35px; color: var(--white); border-radius: var(--radius); background: var(--ink); }
.faq-side > span { color: var(--accent); font-family: var(--display); font-size: 3rem; font-weight: 900; }
.faq-side h2 { margin-top: 70px; font-size: 2.5rem; }
.faq-side p { color: rgba(255,255,255,.6); }

/* Contact */
.contact-hero-grid { position: relative; z-index: 1; display: grid; min-height: 680px; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 80px; padding: 80px 0 100px; }
.contact-hero h1 { max-width: 920px; margin-bottom: 28px; font-size: clamp(3.5rem, 6.2vw, 6.7rem); }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 45px; }
.contact-options > * { padding: 16px; border: 1px solid var(--line-light); border-radius: 12px; background: rgba(255,255,255,.04); }
.contact-options span, .contact-options b { display: block; }
.contact-options span { color: var(--cyan); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-options b { margin-top: 6px; font-size: .78rem; }
.contact-orbit { display: grid; place-items: center; }
.contact-orbit > div { position: relative; display: grid; width: 390px; height: 390px; place-content: center; text-align: center; border: 1px solid rgba(171,216,216,.25); border-radius: 50%; }
.contact-orbit > div::before, .contact-orbit > div::after { position: absolute; content: ""; border: 1px solid var(--line-light); border-radius: 50%; }
.contact-orbit > div::before { inset: 35px; }.contact-orbit > div::after { inset: 75px; }
.contact-orbit span, .contact-orbit b, .contact-orbit i { position: relative; z-index: 1; display: block; }
.contact-orbit span { color: var(--cyan); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-orbit b { color: var(--accent); font-family: var(--font-display); font-size: 8rem; line-height: .9; }
.contact-orbit i { font-style: normal; font-size: .74rem; }
.contact-form-section { background: var(--paper); }
.contact-form-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.contact-form-intro { position: sticky; top: 130px; align-self: start; }
.contact-form-intro h2 { margin-bottom: 25px; }
.contact-form-intro .contact-form-title { font-size: clamp(2rem, 3.2vw, 3.25rem); line-height: 1.02; }
.contact-form-intro > p { color: var(--muted); }
.contact-form-panel { padding: clamp(30px, 5vw, 60px); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.next-steps-section { background: var(--cyan-soft); }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.next-steps li { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.next-steps span { display: block; margin-bottom: 70px; color: var(--muted); font-size: .7rem; }
.next-steps p { color: var(--muted); }

/* Legal and error */
.legal-hero .container { position: relative; z-index: 1; min-height: 470px; padding-top: 90px; padding-bottom: 90px; }
.legal-hero h1 { margin-bottom: 25px; font-size: clamp(3.4rem, 6vw, 6.5rem); }
.legal-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: .38fr 1.62fr; gap: 80px; }
.legal-layout aside { align-self: start; padding: 25px; border-radius: 14px; background: var(--cyan-soft); }
.legal-layout aside span, .legal-layout aside strong { display: block; }
.legal-layout aside span { color: var(--muted); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.legal-layout aside strong { margin-top: 8px; }
.legal-layout article { max-width: 860px; }
.legal-layout article h2 { margin: 50px 0 18px; font-size: 2rem; }
.legal-layout article h2:first-child { margin-top: 0; }
.legal-layout article p, .legal-layout article li { color: var(--muted); }
.legal-layout article a { color: var(--ink); font-weight: 800; text-decoration: underline; }
.legal-related-section { background: var(--cyan-soft); }
.legal-related-section .section-heading h2 { max-width: 720px; font-size: clamp(2.7rem, 4.7vw, 5rem); }
.legal-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.legal-related-grid a { display: grid; min-height: 180px; grid-template-columns: 30px minmax(0, 1fr) 24px; align-items: start; gap: 14px; padding: 26px 22px; color: var(--ink); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.28); transition: background .22s ease, transform .22s ease; }
.legal-related-grid a:hover { color: var(--ink); background: var(--accent); transform: translateY(-4px); }
.legal-related-grid a > span { color: var(--muted); font-size: .64rem; font-weight: 900; }
.legal-related-grid a > div { align-self: center; }
.legal-related-grid strong, .legal-related-grid small { display: block; }
.legal-related-grid strong { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.15; }
.legal-related-grid small { margin-top: 8px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.legal-related-grid i { justify-self: end; font-style: normal; transition: transform .22s ease; }
.legal-related-grid a:hover i { transform: translateX(4px); }
.error-grid { position: relative; z-index: 1; display: grid; min-height: 650px; place-items: center; text-align: center; }
.error-code { display: block; color: rgba(255,255,255,.08); font-family: var(--font-display); font-size: clamp(8rem, 20vw, 18rem); font-weight: 900; line-height: .7; }
.error-page h1 { margin: -20px 0 25px; font-size: clamp(3.5rem, 6vw, 6rem); }
.error-page .hero-actions { justify-content: center; }

/* Footer */
.final-cta { padding: 95px 0; color: var(--white); background: var(--ink-2); border-top: 1px solid var(--line-light); }
.final-cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; }
.final-cta-title { max-width: 850px; margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 5.2rem); font-weight: 700; line-height: .95; letter-spacing: -.055em; }
.final-cta-copy p { margin-bottom: 28px; color: rgba(255,255,255,.62); }
.site-footer { color: var(--white); background: #0c1c1f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 60px; padding-top: 80px; padding-bottom: 70px; }
.brand-footer { margin-bottom: 28px; }
.footer-brand > p { max-width: 440px; color: rgba(255,255,255,.55); font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; gap: 5px; margin-top: 24px; font-family: var(--font-display); font-size: 1.25rem; }
.footer-heading { margin: 0 0 24px; color: var(--cyan); font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,.62); font-size: .86rem; }
.footer-grid li a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.42); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.back-to-top { position: fixed; z-index: 45; right: 20px; bottom: 20px; display: grid; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 50%; color: var(--ink); background: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.2); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Motion */
body.is-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
body.is-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
body.is-ready .home-hero .reveal { opacity: 1; transform: none; transition: none; }

/* Responsive */
@media (max-width: 1100px) {
    .main-nav { gap: 18px; font-size: .84rem; }
    .nav-cta { padding: 12px 14px; }
    .home-hero-grid { grid-template-columns: 1fr; gap: 46px; }
    .hero-command { transform: none; }
    .command-score { grid-template-columns: 110px 1fr; }
    .score-ring { width: 110px; height: 110px; border-width: 10px; }
    .score-ring span { font-size: 1.6rem; }
    .command-score h2 { font-size: 1.65rem; }
    .service-orbit { width: 360px; height: 360px; }
    .orbit-core { width: 160px; height: 160px; }
    .service-row { grid-template-columns: 50px minmax(220px, .8fr) minmax(260px, 1.2fr) 50px; gap: 20px; }
    .service-row-visual { display: none; }
    .service-workspace { width: min(100%, 440px); }
    .contact-block, .contact-form-grid, .faq-grid { gap: 55px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .tool-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .container { width: min(calc(100% - 34px), var(--container)); }
    .site-header { backdrop-filter: none; }
    .announcement-inner span { display: none; }
    .announcement-inner { justify-content: center; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; z-index: 70; top: 116px; right: 0; bottom: 0; left: 0; display: block; padding: 25px 24px 80px; overflow-y: auto; color: var(--ink); background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav > a:not(.nav-cta), .nav-dropdown > button { display: flex; width: 100%; justify-content: space-between; padding: 20px 4px; color: var(--ink); border-bottom: 1px solid var(--line); text-align: left; }
    .main-nav > a:not(.nav-cta)::after, .nav-dropdown > button::after { display: none; }
    .nav-cta { width: 100%; justify-content: space-between; margin-top: 20px; padding: 18px; background: var(--accent); }
    .nav-panel { position: static; display: none; width: 100%; grid-template-columns: 1fr; padding: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-dropdown.is-open .nav-panel { display: grid; }
    .nav-panel-intro { display: none; }
    .nav-service-list { grid-template-columns: 1fr 1fr; padding: 14px 0; }
    .nav-service-list a { padding: 12px 6px; font-size: .95rem; }
    .home-hero-grid, .service-hero-grid, .compact-hero-grid, .about-hero-grid, .pricing-hero-grid, .contact-hero-grid { grid-template-columns: 1fr; }
    .home-hero-grid { padding: 80px 0; }
    .home-hero-copy { max-width: 820px; }
    .hero-command { width: min(100%, 550px); margin-inline: auto; }
    .trust-strip-inner { grid-template-columns: 1fr; gap: 18px; padding: 27px 0; text-align: center; }
    .trust-logos { flex-wrap: wrap; }
    .trust-strip-inner > a { justify-self: center; }
    .intro-grid, .swiss-grid, .process-grid, .deliverables-grid, .proof-grid, .story-grid, .timeline-grid, .founder-grid, .recommendation-grid, .choice-grid, .contact-block, .contact-form-grid, .faq-grid, .faq-page-grid, .legal-layout, .final-cta-grid, .price-preview-grid, .local-conversion-grid { grid-template-columns: 1fr; }
    .intro-kicker { flex-direction: row; align-items: center; }
    .intro-arrow-3d { left: -150px; opacity: .35; }
    .big-number { font-size: 5rem; }
    .split-heading { grid-template-columns: 1fr; gap: 25px; }
    .service-row { grid-template-columns: 45px 1fr 45px; }
    .service-row p { grid-column: 2 / 4; }
    .swiss-visual { min-height: 500px; }
    .results-grid { grid-template-columns: 1fr; }
    .results-grid article { min-height: auto; }
    .results-grid strong { margin-bottom: 30px; }
    .method-timeline { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .testimonial-rating { display: grid; grid-template-columns: auto 1fr; align-items: center; padding: 0 0 35px; border-right: 0; border-bottom: 1px solid var(--line); }
    .testimonial-rating > span, .testimonial-rating p { grid-column: 1 / -1; }
    .testimonial-rating strong { font-size: 5rem; }
    .service-hero-grid { padding-top: 75px; }
    .service-hero-visual { min-height: 460px; }
    .process-heading, .faq-grid > div:first-child, .contact-form-intro, .faq-side { position: static; }
    .proof-stats { grid-template-columns: 1fr 1fr 1fr; }
    .large-quote { padding: 40px 0 0; border-top: 1px solid rgba(18,39,43,.25); border-left: 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .client-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .visual-universe-grid { grid-template-columns: repeat(2, 1fr); }
    .career-grid { grid-template-columns: 1fr; }
    .spontaneous-card { grid-template-columns: 1fr; gap: 20px; }
    .spontaneous-card p { grid-column: 1; grid-row: auto; }
    .contact-orbit { display: none; }
    .contact-options { max-width: 760px; }
    .contact-form-grid { gap: 45px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    body { font-size: 15px; }
    .section { padding: 78px 0; }
    .header-inner { min-height: 72px; }
    .brand-mark { width: 43px; height: 43px; }
    .brand-mark img { width: 40px; height: 40px; }
    .brand-copy strong { font-size: 1.1rem; }
    .brand-copy small { font-size: .58rem; }
    .main-nav { top: 106px; }
    .nav-service-list { grid-template-columns: 1fr; }
    .home-hero-grid { min-height: auto; padding: 65px 0 70px; }
    .home-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .painted-word { white-space: normal; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: space-between; }
    .hero-reassurance { flex-direction: column; gap: 7px; }
    .hero-command { padding: 16px; }
    .command-score { grid-template-columns: 90px 1fr; gap: 15px; padding: 25px 0; }
    .score-ring { width: 90px; height: 90px; border-width: 8px; }
    .score-ring small { display: none; }
    .command-score h2 { font-size: 1.35rem; }
    .trust-logos img { max-width: 52px; }
    .intro-grid { gap: 40px; }
    .intro-arrow-3d { display: none; }
    .intro-kicker { align-items: flex-start; flex-direction: column; }
    .big-number { display: none; }
    .service-row { grid-template-columns: 35px 1fr 38px; gap: 10px; padding: 25px 4px; }
    .service-row h3 { font-size: 1.35rem; }
    .service-row p { grid-column: 2 / 4; font-size: .82rem; }
    .service-row i { width: 36px; height: 36px; }
    .swiss-visual { min-height: 430px; }
    .ch-map { width: 260px; height: 260px; }
    .ch-map span { font-size: 5.5rem; }
    .ch-card { min-width: 160px; padding: 13px; }
    .results-header { align-items: flex-start; flex-direction: column; }
    .project-grid, .directory-grid, .insight-grid { grid-template-columns: 1fr; }
    .client-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-logo-card { min-height: 150px; padding: 18px 14px 14px; }
    .client-logo-card img { height: 76px; }
    .visual-universe-grid { grid-template-columns: 1fr; }
    .project-art { min-height: 300px; }
    .project-art span { font-size: 6rem; }
    .project-card-copy { grid-template-columns: 1fr; }
    .method-timeline { grid-template-columns: 1fr; }
    .method-timeline li { min-height: 220px; }
    .method-timeline > li > span { margin-bottom: 40px; }
    .testimonial-grid blockquote footer { align-items: flex-start; flex-direction: column; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .button { width: 100%; justify-content: space-between; }
    .compact-hero-grid, .about-hero-grid, .pricing-hero-grid, .contact-hero-grid { min-height: auto; gap: 35px; padding: 70px 0; }
    .compact-hero h1, .about-hero h1, .pricing-hero h1, .contact-hero h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
    .service-hero h1 { font-size: clamp(2.7rem, 11vw, 3.8rem); }
    .service-hero-grid { min-height: auto; gap: 30px; padding: 65px 0; }
    .service-hero-visual { min-height: 370px; }
    .service-workspace { min-height: 340px; }
    .service-workspace > img { max-height: 350px; }
    .service-visual-circle { width: 320px; }
    .service-visual-orb { width: 420px; }
    .local-marker { right: 3px; bottom: -5px; min-width: 145px; }
    .service-orbit { width: 300px; height: 300px; }
    .orbit-core { width: 140px; height: 140px; }
    .orbit-core b { font-size: 1.6rem; }
    .orbit-label-b { right: 0; }
    .service-promise { right: auto; bottom: -10px; left: 0; }
    .capability-grid { grid-template-columns: 1fr; }
    .capability-card { min-height: 240px; }
    .card-index { margin-bottom: 40px; }
    .process-grid { gap: 45px; }
    .deliverables-list { grid-template-columns: 1fr; }
    .proof-stats { grid-template-columns: 1fr; }
    .proof-stats > div { border-right: 0; border-bottom: 1px solid rgba(18,39,43,.2); }
    .proof-stats > div:first-child { border-left: 0; border-top: 1px solid rgba(18,39,43,.2); }
    .directory-card { min-height: 360px; }
    .directory-card-top { margin-bottom: 45px; }
    .choice-list a { align-items: flex-start; flex-direction: column; }
    .story-grid { gap: 40px; }
    .story-index { min-height: 240px; }
    .story-index strong { transform: none; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { min-height: 230px; }
    .values-grid span { margin-bottom: 50px; }
    .agency-timeline li { grid-template-columns: 90px 1fr; }
    .founder-monogram { min-height: 380px; }
    .founder-monogram span { font-size: 7rem; }
    .review-grid { grid-template-columns: 1fr; }
    .review-card { min-height: 340px; }
    .recommendation-grid { gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .tool-grid, .career-grid { grid-template-columns: 1fr; }
    .spontaneous-card { grid-template-columns: 1fr; gap: 20px; }
    .spontaneous-card p { grid-column: 1; grid-row: auto; }
    .pricing-card { min-height: 560px; }
    .included-grid, .next-steps { grid-template-columns: 1fr; }
    .contact-options { grid-template-columns: 1fr; }
    .contact-form-panel { padding: 24px 18px; border-radius: 18px; }
    .legal-layout { gap: 40px; }
    .final-cta-grid { gap: 35px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Bibliothèque éditoriale et guides complets */
.article-library { background: var(--paper); }
.article-filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 14px; }
.article-filter-bar button { display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; font-size: .75rem; font-weight: 850; transition: color .2s ease, background .2s ease, transform .2s ease; }
.article-filter-bar button:hover { transform: translateY(-2px); }
.article-filter-bar button.is-active { color: var(--white); background: var(--ink); }
.article-filter-bar button span { display: grid; min-width: 23px; height: 23px; place-items: center; border-radius: 999px; color: inherit; background: rgba(171,216,216,.28); font-size: .62rem; }
.article-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-card { display: flex; min-height: 360px; flex-direction: column; padding: clamp(26px, 3vw, 38px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.article-card:hover { border-color: rgba(18,39,43,.28); box-shadow: 0 20px 55px rgba(18,39,43,.1); transform: translateY(-5px); }
.article-card-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 55px; }
.article-card > span, .article-card-top > span { color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.article-card-top i { display: grid; min-width: 45px; height: 45px; place-items: center; padding-inline: 8px; color: var(--ink); border-radius: 13px; background: var(--accent); font-family: var(--font-display); font-size: .68rem; font-style: normal; }
.article-card h2, .article-card h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.1vw, 2.35rem); line-height: 1.02; }
.article-card h2 a, .article-card h3 a { font: inherit; text-decoration: none; }
.article-card p { color: var(--muted); font-size: .88rem; }
.article-card > a:last-child { margin-top: auto; padding-top: 22px; font-size: .8rem; font-weight: 900; }
.article-card[hidden] { display: none; }

.article-hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.article-hero::before { position: absolute; inset: 0; content: ""; opacity: .13; background-image: radial-gradient(circle, var(--cyan) 1.2px, transparent 1.2px); background-size: 29px 29px; }
.article-hero-orb { position: absolute; top: -35%; right: -10%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(171,216,216,.35), transparent 68%); }
.article-hero-grid { position: relative; z-index: 1; display: grid; min-height: 670px; grid-template-columns: minmax(0,1.35fr) minmax(310px,.65fr); align-items: center; gap: clamp(55px,8vw,115px); padding-top: 95px; padding-bottom: 95px; }
.article-hero h1 { max-width: 1000px; margin-bottom: 28px; font-size: clamp(3.4rem, 6.7vw, 7.3rem); }
.article-hero-copy .hero-lead { max-width: 850px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; color: rgba(255,255,255,.5); font-size: .72rem; }
.article-meta span { position: relative; }
.article-meta span:not(:last-child)::after { position: absolute; top: 50%; right: -14px; width: 3px; height: 3px; content: ""; border-radius: 50%; background: var(--cyan); }
.article-hero-panel { position: relative; display: flex; min-height: 390px; flex-direction: column; padding: 34px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: rgba(255,255,255,.075); backdrop-filter: blur(16px); }
.article-category-icon { display: grid; width: 78px; height: 78px; place-items: center; margin-bottom: auto; color: var(--ink); border-radius: 22px; background: var(--accent); font-family: var(--font-display); font-size: 1.05rem; font-weight: 900; transform: rotate(-4deg); }
.article-hero-panel small { margin: 50px 0 10px; color: var(--cyan); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-hero-panel p { color: rgba(255,255,255,.78); font-family: var(--font-display); font-size: 1.3rem; line-height: 1.35; }
.article-hero-panel a { margin-top: 18px; color: var(--accent); font-size: .8rem; font-weight: 900; }

.article-layout { display: grid; grid-template-columns: 260px minmax(0,850px); align-items: start; justify-content: center; gap: clamp(55px,8vw,120px); }
.article-sidebar { position: sticky; top: 125px; display: grid; gap: 22px; }
.article-toc { display: grid; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.article-toc > span { margin-bottom: 14px; color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { padding: 9px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .76rem; font-weight: 700; }
.article-toc a:last-child { border-bottom: 0; }
.article-toc a:hover { color: var(--ink); }
.article-help-card { padding: 24px; color: var(--white); border-radius: 18px; background: var(--ink); }
.article-help-card > span { color: var(--accent); font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; }
.article-help-card p { color: rgba(255,255,255,.62); font-size: .78rem; }
.article-help-card a { color: var(--cyan); font-size: .76rem; font-weight: 900; }
.article-content { min-width: 0; }
.article-content > section { padding: 0 0 90px; margin-bottom: 90px; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.article-content > section:last-child { margin-bottom: 0; }
.article-content h2 { margin-bottom: 30px; font-size: clamp(2.35rem,4.4vw,4.9rem); }
.article-content > section > p { color: #425b5d; font-size: 1.08rem; line-height: 1.82; }
.article-content a:not(.button) { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-answer { position: relative; padding: 32px 34px; margin: 40px 0; overflow: hidden; border-radius: 18px; background: var(--cyan-soft); }
.article-answer::after { position: absolute; right: -20px; bottom: -45px; content: "↗"; color: rgba(18,39,43,.07); font-family: var(--font-display); font-size: 9rem; font-weight: 900; }
.article-answer strong { display: block; margin-bottom: 8px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-answer p { position: relative; z-index: 1; margin: 0; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45; }
.article-safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 38px 0; }
.article-safety-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.article-safety-grid span { color: var(--muted); font-size: .66rem; font-weight: 900; }
.article-safety-grid h3 { margin: 38px 0 10px; font-size: 1.35rem; }
.article-safety-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.article-cause-list { display: grid; gap: 13px; margin: 38px 0; }
.article-cause-list article { padding: 30px 32px; border-left: 4px solid var(--accent); border-radius: 0 16px 16px 0; background: var(--white); box-shadow: 0 12px 35px rgba(18,39,43,.05); }
.article-cause-list span { color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.article-cause-list h3 { margin: 12px 0; font-size: 1.35rem; }
.article-cause-list p { margin: 0; color: var(--muted); font-size: .85rem; }
.article-warning { padding: 28px 32px; margin-top: 35px; color: var(--white); border-radius: 16px; background: var(--ink); }
.article-warning strong { color: var(--accent); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.article-warning p { margin: 9px 0 0; color: rgba(255,255,255,.7); }
.article-editorial-visual { position: relative; margin: 42px 0; overflow: hidden; border: 1px solid rgba(18,39,43,.14); border-radius: 22px; background: var(--ink); box-shadow: 0 25px 65px rgba(18,39,43,.13); }
.article-editorial-visual::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: inherit; pointer-events: none; }
.article-editorial-visual img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.article-editorial-visual figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: minmax(120px,.28fr) minmax(0,.72fr); align-items: center; gap: 24px; padding: 18px 20px; color: var(--white); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(8,28,31,.88); backdrop-filter: blur(12px); }
.article-editorial-visual figcaption span { color: var(--accent); font-size: .66rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.article-editorial-visual figcaption p { margin: 0; color: rgba(255,255,255,.78); font-size: .8rem; line-height: 1.5; }
.article-editorial-visual.is-solution figcaption { background: rgba(18,39,43,.9); }
.article-checks { padding: 0; margin: 42px 0 0; list-style: none; border-top: 1px solid var(--line); }
.article-checks li { display: grid; grid-template-columns: 55px 1fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.article-checks > li > span { color: var(--muted); font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; }
.article-checks h3 { margin: 0 0 9px; font-size: 1.45rem; }
.article-checks p { margin: 0; color: var(--muted); font-size: .9rem; }
.article-action-plan { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 40px 0; }
.article-action-plan article { min-height: 265px; padding: 28px; border-radius: 17px; background: var(--white); }
.article-action-plan article:nth-child(2), .article-action-plan article:nth-child(3) { background: var(--cyan-soft); }
.article-action-plan span { color: var(--muted); font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }
.article-action-plan h3 { margin: 55px 0 10px; font-size: 1.55rem; }
.article-action-plan p { margin: 0; color: var(--muted); font-size: .84rem; }
.article-prevention-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.article-prevention-list article { min-height: 190px; padding: 28px; background: var(--paper); }
.article-prevention-list h3 { font-size: 1.25rem; }
.article-prevention-list p { margin: 0; color: var(--muted); font-size: .84rem; }
.article-faq { margin-top: 38px; }
.article-sources { padding-bottom: 0 !important; border-bottom: 0 !important; }
.article-sources ul { display: grid; gap: 10px; padding: 0; margin: 35px 0 0; list-style: none; }
.article-sources li a { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-weight: 800; }
.related-articles-section { background: var(--cyan-soft); }
.related-articles-section .article-card { min-height: 300px; }
.related-articles-section .article-card h3 { margin-top: 45px; }
.article-conversion { color: var(--white); background: var(--ink); }
.article-conversion-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; }
.article-conversion h2 { margin: 0; }
.article-conversion p { color: rgba(255,255,255,.64); }
.article-conversion .button { margin: 18px 18px 0 0; }
.article-conversion .text-link { display: flex; width: max-content; margin-top: 30px; }
.editorial-guide .source-note { margin-top: clamp(48px, 6vw, 78px); }
.footer-sitemap-grid { grid-template-columns: repeat(3,1fr); }
.footer-sitemap-grid > div:nth-child(n+3) ul { max-height: 380px; overflow-y: auto; }

@media (max-width: 1100px) {
    .article-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .article-hero-grid { grid-template-columns: 1fr; padding-top: 80px; }
    .article-hero-panel { width: min(100%,650px); min-height: 300px; }
    .article-layout { grid-template-columns: 220px minmax(0,1fr); gap: 50px; }
}

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
    .article-toc { display: none; }
    .article-help-card { grid-column: 1 / -1; }
    .article-conversion-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .article-card-grid, .article-safety-grid, .article-action-plan, .article-prevention-list { grid-template-columns: 1fr; }
    .article-card { min-height: 315px; }
    .article-card-top { margin-bottom: 38px; }
    .article-filter-bar { flex-wrap: nowrap; padding-bottom: 8px; overflow-x: auto; }
    .article-filter-bar button { flex: 0 0 auto; }
    .article-hero-grid { min-height: auto; padding-top: 70px; padding-bottom: 70px; }
    .article-hero h1 { font-size: clamp(3rem,13vw,4.5rem); }
    .article-hero-panel { min-height: 310px; padding: 27px; border-radius: 20px; }
    .article-category-icon { width: 64px; height: 64px; border-radius: 18px; }
    .article-layout { padding-top: 75px; padding-bottom: 75px; }
    .article-content > section { padding-bottom: 65px; margin-bottom: 65px; }
    .article-content h2 { font-size: clamp(2.15rem,10vw,3.4rem); }
    .article-content > section > p { font-size: 1rem; }
    .article-answer, .article-cause-list article, .article-warning { padding: 25px 22px; }
    .article-checks li { grid-template-columns: 40px 1fr; gap: 14px; }
    .article-action-plan article { min-height: 230px; }
    .article-editorial-visual { margin: 32px 0; border-radius: 17px; }
    .article-editorial-visual img { aspect-ratio: 4 / 3; }
    .article-editorial-visual figcaption { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: 1fr; gap: 8px; border: 0; border-radius: 0; }
    .local-seo-editorial-visual { border-radius: 18px; }
    .local-seo-editorial-visual img { aspect-ratio: 4 / 3; }
    .local-seo-editorial-visual figcaption { position: relative; right: auto; bottom: auto; left: auto; grid-template-columns: 1fr; gap: 8px; border: 0; border-radius: 0; }
    .footer-sitemap-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    body.is-ready .reveal { opacity: 1; transform: none; }
}

/* Homepage responsive refinements */
@media (max-width: 900px) {
    .hero-video { width: min(100%, 760px); margin-inline: auto; }
    .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .expertise-follower { display: none; }
    .swiss-visual { min-height: 540px; }
    .ch-map { width: min(86%, 500px); height: 430px; }
    .ch-map-code { font-size: 9rem !important; }
}

@media (max-width: 640px) {
    .hero-video { padding: 8px; border-radius: 21px; }
    .hero-video::before { display: none; }
    .hero-video-heading { padding: 6px 5px 12px; }
    .hero-video-heading small { display: none; }
    .hero-video-frame { border-radius: 14px; }
    .hero-video-caption { grid-template-columns: 1fr; gap: 8px; padding: 14px 7px 6px; }
    .hero-video-caption span { padding: 0; border: 0; }
    .client-marquee-item { width: 134px; height: 70px; flex-basis: 134px; padding: 13px 16px; }
    .platform-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .platform-grid .platform-logo { min-height: 58px; padding-inline: 10px; font-size: .86rem; }
    .swiss-visual { min-height: 480px; }
    .ch-map { width: 94%; height: 390px; }
    .ch-map-code { font-size: 7rem !important; }
    .ch-city { padding: 5px 7px; font-size: .56rem; }
    .ch-card { min-width: 135px; }
}

/* Ajustements accueil issus de la revue visuelle */
.hero-proof-stack {
    display: grid;
    width: max-content;
    max-width: 100%;
    justify-items: start;
    gap: 10px;
    margin-bottom: 20px;
}
.hero-proof-stack .eyebrow,
.hero-proof-stack .hero-google-rating { margin: 0; }
.hero-google-rating > img { width: 27px; height: 27px; flex: 0 0 27px; }
.hero-google-rating > span > span { color: var(--accent); font-size: .62rem; letter-spacing: .08em; }

.hero-audit-wrap {
    width: 100%;
    padding: 13px;
    color: var(--white);
    border: 1px solid rgba(171,216,216,.2);
    border-radius: 24px;
    background: rgba(6,26,29,.74);
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
}
.hero-audit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 2px 15px 11px;
    margin: 0;
    text-align: left;
}
.hero-audit-heading > div { display: flex; align-items: center; gap: 11px; }
.hero-audit-heading .eyebrow { margin: 0; color: var(--cyan); white-space: nowrap; }
.hero-audit-heading h2 { margin: 0; color: var(--white); font-size: .98rem; line-height: 1.15; white-space: nowrap; }
.hero-audit-heading p { max-width: 480px; margin: 0; color: rgba(255,255,255,.58); font-size: .67rem; line-height: 1.35; text-align: right; }
.quick-audit-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr auto;
    align-items: stretch;
    gap: 0;
    padding: 6px;
    border: 1px solid rgba(171,216,216,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}
.quick-audit-field {
    min-height: 58px;
    justify-content: center;
    gap: 3px;
    padding: 8px 18px;
    border: 0;
    border-right: 1px solid rgba(171,216,216,.16);
    border-radius: 0;
    background: transparent;
}
.quick-audit-field:focus-within { background: rgba(255,255,255,.05); transform: none; }
.quick-audit-field > span { color: var(--cyan); font-size: .54rem; }
.quick-audit-field input,
.quick-audit-field textarea {
    min-height: 24px;
    color: var(--white);
    font-size: .76rem;
    line-height: 1.25;
}
.quick-audit-field input::placeholder,
.quick-audit-field textarea::placeholder { color: rgba(255,255,255,.36); }
.quick-audit-form > .button {
    min-width: 190px;
    min-height: 58px;
    padding-inline: 22px;
    color: var(--ink);
    border-radius: 999px;
    background: var(--white);
    font-size: .7rem;
}
.quick-audit-form > .button:hover,
.quick-audit-form > .button:focus-visible { color: var(--ink); background: var(--accent); }
.quick-audit-proof { margin: 9px 14px 2px; color: rgba(255,255,255,.53); font-size: .64rem; text-align: center; }

.platform-section { padding-block: 52px; }
.platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.platform-logo {
    min-height: 64px;
    justify-content: flex-start;
    padding-inline: 18px;
    overflow: hidden;
    font-size: .86rem;
    transition: color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.platform-logo:hover {
    color: var(--ink);
    border-color: rgba(18,39,43,.28);
    box-shadow: 0 13px 30px rgba(18,39,43,.1);
    transform: translateY(-4px);
}
.platform-logo > i {
    display: grid;
    min-width: 28px;
    height: 28px;
    place-items: center;
    font-style: normal;
    font-weight: 900;
}
.platform-logo.google-business > i { color: #4285f4; }
.platform-logo.instagram > i { color: #c13584; font-size: 1.65rem; }
.platform-logo.youtube > i { color: #ff0033; font-size: 1rem; }
.platform-logo.wordpress > i { color: #21759b; border: 2px solid currentColor; border-radius: 50%; font-family: Georgia, serif; }
.platform-logo.tiktok > i { color: #111; font-size: 1.35rem; text-shadow: 2px 0 #25f4ee, -2px 0 #fe2c55; }

.growth-grid { grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(38px,5vw,75px); }
.growth-metrics {
    align-self: center;
    gap: 12px;
    border: 0;
}
.growth-metrics article {
    min-height: 240px;
    padding: clamp(24px,2.5vw,34px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.growth-metrics article:hover {
    border-color: rgba(241,253,13,.42);
    background: rgba(255,255,255,.06);
    transform: translateY(-5px);
}
.growth-metrics strong { min-height: 0; font-size: clamp(3rem,4.6vw,5rem); }
.growth-metrics span { margin-top: 32px; font-size: clamp(1rem,1.25vw,1.2rem); }
.growth-metrics small { margin-top: 8px; }

.ch-map::before,
.ch-map::after { filter: drop-shadow(0 18px 28px rgba(0,0,0,.16)); }
.ch-city-sion { top: 43%; left: 39%; }
.ch-city-lugano { top: 48%; right: 0; }
.ch-city-lucerne { right: 18%; bottom: 10%; }

.audit-cases { min-height: 735px; }
.audit-case {
    width: min(90%,520px);
    grid-template-columns: 116px 1fr;
    padding: 13px;
}
.audit-case > img { width: 116px; height: 112px; }
.audit-case-1 { top: 0; right: auto; bottom: auto; left: 0; transform: rotate(-2.8deg); }
.audit-case-2 { top: 142px; right: 0; bottom: auto; left: auto; transform: rotate(1.8deg); }
.audit-case-3 { top: 284px; right: auto; bottom: auto; left: 5%; transform: rotate(-1deg); }
.audit-case-4 { z-index: 4; top: 426px; right: 1%; bottom: auto; left: auto; transform: rotate(2.2deg); }
.audit-case-5 { z-index: 5; top: 568px; right: auto; bottom: auto; left: 2%; transform: rotate(-1.6deg); }

@media (max-width: 1100px) {
    .hero-proof-stack { justify-items: center; margin-inline: auto; }
    .hero-audit-heading > div { align-items: flex-start; flex-direction: column; gap: 3px; }
    .quick-audit-form { grid-template-columns: 1fr 1fr; border-radius: 24px; }
    .quick-audit-field { border-bottom: 1px solid rgba(171,216,216,.16); }
    .quick-audit-goal { grid-column: 1; }
    .quick-audit-form > .button { grid-column: 2; }
    .growth-grid { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 215px; }
}

@media (max-width: 900px) {
    .platform-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .growth-metrics { grid-template-columns: repeat(3,1fr); }
    .growth-metrics article { min-height: 205px; }
    .growth-metrics span { margin-top: 24px; }
}

@media (max-width: 700px) {
    .hero-audit-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
    .hero-audit-heading p { max-width: none; text-align: left; }
    .quick-audit-form { grid-template-columns: 1fr; padding: 5px; border-radius: 20px; }
    .quick-audit-field { min-height: 60px; border-right: 0; border-bottom: 1px solid rgba(171,216,216,.16); }
    .quick-audit-goal,
    .quick-audit-form > .button { grid-column: 1; }
    .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .platform-logo { min-height: 57px; padding-inline: 12px; font-size: .76rem; }
    .growth-metrics { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 0; }
    .audit-cases { display: grid; min-height: 0; gap: 13px; }
    .audit-case,
    .audit-case-1,
    .audit-case-2,
    .audit-case-3,
    .audit-case-4,
    .audit-case-5 {
        position: relative;
        inset: auto;
        width: 100%;
        grid-template-columns: 92px 1fr;
        transform: none;
    }
    .audit-case > img { width: 92px; height: 105px; }
    .ch-city { font-size: .5rem; }
    .ch-city-lugano { right: -1%; }
    .ch-city-lucerne { right: 13%; bottom: 8%; }
}

/* Ajustements finaux : hiérarchie des titres, vidéo, preuves et contenus SEO */
h1 { font-size: clamp(2.75rem, 5vw, 5.35rem); }
.home-hero h1 { max-width: 650px; font-size: clamp(3rem, 4.8vw, 4.9rem); }
.compact-hero h1,
.about-hero h1,
.pricing-hero h1,
.contact-hero h1,
.legal-hero h1,
.error-page h1 { font-size: clamp(2.85rem, 4.8vw, 5.05rem); }
.service-hero h1 { max-width: 690px; font-size: clamp(2.75rem, 4.4vw, 4.65rem); }
.article-hero h1 { max-width: 920px; font-size: clamp(2.85rem, 5.2vw, 5.6rem); }
.service-hero-hook { margin: 6px 0 21px; }
.service-guide .section-heading > p { padding-top: 18px; }

@media (min-width: 1101px) {
    .home-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        column-gap: 0;
        row-gap: 42px;
        padding-top: 92px;
        padding-bottom: 88px;
    }
    .home-hero-copy { width: min(100%, 980px); text-align: center; }
    .home-hero h1 { max-width: 900px; }
    .home-hero h1,
    .home-hero .hero-lead { margin-inline: auto; }
    .home-hero .hero-actions,
    .home-hero .hero-reassurance { justify-content: center; }
    .hero-video { width: min(100%, 800px); }
    .hero-audit-wrap { grid-column: 1 / -1; }
}

.platform-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.platform-logo { justify-content: center; padding-inline: 14px; }
.platform-logo img { width: 25px; height: 25px; object-fit: contain; }
.platform-logo img[src*="bing.svg"] { width: 17px; }

.services-showcase .section-heading > p,
.service-row .service-summary > p { color: rgba(255,255,255,.9); }
.service-row .service-tags small { color: var(--white); border-color: rgba(255,255,255,.28); }
.client-marquee-item { width: 144px; height: 72px; flex-basis: 144px; padding: 14px 18px; }
.client-marquee-item img { width: 96px; height: 32px; }

.service-proof-copy { align-self: center; max-width: 620px; }
.service-proof-copy h2 { margin: 13px 0 18px; font-size: clamp(2.15rem, 3.5vw, 3.7rem); }
.service-proof-copy p { max-width: 590px; color: var(--muted); }
.service-proof-copy .button { margin-top: 18px; }

.review-summary { align-items: center; }
.review-summary > .google-g-logo { width: 42px; height: 42px; flex: 0 0 42px; }

.error-recovery { background: var(--paper); }
.error-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.error-link-grid a { display: grid; min-height: 112px; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); transition: color .2s ease, background .2s ease, transform .2s ease; }
.error-link-grid a:hover { color: var(--ink); background: var(--accent); transform: translateY(-4px); }
.error-link-grid span { color: var(--muted); font-size: .65rem; font-weight: 900; }
.error-link-grid strong { font-family: var(--font-display); font-size: 1.04rem; }
.error-link-grid i { font-style: normal; }

.article-author { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: clamp(24px, 4vw, 48px); padding: clamp(25px, 4vw, 44px); margin-top: 20px; border: 1px solid var(--line); border-radius: 24px; background: var(--cyan-soft); }
.article-author img { width: 150px; height: 150px; object-fit: cover; border-radius: 20px; box-shadow: 0 18px 42px rgba(18,39,43,.18); }
.article-author span { color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-author h2 { margin: 7px 0 2px; font-size: clamp(2rem, 3vw, 3rem); }
.article-author strong { color: #657200; font-size: .82rem; }
.article-author p { margin: 15px 0; color: var(--muted); }
.article-author a { font-size: .78rem; font-weight: 900; }

@media (max-width: 1100px) {
    .platform-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    h1,
    .home-hero h1,
    .compact-hero h1,
    .about-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .legal-hero h1,
    .error-page h1,
    .service-hero h1,
    .article-hero h1 { font-size: clamp(2.55rem, 11vw, 3.45rem); }
    .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .error-link-grid { grid-template-columns: 1fr; }
    .article-author { grid-template-columns: 1fr; }
    .article-author img { width: 112px; height: 112px; }
}

/* Accueil — ajustements de densité, logos locaux et ruban continu */
.home-hero-grid { gap: clamp(26px, 3.4vw, 44px); }
.hero-google-rating { display: flex; width: max-content; margin: 0 auto 14px; }

.hero-audit-wrap {
    width: min(100%, 1180px);
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.hero-audit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 11px;
}
.hero-audit-heading > div { display: flex; align-items: center; gap: 12px; }
.hero-audit-heading .eyebrow { margin: 0; white-space: nowrap; }
.hero-audit-heading h2 { font-size: clamp(1.05rem, 1.55vw, 1.35rem); line-height: 1.1; white-space: nowrap; }
.hero-audit-heading p { max-width: 460px; font-size: .74rem; line-height: 1.45; text-align: right; }
.quick-audit-form { grid-template-columns: 1fr 1fr 1.28fr auto; gap: 8px; }
.quick-audit-field { min-height: 54px; gap: 4px; padding: 8px 11px; border-radius: 10px; }
.quick-audit-field input, .quick-audit-field textarea { min-height: 25px; font-size: .78rem; }
.quick-audit-form > .button { min-width: 178px; min-height: 54px; padding-inline: 17px; font-size: .72rem; }
.quick-audit-form > .button.is-magnetic { transition: transform .14s ease-out, color .2s ease, background .2s ease, opacity .2s ease; }
.quick-audit-proof { margin-top: 9px; font-size: .66rem; }
.hero-search-engines { justify-content: flex-start; gap: 9px 15px; padding-top: 10px; margin-top: 10px; }
.hero-search-engines > span:first-child { font-size: .56rem; }
.engine-logo { gap: 5px; font-size: .68rem; }
.engine-logo img { width: 18px; height: 18px; }
.engine-logo img[src*="bing.svg"] { width: 13px; }

.platform-track { gap: 12px; animation-name: platformTickerContinuous; }
.platform-set { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.platform-logo img[src*="bing.svg"] { width: 19px; height: 31px; }
@keyframes platformTickerContinuous { to { transform: translateX(calc(-50% - 6px)); } }

.growth-section { padding-block: clamp(68px, 7vw, 96px); }
.growth-grid { grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr); gap: clamp(38px,5vw,72px); }
.growth-copy .eyebrow { color: var(--white); }
.growth-copy h2 { max-width: 520px; margin-bottom: 17px; font-size: clamp(2.15rem, 3.5vw, 3.8rem); line-height: .98; }
.growth-copy p { font-size: .94rem; }
.growth-copy .button { margin-top: 17px; }
.growth-metrics article {
    display: grid;
    min-height: 226px;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    padding: clamp(23px,2.6vw,34px);
}
.growth-metrics strong { min-height: 1em; font-size: clamp(2.75rem,4vw,4.25rem); line-height: .9; }
.growth-metrics span { margin-top: 16px; font-size: 1.05rem; line-height: 1.12; }
.growth-metrics small { margin-top: 8px; font-size: .7rem; }

@media (max-width: 1100px) {
    .hero-audit-heading { align-items: flex-start; }
    .hero-audit-heading > div { align-items: flex-start; flex-direction: column; gap: 4px; }
    .hero-audit-heading h2 { white-space: normal; }
    .quick-audit-form { grid-template-columns: 1fr 1fr; }
    .quick-audit-goal { grid-column: 1; }
    .quick-audit-form > .button { grid-column: 2; min-height: 54px; }
    .growth-grid { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 205px; }
}

@media (max-width: 900px) {
    .growth-metrics { grid-template-columns: repeat(3, 1fr); }
    .growth-metrics article { min-height: 205px; }
}

@media (max-width: 700px) {
    .hero-audit-wrap { padding: 15px 13px; }
    .hero-audit-heading { flex-direction: column; gap: 7px; }
    .hero-audit-heading p { max-width: none; text-align: left; }
    .quick-audit-form { grid-template-columns: 1fr; }
    .quick-audit-goal, .quick-audit-form > .button { grid-column: 1; }
    .hero-search-engines { gap: 10px 14px; }
    .growth-metrics { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 0; }
}

/* Accueil — audit progressif, preuves et mise en page conversion */
.nav-dropdown > button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.nav-dropdown > button span { display: inline-grid; width: 15px; height: 15px; place-items: center; margin: 0; line-height: 1; transform: translateY(-1px); }

.hero-google-rating { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; margin-bottom: 20px; color: var(--white); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.055); text-align: left; transition: border-color .2s ease, transform .2s ease; }
.hero-google-rating:hover { border-color: rgba(241,253,13,.55); transform: translateY(-2px); }
.hero-google-rating .google-g-logo { width: 25px; height: 25px; flex: 0 0 25px; }
.hero-google-rating > span { display: grid; grid-template-columns: auto auto; align-items: center; gap: 1px 7px; }
.hero-google-rating strong { font-size: .76rem; }
.hero-google-rating > span > span { color: var(--accent); font-size: .62rem; letter-spacing: .08em; }
.hero-google-rating small { grid-column: 1 / -1; color: rgba(255,255,255,.58); font-size: .59rem; }

.hero-audit-wrap { width: min(100%, 1100px); padding: clamp(24px, 4vw, 46px); color: var(--ink); border: 1px solid rgba(171,216,216,.24); border-radius: 30px; background: var(--white); box-shadow: 0 36px 100px rgba(0,0,0,.35); }
.hero-audit-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.72fr); align-items: end; gap: 35px; margin-bottom: 28px; text-align: left; }
.hero-audit-heading .eyebrow { color: var(--muted); }
.hero-audit-heading h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 3.4vw, 3.5rem); }
.hero-audit-heading p { margin: 0; color: var(--muted); font-size: .88rem; }
.quick-audit-form { display: grid; grid-template-columns: 1fr 1fr 1.35fr auto; align-items: stretch; gap: 10px; }
.quick-audit-field { display: flex; min-width: 0; flex-direction: column; gap: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); transition: opacity .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.quick-audit-field > span { color: var(--muted); font-size: .58rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.quick-audit-field input, .quick-audit-field textarea { width: 100%; min-height: 30px; padding: 0; color: var(--ink); border: 0; outline: 0; background: transparent; font: inherit; font-size: .84rem; resize: none; }
.quick-audit-field:focus-within { border-color: var(--ink); background: var(--white); transform: translateY(-2px); }
.quick-audit-form.is-progressive [data-audit-step="email"], .quick-audit-form.is-progressive [data-audit-step="goal"] { opacity: .42; pointer-events: none; }
.quick-audit-form.is-progressive [data-audit-step].is-unlocked { opacity: 1; pointer-events: auto; }
.quick-audit-form > .button { min-width: 190px; justify-content: center; border: 0; }
.quick-audit-form > .button:disabled { cursor: not-allowed; filter: grayscale(.75); opacity: .5; transform: none; }
.quick-audit-form .form-status { grid-column: 1 / -1; margin: 0; }
.quick-audit-proof { margin: 15px 0 0; color: var(--muted); font-size: .72rem; text-align: left; }
.hero-search-engines { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--line); }
.hero-search-engines > span:first-child { color: var(--muted); font-size: .63rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.engine-logo { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; }
.engine-logo img { width: 20px; height: 20px; object-fit: contain; }

.platform-marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.platform-track { display: flex; width: max-content; align-items: center; gap: 12px; animation: platformTicker 28s linear infinite; }
.platform-track .platform-logo { width: 210px; flex: 0 0 210px; justify-content: center; }
.platform-logo img { width: 28px; height: 28px; object-fit: contain; }
@keyframes platformTicker { to { transform: translateX(-50%); } }

.growth-section { color: var(--white); background: var(--ink); }
.growth-grid { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); align-items: stretch; gap: clamp(45px,8vw,120px); }
.growth-copy { align-self: center; }
.growth-copy h2 { max-width: 620px; margin-bottom: 26px; }
.growth-copy p { max-width: 600px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.growth-copy .button { margin-top: 22px; color: var(--ink); background: var(--accent); }
.growth-metrics { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.growth-metrics article { display: flex; min-height: 330px; flex-direction: column; padding: clamp(25px,3vw,42px); border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.growth-metrics strong { color: var(--accent); font-family: var(--font-display); font-size: clamp(3.1rem,5vw,5.5rem); letter-spacing: -.07em; line-height: .85; }
.growth-metrics span { margin-top: auto; font-family: var(--font-display); font-size: 1.28rem; }
.growth-metrics small { margin-top: 12px; color: rgba(255,255,255,.52); line-height: 1.5; }

.service-row { min-height: 142px; padding-block: 31px; }
.service-row > .service-summary { display: grid; gap: 14px; color: rgba(255,255,255,.59); }
.service-row .service-summary p { color: inherit; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags small { padding: 5px 8px; color: var(--cyan); border: 1px solid rgba(171,216,216,.22); border-radius: 999px; font-size: .56rem; font-weight: 850; }
.service-row:hover .service-summary { color: rgba(18,39,43,.72); }
.service-row:hover .service-tags small { color: var(--ink); border-color: rgba(18,39,43,.25); }

.swiss-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(42px,6vw,85px); }
.swiss-visual { min-height: 590px; border-radius: 36px; box-shadow: 0 28px 75px rgba(18,39,43,.18); }
.swiss-copy h2 { max-width: 680px; font-size: clamp(2.35rem,4vw,4.5rem); line-height: .96; }
.ch-card { min-width: 180px; }

.metric-with-logo { display: flex !important; align-items: center; gap: 14px; }
.metric-with-logo .google-g-logo { width: .42em; height: .42em; flex: 0 0 .42em; }
.audit-cases { position: relative; min-height: 610px; }
.audit-case { position: absolute; display: grid; width: min(92%,520px); grid-template-columns: 138px 1fr; gap: 18px; padding: 16px; color: var(--white); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: var(--ink); box-shadow: 0 28px 70px rgba(18,39,43,.2); }
.audit-case-1 { top: 0; left: 0; transform: rotate(-3deg); }
.audit-case-2 { z-index: 2; top: 185px; right: 0; transform: rotate(2deg); }
.audit-case-3 { z-index: 3; bottom: 0; left: 5%; transform: rotate(-1deg); }
.audit-case > img { width: 138px; height: 132px; object-fit: cover; border-radius: 14px; }
.audit-case > div { min-width: 0; }
.audit-case > div > span { color: var(--cyan); font-size: .56rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.audit-case h3 { margin: 7px 0 13px; color: var(--white); font-size: 1.35rem; }
.audit-case p { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.audit-case p b { padding: 5px 8px; color: var(--ink); border-radius: 99px; background: var(--accent); font-size: .58rem; }
.audit-case small { display: block; margin-top: 10px; color: rgba(255,255,255,.44); font-size: .55rem; }

.not-fixed-rate { display: inline; padding: 2px 5px; color: var(--ink); background: var(--accent); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.pricing-hero-warning { max-width: 650px; margin-top: 24px; color: rgba(255,255,255,.72); }

@media (max-width: 1100px) {
    .quick-audit-form { grid-template-columns: 1fr 1fr; }
    .quick-audit-form > .button { min-height: 64px; }
    .growth-grid { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 270px; }
}

@media (max-width: 900px) {
    .hero-audit-heading { grid-template-columns: 1fr; gap: 14px; }
    .growth-metrics { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 220px; }
    .service-row > .service-summary { grid-column: 3 / 5; }
    .swiss-grid { grid-template-columns: 1fr; }
    .audit-cases { width: min(100%,620px); margin-inline: auto; }
}

@media (max-width: 640px) {
    .hero-google-rating { margin-bottom: 17px; }
    .hero-audit-wrap { padding: 22px 16px; border-radius: 22px; }
    .quick-audit-form { grid-template-columns: 1fr; }
    .quick-audit-form > .button { width: 100%; }
    .hero-search-engines { justify-content: flex-start; }
    .hero-search-engines > span:first-child { width: 100%; }
    .platform-track .platform-logo { width: 160px; flex-basis: 160px; }
    .growth-metrics article { min-height: 195px; }
    .service-row { min-height: 0; padding-block: 26px; }
    .service-row > .service-summary { grid-column: 2 / 5; }
    .service-tags { margin-top: 2px; }
    .swiss-visual { min-height: 470px; border-radius: 24px; }
    .audit-cases { display: grid; min-height: 0; gap: 13px; }
    .audit-case { position: relative; inset: auto; width: 100%; grid-template-columns: 92px 1fr; transform: none; }
    .audit-case > img { width: 92px; height: 112px; }
    .audit-case h3 { font-size: 1.05rem; }
}

/* Refonte conversion, preuves et contenus dynamiques */
.site-header { transition: color .25s ease, background .25s ease, box-shadow .25s ease; }
.brand-mark { position: relative; }
.brand-logo { position: absolute; inset: 1px; transition: opacity .2s ease, transform .25s ease; }
.brand-logo-dark { opacity: 0; transform: scale(.88) rotate(-5deg); }
.site-header.is-scrolled { color: var(--ink); background: rgba(241,253,13,.97); box-shadow: 0 13px 35px rgba(12,31,34,.12); }
.site-header.is-scrolled .brand-logo-light { opacity: 0; transform: scale(.88) rotate(5deg); }
.site-header.is-scrolled .brand-logo-dark { opacity: 1; transform: scale(1) rotate(0); }
.site-header.is-scrolled .brand-copy small { color: var(--ink-3); }
.site-header.is-scrolled .main-nav > a:not(.nav-cta), .site-header.is-scrolled .nav-dropdown > button { color: rgba(18,39,43,.78); }
.site-header.is-scrolled .main-nav > a:hover, .site-header.is-scrolled .main-nav > a.is-active, .site-header.is-scrolled .nav-dropdown > button:hover { color: var(--ink); }
.site-header.is-scrolled .main-nav > a:not(.nav-cta)::after, .site-header.is-scrolled .nav-dropdown > button::after { background: var(--ink); }
.site-header.is-scrolled .nav-cta { color: var(--white); background: var(--ink); }
.site-header.is-scrolled .nav-cta:hover,
.site-header.is-scrolled .nav-cta:focus-visible { color: var(--ink); border-color: var(--ink); background: var(--accent); box-shadow: 0 0 0 2px var(--ink); transform: translateY(-2px); }
.site-header.is-scrolled .menu-toggle { border-color: rgba(18,39,43,.3); }
.site-header.is-scrolled .menu-toggle i { background: var(--ink); }

.hero-ticker a { padding: 2px 0; color: var(--ink); text-decoration: none; border-bottom: 2px solid transparent; }
.hero-ticker a:hover, .hero-ticker a:focus-visible { border-bottom-color: var(--ink); }
.hero-ticker:hover > div, .client-marquee:hover .client-marquee-track, .platform-marquee:hover .platform-track, .reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.trust-strip { padding: 26px 0 30px; overflow: hidden; }
.trust-strip-heading { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; margin-bottom: 24px; text-align: center; }
.trust-strip-heading a { font-size: .82rem; font-weight: 900; }
.client-marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.client-marquee-track { display: flex; width: max-content; align-items: center; gap: 14px; animation: clientTicker 115s linear infinite; }
.client-marquee-item { display: grid; width: 154px; height: 76px; flex: 0 0 154px; place-items: center; padding: 15px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.client-marquee-item.is-dark { background: var(--ink); }
.client-marquee-item img { width: 108px; max-width: 100%; height: 38px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.client-marquee-item:hover img { filter: none; opacity: 1; transform: scale(1.05); }
@keyframes clientTicker { to { transform: translateX(-50%); } }

.approach-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.approach-step { position: relative; display: flex; min-height: 360px; flex-direction: column; padding: clamp(28px, 3.5vw, 48px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, background .25s ease; }
.approach-step:nth-child(2) { background: var(--cyan-soft); }
.approach-step:hover { background: var(--accent); transform: translateY(-7px); }
.approach-step > span { margin-bottom: auto; color: var(--muted); font-family: var(--font-display); font-size: 3.8rem; font-weight: 900; letter-spacing: -.08em; }
.approach-step h3 { margin: 35px 0 10px; font-size: clamp(1.8rem, 2.6vw, 3rem); }
.approach-step p { color: var(--muted); }
.approach-step a { margin-top: 20px; font-size: .82rem; font-weight: 900; }

.platform-section { padding: 45px 0; overflow: hidden; background: var(--cyan-soft); border-block: 1px solid var(--line); }
.platform-heading { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 26px; }
.platform-heading .eyebrow { margin: 0; }
.platform-heading p { max-width: 640px; margin: 0; color: var(--muted); font-size: .86rem; }
.platform-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.platform-logo { display: inline-flex; min-height: 66px; align-items: center; gap: 10px; padding: 0 25px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); font-size: 1.05rem; font-weight: 900; white-space: nowrap; }
.platform-logo > i { font-style: normal; }
.platform-logo.microsoft > i { display: grid; grid-template-columns: 8px 8px; gap: 2px; }
.platform-logo.microsoft b { width: 8px; height: 8px; background: #f25022; }
.platform-logo.microsoft b:nth-child(2) { background: #7fba00; }.platform-logo.microsoft b:nth-child(3) { background: #00a4ef; }.platform-logo.microsoft b:nth-child(4) { background: #ffb900; }
.platform-logo.google { color: #4285f4; }.platform-logo.meta i { color: #0866ff; font-size: 1.7rem; }.platform-logo.linkedin i { padding: 2px 5px; color: #fff; border-radius: 3px; background: #0a66c2; }.platform-logo.bing i { color: #008373; font-size: 1.6rem; }.platform-logo.ai i { color: #718000; }
.platform-grid .platform-logo { justify-content: center; }

.service-row { grid-template-columns: 44px 58px minmax(210px,.72fr) minmax(280px,1.15fr) 55px; }
.service-row .expertise-icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--accent); border: 1px solid rgba(255,255,255,.22); border-radius: 15px; font-family: var(--font-display); font-size: .92rem; font-weight: 900; transition: transform .25s ease, color .25s ease, background .25s ease; }
.service-row:hover .expertise-icon { color: var(--white); background: var(--ink); transform: rotate(-5deg) scale(1.08); }
.expertise-follower { position: fixed; z-index: 80; top: 0; left: 0; display: grid; width: 270px; height: 190px; place-items: center; padding: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.35); border-radius: 24px; background: var(--cyan-soft); box-shadow: 0 28px 70px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translate(22px, -50%) rotate(-3deg) scale(.78); transition: opacity .18s ease, transform .22s cubic-bezier(.2,.8,.2,1); }
.expertise-follower.is-visible { opacity: 1; transform: translate(22px, -50%) rotate(-3deg) scale(1); }
.expertise-follower img { width: 100%; height: 128px; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(18,39,43,.22)); }
.expertise-follower span { position: absolute; right: 14px; bottom: 11px; left: 14px; overflow: hidden; color: var(--ink); font-size: .62rem; font-weight: 900; letter-spacing: .08em; text-align: center; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.directory-card-top { align-items: center; }
.directory-card-top .expertise-icon { display: grid; width: 48px; height: 48px; place-items: center; margin: -12px auto 0; color: var(--ink); border: 1px solid var(--line); border-radius: 14px; font-family: var(--font-display); font-size: .8rem; font-style: normal; transition: transform .3s ease, background .3s ease; }
.directory-card:hover .expertise-icon { background: var(--white); transform: rotate(-7deg) scale(1.1); }
.directory-card h2 a { text-decoration: none; }
.service-orbit-icon { position: absolute; z-index: 5; top: 5%; right: 8%; display: grid; width: 76px; height: 76px; place-items: center; color: var(--ink); border-radius: 20px; background: var(--accent); box-shadow: 0 18px 45px rgba(0,0,0,.2); font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; animation: serviceIconFloat 4s ease-in-out infinite; }
@keyframes serviceIconFloat { 50% { transform: translateY(-10px) rotate(6deg); } }

.results-grid { grid-template-columns: repeat(4, 1fr); }
.results-grid article { min-height: 300px; padding: clamp(28px, 3vw, 46px); }
.results-grid strong { margin-bottom: 50px; font-size: clamp(3.2rem, 5.4vw, 6rem); }

.audit-showcase { overflow: hidden; background: var(--white); }
.audit-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(55px, 9vw, 130px); }
.audit-scoreboard { position: relative; min-height: 560px; padding: clamp(30px, 4vw, 52px); overflow: hidden; color: var(--white); border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow); }
.audit-scoreboard::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: radial-gradient(circle, var(--cyan) 1px, transparent 1px); background-size: 25px 25px; }
.audit-score-main { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 8px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.15); }
.audit-score-main span { position: absolute; top: 0; left: 0; color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.audit-score-main strong { margin-top: 40px; color: var(--accent); font-family: var(--font-display); font-size: clamp(5rem, 9vw, 8rem); line-height: .8; letter-spacing: -.07em; }
.audit-score-main small { color: rgba(255,255,255,.55); }
.audit-score-list { position: relative; z-index: 1; display: grid; gap: 25px; margin-top: 35px; }
.audit-score-list div { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; color: rgba(255,255,255,.72); font-size: .82rem; }
.audit-score-list b { color: var(--white); }
.audit-score-list i { position: relative; grid-column: 1 / -1; display: block; height: 5px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.12); }
.audit-score-list i::after { position: absolute; inset: 0 auto 0 0; width: var(--score); content: ""; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--accent)); }
.audit-decor { position: absolute; z-index: 0; color: rgba(255,255,255,.06); font-family: var(--font-display); font-size: 9rem; font-weight: 900; }
.audit-decor-a { top: -35px; right: -25px; }.audit-decor-b { right: 15px; bottom: -70px; }
.audit-copy > p { color: var(--muted); font-size: 1.05rem; }

.project-card { transition: transform .28s ease, box-shadow .28s ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: 0 25px 65px rgba(18,39,43,.14); }
.project-art { min-height: 310px; background: var(--ink); }
.project-art::before, .project-art::after { display: none; }
.project-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-cover { transform: scale(1.045); }
.project-art i { z-index: 2; width: 74px; height: 5px; opacity: .8; }
.project-card-copy h2 a, .project-card-copy h3 a { font: inherit; text-decoration: none; }
.project-grid-home { grid-template-columns: repeat(3, 1fr); }
.project-grid-home .project-art { min-height: 250px; }
.filter-bar { align-items: center; margin-bottom: 12px; }
.filter-bar button { display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease, background .2s ease, transform .2s ease; }
.filter-bar button:hover { transform: translateY(-2px); }
.filter-bar button span { display: grid; min-width: 22px; height: 22px; place-items: center; border-radius: 99px; background: rgba(255,255,255,.16); font-size: .62rem; }
.filter-status { margin: 0 0 35px; color: var(--muted); font-size: .78rem; }

.reviews-marquee-section { padding: 90px 0; overflow: hidden; color: var(--white); background: #10272a; }
.reviews-marquee-heading { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 26px; margin-bottom: 50px; text-align: center; }
.reviews-marquee-heading > div { display: grid; justify-items: center; }
.reviews-marquee-heading h2 { max-width: 850px; margin: 0; }
.google-review-summary { display: inline-flex; min-width: 0; align-items: center; justify-content: center; gap: 14px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.04); text-align: left; }
.google-g-logo { width: 34px; height: 34px; flex: 0 0 34px; }
.google-review-copy { display: grid; }
.reviews-marquee-heading .google-review-copy strong { color: var(--accent); font-family: var(--font-display); font-size: 1.55rem; line-height: 1; }
.reviews-marquee-heading .google-review-copy .review-stars { margin: 4px 0 1px; color: var(--accent); font-size: .72rem; letter-spacing: .12em; }
.reviews-marquee-heading .google-review-copy small { color: rgba(255,255,255,.58); font-size: .7rem; }
.reviews-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.reviews-track { display: flex; width: max-content; align-items: stretch; gap: 18px; animation: reviewTicker 190s linear infinite; }
.review-marquee-card { display: flex; width: min(430px, 86vw); min-height: 320px; flex: 0 0 min(430px, 86vw); flex-direction: column; padding: 32px; margin: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); }
.review-marquee-card > div { color: var(--accent); letter-spacing: .15em; }
.review-marquee-card p { color: rgba(255,255,255,.78); font-family: var(--font-display); font-size: 1.24rem; line-height: 1.45; }
.review-marquee-card footer { display: flex; flex-direction: column; margin-top: auto; }
.review-marquee-card footer span { color: var(--cyan); font-size: .7rem; }
@keyframes reviewTicker { to { transform: translateX(-50%); } }

.footer-sitemap-wrap { padding-bottom: 35px; }
.footer-sitemap { border-block: 1px solid rgba(255,255,255,.1); }
.footer-sitemap summary { display: grid; grid-template-columns: 1fr auto 28px; align-items: center; gap: 24px; padding: 23px 0; list-style: none; cursor: pointer; }
.footer-sitemap summary::-webkit-details-marker { display: none; }
.footer-sitemap summary span { font-family: var(--font-display); font-size: 1.2rem; }
.footer-sitemap summary small { color: rgba(255,255,255,.45); }
.footer-sitemap summary i { font-style: normal; font-size: 1.5rem; transition: transform .25s ease; }
.footer-sitemap[open] summary i { transform: rotate(45deg); }
.footer-sitemap-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 45px; padding: 30px 0 55px; }
.footer-sitemap-grid ul { display: grid; gap: 8px; padding: 0; margin: 0; color: rgba(255,255,255,.55); list-style: none; font-size: .74rem; }
.footer-sitemap-grid a:hover { color: var(--accent); }
.footer-sitemap-grid > div:nth-child(n+3) ul { max-height: 380px; padding-right: 8px; overflow-y: auto; }
.footer-sitemap-loading { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.55); }
.footer-sitemap-grid[aria-busy="true"] { min-height: 120px; opacity: .65; }

.sitemap-page { background: var(--paper); }
.sitemap-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sitemap-page article { padding: clamp(28px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.sitemap-page article:nth-child(3), .sitemap-page article:nth-child(4), .sitemap-page article:nth-child(5) { grid-column: span 1; }
.sitemap-page ul { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; }
.sitemap-page li { border-bottom: 1px solid var(--line); }
.sitemap-page li a { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; font-size: .86rem; }
.sitemap-page li a:hover { color: #697500; }

@media (max-width: 1100px) {
    .service-row { grid-template-columns: 40px 48px minmax(220px,.8fr) minmax(260px,1.2fr) 50px; }
    .service-row-visual { display: none; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-sitemap-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .site-header.is-scrolled .main-nav > a:not(.nav-cta), .site-header.is-scrolled .nav-dropdown > button { color: var(--ink); }
    .platform-heading { align-items: flex-start; flex-direction: column; }
    .approach-steps, .audit-showcase-grid { grid-template-columns: 1fr; }
    .approach-step { min-height: 310px; }
    .project-grid-home { grid-template-columns: 1fr 1fr; }
    .service-row { grid-template-columns: 38px 48px 1fr 45px; }
    .service-row h3 { grid-column: 3; }
    .service-row p { grid-column: 3 / 5; }
    .service-row > i { grid-column: 4; grid-row: 1 / 3; }
    .footer-sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .trust-strip-heading { margin-bottom: 16px; }
    .client-marquee-item { width: 142px; height: 76px; flex-basis: 142px; padding: 14px 17px; }
    .approach-steps { grid-template-columns: 1fr; }
    .approach-step { min-height: 285px; }
    .platform-heading p { display: none; }
    .platform-logo { min-height: 58px; padding-inline: 19px; }
    .results-grid, .project-grid-home, .sitemap-page-grid { grid-template-columns: 1fr; }
    .results-grid article { min-height: 245px; }
    .audit-scoreboard { min-height: 520px; padding: 30px 24px; }
    .project-art { min-height: 240px; }
    .service-row { grid-template-columns: 33px 40px 1fr 36px; gap: 9px; }
    .service-row .expertise-icon { width: 38px; height: 38px; border-radius: 11px; font-size: .7rem; }
    .service-row h3 { font-size: 1.22rem; }
    .service-row p { grid-column: 2 / 5; }
    .service-orbit-icon { top: 0; right: 1%; width: 58px; height: 58px; border-radius: 16px; }
    .reviews-marquee-section { padding: 72px 0; }
    .review-marquee-card { min-height: 290px; padding: 26px; }
    .footer-sitemap summary { grid-template-columns: 1fr 24px; }
    .footer-sitemap summary small { display: none; }
    .footer-sitemap-grid { grid-template-columns: 1fr; }
    .footer-sitemap-grid > div:nth-child(n+3) ul { max-height: none; }
}

@media (max-width: 900px) {
    .hero-video { width: min(100%, 760px); margin-inline: auto; }
    .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .expertise-follower { display: none; }
    .swiss-visual { min-height: 540px; }
    .ch-map { width: min(86%, 500px); height: 430px; }
    .ch-map-code { font-size: 9rem !important; }
}

@media (max-width: 640px) {
    .hero-video { padding: 8px; border-radius: 21px; }
    .hero-video::before { display: none; }
    .hero-video-heading { padding: 6px 5px 12px; }
    .hero-video-heading small { display: none; }
    .hero-video-frame { border-radius: 14px; }
    .hero-video-caption { grid-template-columns: 1fr; gap: 8px; padding: 14px 7px 6px; }
    .hero-video-caption span { padding: 0; border: 0; }
    .client-marquee-item { width: 134px; height: 70px; flex-basis: 134px; padding: 13px 16px; }
    .platform-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .platform-grid .platform-logo { min-height: 58px; padding-inline: 10px; font-size: .86rem; }
    .swiss-visual { min-height: 480px; }
    .ch-map { width: 94%; height: 390px; }
    .ch-map-code { font-size: 7rem !important; }
    .ch-city { padding: 5px 7px; font-size: .56rem; }
    .ch-card { min-width: 135px; }
}

/* Autorité finale — accueil compact validé sur les références fournies */
.hero-audit-wrap {
    width: 100%;
    padding: 13px;
    color: var(--white);
    border: 1px solid rgba(171,216,216,.2);
    border-radius: 24px;
    background: rgba(6,26,29,.74);
    box-shadow: 0 24px 70px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
}
.hero-audit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 2px 15px 11px;
    margin: 0;
    text-align: left;
}
.hero-audit-heading > div { display: flex; align-items: center; gap: 11px; }
.hero-audit-heading .eyebrow { margin: 0; color: var(--cyan); white-space: nowrap; }
.hero-audit-heading h2 { margin: 0; color: var(--white); font-size: .98rem; line-height: 1.15; white-space: nowrap; }
.hero-audit-heading p { max-width: 480px; margin: 0; color: rgba(255,255,255,.58); font-size: .67rem; line-height: 1.35; text-align: right; }
.quick-audit-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr auto;
    align-items: stretch;
    gap: 0;
    padding: 6px;
    border: 1px solid rgba(171,216,216,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
}
.quick-audit-field {
    min-height: 58px;
    justify-content: center;
    gap: 3px;
    padding: 8px 18px;
    border: 0;
    border-right: 1px solid rgba(171,216,216,.16);
    border-radius: 0;
    background: transparent;
}
.quick-audit-field:focus-within { border-color: transparent; background: rgba(255,255,255,.05); transform: none; }
.quick-audit-field > span { color: var(--cyan); font-size: .54rem; }
.quick-audit-field input,
.quick-audit-field textarea { min-height: 24px; color: var(--white); font-size: .76rem; line-height: 1.25; }
.quick-audit-field input::placeholder,
.quick-audit-field textarea::placeholder { color: rgba(255,255,255,.36); }
.quick-audit-form > .button {
    min-width: 190px;
    min-height: 58px;
    padding-inline: 22px;
    color: var(--ink);
    border-radius: 999px;
    background: var(--white);
    font-size: .7rem;
}
.quick-audit-form > .button:hover,
.quick-audit-form > .button:focus-visible { color: var(--ink); background: var(--accent); }
.quick-audit-proof { margin: 9px 14px 2px; color: rgba(255,255,255,.53); font-size: .64rem; text-align: center; }

.platform-section { padding-block: 52px; }
.platform-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.platform-grid .platform-logo {
    min-height: 64px;
    justify-content: flex-start;
    padding-inline: 18px;
    overflow: hidden;
    font-size: .86rem;
}

.growth-grid { grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(38px,5vw,75px); }
.growth-metrics { align-self: center; gap: 12px; border: 0; }
.growth-metrics article {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    padding: clamp(24px,2.5vw,34px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
}
.growth-metrics strong { min-height: 0; font-size: clamp(3rem,4.6vw,5rem); }
.growth-metrics span { margin-top: 32px; font-size: clamp(1rem,1.25vw,1.2rem); }
.growth-metrics small { margin-top: 8px; }

.audit-cases { min-height: 735px; }
.audit-case { width: min(90%,520px); grid-template-columns: 116px 1fr; padding: 13px; }
.audit-case > img { width: 116px; height: 112px; }
.audit-case-1 { top: 0; right: auto; bottom: auto; left: 0; transform: rotate(-2.8deg); }
.audit-case-2 { top: 142px; right: 0; bottom: auto; left: auto; transform: rotate(1.8deg); }
.audit-case-3 { top: 284px; right: auto; bottom: auto; left: 5%; transform: rotate(-1deg); }
.audit-case-4 { z-index: 4; top: 426px; right: 1%; bottom: auto; left: auto; transform: rotate(2.2deg); }
.audit-case-5 { z-index: 5; top: 568px; right: auto; bottom: auto; left: 2%; transform: rotate(-1.6deg); }

@media (max-width: 1100px) {
    .hero-audit-heading > div { align-items: flex-start; flex-direction: column; gap: 3px; }
    .quick-audit-form { grid-template-columns: 1fr 1fr; border-radius: 24px; }
    .quick-audit-field { border-bottom: 1px solid rgba(171,216,216,.16); }
    .quick-audit-goal { grid-column: 1; }
    .quick-audit-form > .button { grid-column: 2; }
    .growth-grid { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 215px; }
}

@media (max-width: 900px) {
    .platform-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .growth-metrics { grid-template-columns: repeat(3,1fr); }
    .growth-metrics article { min-height: 205px; }
    .growth-metrics span { margin-top: 24px; }
}

@media (max-width: 700px) {
    .hero-audit-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
    .hero-audit-heading p { max-width: none; text-align: left; }
    .quick-audit-form { grid-template-columns: 1fr; padding: 5px; border-radius: 20px; }
    .quick-audit-field { min-height: 60px; border-right: 0; border-bottom: 1px solid rgba(171,216,216,.16); }
    .quick-audit-goal,
    .quick-audit-form > .button { grid-column: 1; }
    .platform-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .platform-grid .platform-logo { min-height: 57px; padding-inline: 12px; font-size: .76rem; }
    .growth-metrics { grid-template-columns: 1fr; }
    .growth-metrics article { min-height: 0; }
    .audit-cases { display: grid; min-height: 0; gap: 13px; }
    .audit-case,
    .audit-case-1,
    .audit-case-2,
    .audit-case-3,
    .audit-case-4,
    .audit-case-5 {
        position: relative;
        inset: auto;
        width: 100%;
        grid-template-columns: 92px 1fr;
        transform: none;
    }
    .audit-case > img { width: 92px; height: 105px; }
}

/* Formulaires — libellés obligatoires sur une seule ligne */
.form-grid label > .field-label {
    display: flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.form-grid label > .field-label .required-mark {
    display: inline-block;
    flex: 0 0 auto;
    margin: 0;
    transform: none;
}

/* Agence — présentation de l’équipe */
.team-section { overflow: hidden; background: var(--cyan); }
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.team-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18,39,43,.14);
    border-radius: var(--radius);
    background: rgba(255,255,255,.78);
    box-shadow: 0 24px 60px rgba(18,39,43,.1);
    transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { box-shadow: 0 30px 70px rgba(18,39,43,.17); transform: translateY(-7px); }
.team-card figure { position: relative; aspect-ratio: 1; margin: 0; overflow: hidden; background: var(--ink); }
.team-card figure::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.2); pointer-events: none; }
.team-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover img { transform: scale(1.035); }
.team-card > div { flex: 1; padding: clamp(24px, 3vw, 36px); }
.team-card span { color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.team-card h3 { margin: 9px 0 13px; font-size: clamp(1.8rem, 2.7vw, 3rem); }
.team-card p { margin: 0; color: var(--muted); }
.team-card-founder { color: var(--white); background: var(--ink); }
.team-card-founder span { color: var(--cyan); }
.team-card-founder p { color: rgba(255,255,255,.68); }
.team-card-founder img { object-position: center 35%; }
.team-footer { display: flex; align-items: center; gap: 20px; margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(18,39,43,.18); }
.team-footer p { margin: 0 auto 0 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }

/* Blog — miniatures éditoriales Devsource */
.article-library-grid .article-card,
.related-articles-section .related-article-card { padding: 0; }
.article-card-thumbnail,
.related-article-thumbnail {
    position: relative;
    display: block;
    flex: 0 0 auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}
.article-card-thumbnail::after,
.related-article-thumbnail::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(4,22,25,.9) 0%, rgba(4,22,25,.54) 48%, rgba(4,22,25,.05) 82%); pointer-events: none; }
.article-card-thumbnail img,
.related-article-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.article-card:hover .article-card-thumbnail img,
.related-article-card:hover .related-article-thumbnail img { transform: scale(1.045); }
.article-card-thumbnail > span,
.article-card-thumbnail > strong,
.article-card-thumbnail > em,
.related-article-thumbnail > span { position: absolute; z-index: 1; left: clamp(18px, 2vw, 26px); }
.article-card-thumbnail > span { top: clamp(17px, 2vw, 24px); color: var(--accent); font-size: .62rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.article-card-thumbnail > strong { bottom: 48px; width: min(68%, 280px); color: var(--white); font-family: var(--font-display); font-size: clamp(1.05rem, 1.55vw, 1.55rem); letter-spacing: -.04em; line-height: 1.02; }
.article-card-thumbnail > em { bottom: 20px; color: var(--cyan); font-size: .62rem; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-card-body { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 2.7vw, 34px); }
.article-library-grid .article-card-top { margin-bottom: 25px; }
.article-card-body > a:last-child { margin-top: auto; padding-top: 22px; font-size: .8rem; font-weight: 900; }
.related-article-thumbnail { aspect-ratio: 16 / 8; }
.related-article-thumbnail > span { top: 18px; color: var(--accent); font-size: .62rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.related-articles-section .related-article-card h3 { margin-top: 28px; }

@media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-card-founder { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(240px,.8fr) minmax(0,1.2fr); align-items: center; }
    .team-card-founder figure { height: 100%; min-height: 330px; }
}

@media (max-width: 640px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card-founder { display: flex; grid-column: auto; }
    .team-card-founder figure { min-height: 0; }
    .team-footer { align-items: flex-start; flex-direction: column; }
    .team-footer p { margin-right: 0; }
    .article-card-thumbnail > strong { width: 72%; font-size: clamp(1.2rem, 5vw, 1.65rem); }
}

/* Alignements demandés — hero, plateformes, expertises et navigation */
.home-hero-copy .hero-proof-stack { width: 100%; justify-items: center; }
.home-hero-copy .hero-google-rating { margin-inline: auto; }
.hero-google-rating .google-g-logo,
.hero-google-rating > img { width: 28px; height: 28px; object-fit: contain; }

.platform-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); justify-content: center; }
.platform-grid .platform-logo {
    min-width: 0;
    justify-content: center;
    gap: 10px;
    padding-inline: 12px;
    overflow: hidden;
    font-size: clamp(.72rem, .78vw, .92rem);
    text-align: center;
}
.platform-grid .platform-logo img { width: 27px; height: 27px; flex: 0 0 27px; object-fit: contain; }
.platform-grid .platform-logo img[src*="bing.svg"] { width: 18px; height: 30px; flex-basis: 18px; }
.platform-grid .platform-logo img[src*="google-business-profile"] { width: 30px; height: 30px; flex-basis: 30px; }
.platform-grid .platform-logo-samsung img { width: 54px; height: 25px; flex-basis: 54px; }

@media (min-width: 901px) {
    .service-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
    .service-hero-copy .hero-actions { width: 100%; justify-content: flex-start; margin-top: 32px; }
    .nav-dropdown > button { min-width: 118px; justify-content: space-between; }
}

.related-services .capability-card { display: flex; flex-direction: column; }
.related-services .capability-card .text-link { align-self: flex-start; margin-top: auto; padding-top: 24px; }

@media (max-width: 1400px) {
    .platform-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .platform-grid .platform-logo { min-height: 62px; gap: 8px; padding-inline: 9px; font-size: .69rem; }
    .platform-grid .platform-logo img { width: 24px; height: 24px; flex-basis: 24px; }
    .platform-grid .platform-logo-samsung img { width: 45px; height: 22px; flex-basis: 45px; }
}

/* Repères du hero : avis au-dessus de la signature, alignés à gauche */
.home-hero-copy .hero-proof-stack {
    display: grid;
    width: min(100%, 900px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    margin-inline: auto;
}
.home-hero-copy .hero-google-rating {
    justify-self: center;
    margin: 0;
}
.home-hero-copy .hero-proof-stack > .eyebrow {
    justify-self: center;
    margin: 0;
    text-align: center;
}

.home-hero-cta {
    display: grid;
    width: min(100%, 900px);
    justify-items: center;
    text-align: center;
}
.home-hero-cta .hero-actions { margin-top: 0; }
.home-hero-cta .hero-reassurance { margin-top: 24px; }

/* Flèche du menu Expertises centrée verticalement à droite */
.nav-dropdown > button {
    position: relative;
    justify-content: flex-start;
    padding-right: 28px;
    text-align: left;
}
.nav-dropdown > button span {
    position: absolute;
    top: 50%;
    right: 0;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    margin: 0;
    line-height: 1;
    transform: translateY(-50%);
}

/* Références clients légèrement agrandies sur tous les bandeaux */
.client-marquee-item {
    width: 172px;
    height: 88px;
    flex-basis: 172px;
    padding: 14px 18px;
}
.client-marquee-item img {
    width: 132px;
    max-width: 100%;
    height: 50px;
}

@media (max-width: 700px) {
    .home-hero-copy .hero-proof-stack {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .home-hero-copy .hero-google-rating { justify-self: center; }
    .home-hero-copy .hero-proof-stack > .eyebrow { justify-self: center; max-width: 100%; text-align: center; }
    .client-marquee-item { width: 152px; height: 80px; flex-basis: 152px; padding: 13px 15px; }
    .client-marquee-item img { width: 116px; height: 44px; }
}

/* Avis Google au-dessus de l’intitulé sur toutes les expertises */
.service-hero-copy .service-google-rating {
    display: flex;
    width: max-content;
    margin: 0 0 20px;
}
.service-hero-copy .service-google-rating + .eyebrow {
    display: flex;
    width: max-content;
}

/* Sommaire commun aux pages d’expertise */
#approche,
#methode,
#livrables,
#guide-strategique,
#cadrage,
#resultats,
#faq,
#expertises-complementaires,
#auteur-devsource { scroll-margin-top: 125px; }
.service-toc-section { color: var(--white); background: var(--ink-2); }
.service-toc-grid { display: grid; grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); gap: clamp(45px, 7vw, 110px); }
.service-toc-heading { align-self: start; }
.service-toc-heading h2 { max-width: 560px; margin: 15px 0 20px; font-size: clamp(2.05rem, 3.35vw, 3.8rem); }
.service-toc-heading p { max-width: 500px; margin: 0; color: rgba(255,255,255,.62); }
.service-toc { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.service-toc a {
    display: grid;
    min-height: 112px;
    grid-template-columns: 35px minmax(0,1fr) 22px;
    align-items: center;
    gap: 12px;
    padding: 22px;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
    transition: color .22s ease, background .22s ease;
}
.service-toc a:hover { color: var(--ink); background: var(--accent); }
.service-toc a > span { color: var(--cyan); font-size: .65rem; font-weight: 900; letter-spacing: .1em; }
.service-toc a:hover > span { color: var(--ink-3); }
.service-toc a > strong { font-family: var(--font-display); font-size: 1.06rem; line-height: 1.15; }
.service-toc a > i { justify-self: end; font-style: normal; }

/* Signature éditoriale avant les retours d’expérience */
.service-author-section { background: var(--paper); }
.service-author-card {
    display: grid;
    grid-template-columns: 168px minmax(0,1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 60px);
    padding: clamp(28px, 4vw, 48px);
    color: var(--white);
    border-radius: var(--radius-lg);
    background: var(--ink);
    box-shadow: 0 26px 70px rgba(18,39,43,.15);
}
.service-author-card > img { width: 168px; height: 168px; object-fit: cover; object-position: center 35%; border: 6px solid rgba(171,216,216,.24); border-radius: 24px; }
.service-author-card > div > span { color: var(--cyan); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.service-author-card h2 { margin: 8px 0 1px; color: var(--white); font-size: clamp(2rem, 3.3vw, 3.6rem); }
.service-author-card strong { color: var(--accent); font-size: .82rem; }
.service-author-card p { max-width: 880px; margin: 17px 0; color: rgba(255,255,255,.68); }
.service-author-card a { color: var(--white); font-size: .78rem; font-weight: 900; }
.service-author-card a:hover { color: var(--accent); }

@media (max-width: 900px) {
    .service-toc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .service-toc { grid-template-columns: 1fr; }
    .service-toc a { min-height: 88px; padding: 18px; }
    .service-author-card { grid-template-columns: 1fr; }
    .service-author-card > img { width: 118px; height: 118px; }
}

/* Navigation agence et catalogue des outils */
.site-header.is-scrolled .nav-dropdown > button.is-active { color: var(--ink); }

@media (max-width: 900px) {
    .nav-panel-agency { width: 100%; }
    .nav-agency-list { padding: 12px 0; }
    .nav-agency-list a { padding: 13px 6px; }
    .tools-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 45px; padding: 70px 0 80px; }
    .tools-hero-copy h1 { font-size: clamp(3rem, 11vw, 4.8rem); }
    .tools-hero-board { box-shadow: 14px 14px 0 rgba(0,0,0,.11); }
    .tools-index-inner { grid-template-columns: 1fr; gap: 22px; }
    .tools-index nav { grid-template-columns: repeat(2, 1fr); }
    .tools-index nav a:nth-child(odd) { border-left: 0; }
    .tools-index nav a { border-top: 1px solid var(--line); }
    .tools-category-heading h2 { font-size: clamp(2.6rem, 10vw, 4.4rem); }
    .tools-capability-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .tools-hero-copy .hero-actions { align-items: stretch; flex-direction: column; }
    .tools-hero-copy .button { width: 100%; justify-content: space-between; }
    .tools-hero-metrics { grid-template-columns: 1fr; gap: 0; }
    .tools-hero-metrics > div { display: grid; min-height: auto; grid-template-columns: 105px 1fr; align-items: center; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .tools-hero-metrics > div:last-child { border-bottom: 0; }
    .tools-hero-metrics span { max-width: none; margin-top: 0; }
    .tools-index nav { grid-template-columns: 1fr; }
    .tools-index nav a { border-left: 0; }
    .tool-card { min-height: 300px; padding: 25px; }
    .tool-card-meta { margin-bottom: 40px; }
    .about-hero-proof-row { align-items: flex-start; flex-direction: column; gap: 17px; }
}

/* Flèches des menus rapprochées du libellé sur le header desktop */
@media (min-width: 901px) {
    .main-nav .nav-dropdown > button {
        min-width: 0;
        padding-right: 19px;
    }
    .main-nav .nav-dropdown > button span {
        top: calc(50% - 2px);
        right: 0;
        width: 14px;
        height: 14px;
        font-size: .82em;
    }
}

/* Dernière expertise en pleine largeur et titres longs mieux calibrés */
@media (min-width: 761px) {
    .directory-grid .directory-card:last-child {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
        grid-template-rows: auto auto 1fr auto;
        column-gap: clamp(45px, 7vw, 100px);
    }
    .directory-grid .directory-card:last-child .directory-card-top { grid-column: 1 / -1; margin-bottom: 22px; }
    .directory-grid .directory-card:last-child .directory-card-visual { width: 100%; height: 280px; grid-column: 2; grid-row: 2 / 5; align-self: center; margin: 0; object-position: center; }
    .directory-grid .directory-card:last-child h2 { max-width: 680px; grid-column: 1; grid-row: 2; }
    .directory-grid .directory-card:last-child p { grid-column: 1; grid-row: 3; }
    .directory-grid .directory-card:last-child .text-link { grid-column: 1; grid-row: 4; }
}

.service-cadrage .section-heading h2 { font-size: clamp(2.2rem, 3.45vw, 3.95rem); }

@media (max-width: 1100px) {
    .legal-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .legal-related-grid { grid-template-columns: 1fr; }
    .legal-related-grid a { min-height: 140px; }
}

/* Cartographie éditoriale propre à chaque expertise */
#systeme { scroll-margin-top: 120px; }
.service-blueprint-section {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 90%, rgba(171,216,216,.12), transparent 31%),
        radial-gradient(circle at 88% 12%, rgba(241,253,13,.08), transparent 27%),
        var(--ink-2);
}
.service-blueprint-grid { display: grid; grid-template-columns: minmax(290px,.62fr) minmax(0,1.38fr); align-items: center; gap: clamp(48px,7vw,105px); }
.service-blueprint-copy { align-self: center; }
.service-blueprint-copy h2 { max-width: 620px; margin: 17px 0 23px; font-size: clamp(2.35rem,4.15vw,4.8rem); }
.service-blueprint-copy > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.66); font-size: 1rem; }
.service-term-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 31px; }
.service-term-cloud span { padding: 8px 11px; color: var(--cyan); border: 1px solid rgba(171,216,216,.23); border-radius: 999px; background: rgba(171,216,216,.05); font-size: .66rem; font-weight: 850; }
.service-blueprint-canvas {
    position: relative;
    min-height: 620px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid rgba(171,216,216,.22);
    border-radius: 34px;
    background:
        linear-gradient(rgba(171,216,216,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(171,216,216,.055) 1px, transparent 1px),
        rgba(5,20,22,.36);
    background-size: 45px 45px;
    box-shadow: 25px 27px 0 rgba(171,216,216,.045);
}
.service-blueprint-canvas::before { position: absolute; inset: 13%; content: ""; border: 1px solid rgba(241,253,13,.12); border-radius: 50%; pointer-events: none; }
.service-blueprint-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: flex;
    width: 188px;
    min-height: 188px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--ink);
    border: 1px solid rgba(241,253,13,.65);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 15px rgba(241,253,13,.06), 0 22px 58px rgba(0,0,0,.3);
    text-align: center;
    transform: translate(-50%,-50%);
}
.service-blueprint-core small { margin-bottom: 8px; color: rgba(18,39,43,.62); font-size: .59rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-blueprint-core strong { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.02; }
.service-blueprint-nodes { position: relative; z-index: 1; display: grid; min-height: 548px; grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: repeat(3,1fr); align-content: space-between; gap: 34px 205px; }
.service-blueprint-node { display: grid; min-width: 0; grid-template-columns: 34px 1fr; align-items: start; gap: 11px; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(18,39,43,.88); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.service-blueprint-node > span { display: grid; width: 31px; height: 31px; place-items: center; color: var(--accent); border: 1px solid rgba(241,253,13,.3); border-radius: 50%; font-size: .58rem; font-weight: 900; }
.service-blueprint-node h3 { margin: 1px 0 5px; color: var(--white); font-size: 1rem; }
.service-blueprint-node p { margin: 0; color: rgba(255,255,255,.55); font-size: .69rem; line-height: 1.45; }

.service-blueprint-canvas.is-flow { min-height: 600px; }
.service-blueprint-canvas.is-flow::before { top: 50%; right: 7%; bottom: auto; left: 7%; height: 1px; border: 0; border-top: 1px dashed rgba(241,253,13,.35); border-radius: 0; }
.service-blueprint-canvas.is-flow .service-blueprint-core { top: 50%; width: 174px; min-height: 112px; border-radius: 22px; }
.service-blueprint-canvas.is-flow .service-blueprint-nodes { min-height: 528px; grid-template-columns: repeat(3,minmax(0,1fr)); grid-template-rows: repeat(2,1fr); align-items: start; gap: 190px 18px; }
.service-blueprint-canvas.is-flow .service-blueprint-node { min-height: 130px; grid-template-columns: 1fr; }
.service-blueprint-canvas.is-flow .service-blueprint-node:nth-child(n+4) { align-self: end; }

.service-blueprint-canvas.is-stack { min-height: 610px; }
.service-blueprint-canvas.is-stack::before { top: 10%; right: 50%; bottom: 10%; left: auto; width: 1px; border: 0; border-left: 1px dashed rgba(241,253,13,.32); border-radius: 0; }
.service-blueprint-canvas.is-stack .service-blueprint-core { top: auto; bottom: 35px; left: 50%; width: 250px; min-height: 96px; border-radius: 20px; transform: translateX(-50%); }
.service-blueprint-canvas.is-stack .service-blueprint-nodes { min-height: 430px; grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: repeat(3,1fr); gap: 16px 90px; }
.service-blueprint-canvas.is-stack .service-blueprint-node { min-height: 112px; }

@media (max-width: 1050px) {
    .service-blueprint-grid { grid-template-columns: 1fr; }
    .service-blueprint-copy { max-width: 760px; }
}
@media (max-width: 760px) {
    .service-blueprint-canvas,
    .service-blueprint-canvas.is-flow,
    .service-blueprint-canvas.is-stack { min-height: 0; padding: 22px; border-radius: 25px; box-shadow: 12px 14px 0 rgba(171,216,216,.04); }
    .service-blueprint-canvas::before { display: none; }
    .service-blueprint-core,
    .service-blueprint-canvas.is-flow .service-blueprint-core,
    .service-blueprint-canvas.is-stack .service-blueprint-core { position: static; width: 100%; min-height: 104px; margin-bottom: 18px; border-radius: 18px; transform: none; }
    .service-blueprint-nodes,
    .service-blueprint-canvas.is-flow .service-blueprint-nodes,
    .service-blueprint-canvas.is-stack .service-blueprint-nodes { min-height: 0; grid-template-columns: 1fr; grid-template-rows: none; gap: 10px; }
    .service-blueprint-canvas.is-flow .service-blueprint-node,
    .service-blueprint-canvas.is-stack .service-blueprint-node { min-height: 0; grid-template-columns: 34px 1fr; }
    .service-blueprint-canvas.is-flow .service-blueprint-node:nth-child(n+4) { align-self: auto; }
}

/* Programme d’affiliation */
#fonctionnement,
#candidature { scroll-margin-top: 120px; }
.affiliation-hero { isolation: isolate; }
.affiliation-hero::after {
    position: absolute;
    z-index: -1;
    top: -180px;
    right: -110px;
    width: 720px;
    height: 720px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle at 42% 42%, rgba(241,253,13,.19), rgba(171,216,216,.1) 32%, transparent 68%);
}
.affiliation-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 690px;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, .76fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
    padding: clamp(62px, 7vw, 100px) 0 clamp(80px, 9vw, 130px);
}
.affiliation-hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.affiliation-hero-copy h1 { max-width: 830px; margin: 0 0 28px; font-size: clamp(3.7rem, 6.35vw, 7rem); }
.affiliation-title-outline {
    display: inline-block;
    color: rgba(18,39,43,.5);
    -webkit-text-stroke: 2px var(--accent);
    paint-order: stroke fill;
    text-shadow: 3px 3px 0 rgba(241,253,13,.18), 7px 7px 0 rgba(171,216,216,.08);
}
.affiliation-hero-copy .hero-actions { display: flex; width: 100%; flex-wrap: wrap; justify-content: flex-start; align-self: flex-start; gap: 13px; margin-top: 34px; }
.affiliation-hero-points { display: flex; flex-wrap: wrap; gap: 12px 25px; padding: 0; margin: 34px 0 0; list-style: none; color: rgba(255,255,255,.68); font-size: .76rem; font-weight: 700; }
.affiliation-hero-points li::before { margin-right: 8px; color: var(--accent); content: "✓"; }
.affiliation-commission-card {
    position: relative;
    min-height: 510px;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
    box-shadow: 32px 34px 0 rgba(171,216,216,.08), 0 38px 90px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
}
.affiliation-commission-card::before { position: absolute; top: 105px; right: -90px; width: 270px; height: 270px; content: ""; border: 38px solid rgba(241,253,13,.15); border-radius: 50%; }
.commission-card-top { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.15); color: var(--cyan); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.commission-card-top i { color: rgba(255,255,255,.42); font-style: normal; }
.commission-value { position: relative; z-index: 1; display: flex; align-items: flex-start; margin: 55px 0 0; color: var(--accent); font-family: var(--font-display); letter-spacing: -.09em; line-height: .72; }
.commission-value strong { font-size: clamp(7.2rem, 12vw, 10.5rem); }
.commission-value span { margin: 9px 0 0 6px; font-size: clamp(2.8rem, 5vw, 4.5rem); }
.affiliation-commission-card > p { position: relative; z-index: 1; margin: 24px 0 42px; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; }
.commission-flow { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: rgba(255,255,255,.6); background: rgba(5,20,22,.3); font-size: .62rem; text-align: center; }
.commission-flow i { color: var(--cyan); font-style: normal; }
.commission-flow b { color: var(--accent); }
.affiliation-commission-card > small { position: relative; z-index: 1; display: block; margin-top: 21px; color: rgba(255,255,255,.5); font-size: .67rem; line-height: 1.5; }

.affiliation-intro { background: var(--white); }
.affiliation-intro-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(340px, .72fr); align-items: start; gap: clamp(60px, 10vw, 150px); }
.affiliation-intro-grid h2 { max-width: 850px; margin: 0; }
.affiliation-intro-grid > div:last-child { padding-top: 54px; color: var(--muted); font-size: 1.07rem; }
.affiliation-intro-grid > div:last-child p:last-child { margin-bottom: 0; }
.affiliation-process .process-heading .button { margin-top: 22px; }
.affiliation-service-grid .capability-card { display: flex; min-height: 330px; flex-direction: column; }
.affiliation-service-grid .capability-card p { margin-top: auto; }
.affiliation-service-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }
.affiliation-service-links > span { margin-right: auto; color: var(--muted); }
.affiliation-service-links a { font-weight: 850; border-bottom: 1px solid var(--ink); }
.affiliation-service-links a:hover { color: #596600; border-color: #596600; }

.affiliation-rules-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr); gap: clamp(60px, 9vw, 130px); }
.affiliation-rules-grid > div:first-child { position: sticky; top: 145px; align-self: start; }
.affiliation-rules-grid > div:first-child p { max-width: 550px; color: var(--ink-3); font-size: 1.04rem; }
.affiliation-rule-list { border-top: 1px solid rgba(18,39,43,.28); }
.affiliation-rule-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 29px 0; border-bottom: 1px solid rgba(18,39,43,.28); }
.affiliation-rule-list article > span { color: var(--ink-3); font-size: .68rem; font-weight: 900; }
.affiliation-rule-list h3 { margin-bottom: 8px; font-size: clamp(1.35rem, 2vw, 2rem); }
.affiliation-rule-list p { max-width: 680px; margin: 0; color: var(--ink-3); }

.affiliation-audiences { background: var(--paper); }
.affiliation-audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.affiliation-audience-grid article { display: flex; min-height: 320px; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: color .22s ease, background .22s ease, transform .22s ease; }
.affiliation-audience-grid article:hover { color: var(--ink); background: var(--accent); transform: translateY(-4px); }
.affiliation-audience-grid article > span { color: var(--muted); font-size: .67rem; font-weight: 900; }
.affiliation-audience-grid h3 { margin: auto 0 15px; font-size: clamp(1.4rem, 2.1vw, 2rem); }
.affiliation-audience-grid p { margin: 0; color: var(--muted); font-size: .88rem; }
.affiliation-audience-grid article:hover p { color: var(--ink-3); }

.affiliation-apply { color: var(--white); background: var(--ink-2); }
.affiliation-apply::before { position: absolute; bottom: 0; left: 0; width: 52%; height: 76%; content: ""; opacity: .15; background: radial-gradient(circle at 20% 100%, var(--accent), transparent 58%); }
.affiliation-apply-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .72fr) minmax(540px, 1.1fr); align-items: start; gap: clamp(55px, 8vw, 110px); }
.affiliation-apply-copy { position: sticky; top: 145px; }
.affiliation-apply-copy h2 { max-width: 620px; }
.affiliation-apply-copy p { max-width: 570px; color: rgba(255,255,255,.66); font-size: 1.06rem; }
.affiliation-contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 36px; }
.affiliation-contact-details a { color: var(--white); font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.32); }
.affiliation-contact-details a:hover { color: var(--accent); border-color: var(--accent); }
.affiliation-apply .contact-form-panel { padding: clamp(27px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--white); }

@media (max-width: 1050px) {
    .affiliation-hero-grid { grid-template-columns: 1fr 420px; gap: 45px; }
    .affiliation-audience-grid { grid-template-columns: repeat(2, 1fr); }
    .affiliation-apply-grid { grid-template-columns: 1fr 1.25fr; }
}

@media (max-width: 900px) {
    .affiliation-hero-grid,
    .affiliation-intro-grid,
    .affiliation-rules-grid,
    .affiliation-apply-grid { grid-template-columns: 1fr; }
    .affiliation-hero-grid { min-height: 0; }
    .affiliation-commission-card { width: min(100%, 580px); min-height: 470px; }
    .affiliation-intro-grid > div:last-child { padding-top: 0; }
    .affiliation-rules-grid > div:first-child,
    .affiliation-apply-copy { position: static; }
}

@media (max-width: 640px) {
    .affiliation-hero-grid { width: min(calc(100% - 34px), var(--container)); padding-top: 44px; }
    .affiliation-hero-copy h1 { font-size: clamp(3.15rem, 15vw, 4.75rem); }
    .affiliation-hero-copy .hero-actions { align-items: stretch; flex-direction: column; }
    .affiliation-hero-copy .button { width: 100%; justify-content: space-between; }
    .affiliation-hero-points { flex-direction: column; }
    .affiliation-commission-card { min-height: 430px; padding: 25px; border-radius: 24px; box-shadow: 14px 16px 0 rgba(171,216,216,.07); }
    .commission-value { margin-top: 46px; }
    .commission-value strong { font-size: 7rem; }
    .commission-flow { grid-template-columns: 1fr; gap: 3px; }
    .commission-flow i { transform: rotate(90deg); }
    .affiliation-commission-card > small { display: none; }
    .affiliation-service-links { align-items: flex-start; flex-direction: column; }
    .affiliation-audience-grid { grid-template-columns: 1fr; }
    .affiliation-audience-grid article { min-height: 260px; }
    .affiliation-rule-list article { grid-template-columns: 32px 1fr; gap: 14px; }
    .affiliation-apply .contact-form-panel { padding: 24px 18px; border-radius: 23px; }
}

/* Contact direct flottant */
.floating-contact {
    position: fixed;
    z-index: 75;
    bottom: 24px;
    left: 24px;
}
.floating-contact-panel {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 0;
    width: min(370px, calc(100vw - 32px));
    padding: 18px;
    color: var(--white);
    border: 1px solid rgba(171,216,216,.28);
    border-radius: 22px;
    background: rgba(18,39,43,.98);
    box-shadow: 0 24px 70px rgba(5,20,22,.34);
    backdrop-filter: blur(18px);
}
.floating-contact-heading { padding: 4px 4px 16px; border-bottom: 1px solid rgba(255,255,255,.13); }
.floating-contact-heading span { display: block; margin-bottom: 5px; color: var(--cyan); font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.floating-contact-heading strong { display: block; font-family: var(--font-display); font-size: 1.22rem; line-height: 1.05; }
.floating-contact-panel > a { display: grid; gap: 2px; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.1); }
.floating-contact-panel > a:last-child { padding-bottom: 5px; border-bottom: 0; }
.floating-contact-panel > a > span { color: rgba(255,255,255,.5); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.floating-contact-panel > a > strong { display: inline-flex; align-items: center; gap: 9px; width: max-content; max-width: 100%; font-size: .93rem; overflow-wrap: anywhere; }
.floating-contact-panel > a:hover > strong { color: var(--accent); }
.floating-contact-panel img { width: 22px; height: 22px; object-fit: contain; }
.floating-contact-toggle {
    display: flex;
    min-width: 260px;
    min-height: 66px;
    align-items: center;
    gap: 12px;
    padding: 7px 10px 7px 7px;
    color: var(--white);
    border: 1px solid rgba(171,216,216,.3);
    border-radius: 21px;
    background: rgba(18,39,43,.96);
    box-shadow: 0 16px 48px rgba(5,20,22,.25);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: border-color .22s ease, transform .22s ease, background .22s ease;
}
.floating-contact-toggle:hover,
.floating-contact.is-open .floating-contact-toggle { border-color: var(--accent); background: var(--ink); transform: translateY(-2px); }
.floating-contact-number { display: grid; width: 52px; height: 52px; place-items: center; flex: 0 0 52px; color: var(--ink); border-radius: 15px; background: var(--accent); font-family: var(--font-display); font-size: 1.38rem; font-weight: 950; line-height: 1; animation: contact-number-nudge 9s ease-in-out infinite; }
.floating-contact-copy { display: grid; flex: 1; text-align: left; line-height: 1.05; }
.floating-contact-copy small { margin-bottom: 4px; color: rgba(255,255,255,.54); font-size: .62rem; font-weight: 700; }
.floating-contact-copy strong { font-family: var(--font-display); font-size: .93rem; }
.floating-contact-plus { display: grid; width: 28px; height: 28px; place-items: center; color: var(--cyan); font-size: 1.25rem; transition: color .2s ease, transform .2s ease; }
.floating-contact.is-open .floating-contact-plus { color: var(--accent); transform: rotate(45deg); }

@keyframes contact-number-nudge {
    0%, 69%, 77%, 100% { transform: translateX(0) rotate(0); }
    71% { transform: translateX(-2px) rotate(-4deg); }
    73% { transform: translateX(2px) rotate(4deg); }
    75% { transform: translateX(-1px) rotate(-2deg); }
}

@media (max-width: 600px) {
    .floating-contact { bottom: 14px; left: 14px; }
    .floating-contact-toggle { min-width: 60px; min-height: 60px; padding: 4px; border-radius: 18px; }
    .floating-contact-number { width: 50px; height: 50px; flex-basis: 50px; border-radius: 14px; font-size: 1.25rem; }
    .floating-contact-copy,
    .floating-contact-plus { display: none; }
    .floating-contact-panel { bottom: calc(100% + 11px); width: min(350px, calc(100vw - 28px)); padding: 16px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .floating-contact-number { animation: none; }
}

/* Réalisations et maillage propres à chaque expertise */
.service-showcase-section { background: var(--white); }
.service-showcase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-showcase-card { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: 0 18px 55px rgba(18,39,43,.07); transition: transform .25s ease, box-shadow .25s ease; }
.service-showcase-card:hover { box-shadow: 0 26px 70px rgba(18,39,43,.13); transform: translateY(-7px); }
.service-showcase-visual { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.service-showcase-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 48%, rgba(7,29,32,.64)); pointer-events: none; }
.service-showcase-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.service-showcase-card:hover .service-showcase-visual img { transform: scale(1.045); }
.service-showcase-visual > span { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 8px 11px; color: var(--ink); border-radius: 999px; background: var(--accent); font-size: .63rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.service-showcase-copy { display: flex; min-height: 275px; flex-direction: column; padding: clamp(22px, 2.6vw, 32px); }
.service-showcase-copy h3 { margin: 0 0 15px; font-size: clamp(1.7rem, 2.5vw, 2.55rem); }
.service-showcase-copy h3 a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.service-showcase-copy p { margin: 0 0 26px; color: var(--muted); }
.service-showcase-copy .text-link { align-self: flex-start; margin-top: auto; }
.service-context-links { display: grid; grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr); gap: clamp(32px, 5vw, 74px); margin-top: 38px; padding: clamp(30px, 5vw, 60px); color: var(--white); border-radius: 30px; background: var(--ink-2); }
.service-context-links h3 { max-width: 480px; margin: 15px 0 16px; font-size: clamp(2rem, 3.4vw, 3.55rem); }
.service-context-links > div > p { max-width: 470px; margin: 0; color: rgba(255,255,255,.62); }
.service-context-links nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-self: stretch; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.service-context-links nav a { position: relative; display: flex; min-height: 142px; flex-direction: column; padding: 22px 48px 22px 22px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: color .22s ease, background .22s ease; }
.service-context-links nav a:hover { color: var(--ink); background: var(--accent); }
.service-context-links nav strong { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.05; }
.service-context-links nav small { margin-top: 10px; color: rgba(255,255,255,.58); font-size: .75rem; line-height: 1.45; }
.service-context-links nav a:hover small { color: rgba(18,39,43,.72); }
.service-context-links nav span { position: absolute; top: 20px; right: 20px; font-size: 1.15rem; }

@media (max-width: 960px) {
    .service-showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-showcase-card:last-child { grid-column: 1 / -1; }
    .service-context-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .service-showcase-grid { grid-template-columns: 1fr; }
    .service-showcase-card:last-child { grid-column: auto; }
    .service-showcase-copy { min-height: 245px; }
    .service-context-links { padding: 25px; border-radius: 24px; }
    .service-context-links nav { grid-template-columns: 1fr; }
    .service-context-links nav a { min-height: 122px; }
}

/* Historical expertise pages restored on their original URLs */
.legacy-hero { position: relative; overflow: hidden; padding: clamp(62px, 8vw, 115px) 0; color: var(--white); background: var(--ink-2); }
.legacy-hero::before { position: absolute; inset: 0; content: ""; opacity: .35; background-image: linear-gradient(rgba(171,216,216,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(171,216,216,.12) 1px, transparent 1px); background-size: 74px 74px; }
.legacy-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .76fr); align-items: center; gap: clamp(55px, 8vw, 125px); }
.legacy-hero-copy h1 { max-width: 840px; margin: 26px 0 25px; font-size: clamp(3.5rem, 7.2vw, 7.4rem); line-height: .88; letter-spacing: -.065em; }
.legacy-hero-copy .hero-lead { max-width: 750px; }
.legacy-hero-copy .service-google-rating { margin: 30px 0 28px; }
.legacy-role-board { position: relative; min-height: 510px; padding: clamp(28px, 4vw, 46px); overflow: hidden; border: 1px solid rgba(171,216,216,.3); border-radius: 34px; background: rgba(7,29,32,.6); box-shadow: 25px 28px 0 rgba(171,216,216,.07); }
.legacy-board-head { display: flex; justify-content: space-between; padding-bottom: 23px; color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid rgba(171,216,216,.24); }
.legacy-role-board > strong { display: block; max-width: 540px; margin: 45px 0 34px; font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 4.4rem); line-height: .93; letter-spacing: -.055em; }
.legacy-board-orbit { position: relative; display: grid; min-height: 185px; grid-template-columns: 1fr 1fr; place-content: center; gap: 30px 90px; padding: 25px 35px; border: 1px solid rgba(171,216,216,.25); border-radius: 50%; }
.legacy-board-orbit::after { position: absolute; inset: 25px 58px; content: ""; border: 1px dashed rgba(224,255,0,.48); border-radius: 50%; transform: rotate(-9deg); }
.legacy-board-orbit span { position: relative; z-index: 2; color: rgba(255,255,255,.72); font-size: .74rem; font-weight: 800; text-align: center; }
.legacy-board-orbit i { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 68px; height: 68px; place-items: center; color: var(--ink); font-style: normal; font-weight: 950; border-radius: 50%; background: var(--accent); transform: translate(-50%, -50%); }
.legacy-role-board > p { margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: .86rem; }
.legacy-toc-section { position: sticky; z-index: 20; top: var(--header-height, 96px); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.legacy-toc { display: flex; min-height: 72px; align-items: center; gap: 36px; }
.legacy-toc > span { color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.legacy-toc nav { display: flex; flex-wrap: wrap; gap: 11px 28px; }
.legacy-toc a { font-weight: 800; border-bottom: 1px solid transparent; }
.legacy-toc a:hover { border-color: var(--ink); }
.legacy-intro-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(440px, 1fr); gap: clamp(55px, 9vw, 135px); }
.legacy-intro-grid h2 { max-width: 730px; }
.legacy-intro-grid > div:last-child { padding-top: 42px; color: var(--muted); font-size: 1.05rem; }
.legacy-pillars .capability-card { min-height: 350px; }
.legacy-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(18,39,43,.22); border-left: 1px solid rgba(18,39,43,.22); }
.legacy-related-grid > a { position: relative; display: flex; min-height: 210px; flex-direction: column; justify-content: flex-end; padding: 28px; border-right: 1px solid rgba(18,39,43,.22); border-bottom: 1px solid rgba(18,39,43,.22); background: rgba(255,255,255,.28); transition: color .22s ease, background .22s ease, transform .22s ease; }
.legacy-related-grid > a:hover { background: var(--white); transform: translateY(-4px); }
.legacy-related-grid span { margin-bottom: auto; color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.legacy-related-grid strong { max-width: 290px; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1; }
.legacy-related-grid i { position: absolute; right: 26px; bottom: 25px; font-style: normal; }
.legacy-context-links { margin-top: 35px; padding-top: 28px; border-top: 1px solid rgba(18,39,43,.22); }
.legacy-context-links p { max-width: 1040px; margin: 0; color: var(--ink-3); }
.legacy-context-links a { font-weight: 850; border-bottom: 1px solid var(--ink); }

.legacy-directory-section { background: var(--white); }
.legacy-directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.legacy-directory-card { display: flex; min-height: 325px; flex-direction: column; padding: clamp(24px, 3vw, 38px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.legacy-directory-card:nth-child(3n+2) { background: var(--cyan); }
.legacy-directory-card > span { color: var(--muted); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.legacy-directory-card h3 { margin: auto 0 18px; font-size: clamp(1.65rem, 2.4vw, 2.65rem); }
.legacy-directory-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.legacy-directory-card p { margin: 0 0 24px; color: var(--muted); font-size: .9rem; }
.legacy-directory-card .text-link { align-self: flex-start; }

@media (max-width: 1000px) {
    .legacy-hero-grid { grid-template-columns: 1fr; }
    .legacy-role-board { width: min(100%, 680px); min-height: 460px; }
    .legacy-intro-grid { grid-template-columns: 1fr; }
    .legacy-intro-grid > div:last-child { padding-top: 0; }
    .legacy-related-grid,
    .legacy-directory-grid { grid-template-columns: repeat(2, 1fr); }
    .legacy-directory-card:nth-child(3n+2) { background: var(--paper); }
    .legacy-directory-card:nth-child(even) { background: var(--cyan); }
}

@media (max-width: 680px) {
    .legacy-hero { padding-top: 40px; }
    .legacy-hero-copy h1 { font-size: clamp(3.1rem, 15vw, 5.3rem); }
    .legacy-role-board { min-height: 420px; padding: 24px; border-radius: 25px; box-shadow: 12px 14px 0 rgba(171,216,216,.07); }
    .legacy-board-orbit { gap: 28px 42px; padding-inline: 15px; }
    .legacy-toc-section { position: relative; top: auto; }
    .legacy-toc { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 18px; padding-bottom: 18px; }
    .legacy-related-grid,
    .legacy-directory-grid { grid-template-columns: 1fr; }
    .legacy-directory-card,
    .legacy-directory-card:nth-child(even) { min-height: 285px; background: var(--paper); }
    .legacy-directory-card:nth-child(odd) { background: var(--cyan); }
}

/* Ajustements tactiles demandés sur la page d’accueil et le menu mobile */
@media (max-width: 900px) {
    .home-page .site-announcement .announcement-inner > span,
    .home-page .hero-proof-stack > .eyebrow { display: none !important; }

    .main-nav > a:not(.nav-cta):hover,
    .main-nav > a:not(.nav-cta):focus-visible,
    .main-nav > a:not(.nav-cta).is-active,
    .nav-dropdown > button:hover,
    .nav-dropdown > button:focus-visible,
    .nav-dropdown > button.is-active {
        color: var(--ink) !important;
        border-radius: 10px;
        background: var(--cyan);
    }
}

@media (max-width: 700px) {
    .home-page .hero-proof-stack { justify-items: center; }
    .home-page .hero-google-rating { justify-self: center; margin-inline: auto; }
    .home-page .service-tags { display: none; }
}

/* Hubs SEO, IA et création + maillage contextuel */
.nav-hub-links { display: grid; gap: 7px; margin: 18px 0; padding: 15px 0; border-top: 1px solid rgba(18,39,43,.14); border-bottom: 1px solid rgba(18,39,43,.14); }
.nav-hub-links a { color: var(--ink-3); font-size: .74rem; font-weight: 850; }
.nav-hub-links a:hover { color: #596600; }
.local-hub-hero { position: relative; overflow: hidden; padding: clamp(65px, 8vw, 118px) 0; color: var(--white); background: var(--ink-2); }
.local-hub-hero::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(171,216,216,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(171,216,216,.15) 1px, transparent 1px); background-size: 70px 70px; }
.local-hub-hero .container { position: relative; z-index: 1; }
.local-hub-hero h1 { max-width: 790px; margin: 25px 0 0; font-size: clamp(3.6rem, 7vw, 7rem); line-height: .9; }
.local-hub-hero .service-google-rating { margin: 0 0 28px; }
.local-hub-hero .hero-actions { justify-content: flex-start; }
.local-hub-metrics { color: var(--white); border-top: 1px solid rgba(255,255,255,.12); background: var(--ink); }
.local-hub-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.local-hub-metrics article { display: grid; min-height: 150px; align-content: center; padding: 25px 34px; border-right: 1px solid rgba(255,255,255,.13); }
.local-hub-metrics article:last-child { border-right: 0; }
.local-hub-metrics strong { color: var(--accent); font-family: var(--font-display); font-size: clamp(2.7rem, 5vw, 4.8rem); line-height: 1; }
.local-hub-metrics span { margin-top: 9px; color: rgba(255,255,255,.65); font-size: .82rem; font-weight: 750; }
.hub-context-line, .local-context-navigation { margin: 36px 0 0; padding-top: 25px; color: var(--ink-3); border-top: 1px solid var(--line); }
.hub-context-line a, .local-context-navigation a { font-weight: 850; border-bottom: 1px solid var(--ink); }
.hub-directory { background: var(--paper); }
.hub-directory-group { margin-top: 58px; }
.hub-directory-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 25px; margin-bottom: 17px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.hub-directory-heading h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.8rem); }
.hub-directory-heading span { color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hub-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hub-link-grid > a { position: relative; display: flex; min-height: 205px; flex-direction: column; padding: 25px 48px 25px 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: background .22s ease, transform .22s ease; }
.hub-link-grid > a:hover { background: var(--cyan-soft); transform: translateY(-3px); }
.hub-link-grid span { margin-bottom: auto; color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hub-link-grid strong { margin: 28px 0 10px; font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.02; }
.hub-link-grid small { color: var(--muted); line-height: 1.45; }
.hub-link-grid i { position: absolute; right: 22px; bottom: 23px; font-style: normal; }
.legacy-related-grid small { max-width: 290px; margin-top: 12px; padding-right: 25px; color: var(--muted); line-height: 1.45; }
.hub-cross-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(18,39,43,.22); }
.hub-cross-links a { padding: 10px 14px; border: 1px solid rgba(18,39,43,.24); border-radius: 999px; font-size: .78rem; font-weight: 850; }
.hub-cross-links a:hover { background: var(--white); }
.local-related-directory .local-neighbour-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.local-related-directory .capability-card { min-height: 315px; }
.local-related-directory .capability-card .text-link { align-self: flex-start; margin-top: auto; }
.contextual-resource-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contextual-resource-list > a { position: relative; display: flex; min-height: 190px; flex-direction: column; padding: 24px 45px 24px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: background .22s ease; }
.contextual-resource-list > a:hover { background: var(--cyan-soft); }
.contextual-resource-list .contextual-resource-hub { color: var(--white); background: var(--ink); }
.contextual-resource-list .contextual-resource-hub:hover { color: var(--ink); background: var(--accent); }
.contextual-resource-list span { margin-bottom: auto; color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contextual-resource-list strong { margin: 25px 0 9px; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.05; }
.contextual-resource-list small { color: var(--muted); line-height: 1.4; }
.contextual-resource-list i { position: absolute; right: 21px; bottom: 22px; font-style: normal; }
.article-cluster-bridge { margin: 32px 0 0; padding: 24px 27px; border-left: 5px solid var(--accent); border-radius: 0 18px 18px 0; background: var(--cyan-soft); }
.article-cluster-bridge > span { display: block; margin-bottom: 8px; font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.article-cluster-bridge p { margin: 0 !important; }
.article-cluster-bridge a { font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-cluster-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.blog-cluster-card { display: flex; min-height: 460px; flex-direction: column; padding: clamp(26px, 4vw, 43px); border: 1px solid rgba(18,39,43,.2); border-radius: 28px; background: rgba(255,255,255,.46); }
.blog-cluster-card > span { color: var(--ink-3); font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.blog-cluster-card h3 { margin: 30px 0 15px; font-size: clamp(2rem, 3.4vw, 3.5rem); }
.blog-cluster-card > p { color: var(--ink-3); }
.blog-cluster-card ul { display: grid; gap: 0; padding: 0; margin: 12px 0 28px; list-style: none; border-top: 1px solid rgba(18,39,43,.2); }
.blog-cluster-card li a { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; font-weight: 750; border-bottom: 1px solid rgba(18,39,43,.2); }
.blog-cluster-card li a:hover { color: #596600; }
.blog-cluster-card > .text-link { align-self: flex-start; margin-top: auto; }

@media (max-width: 1000px) {
    .hub-link-grid, .contextual-resource-list, .local-related-directory .local-neighbour-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
    .local-hub-metrics-grid, .blog-cluster-grid { grid-template-columns: 1fr; }
    .local-hub-metrics article { min-height: 115px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .local-hub-metrics article:last-child { border-bottom: 0; }
    .hub-link-grid, .contextual-resource-list, .local-related-directory .local-neighbour-grid { grid-template-columns: 1fr; }
    .hub-link-grid > a, .contextual-resource-list > a { min-height: 175px; }
    .blog-cluster-card { min-height: 0; border-radius: 22px; }
}

.hub-editorial-links,
.service-local-links {
    max-width: 1050px;
    margin: 18px 0 0;
    color: var(--ink-3);
    line-height: 1.75;
}

.hub-editorial-links a,
.service-local-links a {
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-business-bridge {
    margin: 30px 0;
    padding: 22px 25px;
    color: var(--ink-3);
    border: 1px solid rgba(18, 39, 43, .16);
    border-radius: 18px;
    background: rgba(171, 216, 216, .3);
}

.article-business-bridge a {
    color: var(--ink);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-swiss-context {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(18, 39, 43, .14);
    border-radius: 28px;
    background: linear-gradient(145deg, #fff 0 62%, #eef7f6 100%);
}

.article-swiss-context::after {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    content: "+";
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 11px;
    background: #d72638;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.article-swiss-context > h2,
.article-swiss-context > p {
    max-width: 760px;
}

.article-swiss-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.article-swiss-grid article {
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(18, 39, 43, .13);
    border-radius: 20px;
    background: rgba(255, 255, 255, .84);
}

.article-swiss-grid span {
    display: inline-flex;
    margin-bottom: 42px;
    color: #a71929;
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.article-swiss-grid h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.article-swiss-grid p {
    margin: 0;
    color: var(--ink-3);
    font-size: .94rem;
    line-height: 1.62;
}

@media (max-width: 850px) {
    .article-swiss-grid { grid-template-columns: 1fr; }
    .article-swiss-grid article { min-height: 0; }
    .article-swiss-grid span { margin-bottom: 20px; }
}
