/* =====================================================================
   Cleanel Chrome — Design System (RIVR-inspired, glass / light / refined)
   Nettoyage Saint-Brieuc — Côtes-d'Armor
   ===================================================================== */

:root {
  /* — Palette (muted navy on light grey, RIVR) — */
  --c-bg:        #f5f7fa;
  --c-surface:   #ffffff;
  --navy:        30, 50, 90;                 /* rgb parts for rgba() */
  --c-text:      rgba(20, 34, 58, 0.94);
  --c-text-soft: rgba(28, 44, 72, 0.68);
  --c-text-mute: rgba(30, 50, 90, 0.55);
  --c-heading:   #131f33;
  --c-line:      rgba(30, 50, 90, 0.10);
  --c-line-soft: rgba(30, 50, 90, 0.06);

  /* — Action accent (fresh water-blue: invites the click, on-brand for glass/vitres) — */
  --accent:        #0a78c2;
  --accent-deep:   #075f9e;
  --accent-bright: #1aa3df;
  --accent-tint:   rgba(10,120,194,.10);
  --accent-tint-2: rgba(10,120,194,.16);

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 48px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(20,40,75,.06), 0 8px 22px rgba(20,40,75,.06);
  --sh-md: 0 2px 6px rgba(20,40,75,.05), 0 14px 36px rgba(20,40,75,.10);
  --sh-lg: 0 8px 18px rgba(20,40,75,.08), 0 36px 80px rgba(20,40,75,.16);

  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.08; color: var(--c-heading); }

/* ===================== LAYOUT ===================== */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section-pad { padding-block: clamp(64px, 9vw, 130px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--accent); }

.h-section { font-size: clamp(30px, 5vw, 58px); letter-spacing: -0.038em; line-height: 1.02; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--c-text-soft); max-width: 56ch; }

/* ===================== BUTTONS (RIVR pill + arrow) ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 400; white-space: nowrap;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, box-shadow .25s, opacity .2s;
}
.btn .arrow {
  display: grid; place-items: center; border-radius: 50%; flex: none;
  width: 30px; height: 30px;
}
.btn .arrow svg { width: 16px; height: 16px; }
.btn:active { transform: scale(.985); }

.btn-dark { background: var(--accent); color: #fff; padding: 6px 6px 6px 22px; box-shadow: 0 1px 2px rgba(8,70,120,.22), 0 8px 22px rgba(10,120,194,.32); }
.btn-dark .arrow { background: rgba(255,255,255,.22); }
.btn-dark:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(8,70,120,.24), 0 16px 34px rgba(10,120,194,.4); }

.btn-light { background: #fff; color: var(--c-text); padding: 6px 6px 6px 22px; box-shadow: var(--sh-sm); }
.btn-light .arrow { background: rgba(30,50,90,.10); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-glass { background: rgba(255,255,255,.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; padding: 6px 6px 6px 22px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.btn-glass .arrow { background: rgba(255,255,255,.2); }
.btn-glass:hover { background: rgba(255,255,255,.24); transform: translateY(-1px); }

.btn-plain { padding: 13px 24px; }
.btn-lg { font-size: 16px; padding: 8px 8px 8px 26px; }
.btn-lg .arrow { width: 34px; height: 34px; }
.btn-block { width: 100%; justify-content: center; padding-left: 18px; padding-right: 18px; }
.ico { width: 20px; height: 20px; flex: none; }

/* ===================== NAVBAR ===================== */
.nav-shell { position: fixed; inset: 14px 0 auto 0; z-index: 100; padding-inline: 24px; transition: inset .3s; }
.nav {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 9px 9px 22px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 6px 22px rgba(30,50,90,.08);
  transition: background .3s, box-shadow .3s;
}
.nav-scrolled .nav { background: rgba(255,255,255,.8); box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 10px 28px rgba(30,50,90,.12); }
.brand { display: flex; align-items: center; gap: 11px; font-size: 19px; letter-spacing: -0.03em; color: var(--c-text); }
.brand b { font-weight: 400; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; flex: none; background: #fff url(logo.png) center / 66% no-repeat; box-shadow: inset 0 0 0 1px rgba(20,40,75,.1), 0 1px 4px rgba(20,40,75,.14); }
.brand-mark svg { display: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; color: var(--c-text-soft); transition: color .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--c-text); }
.nav-phone:hover { opacity: .7; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; width: 19px; height: 1.8px; background: var(--c-text); border-radius: 2px; transition: .3s; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(240,240,240,.98); backdrop-filter: blur(20px); padding: 96px 24px 40px; display: flex; flex-direction: column; gap: 4px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .3s; }
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a:not(.btn) { font-size: 22px; padding: 16px 8px; border-bottom: 1px solid var(--c-line); color: var(--c-text); }
.mobile-menu .btn { margin-top: 18px; }

/* ===================== HERO (RIVR layout) ===================== */
.hero-frame { padding: 12px; padding-top: 12px; }
@media (min-width: 768px) { .hero-frame { padding: 18px; } }
.hero {
  position: relative; width: 100%; max-width: 1536px; margin-inline: auto;
  min-height: clamp(620px, 94vh, 940px);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  background: #cdd6df;
}
@media (min-width: 768px) { .hero { border-radius: var(--r-xl); } }
/* Hero sans image : dégradé premium calme + halo accent */
.hero.hero-plain {
  background:
    radial-gradient(72% 58% at 80% 8%, rgba(26,163,223,.42) 0%, rgba(26,163,223,0) 55%),
    radial-gradient(60% 60% at 8% 95%, rgba(10,120,194,.30) 0%, rgba(10,120,194,0) 55%),
    linear-gradient(155deg, #0d1f38 0%, #123150 45%, #0c2747 100%);
}
.hero.hero-plain::before { background: none; }

.hero video, .hero .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 60% center; z-index: 0;
}
/* RIVR form: centered text at the top sits on a soft light scrim; a gentle bottom
   shade keeps the glass card + cutout corner legible. Subject stays visible. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(9,16,30,.86) 0%, rgba(9,16,30,.62) 20%, rgba(9,16,30,.22) 40%, rgba(9,16,30,0) 58%),
    linear-gradient(to right, rgba(9,16,30,.5) 0%, rgba(9,16,30,.12) 40%, rgba(9,16,30,0) 65%),
    linear-gradient(to bottom, rgba(9,16,30,.28) 0%, rgba(9,16,30,0) 18%);
}
.hero-content { position: relative; z-index: 2; width: 100%; height: 100%; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }

/* hero navbar (inside frame) */
.hero-nav { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px clamp(18px, 3vw, 40px); }
.hero-nav .brand { color: var(--c-text); }
.hero-nav .nav-links a { color: var(--c-text-soft); }
.hero-nav .nav-links a:hover { color: var(--c-text); }

/* hero text — cinematic low band: left-aligned, bottom, on the 1180 column */
.hero-text { width: 100%; max-width: 1180px; margin-inline: auto; text-align: left; padding: 0 24px clamp(40px, 6vw, 64px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.15); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
  font-size: 14px; color: #fff;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--accent-bright); }
.hero-badge.accent { background: #fff; color: var(--accent-deep); font-weight: 700; box-shadow: 0 4px 14px rgba(9,16,30,.22); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(33px, 5.8vw, 72px); color: #fff; letter-spacing: -0.042em; line-height: 1.02; font-weight: 600; max-width: 16ch; text-shadow: 0 2px 26px rgba(8,15,28,.45); }
.hero h1 em { font-style: normal; color: #cfe3f2; }
.hero-sub { margin: 20px 0 0; max-width: 46ch; font-size: clamp(15px, 1.6vw, 19px); font-weight: 400; color: rgba(255,255,255,.88); text-shadow: 0 1px 3px rgba(8,15,28,.6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; margin-top: 30px; }

/* legacy floating hero panels — hidden in the cinematic low-band layout */
.hero-card, .hero-corner { display: none !important; }

/* hero bottom-left card */
.hero-card {
  position: absolute; left: clamp(14px, 3vw, 40px); bottom: clamp(110px, 14vw, 40px);
  padding: clamp(16px, 2vw, 22px); border-radius: var(--r-md);
  background: rgba(255,255,255,.42); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 14px 40px rgba(18,28,50,.16);
  display: flex; flex-direction: column; gap: 14px; min-width: 210px; max-width: 280px;
}
.hero-card .big { font-size: clamp(30px, 4vw, 40px); color: var(--c-text); letter-spacing: -0.03em; line-height: 1; }
.hero-card .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--c-text-soft); margin-top: 6px; }

/* hero bottom-right cutout corner */
.hero-corner {
  position: absolute; bottom: 0; right: 0; z-index: 3;
  padding: 22px 24px 26px 56px; background: var(--c-bg);
  border-top-left-radius: var(--r-lg);
  display: flex; align-items: center; gap: 16px;
}
.hero-corner .mask-t, .hero-corner .mask-l { position: absolute; width: 32px; height: 32px; pointer-events: none; }
.hero-corner .mask-t { top: -32px; right: 0; }
.hero-corner .mask-l { bottom: 0; left: -32px; }
.hero-corner .ic { width: 50px; height: 50px; border-radius: 50%; flex: none; display: grid; place-items: center; background: rgba(30,50,90,.06); box-shadow: inset 0 0 0 1px rgba(30,50,90,.10); color: rgba(30,50,90,.85); }
.hero-corner .ic svg { width: 22px; height: 22px; }
.hero-corner .t1 { font-size: 18px; color: var(--c-text); }
.hero-corner .t2 { font-size: 13px; color: var(--c-text-soft); }
@media (max-width: 640px) { .hero-corner { display: none; } .hero-card { left: 14px; right: 14px; bottom: 96px; max-width: none; } }

/* ===================== SECTION HEAD ===================== */
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head .lead { margin-top: 18px; }
.sec-head.center .lead { margin-inline: auto; }

/* ===================== SERVICES (photo cards) ===================== */
.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer;
  box-shadow: var(--sh-sm); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.svc-card::before {
  content: ""; position: absolute; z-index: 3; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7M9 7h8v8'/%3E%3C/svg%3E") center / 17px no-repeat;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.34);
  transition: background-color .25s, box-shadow .25s, transform .3s;
}
.svc-card:hover::before { background-color: var(--accent); box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); transform: translateY(-1px); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(18,28,48,.82) 0%, rgba(18,28,48,.25) 45%, rgba(18,28,48,0) 70%); }
.svc-body { position: relative; z-index: 2; padding: 26px; color: #fff; }
.svc-body h3 { color: #fff; font-size: 23px; margin-bottom: 8px; letter-spacing: -0.02em; }
.svc-body p { color: rgba(255,255,255,.82); font-size: 15px; }
.svc-num { position: absolute; top: 20px; left: 22px; z-index: 2; font-size: 13px; letter-spacing: .1em; color: rgba(255,255,255,.8); }

/* ===================== SPLIT / WHY ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: grid; gap: 2px; margin-top: 8px; }
.why-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--c-line); }
.why-item:last-child { border-bottom: none; }
.why-item .ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(30,50,90,.05); box-shadow: inset 0 0 0 1px rgba(30,50,90,.08); color: rgba(30,50,90,.8); }
.why-item .ic svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 18px; color: var(--c-text); margin-bottom: 4px; }
.why-item p { font-size: 15px; color: var(--c-text-soft); }
.split-visual { border-radius: var(--r-lg); overflow: hidden; min-height: 480px; box-shadow: var(--sh-md); position: relative; }
.split-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ===================== DARK ANCHOR SECTION (depth / contrast) ===================== */
.section-dark { background: #0a1628; color: rgba(255,255,255,.7); position: relative; overflow: hidden; isolation: isolate; }
.section-dark::before {
  content: ""; position: absolute; z-index: -1; width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,120,194,.42) 0%, rgba(10,120,194,.10) 45%, transparent 70%);
  filter: blur(30px); top: -260px; right: -140px; pointer-events: none;
}
.section-dark::after {
  content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 0% 100%, rgba(26,163,223,.12), transparent 55%);
}
.section-dark .h-section, .section-dark h3 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.64); }
.section-dark .eyebrow { color: var(--accent-bright); }
.section-dark .eyebrow::before { background: var(--accent-bright); }
.section-dark .why-item { border-color: rgba(255,255,255,.10); }
.section-dark .why-item p { color: rgba(255,255,255,.58); }
.section-dark .why-item .ic { background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); color: var(--accent-bright); }
.section-dark .split-visual { box-shadow: 0 30px 70px rgba(0,0,0,.5); }

/* ===================== CRÉDIT D'IMPÔT ===================== */
.tax { background: var(--c-surface); border-block: 1px solid var(--c-line); }
.tax .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; padding-block: clamp(56px, 8vw, 100px); }
.tax h2 { font-size: clamp(26px, 3.8vw, 42px); letter-spacing: -0.03em; }
.tax p { color: var(--c-text-soft); margin-top: 16px; max-width: 48ch; }
.calc { border-radius: var(--r-lg); padding: 30px; background: var(--c-bg); box-shadow: inset 0 0 0 1px var(--c-line); }
.calc h3 { font-size: 17px; color: var(--c-text); margin-bottom: 16px; }
.calc .field { margin-bottom: 8px; }
.calc .row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--c-line); font-size: 15px; color: var(--c-text-soft); }
.calc .final { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding: 16px 18px; border-radius: var(--r-sm); background: var(--accent-tint); box-shadow: inset 0 0 0 1px var(--accent-tint-2); }
.calc .final span { color: var(--accent-deep); font-weight: 600; }
.calc .final b { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: var(--accent-deep); }
.calc .note { font-size: 12px; color: var(--c-text-mute); margin-top: 14px; }

/* ===================== SPÉCIALITÉ (syndrome de Diogène) ===================== */
.special .panel {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(10,120,194,.08), rgba(10,120,194,.02) 60%);
  box-shadow: inset 0 0 0 1px var(--c-line);
  padding: clamp(30px, 4.5vw, 56px);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.special .ic-big {
  width: clamp(96px, 12vw, 132px); height: clamp(96px, 12vw, 132px); border-radius: 28px; flex: none;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep)); display: grid; place-items: center;
  color: #fff; box-shadow: 0 18px 40px rgba(10,120,194,.32);
}
.special .ic-big svg { width: 52%; height: 52%; }
.special h2 { font-size: clamp(24px, 3.4vw, 38px); letter-spacing: -0.03em; }
.special .lead { margin-top: 14px; }
.special-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.schip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--sh-sm); font-size: 14px; color: var(--c-text); }
.schip svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
@media (max-width: 820px) { .special .panel { grid-template-columns: 1fr; } .special .ic-big { order: -1; } }

/* ===================== TRUST BADGES (crédit d'impôt / avance immédiate) ===================== */
.tax-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.tax-badge { display: flex; align-items: center; gap: 13px; padding: 12px 20px 12px 12px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--sh-sm); }
.tax-badge .seal { width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; }
.tax-badge .seal.gold { background: linear-gradient(135deg, #ffce3a, #e0a200); color: #4a3500; font-size: 15px; letter-spacing: -0.02em; }
.tax-badge .seal.blue { background: linear-gradient(135deg, var(--accent-bright), var(--accent)); }
.tax-badge .seal svg { width: 24px; height: 24px; }
.tax-badge b { display: block; font-size: 15.5px; color: var(--c-text); font-weight: 600; letter-spacing: -0.01em; }
.tax-badge span { display: block; font-size: 12.5px; color: var(--c-text-mute); margin-top: 1px; }
.credit-logo { display: block; width: clamp(132px, 17vw, 168px); height: auto; margin-top: 26px; }

/* ===================== ZONES ===================== */
.zone-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.zone-tag { padding: 9px 16px; border-radius: var(--r-pill); background: var(--c-surface); box-shadow: inset 0 0 0 1px var(--c-line); font-size: 14.5px; color: var(--c-text-soft); }
a.zone-tag { transition: color .2s, box-shadow .2s; }
a.zone-tag:hover { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.zone-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); min-height: 380px; }
.zone-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.2) contrast(.95); }

/* ===================== FAQ ===================== */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--c-surface); border-radius: var(--r-md); box-shadow: var(--sh-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 24px; font-size: 17px; color: var(--c-text); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(30,50,90,.06); display: grid; place-items: center; transition: .3s; color: var(--c-text); }
.faq details[open] summary .pm { transform: rotate(45deg); background: rgba(30,50,90,.9); color: #fff; }
.faq .ans { padding: 0 24px 22px; color: var(--c-text-soft); font-size: 15.5px; }

/* ===================== CTA ===================== */
.cta-inner { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: clamp(44px, 7vw, 90px) 24px; text-align: center; }
.cta-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-inner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(20,32,55,.78), rgba(20,32,55,.5)); }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4.2vw, 48px); letter-spacing: -0.03em; }
.cta-inner p { color: rgba(255,255,255,.85); max-width: 46ch; margin: 16px auto 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ===================== CONTACT / FORM ===================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 12px; }
.ci-item { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: var(--r-md); background: var(--c-surface); box-shadow: var(--sh-sm); }
.ci-item .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(30,50,90,.9); color: #fff; }
.ci-item .ic svg { width: 22px; height: 22px; }
.ci-item > span:last-child { display: flex; flex-direction: column; gap: 2px; }
.ci-item .l { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-mute); }
.ci-item .v { display: block; font-size: 17px; color: var(--c-text); }
.ci-item .v.small { font-size: 14.5px; }

.form { background: var(--c-surface); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-md); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--c-text-soft); }
.field label .req { color: #c0584f; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--c-bg); box-shadow: inset 0 0 0 1px var(--c-line);
  transition: box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: #fff; box-shadow: inset 0 0 0 1.5px rgba(30,50,90,.55); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--c-text-mute); margin-bottom: 18px; }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: rgb(30,50,90); }
.form-note { text-align: center; font-size: 13px; color: var(--c-text-mute); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 18px; border-radius: var(--r-md); background: rgba(30,50,90,.06); color: var(--c-text); margin-top: 16px; }

/* ===================== FOOTER ===================== */
.footer { background: rgb(24, 36, 60); color: rgba(255,255,255,.66); padding-block: 64px 32px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer p { font-size: 14.5px; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-weight: 400; }
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.66); }
.footer ul a:hover { color: #fff; }
.footer .fcontact a { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; color: #fff; }
.footer .fcontact svg { width: 18px; height: 18px; flex: none; color: rgba(255,255,255,.7); }
.footer .brand-mark { background: #fff url(logo.png) center / 66% no-repeat; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ===================== WHATSAPP FLOATING BUTTON ===================== */
.wa-fab {
  position: fixed; right: 20px; bottom: 24px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.45), inset 0 1px 1px rgba(255,255,255,.3);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.wa-fab:hover { transform: scale(1.07); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
.wa-fab svg { width: 32px; height: 32px; position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }
@media (max-width: 720px) { .wa-fab { right: 14px; bottom: 80px; width: 54px; height: 54px; } .wa-fab svg { width: 29px; height: 29px; } }

/* ===================== MOBILE CALL BAR ===================== */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--c-line); box-shadow: 0 -6px 22px rgba(30,50,90,.14); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-size: 15px; }
.callbar .call { background: #fff; color: var(--c-text); }
.callbar .quote { background: rgba(30,50,90,.95); color: #fff; }
.callbar svg { width: 18px; height: 18px; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===================== PROSE / BREADCRUMB (landing) ===================== */
.crumb { font-size: 13.5px; color: var(--c-text-mute); margin-bottom: 28px; }
.crumb a { color: var(--c-text-soft); }
.crumb span { margin: 0 8px; }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 34px); margin: 44px 0 14px; color: var(--c-heading); letter-spacing: -0.02em; }
.prose h3 { font-size: 21px; margin: 30px 0 8px; color: var(--c-text); }
.prose p { color: var(--c-text-soft); margin-bottom: 14px; }
.prose ul.bullets { display: grid; gap: 11px; margin: 16px 0 22px; }
.prose ul.bullets li { display: flex; gap: 11px; align-items: flex-start; color: var(--c-text-soft); }
.prose ul.bullets li svg { width: 19px; height: 19px; color: rgba(30,50,90,.7); flex: none; margin-top: 3px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .svc, .split, .tax .wrap, .contact-grid { grid-template-columns: 1fr; }
  .split-visual { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .nav-shell { inset: 10px 0 auto 0; }
  .nav { padding: 8px 8px 8px 18px; }
  .brand { font-size: 17px; }
  .brand > span { white-space: nowrap; }
  .svc, .footer-grid, .form .row { grid-template-columns: 1fr; }
  .callbar { display: grid; }
  .footer { padding-bottom: 88px; }
  .hero { min-height: 82vh; }
  .hero-text { padding-bottom: 36px; max-width: 100%; }
  .hero h1 { font-size: clamp(30px, 9vw, 46px); max-width: 100%; }
  .hero-chips { gap: 7px; }
  .hero-badge { font-size: 12.5px; padding: 7px 14px; }

  /* App-like touch ergonomics */
  .svc-card { min-height: 360px; }
  .footer ul { gap: 2px; }
  .footer ul a { display: inline-block; padding: 11px 0; }
  .footer .fcontact a { padding: 11px 0; margin-bottom: 2px; }
  .footer-bottom { gap: 6px; }
  .footer-bottom a { display: inline-block; padding: 8px 0; }
  .consent { gap: 12px; align-items: center; }
  .consent input { width: 22px; height: 22px; }
  .section-pad { padding-block: clamp(52px, 11vw, 130px); }
  .ci-item { padding: 16px 18px; }
}
