:root {
  --ink: #161836;
  --ink-soft: #4f5b70;
  --blue-950: #161836;
  --blue-900: #0d274d;
  --blue-800: #144b70;
  --blue-700: #1a6792;
  --cyan: #10b7e3;
  --cyan-dark: #007fa8;
  --cyan-soft: #e8f8fd;
  --sky: #f3fafe;
  --white: #ffffff;
  --line: #d9eaf2;
  --shadow-sm: 0 12px 34px rgba(13, 39, 77, .08);
  --shadow-lg: 0 28px 80px rgba(13, 39, 77, .16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -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, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(16, 183, 227, .45); outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; color: var(--white); background: var(--blue-950); border-radius: 10px; }
.skip-link:focus { top: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue-700); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--cyan); }
.section { padding: 104px 0; }
.section--soft {
  background:
    radial-gradient(circle at 8% 18%, rgba(16,183,227,.08), transparent 25rem),
    radial-gradient(circle at 94% 82%, rgba(20,75,112,.055), transparent 28rem),
    var(--sky);
}
.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(16,183,227,.14), transparent 30rem),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
}
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head > .eyebrow + h2 { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
h1, h2, h3 { margin: 0; color: var(--blue-950); font-family: "Avenir Next", Avenir, Inter, "Segoe UI", Arial, sans-serif; font-weight: 850; line-height: 1.04; letter-spacing: -.045em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: #83e0f4; }
.section-head p { max-width: 670px; margin: 20px 0 0; color: var(--ink-soft); font-size: 1.12rem; }
.section--dark .section-head p { color: #c9d8e8; }
.lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.accent { color: var(--cyan); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: var(--blue-700); box-shadow: 0 12px 28px rgba(26, 103, 146, .22); }
.btn--primary:hover { background: var(--blue-800); box-shadow: 0 16px 34px rgba(26, 103, 146, .28); }
.btn--secondary { color: var(--blue-900); background: var(--white); border-color: #c7dce8; }
.btn--secondary:hover { border-color: var(--cyan); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.arrow { font-size: 1.25em; line-height: 1; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.92); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .2s ease, border-color .2s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 26px rgba(18, 55, 88, .07); }
.nav { display: flex; min-height: 150px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; }
.brand img { width: 140px; height: 140px; object-fit: contain; }
.site-header .brand-copy { display: none; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--blue-950); font-size: 1.02rem; letter-spacing: .06em; }
.brand-copy small { margin-top: 5px; color: var(--blue-700); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.btn) { position: relative; color: #31465d; font-size: .94rem; font-weight: 700; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.nav-links > a:not(.btn):hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-950); background: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 2px; background: currentColor; transition: .2s ease; }
.menu-toggle span { position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 8% 10%, rgba(16,183,227,.11), transparent 23rem),
    radial-gradient(circle at 90% 86%, rgba(20,75,112,.08), transparent 27rem),
    linear-gradient(145deg, #ffffff 0%, #f3fbfe 62%, #e5f6fb 100%);
}
.hero::before { content: ""; position: absolute; width: 700px; height: 700px; right: -310px; top: -360px; border: 1px solid rgba(16,183,227,.18); border-radius: 50%; box-shadow: 0 0 0 90px rgba(16,183,227,.04), 0 0 0 180px rgba(16,183,227,.025); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr); gap: clamp(42px, 5vw, 70px); align-items: center; }
.hero-copy { max-width: 650px; }
.hero h1 { margin-top: 18px; font-size: clamp(2.8rem, 5.4vw, 5.25rem); }
.hero .hero-title--descriptive { font-size: clamp(2.2rem, 3vw, 3rem); line-height: 1.08; }
.hero .lead { max-width: 620px; margin: 25px 0 0; }
.audiences { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.audiences span { padding: 6px 12px; color: var(--blue-800); background: rgba(255,255,255,.76); border: 1px solid rgba(26,103,146,.12); border-radius: 999px; font-size: .82rem; font-weight: 750; }
.hero-visual { position: relative; min-height: 560px; overflow: hidden; background: var(--white); border: 1px solid rgba(26,103,146,.12); border-radius: 42px 42px 42px 120px; box-shadow: 0 32px 80px rgba(13,39,77,.18); isolation: isolate; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(5,27,51,.48) 100%); pointer-events: none; }
.hero-visual > img { width: 100%; height: 560px; object-fit: cover; object-position: 22% center; }
.hero-visual-card { position: absolute; z-index: 2; right: 20px; bottom: 62px; width: min(310px, calc(100% - 40px)); padding: 20px 22px; color: var(--white); background: rgba(22,24,54,.9); border: 1px solid rgba(255,255,255,.16); border-radius: 19px; box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.hero-visual-card span { display: block; margin-bottom: 5px; color: #76dff5; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-visual-card strong { display: block; font-size: 1.02rem; line-height: 1.4; }
.hero-location { position: absolute; z-index: 2; right: 24px; bottom: 21px; left: 24px; color: var(--white); font-size: .78rem; font-weight: 750; line-height: 1.35; text-align: right; text-shadow: 0 2px 12px rgba(22,24,54,.7); }
.hero-paths { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; margin-top: 42px; background: rgba(26,103,146,.14); border: 1px solid rgba(26,103,146,.12); border-radius: 22px; box-shadow: var(--shadow-sm); }
.hero-path { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; min-height: 96px; padding: 20px 24px; background: rgba(255,255,255,.9); }
.hero-path > span { color: var(--cyan-dark); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.hero-path strong, .hero-path small { display: block; }
.hero-path strong { color: var(--blue-950); font-size: .94rem; }
.hero-path small { margin-top: 2px; color: var(--ink-soft); font-size: .79rem; line-height: 1.4; }

/* Cards and grids */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .22s ease, border-color .22s ease; }
.problem-card:hover { transform: translateY(-5px); border-color: #afdce9; }
.problem-card:nth-child(2), .problem-card:nth-child(5) { transform: translateY(20px); }
.problem-card:nth-child(2):hover, .problem-card:nth-child(5):hover { transform: translateY(15px); }
.problem-card .icon { margin-bottom: 20px; }
.problem-card h3 { font-size: 1.35rem; }
.problem-card p { margin: 10px 0 0; color: var(--ink-soft); font-size: .95rem; }
.icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--blue-700); background: var(--cyan-soft); border-radius: 15px; }
.icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 312px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -42px; bottom: -45px; border-radius: 50%; background: var(--cyan-soft); transition: transform .3s ease; }
.service-card:hover::after { transform: scale(1.35); }
.service-card h3 { margin-top: 22px; }
.service-card p { color: var(--ink-soft); font-size: .94rem; }
.service-card .card-inline-link { position: relative; z-index: 2; color: var(--blue-700); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.service-card .card-inline-link:hover { color: var(--blue-950); }
.service-grid--goals { grid-template-columns: repeat(3, 1fr); }
.goal-number { display: block; margin-bottom: 18px; color: var(--cyan-dark); font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: 2.1rem; font-weight: 850; }
.goal-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.goal-links a { padding: 7px 10px; color: var(--blue-800); background: var(--cyan-soft); border-radius: 999px; font-size: .8rem; font-weight: 800; }
.button-row--center { justify-content: center; }
.services-overview .section-head { margin-bottom: 36px; }
.services-overview .section-head p { color: #c7d5e1; }
.service-overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-overview-card { display: flex; flex-direction: column; min-height: 255px; padding: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); }
.service-overview-card .service-mini-index { color: #73dff5; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: 1.05rem; font-weight: 850; }
.service-overview-card h3 { margin-top: 14px; color: var(--white); font-size: 1.4rem; }
.service-overview-card p { margin: 16px 0 22px; color: #d5e3ec; font-size: .94rem; line-height: 1.55; }
.service-overview-card .text-link { margin-top: auto; color: #83e0f4; }
.local-strip { padding: 34px 0; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-strip-inner { display: grid; grid-template-columns: minmax(160px, .35fr) minmax(0, 1.65fr); gap: clamp(26px, 5vw, 70px); align-items: center; }
.local-strip h2 { font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.12; }
.local-strip p { max-width: 820px; margin: 10px 0 0; color: var(--ink-soft); }
.recognition {
  background:
    radial-gradient(circle at 92% 12%, rgba(16,183,227,.09), transparent 24rem),
    var(--white);
}
.recognition-heading { display: grid; grid-template-columns: minmax(170px, .38fr) minmax(0, 1.62fr); gap: clamp(26px, 5vw, 70px); align-items: end; margin-bottom: 42px; }
.recognition-heading h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.recognition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.recognition-grid li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; min-height: 104px; padding: 22px 24px; background: var(--sky); border: 1px solid var(--line); border-radius: 18px; }
.recognition-grid li > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: var(--blue-800); border-radius: 50%; font-size: .72rem; font-weight: 900; letter-spacing: .04em; }
.recognition-grid p { margin: 3px 0 0; color: var(--blue-950); font-size: 1.02rem; font-weight: 750; line-height: 1.48; }
.recognition-answer { display: flex; flex-wrap: wrap; gap: 36px; align-items: center; justify-content: space-between; margin-top: 24px; padding: clamp(28px, 4vw, 46px); color: var(--white); background: linear-gradient(135deg, var(--blue-950), var(--blue-900)); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.recognition-answer > div { max-width: 760px; }
.recognition-answer strong { display: block; color: var(--white); font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.18; }
.recognition-answer p { margin: 13px 0 0; color: #d5e3ec; }
.recognition-answer span:not(.arrow) { display: block; margin-top: 18px; color: #83e0f4; font-weight: 850; }
.recognition-answer .btn { flex: 0 0 auto; background: var(--cyan-dark); }
.recognition-answer .btn:hover { background: var(--blue-700); }
.service-grid--directory { margin-top: 28px; grid-template-columns: repeat(2, 1fr); }
.service-grid--directory .service-card { display: flex; flex-direction: column; align-items: flex-start; min-height: 310px; }
.service-grid--directory .service-index { margin-bottom: 18px; font-size: 2.5rem; }
.service-grid--directory h2 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); }
.service-grid--directory .text-link { margin-top: auto; padding-top: 20px; }
.text-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--blue-700); font-weight: 850; }
.trust-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.trust-visual { position: relative; min-height: 520px; }
.trust-portrait { width: 78%; height: 480px; object-fit: cover; object-position: center top; border-radius: 160px 160px 32px 32px; box-shadow: var(--shadow-lg); }
.trust-portrait--cutout { padding: 18px 18px 0; object-fit: contain; object-position: center bottom; background: radial-gradient(circle at 50% 24%, #fff 0%, #e7f8fc 58%, #cceaf3 100%); }
.trust-badge { position: absolute; right: 0; bottom: 30px; max-width: 220px; padding: 22px; color: var(--white); background: var(--blue-900); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.trust-badge strong { display: block; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-weight: 850; font-size: 2.4rem; line-height: 1; }
.trust-badge span { display: block; margin-top: 7px; color: #c6d8e7; font-size: .87rem; }
.trust-content h2 { margin-top: 14px; }
.warm-result { margin: 24px 0 0; padding: 18px 20px; color: var(--blue-900); background: var(--cyan-soft); border-left: 4px solid var(--cyan-dark); border-radius: 0 14px 14px 0; font-weight: 850; line-height: 1.5; }
.check-list { display: grid; gap: 17px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--ink-soft); }
.check-list li::before { content: "✓"; display: grid; width: 24px; height: 24px; place-items: center; color: var(--white); background: var(--cyan-dark); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.number { padding: 30px 26px; text-align: center; }
.number + .number { border-left: 1px solid var(--line); }
.number strong { display: block; color: var(--blue-900); font-family: "Avenir Next", Avenir, Inter, sans-serif; font-weight: 850; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1; }
.number span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: .86rem; font-weight: 700; }

/* Testimonials */
.testimonials { background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
.testimonial-card--wide { grid-column: 1 / -1; }
.testimonial-card { position: relative; overflow: hidden; margin: 0; padding: clamp(28px, 4vw, 40px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.testimonial-card::after { content: "“"; position: absolute; right: 22px; top: 5px; color: rgba(13, 105, 151, .08); font-family: Georgia, serif; font-size: 8rem; font-weight: 700; line-height: 1; pointer-events: none; }
.testimonial-stars { position: relative; z-index: 1; color: var(--cyan-dark); font-size: 1.1rem; letter-spacing: .15em; }
.testimonial-card blockquote { position: relative; z-index: 1; margin: 20px 0 28px; }
.testimonial-card blockquote p { margin: 0; color: var(--blue-950); font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: clamp(1.08rem, 1.7vw, 1.32rem); font-weight: 750; line-height: 1.55; }
.testimonial-card figcaption { position: relative; z-index: 1; display: grid; gap: 3px; padding-top: 18px; border-top: 1px solid var(--line); }
.testimonial-card figcaption strong { color: var(--blue-900); font-size: 1rem; }
.testimonial-card figcaption span { color: var(--ink-soft); font-size: .84rem; font-weight: 700; }
.testimonial-full { position: relative; z-index: 1; margin-bottom: 24px; }
.testimonial-full summary { padding-block: 12px; color: var(--blue-700); font-weight: 750; cursor: pointer; }
.testimonial-full summary:focus-visible { outline: 2px solid var(--blue-700); outline-offset: 4px; border-radius: 4px; }
.testimonial-full blockquote p { font-family: inherit; font-size: 1rem; font-weight: 400; line-height: 1.7; }
.testimonial-full blockquote p + p { margin-top: 16px; }

/* Portfolio */
.project-strip { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 240px 240px; gap: 16px; }
.project-tile { position: relative; overflow: hidden; border-radius: var(--radius); }
.project-tile:first-child { grid-row: 1 / 3; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-tile--showcase img { object-fit: contain; object-position: center; background: #eaf4f8; }
.project-tile:hover img { transform: scale(1.035); }
.project-label { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 14px 16px; color: var(--white); background: rgba(22,24,54,.88); border-radius: 14px; backdrop-filter: blur(8px); }
.project-label strong { display: block; }
.project-label span { color: #c7dae8; font-size: .78rem; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; }
.filter-btn { min-height: 42px; padding: 8px 16px; color: var(--blue-800); background: var(--white); border: 1px solid #c7dce8; border-radius: 999px; font-weight: 800; cursor: pointer; }
.filter-btn:hover, .filter-btn.is-active { color: var(--white); background: var(--blue-800); border-color: var(--blue-800); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .22s ease; }
.portfolio-card:hover { transform: translateY(-5px); }
.portfolio-card[hidden] { display: none; }
.portfolio-image { aspect-ratio: 4/3; overflow: hidden; background: #edf4f7; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-card:hover img { transform: scale(1.035); }
.portfolio-image--cards { display: grid; gap: 12px; padding: 16px; aspect-ratio: auto; }
.portfolio-image--cards img { height: auto; object-fit: contain; }
.portfolio-card:hover .portfolio-image--cards img { transform: none; }
.portfolio-body { padding: 25px; }
.tag { display: inline-flex; padding: 5px 10px; color: var(--blue-700); background: var(--cyan-soft); border-radius: 999px; font-size: .72rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.portfolio-body h2, .portfolio-body h3 { margin-top: 14px; font-size: 1.45rem; }
.portfolio-body p { margin-bottom: 0; color: var(--ink-soft); font-size: .92rem; }

/* Inner pages */
.page-hero {
  --page-art: none;
  --page-wash: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 52%, rgba(255,255,255,.72) 76%, rgba(255,255,255,.38) 100%);
  position: relative;
  overflow: hidden;
  padding: 98px 0 86px;
  background-color: var(--sky);
  background-image: var(--page-wash), var(--page-art), linear-gradient(135deg, #ffffff, #e8f7fc);
  background-position: center, right center, center;
  background-repeat: no-repeat;
  background-size: cover, auto 145%, cover;
}
.page-hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--blue-950), var(--cyan), transparent 82%); }
.page-hero--illustrated h1, .page-hero--illustrated p { max-width: 760px; }
.page-hero--services { --page-art: url("../images/fond-lion.webp"); }
.page-hero--communication { --page-art: url("../images/fond-communication.webp"); }
.page-hero--site { --page-art: url("../images/fond-digital.webp"); }
.page-hero--entreprise { --page-art: url("../images/fond-strategie.webp"); background-size: cover, auto 155%, cover; }
.page-hero--formation { --page-art: url("../images/fond-parcours.webp"); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--blue-700); }
.page-hero h1 { max-width: 920px; margin-top: 16px; color: var(--blue-950); font-size: clamp(2.4rem, 4.5vw, 4.3rem); }
.page-hero p { max-width: 760px; margin: 22px 0 0; color: var(--ink-soft); font-size: 1.15rem; }
.crumbs { margin-bottom: 22px; color: #61768c; font-size: .82rem; }
.crumbs a:hover { color: var(--cyan-dark); }
.service-detail-list { display: grid; gap: 24px; }
.service-detail { display: grid; grid-template-columns: 120px minmax(0, .9fr) minmax(0, 1.2fr); gap: 34px; align-items: start; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-index { color: #a3dbe8; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-weight: 850; font-size: 3.2rem; line-height: 1; }
.service-detail h2 { font-size: 1.75rem; }
.service-for { display: block; margin-top: 12px; color: var(--blue-700); font-size: .8rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.service-detail p { margin-top: 0; color: var(--ink-soft); }
.service-detail ul { margin: 14px 0 0; padding-left: 20px; color: var(--ink-soft); }
.service-detail .text-link { margin-top: 20px; }
.seo-service-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 34px; align-items: start; }
.seo-main { padding: clamp(28px, 5vw, 54px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.seo-main h2 { margin-top: 42px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.seo-main h2:first-child { margin-top: 0; }
.seo-main p, .seo-main li { color: var(--ink-soft); }
.seo-main ul { margin: 20px 0 0; padding-left: 22px; }
.seo-main li + li { margin-top: 9px; }
.service-feature { margin: 30px 0 38px; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.service-feature img { display: block; width: 100%; max-height: 430px; object-fit: contain; border-radius: calc(var(--radius) - 8px); background: #eef6f9; }
.service-feature figcaption { padding: 12px 5px 2px; color: var(--ink-soft); font-size: .86rem; }
.seo-summary { position: sticky; top: 132px; padding: 30px; color: var(--white); background: linear-gradient(145deg, var(--blue-950), var(--blue-800)); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.seo-summary h2 { color: var(--white); font-size: 1.55rem; }
.seo-summary p { color: #cbdce8; }
.seo-summary ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.seo-summary li { position: relative; padding-left: 22px; color: #e2edf4; font-size: .92rem; }
.proof-note { margin: 24px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); color: #d8e8f1; font-size: .9rem; }
.proof-note strong { display: block; margin-bottom: 6px; color: var(--white); }
.proof-note a { color: #83e0f4; font-weight: 800; }
.rate-note { margin: 24px 0 0; padding: 18px; color: #d8e8f1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; font-size: .9rem; }
.rate-note strong { display: block; margin-bottom: 6px; color: var(--white); font-size: 1.02rem; }
.seo-summary li::before { content: "✓"; position: absolute; left: 0; color: #73dff5; font-weight: 900; }
.seo-summary .btn { width: 100%; margin-top: 26px; }
.related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-service { padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.related-service h3 { font-size: 1.3rem; }
.related-service p { color: var(--ink-soft); font-size: .92rem; }
.training-topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 24px; }
.training-topic { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.training-topic h3 { color: var(--blue-900); font-size: 1.2rem; }
.training-topic p { margin: 10px 0 0; font-size: 1rem; }
.entry-offer { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: -8px 0 36px; padding: 24px 28px; color: var(--white); background: linear-gradient(120deg, var(--blue-900), var(--blue-700)); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.entry-offer strong { display: block; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-size: 1.35rem; }
.entry-offer span { color: #d0e2ee; font-size: .92rem; }
.entry-offer-copy { flex: 0 0 270px; }
.entry-pricing-side { display: grid; gap: 9px; }
.entry-prices { display: flex; flex-wrap: wrap; gap: 10px; }
.entry-prices b { display: inline-flex; padding: 8px 12px; color: var(--blue-950); background: var(--white); border-radius: 999px; font-size: .84rem; white-space: nowrap; }
.entry-offer .entry-note { color: #d0e2ee; font-size: .78rem; line-height: 1.45; }
.hero-offer { display: grid; grid-template-columns: auto 1fr; gap: 3px 13px; align-items: center; width: fit-content; max-width: 100%; margin-top: 22px; padding: 13px 17px; color: var(--blue-950); background: rgba(255,255,255,.86); border: 1px solid rgba(17,108,154,.18); border-radius: 16px; box-shadow: var(--shadow-sm); }
.hero-offer:hover { transform: translateY(-2px); border-color: rgba(17,108,154,.38); box-shadow: var(--shadow-md); }
.hero-offer > span { grid-row: 1 / 3; padding: 5px 8px; color: var(--white); background: var(--blue-800); border-radius: 999px; font-size: .72rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.hero-offer strong { font-size: .96rem; line-height: 1.25; }
.hero-offer small { color: var(--ink-soft); font-size: .78rem; }
.hero-offer small b { color: var(--blue-700); }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-card { padding: 30px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.process-card .process-num { color: #73d9f0; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-weight: 850; font-size: 2.7rem; }
.process-card h3 { margin-top: 18px; font-size: 1.5rem; }
.process-card p { color: #c7d5e1; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 8vw, 110px); align-items: start; }
.about-image-wrap { position: sticky; top: 120px; }
.about-image { overflow: hidden; border-radius: 170px 170px 30px 30px; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; max-height: 620px; object-fit: cover; object-position: center top; }
.about-image-caption { margin: 16px 0 0; color: var(--ink-soft); text-align: center; font-size: .86rem; }
.about-copy h2 { margin: 13px 0 22px; }
.about-copy p { color: var(--ink-soft); }
.quote { margin: 34px 0; padding: 26px 28px; color: var(--blue-900); background: var(--cyan-soft); border-left: 4px solid var(--cyan); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: "Avenir Next", Avenir, Inter, sans-serif; font-weight: 700; font-size: 1.22rem; line-height: 1.45; }
.timeline { display: grid; gap: 0; margin-top: 40px; }
.timeline-item { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding-bottom: 30px; }
.timeline-item::before { content: ""; position: absolute; left: 12px; top: 24px; bottom: 0; width: 1px; background: #b9dce6; }
.timeline-item:last-child::before { display: none; }
.timeline-dot { position: relative; z-index: 1; width: 25px; height: 25px; border: 7px solid var(--cyan-soft); border-radius: 50%; background: var(--cyan-dark); }
.timeline-item h3 { font-size: 1.25rem; }
.timeline-item p { margin: 7px 0 0; font-size: .94rem; }

/* Contact and legal */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.contact-card { padding: 34px; color: var(--white); background: var(--blue-950); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-card h2 { color: var(--white); font-size: 2rem; }
.contact-card > p { color: #c5d5e3; }
.contact-methods { display: grid; gap: 14px; margin-top: 28px; }
.contact-method { display: grid; grid-template-columns: 45px 1fr; gap: 13px; align-items: center; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.contact-method .icon { width: 44px; height: 44px; color: var(--white); background: rgba(16,183,227,.2); }
.contact-method small { display: block; color: #aabfd1; }
.contact-method strong { display: block; overflow-wrap: anywhere; }
.contact-zone { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #c5d5e3; font-size: .9rem; }
.form-card { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 2rem; }
.tally-form { display: block; width: 100%; min-height: 650px; border: 0; }
.form-intro { color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #233d57; font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fbfdfe; border: 1px solid #bed0dc; border-radius: 12px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan-dark); outline: 3px solid rgba(16,183,227,.12); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-top: 20px; color: var(--ink-soft); font-size: .83rem; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--blue-700); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { display: none; margin-top: 18px; padding: 12px 14px; border-radius: 12px; font-size: .9rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #0c5c42; background: #e5f8f1; }
.form-status.is-error { color: #843025; background: #fff0ed; }
.legal { max-width: 860px; }
.legal h2 { margin-top: 44px; font-size: 1.6rem; }
.legal h3 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { display: grid; max-width: 900px; gap: 12px; margin-inline: auto; }
.faq-list details { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 20px 54px 20px 22px; color: var(--blue-950); font-weight: 850; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 21px; top: 50%; color: var(--cyan-dark); font-size: 1.5rem; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 22px 22px; color: var(--ink-soft); }

/* CTA and footer */
.cta-band { position: relative; overflow: hidden; padding: 72px 0; color: var(--white); background: linear-gradient(120deg, var(--blue-900), var(--blue-700)); }
.cta-band::after { content: ""; position: absolute; width: 300px; height: 300px; right: 8%; top: -165px; border: 60px solid rgba(255,255,255,.05); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 710px; color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); }
.cta-inner p { max-width: 680px; margin: 14px 0 0; color: #d1e2ed; }
.site-footer { padding: 64px 0 28px; color: #c3d2e0; background: var(--blue-950); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr .9fr; gap: 40px; }
.footer-brand .brand { padding: 8px 12px; background: var(--white); border-radius: 18px; }
.footer-brand .brand img { width: 110px; height: 110px; }
.footer-brand .brand-copy { display: none; }
.footer-brand .brand-copy strong { color: var(--blue-950); }
.footer-brand .brand-copy small { color: #80d7ec; }
.footer-brand > p { max-width: 360px; color: #9fb4c7; font-size: .9rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 10px; color: var(--white); font-size: .875rem; font-weight: 650; line-height: 1.4; }
.footer-social a:hover, .footer-social a:focus-visible { border-color: var(--cyan); background: rgba(16,183,227,.12); }
.footer-social a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.footer-social svg { flex: none; }
.footer-title { margin: 7px 0 18px; color: var(--white); font-family: inherit; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #b9cadd; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact { color: #b9cadd; font-size: .9rem; }
.footer-contact a { display: block; margin-bottom: 7px; }
.footer-contact span { display: block; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: #7f96aa; font-size: .78rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 1100px) {
  .service-overview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 151px 0 auto 0; display: none; padding: 24px 20px 30px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); }
  .nav-links.is-open { display: grid; }
  .nav-links > a { padding: 8px 0; }
  .nav-links .btn { margin-top: 8px; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .trust-grid, .about-grid, .contact-grid, .seo-service-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; min-height: 500px; }
  .hero-visual > img { height: 500px; }
  .project-tile, .portfolio-image { background: #eaf4f8; }
  .project-tile img, .portfolio-image img { object-fit: contain; }
  .problem-grid, .service-grid, .portfolio-grid, .service-grid--goals, .service-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card:nth-child(2), .problem-card:nth-child(5) { transform: none; }
  .problem-card:nth-child(2):hover, .problem-card:nth-child(5):hover { transform: translateY(-5px); }
  .trust-visual { max-width: 620px; }
  .project-strip { grid-template-columns: 1fr 1fr; }
  .project-tile:first-child { grid-row: auto; grid-column: 1 / 3; }
  .service-detail { grid-template-columns: 70px 1fr; }
  .service-detail > :last-child { grid-column: 2; }
  .about-image-wrap { position: static; max-width: 560px; }
  .seo-summary { position: static; }
  .related-services { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .site-header .nav { min-height: 118px; }
  .site-header .brand img { width: 108px; height: 108px; }
  .brand-copy small { display: none; }
  .nav-links { inset: 119px 0 auto 0; }
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .hero .hero-title--descriptive { font-size: clamp(2.05rem, 8vw, 2.7rem); line-height: 1.1; }
  .hero-visual { min-height: 390px; border-radius: 28px 28px 28px 72px; }
  .hero-visual > img { height: 390px; object-position: 21% center; }
  .hero-visual-card { right: 14px; bottom: 52px; width: min(275px, calc(100% - 28px)); padding: 16px 18px; }
  .hero-location { right: 17px; bottom: 17px; left: 17px; font-size: .7rem; }
  .hero-paths { grid-template-columns: 1fr; margin-top: 28px; }
  .hero-path { min-height: 82px; padding: 16px 20px; }
  .problem-grid, .service-grid, .portfolio-grid, .process, .related-services, .service-grid--goals, .service-grid--directory, .service-overview-grid, .training-topic-grid { grid-template-columns: 1fr; }
  .problem-card, .service-card { min-height: auto; }
  .trust-visual {
    display: grid;
    min-height: auto;
    justify-items: center;
    gap: 18px;
  }
  .trust-portrait {
    width: min(78vw, 300px);
    height: min(78vw, 300px);
    border-radius: 50%;
  }
  .trust-portrait--cutout { padding: 10px 10px 0; }
  .trust-badge {
    position: static;
    width: 100%;
    max-width: 360px;
    padding: 20px 22px;
    text-align: center;
  }
  .trust-badge strong { font-size: 2rem; }
  .numbers { grid-template-columns: 1fr; }
  .number + .number { border-top: 1px solid var(--line); border-left: 0; }
  .project-strip { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .project-tile:first-child { grid-column: auto; }
  .portfolio-image { aspect-ratio: auto; }
  .portfolio-image img { width: 100%; height: auto; }
  .page-hero {
    --page-wash: linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92));
    padding: 74px 0 66px;
    background-position: center, right bottom, center;
    background-size: cover, auto 108%, cover;
  }
  .page-hero--entreprise { background-size: cover, auto 112%, cover; }
  .local-strip-inner { grid-template-columns: 1fr; gap: 14px; }
  .recognition-heading, .recognition-grid { grid-template-columns: 1fr; }
  .recognition-heading { gap: 14px; margin-bottom: 30px; }
  .recognition-grid li { min-height: auto; padding: 20px; }
  .recognition-answer { display: block; }
  .recognition-answer .btn { width: 100%; margin-top: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 15px; padding: 25px; }
  .service-detail > :last-child { grid-column: auto; }
  .service-index { font-size: 2rem; }
  .form-card { padding: 27px 20px; }
  .entry-offer { display: grid; padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-inner { display: block; }
  .cta-inner .btn { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
}
