:root {
  --ink: #07111f;
  --ink-soft: #112238;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #dce3eb;
  --muted: #5c6978;
  --cyan: #00b9e8;
  --cyan-dark: #008db6;
  --pink: #ff006f;
  --lime: #d9f500;
  --coral: #ff8f7c;
  --shell: min(1200px, calc(100% - 48px));
  --radius: 20px;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.topbar {
  color: var(--white);
  background: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar a {
  color: var(--lime);
}

.topbar-secondary {
  color: #b9c8d9;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(7, 17, 31, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand img {
  width: 146px;
  height: auto;
}

.brand > span {
  padding-left: 12px;
  color: var(--ink);
  border-left: 1px solid #b7c2cf;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: #2e3d4e;
  font-size: .9rem;
  font-weight: 750;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 185, 232, .35);
  outline-offset: 3px;
}

.button span,
.text-link span {
  font-size: 1.1em;
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: .82rem;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(7, 17, 31, .16);
}

.button-dark:hover {
  background: #142b46;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 10px 28px rgba(217, 245, 0, .16);
}

.button-primary:hover {
  background: #ecff43;
  box-shadow: 0 14px 34px rgba(217, 245, 0, .2);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .28);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .14);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, .98) 0%, rgba(7, 17, 31, .93) 36%, rgba(7, 17, 31, .52) 63%, rgba(7, 17, 31, .08) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, .58) 0%, transparent 44%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -170px;
  left: -220px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(0, 185, 232, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(0, 185, 232, .025), 0 0 0 180px rgba(255, 0, 111, .018);
}

.hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 220px;
  height: 6px;
  background: linear-gradient(90deg, var(--lime) 0 33%, var(--cyan) 33% 66%, var(--pink) 66%);
}

.hero-inner {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-block: 84px 108px;
}

.hero-copy {
  width: min(690px, 62%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--pink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.eyebrow > span {
  width: 30px;
  height: 3px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.85rem, 5.25vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -.058em;
  line-height: .96;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #d7e1ec;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}

.hero-proof li {
  min-width: 0;
  padding: 20px 20px 0 0;
}

.hero-proof li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.15rem;
}

.hero-proof span {
  margin-top: 2px;
  color: #aebdcd;
  font-size: .78rem;
  font-weight: 650;
}

.hero-caption {
  position: absolute;
  right: 28px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.hero-caption span {
  padding: 5px 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip {
  color: var(--white);
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.trust-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: center;
  gap: 28px;
}

.trust-inner > p {
  margin: 0;
  color: #93a7bc;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.client-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
}

.client-list span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .9);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading h2,
.process-intro h2,
.local-copy h2,
.prep-title h2,
.faq-intro h2,
.quote-copy h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.02rem;
}

.solutions-section {
  background: var(--paper);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  min-height: 380px;
  display: grid;
  grid-template-columns: 34% 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(7, 17, 31, .035);
  transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.solution-preview {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #e8eef5;
}

.solution-preview > span {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}

.solution-preview::before,
.solution-preview::after {
  content: "";
  position: absolute;
}

.preview-opaque {
  background: var(--cyan);
}

.preview-opaque::before {
  inset: 16% -20% auto -15%;
  height: 36%;
  background: var(--pink);
  transform: rotate(-12deg);
}

.preview-opaque::after {
  right: -28%;
  bottom: -6%;
  width: 115%;
  height: 44%;
  background: var(--lime);
  border-radius: 50% 0 0 0;
}

.preview-transparent {
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, .22) 48% 52%, transparent 52%),
    linear-gradient(rgba(7, 17, 31, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, .1) 1px, transparent 1px),
    #bfeef9;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.preview-transparent::before {
  top: 16%;
  right: 12%;
  bottom: 16%;
  left: 12%;
  background: rgba(255, 255, 255, .38);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, .46);
  transform: skewY(-8deg);
}

.preview-transparent::after {
  top: 43%;
  left: 21%;
  width: 58%;
  height: 18px;
  background: var(--pink);
  box-shadow: 0 31px 0 rgba(7, 17, 31, .8);
}

.preview-micro {
  background:
    radial-gradient(circle, var(--white) 1.8px, transparent 2px) 0 0 / 9px 9px,
    var(--ink);
}

.preview-micro::before {
  top: 27%;
  left: -12%;
  width: 125%;
  height: 34%;
  background: rgba(0, 185, 232, .9);
  transform: rotate(11deg);
}

.preview-micro::after {
  right: -30px;
  bottom: 14%;
  width: 120px;
  height: 120px;
  background: var(--pink);
  border-radius: 50%;
}

.preview-frosted {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .18)),
    #a6c8d2;
}

.preview-frosted::before {
  inset: 0;
  background: repeating-linear-gradient(132deg, transparent 0 34px, rgba(7, 17, 31, .82) 35px 45px, transparent 46px 78px);
  clip-path: polygon(0 63%, 100% 30%, 100% 48%, 0 82%);
}

.preview-frosted::after {
  top: 20%;
  right: 15%;
  width: 70px;
  height: 70px;
  border: 18px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
}

.preview-lettering {
  background: var(--lime);
}

.preview-lettering::before {
  content: "Aa";
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 5.5rem;
  font-weight: 950;
  letter-spacing: -.12em;
  transform: rotate(-7deg);
}

.preview-lettering::after {
  top: 18%;
  right: -35px;
  width: 100px;
  height: 100px;
  border: 22px solid var(--pink);
  border-radius: 50%;
}

.preview-temporary {
  background: #ffd3df;
}

.preview-temporary::before {
  top: 19%;
  right: 18%;
  bottom: 16%;
  left: 14%;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 11px 0 var(--cyan);
  transform: rotate(-5deg);
}

.preview-temporary::after {
  right: 25%;
  bottom: 19%;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #d7dce2 0 50%, transparent 51%);
}

.solution-body {
  padding: 34px 34px 30px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.solution-body h3,
.specialist-callout h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.solution-body > p:not(.card-kicker) {
  margin: 15px 0 0;
  color: var(--muted);
}

.solution-body ul {
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #344456;
  font-size: .86rem;
  font-weight: 650;
}

.solution-body li {
  position: relative;
  padding-left: 17px;
}

.solution-body li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  padding: 0;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid #aeb8c3;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
}

.solution-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.solution-card-dark .solution-body > p:not(.card-kicker),
.solution-card-dark .solution-body ul {
  color: #b8c7d8;
}

.solution-card-dark .text-link {
  color: var(--white);
  border-color: #52667c;
}

.solution-card-accent {
  background: #f3fbfd;
  border-color: #bcecf7;
}

.specialist-callout {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 18px;
  padding: 38px 42px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 87% 20%, rgba(255, 0, 111, .32), transparent 24%),
    linear-gradient(105deg, #07111f, #12354f);
  border-radius: var(--radius);
}

.specialist-callout .eyebrow {
  margin-bottom: 12px;
}

.specialist-callout p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #c3d2e1;
}

.process-section {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
  gap: 100px;
}

.process-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 25px 0 30px;
  color: var(--muted);
  font-size: 1.04rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--pink);
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.process-list h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.use-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 185, 232, .13), transparent 29%),
    var(--ink);
}

.section-heading-light > p {
  color: #aebed0;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.use-card {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.use-card > span {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 900;
}

.use-card h3 {
  margin: 50px 0 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.use-card p {
  margin: 12px 0 0;
  color: #acbdd0;
}

.use-card-cta {
  color: var(--ink);
  background: var(--lime);
}

.use-card-cta > span,
.use-card-cta p {
  color: var(--ink);
}

.use-card-cta a {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.local-section {
  background: var(--paper);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 90px;
}

.local-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
}

.local-copy strong {
  color: var(--ink);
}

.inline-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.area-links a {
  padding: 8px 12px;
  color: #314255;
  background: var(--white);
  border: 1px solid #cad5df;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
}

.area-links a:hover {
  color: var(--ink);
  border-color: var(--cyan);
}

.local-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 32px;
}

.plain-phone {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.local-map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .62)),
    repeating-linear-gradient(35deg, #d9e1e9 0 1px, transparent 1px 22px);
  border: 1px solid #cfd9e4;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.local-map-card::before,
.local-map-card::after {
  content: "";
  position: absolute;
  border: 1px solid #cbd6e0;
  border-radius: 48% 52% 42% 58%;
  transform: rotate(-12deg);
}

.local-map-card::before {
  inset: 10% 8% 18% 18%;
}

.local-map-card::after {
  inset: 23% 24% 8% 5%;
}

.map-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(31deg, transparent 46%, rgba(0, 185, 232, .22) 47% 47.5%, transparent 48%),
    linear-gradient(151deg, transparent 53%, rgba(255, 0, 111, .18) 54% 54.5%, transparent 55%);
}

.map-marker {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding-left: 21px;
  font-size: .66rem;
  line-height: 1.35;
}

.map-marker i {
  position: absolute;
  top: 2px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--pink);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 0, 111, .15);
}

.map-marker strong {
  letter-spacing: .06em;
}

.map-marker span {
  color: var(--muted);
}

.marker-main {
  top: 56%;
  left: 40%;
}

.marker-main i {
  width: 16px;
  height: 16px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0, 185, 232, .14);
}

.marker-aix {
  top: 24%;
  left: 55%;
}

.marker-aubagne {
  top: 69%;
  left: 67%;
}

.marker-vitrolles {
  top: 38%;
  left: 25%;
}

.map-stat {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px;
}

.map-stat strong {
  color: var(--lime);
  font-size: 1.65rem;
  line-height: 1;
}

.map-stat span {
  font-size: .68rem;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.prep-section {
  padding-block: 80px;
  background: var(--white);
}

.prep-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(500px, 1.2fr);
  gap: 78px;
}

.prep-title h2 {
  font-size: clamp(2.05rem, 3.4vw, 3.25rem);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.prep-grid article {
  min-height: 180px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.prep-grid span {
  color: var(--pink);
  font-size: .72rem;
  font-weight: 900;
}

.prep-grid h3 {
  margin: 28px 0 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.prep-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.resource-section {
  background: var(--white);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: #a8dfea;
  box-shadow: var(--shadow);
}

.resource-card > span {
  color: var(--pink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.resource-card h3 {
  margin: 32px 0 0;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.resource-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.resource-card strong {
  margin-top: auto;
  font-size: .82rem;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(500px, 1.3fr);
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 128px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
}

.faq-intro .plain-phone {
  display: inline-block;
  color: var(--muted);
  font-size: .86rem;
  text-decoration: none;
}

.faq-intro .plain-phone strong {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.25rem;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.accordion {
  border-top: 1px solid #bfcbd7;
}

.accordion details {
  border-bottom: 1px solid #bfcbd7;
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 850;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--white);
  border: 1px solid #cbd5df;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}

.accordion details[open] summary span {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 740px;
  margin: -4px 58px 25px 0;
  color: var(--muted);
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--ink);
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -300px;
  width: 730px;
  height: 730px;
  border: 1px solid rgba(0, 185, 232, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(0, 185, 232, .025), 0 0 0 200px rgba(255, 0, 111, .018);
}

.quote-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
  align-items: start;
  gap: 85px;
}

.quote-copy {
  position: sticky;
  top: 128px;
}

.quote-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #b5c4d4;
  font-size: 1.04rem;
}

.quote-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 38px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.quote-contact span,
.quote-contact small {
  color: #92a8bd;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.quote-contact a {
  margin: 7px 0 4px;
  color: var(--lime);
  font-size: 1.75rem;
  font-weight: 950;
  letter-spacing: -.03em;
}

.quote-checks {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #c0cedc;
  font-size: .88rem;
  font-weight: 650;
}

.quote-checks li {
  position: relative;
  padding-left: 22px;
}

.quote-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.project-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  font-size: 1.12rem;
}

.form-section-title:not(:first-child) {
  margin-top: 40px;
}

.form-section-title > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: .66rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #405064;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f9fb;
  border: 1px solid #cbd6e0;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 128px;
  padding: 13px 14px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9baabb;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(0, 185, 232, .1);
}

.form-file-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: #536477;
  background: #eef5f7;
  border-radius: 9px;
  font-size: .78rem;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 22px;
  color: #4a5a6c;
  font-size: .8rem;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 1px 0 0;
  accent-color: var(--cyan-dark);
}

.button-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.button-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-foot {
  margin: 14px 0 0;
  color: #7b8795;
  font-size: .74rem;
  text-align: center;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  color: var(--white);
  background: #040b14;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(140px, .65fr));
  gap: 55px;
  padding-block: 64px 54px;
}

.brand-footer img {
  width: 155px;
}

.brand-footer > span {
  color: var(--white);
  border-color: #526073;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: #8397ac;
  font-size: .86rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #9aadc0;
  font-size: .82rem;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .12em;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #6f8296;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .72rem;
}

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

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

.mobile-cta {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: min(430px, calc(100% - 44px));
  padding: 15px 19px;
  color: var(--white);
  background: var(--ink);
  border-left: 4px solid var(--lime);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .26);
  font-size: .88rem;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .22s ease, transform .22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.inner-page {
  background: var(--paper);
}

/* Editorial and local landing pages */
.content-page {
  background: var(--paper);
}

.content-page .inner-header {
  background: var(--white);
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 12%, rgba(0, 185, 232, .2), transparent 29%),
    radial-gradient(circle at 92% 82%, rgba(255, 0, 111, .13), transparent 24%),
    var(--ink);
}

.content-hero::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 190px;
  height: 5px;
  background: linear-gradient(90deg, var(--lime) 0 33%, var(--cyan) 33% 66%, var(--pink) 66%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: #91a5ba;
  font-size: .74rem;
  font-weight: 750;
}

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

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  align-items: end;
  gap: 70px;
}

.content-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -.058em;
  line-height: .98;
  text-wrap: balance;
}

.content-lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #c7d4e2;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.content-snapshot {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.content-snapshot div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.content-snapshot dt {
  color: #91a5ba;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-snapshot dd {
  margin: 0;
  color: var(--white);
  font-size: .84rem;
  font-weight: 750;
}

.content-main {
  padding: 78px 0 100px;
}

.content-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: 78px;
}

.content-toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .8rem;
}

.content-toc strong {
  margin-bottom: 11px;
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.content-toc a {
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid #edf0f4;
}

.content-toc a:hover {
  color: var(--pink);
}

.content-toc .toc-cta {
  margin-top: 14px;
  padding: 12px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  text-align: center;
}

.content-article {
  min-width: 0;
  padding: 45px 54px 58px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.content-article > section + section {
  margin-top: 56px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.content-article h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.content-article h3 {
  margin: 30px 0 0;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.content-article p,
.content-article li {
  color: #4f6073;
}

.content-article p {
  margin: 17px 0 0;
}

.content-article a:not(.button) {
  color: #007fa4;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.answer-box {
  margin-bottom: 45px;
  padding: 25px 27px;
  color: var(--ink);
  background: #eef8fa;
  border-left: 5px solid var(--cyan);
  border-radius: 0 13px 13px 0;
}

.answer-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pink);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.answer-box p {
  margin: 0;
  color: #24384d;
  font-size: 1.03rem;
  font-weight: 720;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.fact-card {
  min-height: 165px;
  padding: 23px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.fact-card span {
  color: var(--pink);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.fact-card h3 {
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.fact-card p {
  margin-top: 8px;
  font-size: .88rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 950;
}

.numbered-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  counter-reset: installation-step;
  list-style: none;
}

.numbered-list li {
  position: relative;
  min-height: 52px;
  padding: 14px 16px 14px 58px;
  color: #394b5f;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  counter-increment: installation-step;
}

.numbered-list li::before {
  content: counter(installation-step, decimal-leading-zero);
  position: absolute;
  top: 12px;
  left: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

.content-article section,
.faq-section,
.quote-section,
.local-section {
  scroll-margin-top: 110px;
}

.faq-intro > .text-link {
  margin-top: 22px;
}

.content-table-wrap {
  margin-top: 27px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.content-table {
  width: 100%;
  min-width: 670px;
  border-collapse: collapse;
  font-size: .85rem;
}

.content-table th,
.content-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-table th {
  color: var(--white);
  background: var(--ink);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.content-table tr:last-child td {
  border-bottom: 0;
}

.content-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.content-note {
  margin-top: 25px;
  padding: 19px 21px;
  color: #394b5f;
  background: #fff8df;
  border-left: 4px solid #efbe22;
  border-radius: 0 10px 10px 0;
  font-size: .88rem;
}

.content-faq {
  margin-top: 25px;
  border-top: 1px solid #bdc9d5;
}

.content-faq details {
  border-bottom: 1px solid #bdc9d5;
}

.content-faq summary {
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.content-faq p {
  margin: 0 0 20px;
}

.related-section {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
}

.related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.related-head h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  letter-spacing: -.05em;
  line-height: 1.02;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: #102238;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
}

.related-card span {
  color: var(--cyan);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .09em;
}

.related-card h3 {
  margin: 25px 0 0;
  font-size: 1.2rem;
  line-height: 1.12;
}

.related-card p {
  margin: 11px 0 22px;
  color: #aebed0;
  font-size: .85rem;
}

.related-card strong {
  margin-top: auto;
  color: var(--lime);
  font-size: .78rem;
}

.content-cta {
  padding: 58px 0;
  background: var(--lime);
}

.content-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.content-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.04;
}

.content-cta p {
  margin: 9px 0 0;
  color: #324100;
}

.content-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.content-cta .button-ghost {
  color: var(--ink);
  border-color: rgba(7, 17, 31, .35);
  background: transparent;
}

.inner-header {
  position: relative;
}

.inner-header .header-inner {
  grid-template-columns: auto 1fr auto;
}

.legal-back {
  justify-self: center;
  color: #425266;
  font-size: .86rem;
  font-weight: 800;
}

.legal-hero {
  padding: 84px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 185, 232, .2), transparent 30%),
    var(--ink);
}

.legal-hero p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: #b6c5d5;
}

.legal-content {
  padding: 80px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.legal-summary {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .82rem;
}

.legal-summary strong {
  margin-bottom: 12px;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-summary a {
  padding: 8px 0;
  color: var(--muted);
  border-top: 1px solid #edf0f4;
}

.legal-summary a:hover {
  color: var(--pink);
}

.legal-article {
  padding: 12px 52px 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.legal-article section {
  position: relative;
  padding: 42px 0 0 60px;
}

.legal-article section + section {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.legal-number {
  position: absolute;
  top: 44px;
  left: 0;
  color: var(--pink);
  font-size: .78rem;
  font-weight: 900;
}

.legal-article h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.legal-article p,
.legal-article li {
  color: #536275;
}

.legal-article a {
  color: var(--cyan-dark);
  text-decoration: underline;
}

.legal-data {
  padding-left: 19px;
}

.legal-note {
  padding: 15px 17px;
  background: #eef6f8;
  border-left: 4px solid var(--cyan);
}

.legal-footer {
  padding: 38px 0;
  color: var(--white);
  background: #040b14;
}

.legal-footer .shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.legal-footer .shell > div {
  display: flex;
  flex-direction: column;
  color: #8fa1b4;
  font-size: .78rem;
}

.legal-footer a:hover {
  color: var(--lime);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: .82rem;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .hero-copy {
    width: min(690px, 72%);
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 29% 1fr;
  }

  .process-layout,
  .faq-layout {
    gap: 60px;
  }

  .local-layout {
    gap: 55px;
  }

  .quote-layout {
    grid-template-columns: minmax(270px, .7fr) minmax(490px, 1.3fr);
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }

  .content-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 38px;
  }

  .content-article {
    padding-inline: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 64px;
  }

  .topbar-secondary {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 67px;
    grid-template-columns: 1fr auto;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img {
    width: 132px;
  }

  .brand > span {
    font-size: .66rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - 67px);
    height: calc(100dvh - 67px);
    min-height: 460px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 24px 16px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 17px 10px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    font-size: 1.1rem;
    font-weight: 850;
  }

  .mobile-nav a:last-child {
    margin-top: 18px;
    color: var(--ink);
    background: var(--lime);
    border: 0;
    border-radius: 999px;
    text-align: center;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, .97), rgba(7, 17, 31, .74)),
      linear-gradient(0deg, rgba(7, 17, 31, .78), transparent 55%);
  }

  .hero-inner {
    padding-block: 65px 90px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 670px;
    font-size: clamp(2.55rem, 9vw, 4.5rem);
  }

  .hero-lead {
    max-width: 590px;
  }

  .hero-caption {
    display: none;
  }

  .trust-inner {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 11px;
    padding-block: 18px;
  }

  .client-list {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .client-list::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .resource-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .content-snapshot {
    max-width: 590px;
  }

  .content-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 18px;
  }

  .content-toc strong {
    width: 100%;
  }

  .content-toc a {
    border: 0;
  }

  .content-toc .toc-cta {
    margin: 0 0 0 auto;
  }

  .content-cta .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .solution-card {
    min-height: 0;
  }

  .specialist-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-layout,
  .faq-layout,
  .local-layout,
  .prep-layout,
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .process-intro,
  .faq-intro,
  .quote-copy {
    position: static;
  }

  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-map-card {
    min-height: 440px;
  }

  .prep-layout {
    gap: 35px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-block: 22px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 64px;
    box-shadow: 0 -8px 28px rgba(7, 17, 31, .2);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-size: .85rem;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    color: var(--ink);
    background: var(--lime);
  }

  .toast {
    bottom: 82px;
  }

  .inner-header .header-inner {
    grid-template-columns: 1fr auto;
  }

  .inner-header .legal-back {
    display: none;
  }

  .inner-header .header-cta {
    display: inline-flex;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-summary {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 18px;
  }

  .legal-summary strong {
    width: 100%;
  }

  .legal-summary a {
    border: 0;
  }

  .legal-footer .shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100% - 24px);
    --radius: 16px;
  }

  .topbar {
    font-size: .68rem;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 112px;
  }

  .brand > span {
    padding-left: 8px;
    font-size: .55rem;
    letter-spacing: .12em;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.65rem);
    line-height: .98;
  }

  .hero-lead {
    font-size: .98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 33px;
  }

  .hero-proof li {
    padding: 15px 8px 0 0;
  }

  .hero-proof li + li {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: .9rem;
  }

  .hero-proof span {
    font-size: .64rem;
    line-height: 1.35;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .process-intro h2,
  .local-copy h2,
  .faq-intro h2,
  .quote-copy h2 {
    font-size: clamp(2.12rem, 9vw, 3rem);
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .resource-grid,
  .related-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 245px;
    padding: 26px 23px;
  }

  .content-hero {
    padding: 54px 0 58px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .content-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .content-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .content-hero-actions .button {
    width: 100%;
  }

  .content-main {
    padding: 40px 0 65px;
  }

  .content-toc {
    display: none;
  }

  .content-article {
    padding: 31px 20px 38px;
    border-radius: 15px;
  }

  .content-article > section + section {
    margin-top: 42px;
    padding-top: 38px;
  }

  .answer-box {
    margin-bottom: 35px;
    padding: 21px 19px;
  }

  .related-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .content-cta-actions .button {
    width: 100%;
  }

  .solution-preview {
    min-height: 205px;
  }

  .solution-body {
    padding: 28px 24px 26px;
  }

  .specialist-callout {
    padding: 30px 24px;
  }

  .specialist-callout .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .use-grid {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 210px;
    padding: 28px 24px;
  }

  .use-card h3 {
    margin-top: 38px;
  }

  .local-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .local-actions .button,
  .local-actions .plain-phone {
    width: 100%;
    text-align: center;
  }

  .local-map-card {
    min-height: 400px;
  }

  .marker-aix {
    left: 47%;
  }

  .marker-aubagne {
    left: 55%;
  }

  .marker-vitrolles {
    left: 16%;
  }

  .map-stat {
    right: 12px;
    bottom: 12px;
  }

  .prep-grid {
    grid-template-columns: 1fr;
  }

  .prep-grid article {
    min-height: 145px;
  }

  .accordion summary {
    font-size: .94rem;
  }

  .accordion details p {
    margin-right: 0;
  }

  .quote-section {
    padding: 72px 0;
  }

  .quote-contact a {
    font-size: 1.55rem;
  }

  .project-form {
    padding: 28px 20px;
    border-radius: 17px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 48px 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 7px;
  }

  .inner-header .header-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: .7rem;
  }

  .legal-hero {
    padding-block: 60px 55px;
  }

  .legal-content {
    padding-block: 40px 70px;
  }

  .legal-summary {
    display: none;
  }

  .legal-article {
    padding: 5px 20px 30px;
  }

  .legal-article section {
    padding: 34px 0 0 0;
  }

  .legal-article section + section {
    margin-top: 30px;
  }

  .legal-number {
    position: static;
    display: block;
    margin-bottom: 5px;
  }
}
