:root {
  --ink: #10213d;
  --ink-2: #223d78;
  --muted: #5f7088;
  --line: rgba(65, 99, 161, 0.16);
  --paper: #fffdf7;
  --warm: #f6f2e8;
  --surface: #f4f7fb;
  --brand: #4163a1;
  --brand-dark: #223d78;
  --brand-soft: #e6eef8;
  --sky: #a8c8dc;
  --accent: #78b6d4;
  --mint: #88d7bd;
  --sun: #f2c86b;
  --coral: #ef927c;
  --lilac: #9a95df;
  --shadow: 0 26px 70px -36px rgba(16, 33, 61, 0.55);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--warm);
  overflow-x: hidden;
}

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

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

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 18px;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--ink), var(--brand-dark) 55%, var(--brand));
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sky);
}

.topbar span:nth-child(2)::before {
  background: var(--mint);
}

.topbar span:nth-child(3)::before {
  background: var(--sun);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(246, 242, 232, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 188px;
}

.brand-logo {
  width: 168px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(16, 33, 61, 0.86);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--sky);
  transition: right 0.2s ease;
}

.nav a:hover::after {
  right: 0;
}

.header-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: 999px;
}

.header-cta,
.button.primary,
.contact-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #5a7bc0);
  box-shadow: 0 16px 34px -18px rgba(65, 99, 161, 0.8);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 86px) 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(640px 420px at 86% 5%, rgba(168, 200, 220, 0.48), transparent 62%),
    radial-gradient(520px 420px at 6% 96%, rgba(136, 215, 189, 0.24), transparent 60%),
    radial-gradient(420px 320px at 55% 85%, rgba(242, 200, 107, 0.18), transparent 62%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 70px);
  max-width: 1320px;
  margin: 0 auto;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--sky);
  border-radius: 999px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero-highlight {
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: -0.02em;
  right: -0.04em;
  bottom: 0.06em;
  z-index: -1;
  height: 0.28em;
  background: linear-gradient(90deg, rgba(168, 200, 220, 0.95), rgba(136, 215, 189, 0.72));
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button.secondary {
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: rgba(255, 253, 247, 0.72);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sky);
}

.hero-proof span:nth-child(2)::before {
  background: var(--mint);
}

.hero-proof span:nth-child(3)::before {
  background: var(--sun);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.02 / 1;
  object-fit: cover;
  border: 12px solid var(--paper);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: min(310px, 72%);
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px -28px rgba(16, 33, 61, 0.55);
  backdrop-filter: blur(12px);
}

.shine-card {
  position: absolute;
  right: -14px;
  top: 36px;
  width: min(250px, 58%);
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 42px -28px rgba(16, 33, 61, 0.55);
  backdrop-filter: blur(12px);
}

.shine-card::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(136, 215, 189, 0.2);
}

.shine-card strong {
  display: inline;
}

.shine-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-card strong,
.visual-card span,
.trust-band strong,
.trust-band span {
  display: block;
}

.visual-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-band div {
  padding: 28px clamp(20px, 4vw, 40px);
  background: rgba(255, 253, 247, 0.82);
}

.trust-band strong {
  font-size: 1.03rem;
}

.trust-band span {
  margin-top: 6px;
  color: var(--muted);
}

.logo-marquee {
  max-width: min(1420px, calc(100vw - 48px));
  margin: 34px auto 0;
  padding: 32px clamp(24px, 4vw, 52px) 36px;
  overflow: hidden;
  contain: layout paint;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(230, 238, 248, 0.82)),
    var(--paper);
  box-shadow: 0 24px 64px -44px rgba(16, 33, 61, 0.45);
}

.logo-marquee p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee p::before,
.logo-marquee p::after {
  content: "";
  width: min(94px, 16vw);
  height: 1px;
  background: var(--line);
}

.marquee-track {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  contain: layout paint;
  padding: 2px 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: logo-scroll 52s linear infinite;
}

.marquee-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-width: 180px;
  height: 180px;
  min-height: 180px;
  padding: 20px;
  color: rgba(16, 33, 61, 0.72);
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px -32px rgba(16, 33, 61, 0.55);
}

.marquee-row span:nth-child(3n + 1) {
  background: rgba(168, 200, 220, 0.22);
}

.marquee-row span:nth-child(3n + 2) {
  background: rgba(136, 215, 189, 0.18);
}

.marquee-row span:nth-child(3n + 3) {
  background: rgba(242, 200, 107, 0.18);
}

.client-wordmark {
  flex-direction: column;
  width: 180px;
  min-width: 180px;
  height: 180px;
  min-height: 180px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.client-logo-tile {
  background: #fff !important;
}

.client-logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-wordmark small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.felicita,
.libertino {
  color: #d84f34;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-style: italic;
}

.felicita {
  position: relative;
  align-items: flex-start;
  padding: 28px 20px 18px;
  color: #080808;
  background: #ffff9d !important;
  font-family: "Brush Script MT", "Segoe Script", Georgia, serif;
  font-size: 1.72rem;
  line-height: 0.88;
  text-align: left;
}

.felicita strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #080808;
  font-weight: 500;
}

.felicita small {
  position: relative;
  z-index: 1;
  margin: 10px 0 0 54px;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.52rem;
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-align: center;
}

.felicita i {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 42px;
  height: 42px;
}

.felicita i::before,
.felicita i::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 17px;
  height: 33px;
  border: 1.8px solid #080808;
  border-radius: 48% 48% 42% 42%;
}

.felicita i::before {
  left: 3px;
  transform: rotate(-8deg);
}

.felicita i::after {
  right: 2px;
  transform: rotate(8deg);
}

.matsuri {
  gap: 7px;
  color: #fff;
  background: #efbbc8 !important;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.matsuri i {
  position: relative;
  display: block;
  width: 92px;
  height: 62px;
  overflow: hidden;
}

.matsuri i::before,
.matsuri i::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 82px;
  border: 14px solid #fff;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
}

.matsuri i::before {
  left: 0;
}

.matsuri i::after {
  right: 0;
}

.matsuri strong {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 950;
  line-height: 0.9;
}

.mister-garden {
  color: #fff;
  background: #a8c8dc !important;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mister-garden::before {
  content: "";
  width: 58px;
  height: 19px;
  margin-bottom: 9px;
  border: 3px solid #e85d42;
  border-top: 0;
  transform: skewY(-20deg);
}

.mister-garden small {
  color: rgba(255, 255, 255, 0.9);
}

.popolare {
  position: relative;
  color: #fff;
  background: #0b0b0b !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.popolare::before,
.popolare::after {
  content: "";
  position: absolute;
  inset: 42px 22px;
  border: 1.6px solid rgba(255, 255, 255, 0.78);
  transform: rotate(-8deg);
}

.popolare::after {
  inset: 52px 34px;
  border-style: dashed;
  opacity: 0.55;
  transform: rotate(8deg);
}

.popolare i {
  position: absolute;
  inset: 36px 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.68);
  border-bottom: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
}

.popolare i::before,
.popolare i::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 42px;
  height: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.popolare i::before {
  left: 4px;
  transform: rotate(-28deg);
}

.popolare i::after {
  right: 4px;
  transform: rotate(28deg);
}

.popolare strong {
  position: relative;
  z-index: 1;
  display: block;
  padding: 6px 14px;
  color: #fff;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
  transform: rotate(-8deg);
}

.big-mamma {
  gap: 12px;
  color: #111;
  background: #fff !important;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.big-mamma i {
  position: relative;
  display: block;
  width: 58px;
  height: 34px;
}

.big-mamma i::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 13px;
  height: 13px;
  border: 4px solid #111;
  border-radius: 999px;
  box-shadow:
    12px -2px 0 -4px #fff, 12px -2px 0 0 #111,
    24px 0 0 -4px #fff, 24px 0 0 0 #111,
    36px -2px 0 -4px #fff, 36px -2px 0 0 #111,
    6px 12px 0 -4px #fff, 6px 12px 0 0 #111,
    18px 10px 0 -4px #fff, 18px 10px 0 0 #111,
    30px 12px 0 -4px #fff, 30px 12px 0 0 #111;
}

.big-mamma i::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 8px;
  height: 3px;
  background: #111;
  border-radius: 999px;
}

.big-mamma strong {
  display: block;
  color: #111;
  font-weight: 950;
  line-height: 0.9;
}

.flatchr {
  flex-direction: row;
  gap: 10px;
  color: #303236;
  background: #fff !important;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.flatchr i {
  position: relative;
  display: block;
  width: 38px;
  height: 46px;
}

.flatchr i::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  width: 24px;
  height: 29px;
  background: #20aac3;
  border-radius: 999px 999px 18px 18px;
}

.flatchr i::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 26px;
  background:
    radial-gradient(13px 29px at 6px 1px, #20aac3 58%, transparent 61%),
    radial-gradient(13px 29px at 16px 1px, #20aac3 58%, transparent 61%),
    radial-gradient(13px 29px at 26px 1px, #20aac3 58%, transparent 61%),
    radial-gradient(13px 29px at 36px 1px, #20aac3 58%, transparent 61%);
}

.flatchr strong {
  display: block;
  color: #303236;
  font-weight: 850;
  line-height: 1;
}

.objectif-batiment {
  gap: 10px;
  color: #557184;
  background: #fff !important;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.objectif-batiment i {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  border: 3px solid #557184;
  border-left-color: transparent;
  border-radius: 999px;
  transform: rotate(18deg);
}

.objectif-batiment i::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 16px;
  width: 46px;
  height: 26px;
  background: #557184;
  clip-path: polygon(0 50%, 100% 0, 82% 50%, 100% 100%);
}

.objectif-batiment i::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 26px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 0 #fff, -8px 20px 0 -2px #fff, 8px 20px 0 -2px #fff;
}

.objectif-batiment strong {
  display: block;
  max-width: 112px;
  color: #557184;
  font-weight: 850;
  line-height: 1.08;
  text-align: center;
}

.crouton {
  position: relative;
  color: #080808;
  background: #fff !important;
  font-family: Impact, "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.crouton strong {
  display: block;
  color: #080808;
  font-weight: 950;
  line-height: 0.9;
  transform: scaleX(1.12);
}

.crouton i {
  position: absolute;
  right: 28px;
  top: 42px;
  width: 21px;
  height: 18px;
  border: 5px solid #080808;
  border-left-width: 8px;
  border-radius: 56% 44% 50% 50%;
  transform: rotate(24deg);
}

.crouton i::before {
  content: "";
  position: absolute;
  left: -64px;
  top: 8px;
  width: 22px;
  height: 11px;
  background: #080808;
  border-radius: 999px 999px 4px 4px;
  transform: rotate(8deg);
}

.crouton i::after {
  content: "";
  position: absolute;
  inset: 2px 3px 4px 5px;
  background: #fff;
  clip-path: polygon(0 0, 100% 20%, 64% 100%, 14% 72%);
}

.sacre-frenchy {
  position: relative;
  width: 132px;
  min-width: 132px;
  height: 132px;
  min-height: 132px;
  padding: 0;
  color: #171e4f;
  background: #fff !important;
  border: 3px solid #8a7a4a !important;
  border-radius: 999px !important;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sacre-frenchy::before,
.sacre-frenchy::after {
  content: "★ ★ ★";
  position: absolute;
  top: 49px;
  color: #d92429;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.sacre-frenchy::before {
  left: 8px;
  transform: rotate(-82deg);
}

.sacre-frenchy::after {
  right: 8px;
  transform: rotate(82deg);
}

.sacre-frenchy i {
  position: relative;
  display: block;
  width: 54px;
  height: 58px;
  margin-top: 28px;
}

.sacre-frenchy i::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 42px;
  height: 40px;
  background: #171e4f;
  clip-path: polygon(9% 45%, 0 20%, 24% 28%, 17% 0, 42% 22%, 60% 6%, 57% 33%, 92% 21%, 72% 48%, 100% 66%, 63% 63%, 60% 100%, 40% 70%, 12% 87%, 27% 58%);
}

.sacre-frenchy i::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 18px;
  height: 18px;
  background: #8a7a4a;
  clip-path: polygon(50% 0, 61% 34%, 98% 22%, 72% 50%, 98% 78%, 61% 66%, 50% 100%, 39% 66%, 2% 78%, 28% 50%, 2% 22%, 39% 34%);
}

.sacre-frenchy strong,
.sacre-frenchy small {
  position: absolute;
  left: 50%;
  display: block;
  color: #171e4f;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.sacre-frenchy strong {
  top: 12px;
  font-size: 0.58rem;
}

.sacre-frenchy small {
  bottom: 12px;
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
}

.kumo {
  width: 180px;
  min-width: 180px;
  height: 180px;
  min-height: 180px;
  padding: 0;
  gap: 0;
  color: #fff;
  font-size: 2.55rem;
  line-height: 0.78;
  letter-spacing: -0.04em;
  background: #dc2d2e !important;
  border: 0;
  border-radius: 999px;
}

.kumo strong {
  display: block;
  color: #fff;
  font-weight: 950;
}

.viltier {
  color: #fff;
  background: #f7bd00 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 350;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section,
.process,
.contact-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 86px);
}

.intro,
.about-preview,
.split,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro p:last-child,
.about-preview-card p,
.contact-section > div p {
  margin: 0;
  color: var(--muted);
  font-size: 1.13rem;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
}

h3 {
  margin: 0;
  font-size: 1.14rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  flex: 0 1 calc((100% - 36px) / 3);
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 28px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px -36px rgba(16, 33, 61, 0.45);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--sky);
}

.service-card:nth-child(2)::before {
  background: var(--mint);
}

.service-card:nth-child(3)::before {
  background: var(--sun);
}

.service-card:nth-child(4)::before {
  background: var(--coral);
}

.service-card:nth-child(5)::before {
  background: var(--lilac);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 52px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-radius: 14px;
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card p,
.process-grid p,
.commitments p {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-preview {
  padding-top: clamp(32px, 5vw, 70px);
}

.about-preview-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(230, 238, 248, 0.78)),
    var(--paper);
  box-shadow: 0 22px 58px -42px rgba(16, 33, 61, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 850;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
}

.process {
  color: #fff;
  background: var(--ink);
  border-radius: 34px;
  margin: 0 24px;
  overflow: hidden;
}

.process .section-heading {
  align-items: start;
}

.process .eyebrow {
  color: var(--sky);
}

.process h2 {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid div {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.06);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 44px;
  color: var(--ink);
  font-weight: 900;
  background: var(--sky);
  border-radius: 999px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.commitments {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.commitments div {
  padding: 26px;
  background: rgba(255, 253, 247, 0.82);
}

.reviews {
  padding-top: clamp(52px, 7vw, 88px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 46px -38px rgba(16, 33, 61, 0.42);
}

.stars {
  display: block;
  color: var(--sun);
  font-size: 1.12rem;
  letter-spacing: 0.04em;
}

.review-card p {
  margin: 26px 0 24px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: end;
  padding: clamp(72px, 9vw, 122px) clamp(20px, 6vw, 86px) clamp(56px, 7vw, 88px);
  background:
    radial-gradient(560px 340px at 80% 15%, rgba(136, 215, 189, 0.24), transparent 62%),
    radial-gradient(520px 360px at 10% 95%, rgba(168, 200, 220, 0.34), transparent 62%);
}

.subpage-hero > * {
  max-width: 1180px;
}

.subpage-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.subpage-hero > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 86px);
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 58px -42px rgba(16, 33, 61, 0.42);
}

.about-panel ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-weight: 650;
}

.about-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
}

.about-numbers {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) clamp(20px, 6vw, 86px);
}

.about-numbers .section-heading {
  padding: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.about-stats div {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(65, 99, 161, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 200, 220, 0.38), rgba(255, 253, 247, 0.92));
  box-shadow: 0 22px 58px -42px rgba(16, 33, 61, 0.48);
}

.about-stats div::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.62);
}

.about-stats div:nth-child(2) {
  background: linear-gradient(135deg, rgba(136, 215, 189, 0.42), rgba(255, 253, 247, 0.92));
}

.about-stats div:nth-child(3) {
  background: linear-gradient(135deg, rgba(242, 200, 107, 0.44), rgba(255, 253, 247, 0.92));
}

.about-stats div:nth-child(4) {
  background: linear-gradient(135deg, rgba(239, 146, 124, 0.34), rgba(255, 253, 247, 0.92));
}

.about-stats strong,
.about-stats p,
.stat-icon,
.stat-number,
.stat-label {
  position: relative;
  z-index: 1;
  display: block;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--brand-dark);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.74);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.stat-number {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.stat-label {
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 1.06rem;
  font-weight: 900;
}

.about-stats p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.about-contact {
  align-items: center;
}

.about-contact .button {
  justify-self: start;
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(520px 320px at 12% 16%, rgba(168, 200, 220, 0.2), transparent 68%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 34px 34px 0 0;
  max-width: none;
}

.contact-section .eyebrow {
  color: var(--sky);
}

.contact-section > div p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-badges span {
  padding: 8px 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form label,
.choice-group legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  display: block;
  margin-bottom: 10px;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-grid label {
  position: relative;
  display: inline-flex;
  font-size: 0.88rem;
}

.choice-grid input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.choice-grid label:nth-child(1) span {
  background: rgba(168, 200, 220, 0.22);
}

.choice-grid label:nth-child(2) span {
  background: rgba(136, 215, 189, 0.2);
}

.choice-grid label:nth-child(3) span {
  background: rgba(242, 200, 107, 0.22);
}

.choice-grid label:nth-child(4) span {
  background: rgba(239, 146, 124, 0.18);
}

.choice-grid label:nth-child(5) span {
  background: rgba(154, 149, 223, 0.18);
}

.choice-grid span:hover {
  transform: translateY(-1px);
  border-color: rgba(65, 99, 161, 0.38);
}

.choice-grid input:checked + span {
  color: #fff;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), #5a7bc0);
  box-shadow: 0 12px 24px -18px rgba(65, 99, 161, 0.9);
}

.range-field {
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(168, 200, 220, 0.2), rgba(136, 215, 189, 0.14)),
    #fff;
}

.range-field > span,
.range-field small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.range-field strong {
  color: var(--brand-dark);
  font-size: 1.08rem;
}

.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.range-field small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(65, 99, 161, 0.14);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honey {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-reassurance {
  margin: -2px 0 0;
  padding: 12px 14px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  border: 1px solid rgba(65, 99, 161, 0.14);
  border-radius: 14px;
  background: rgba(168, 200, 220, 0.18);
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 0.9fr) minmax(180px, 0.55fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
  padding: clamp(46px, 6vw, 72px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(520px 320px at 12% 0%, rgba(168, 200, 220, 0.2), transparent 68%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 0;
  margin-top: -1px;
}

.footer-brand img {
  width: 178px;
  max-width: 70vw;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.94);
}

.footer-brand p {
  max-width: 350px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.footer-brand span {
  display: block;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: grid;
  gap: 20px;
  padding-top: 10px;
}

.footer-contact a,
.footer-contact > span {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 850;
}

.footer-contact svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-links {
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
}

.footer-links a:hover,
.footer-contact a:hover span {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 980px) {
  .hero-inner,
  .trust-band,
  .intro,
  .about-preview,
  .split,
  .contact-section,
  .process-grid,
  .review-grid,
  .subpage-hero,
  .about-story,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .hero-content,
  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-copy,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .service-grid {
    display: flex;
  }

  .service-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links {
    width: min(100%, 460px);
  }

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

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 16px;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: min(180px, 70vw);
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .visual-card {
    left: 14px;
    bottom: 14px;
  }

  .shine-card {
    display: none;
  }

  .service-grid {
    display: flex;
  }

  .service-card {
    flex-basis: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .service-card {
    min-height: 230px;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .process {
    margin: 0;
    border-radius: 0;
  }

  .footer {
    padding: 40px 22px;
  }

  .footer-brand img {
    width: 156px;
    padding: 12px 16px;
  }

  .footer-brand p {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .footer-brand span {
    margin-top: 22px;
  }

  .footer-contact {
    gap: 16px;
  }

  .footer-contact a,
  .footer-contact > span {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    font-size: 1rem;
    line-height: 1.35;
  }

  .footer-contact svg {
    width: 26px;
    height: 26px;
    margin-top: 1px;
  }

  .footer-contact span span,
  .footer-contact a span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-links {
    gap: 12px;
  }
}
