/* ============================================================
   KORVA — styles.css
   Palette : Marine #0B2D5E · Blanc #FFFFFF · Gris clair #F5F7FA
   Typography : Cormorant Garamond (titres) + Inter (corps)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --marine:    #0B2D5E;
  --marine-dk: #071E40;
  --marine-lt: #153E7E;
  --white:     #FFFFFF;
  --off:       #F5F7FA;
  --muted:     #8A96A8;
  --text:      #1A2332;
  --border:    #E2E8F0;
  --font-d:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Inter', system-ui, sans-serif;
  --radius:    4px;
  --trans:     0.35s cubic-bezier(.4,0,.2,1);
  --shadow:    0 4px 24px rgba(11,45,94,.10);
  --max:       1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--marine);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Boutons ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--marine);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}
.btn-primary:hover {
  background: var(--marine-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,45,94,.25);
}
.btn-primary.btn-lg { padding: 16px 48px; font-size: 15px; }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--marine);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid var(--marine);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.btn-outline:hover {
  background: var(--marine);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--marine-dk);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  max-width: 640px;
  width: calc(100% - 48px);
  font-size: 14px;
  transition: opacity .3s, transform .3s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 8px 20px;
  background: var(--white);
  color: var(--marine);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: opacity .2s;
}
.btn-cookie-accept:hover { opacity: .85; }
.btn-cookie-refuse {
  padding: 8px 20px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.btn-cookie-refuse:hover { border-color: var(--white); }

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(11,45,94,.08);
}
.site-header.scrolled .nav-logo,
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-cta { color: var(--white) !important; }

/* Header solide dès le chargement (pages à fond clair, ex : contact) */
.site-header.header-solid {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(11,45,94,.08);
}
.site-header.header-solid .nav-logo,
.site-header.header-solid .nav-link { color: var(--text); }
.site-header.header-solid .nav-cta { background: var(--marine); color: var(--white) !important; }
.site-header.header-solid .nav-cta:hover { background: var(--marine-lt); }
.site-header.header-solid .nav-toggle span { background: var(--text); }
.site-header.header-solid .logo-img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(48%) saturate(1800%) hue-rotate(196deg) brightness(95%) contrast(98%);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .18em;
  transition: color var(--trans);
}
.logo-svg { height: 32px; width: auto; }
.logo-sm { height: 24px; }

/* Logo image (vrai logo PNG) — taille strictement contrôlée */
.nav-logo .logo-img {
  height: 36px;
  width: auto;
  max-height: 36px;
  max-width: 60px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: filter var(--trans);
}
.footer-logo .logo-img {
  height: 28px;
  width: auto;
  max-height: 28px;
  max-width: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
/* Au scroll : barre blanche → teinter le logo en bleu marine pour qu'il reste visible */
.site-header.scrolled .nav-logo .logo-img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(48%) saturate(1800%) hue-rotate(196deg) brightness(95%) contrast(98%);
}
/* Footer : fond marine foncé → logo blanc tel quel */
.footer-logo .logo-img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }

.nav-cta {
  padding: 10px 24px;
  background: var(--white);
  color: var(--marine) !important;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--off); transform: translateY(-1px); }
.site-header.scrolled .nav-cta { background: var(--marine); color: var(--white) !important; }
.site-header.scrolled .nav-cta:hover { background: var(--marine-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.site-header.scrolled .nav-toggle span { background: var(--text); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Typography helpers ── */
.eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--marine);
  margin-bottom: 14px;
}
.section-head { margin-bottom: 56px; }
.section-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--marine); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--marine);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* subtle radial glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.75);
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 48px;
}
.d-br { display: none; }
@media (min-width: 768px) { .d-br { display: block; } }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; }
  50% { opacity: .8; }
}

/* ── STATS ── */
.stats-section {
  background: var(--off);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--marine);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-unit { font-size: clamp(24px, 3vw, 36px); }
.stat-text { font-size: clamp(28px, 3.5vw, 44px); }
.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── VALUE SECTION ── */
.value-section {
  padding: 100px 0;
  background: var(--white);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--marine);
}
.v-icon {
  width: 40px; height: 40px;
  color: var(--marine);
  margin-bottom: 20px;
}
.v-icon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PREVIEW SECTION ── */
.preview-section {
  padding: 100px 0;
  background: var(--off);
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.preview-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(11,45,94,.06);
  transition: transform var(--trans), box-shadow var(--trans);
}
.preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.preview-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.pi-1 { background: linear-gradient(135deg, #1a3a6e 0%, #2d5a9e 100%); }
.pi-2 { background: linear-gradient(135deg, #0d2545 0%, #1e4080 100%); }
.pi-3 { background: linear-gradient(135deg, #142d5c 0%, #254d99 100%); }
.pi-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,29,60,.4);
  opacity: 0;
  transition: opacity var(--trans);
}
.preview-card:hover .pi-overlay { opacity: 1; }
.pi-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preview-info { padding: 20px 24px; }
.preview-info h3 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.preview-info p { font-size: 13px; color: var(--muted); }

.section-cta { text-align: center; }

/* ── CTA BAND ── */
.cta-band {
  padding: 100px 0;
  background: var(--marine);
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--marine);
  padding: 160px 0 80px;
  text-align: center;
}
.page-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.75); }
.page-sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 500px;
  margin: 0 auto;
}
.page-hero .eyebrow { color: rgba(255,255,255,.55); }

/* ── RÉALISATIONS ── */
.real-grid-section { padding: 80px 0; }
.real-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.real-card {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.real-img {
  height: 140px;
  background: linear-gradient(135deg, var(--marine-dk) 0%, var(--marine-lt) 100%);
  position: relative;
}
/* unique tints per sector */
.ri-boulangerie { background: linear-gradient(135deg, #0d2545 0%, #1e4a8a 100%); }
.ri-plomberie   { background: linear-gradient(135deg, #122b52 0%, #2256a0 100%); }
.ri-beaute      { background: linear-gradient(135deg, #0b2447 0%, #1a4285 100%); }
.ri-menuiserie  { background: linear-gradient(135deg, #0e2a50 0%, #1d4891 100%); }
.ri-coiffure    { background: linear-gradient(135deg, #102c55 0%, #1f4d96 100%); }
.ri-electricite { background: linear-gradient(135deg, #0c2649 0%, #1b448e 100%); }
.ri-restaurant  { background: linear-gradient(135deg, #11284e 0%, #204b94 100%); }
.ri-kiné        { background: linear-gradient(135deg, #0f2b53 0%, #1e4892 100%); }
.ri-peinture    { background: linear-gradient(135deg, #0d2a4f 0%, #1c4690 100%); }
.ri-immobilier  { background: linear-gradient(135deg, #102c56 0%, #204d98 100%); }
.ri-yoga        { background: linear-gradient(135deg, #0b2548 0%, #1b4388 100%); }
.ri-garage      { background: linear-gradient(135deg, #0e2c52 0%, #1d4a93 100%); }
.ri-fleuriste   { background: linear-gradient(135deg, #0c2748 0%, #1c4589 100%); }
.ri-couverture  { background: linear-gradient(135deg, #112d57 0%, #214f9a 100%); }
.ri-optique     { background: linear-gradient(135deg, #0d294c 0%, #1d478e 100%); }
.ri-traiteur    { background: linear-gradient(135deg, #0f2b50 0%, #1f4991 100%); }
.ri-architecte  { background: linear-gradient(135deg, #102d54 0%, #204b92 100%); }
.ri-taxi        { background: linear-gradient(135deg, #0e2b4e 0%, #1e498f 100%); }
.ri-veterinaire { background: linear-gradient(135deg, #0c2949 0%, #1c4789 100%); }
.ri-maconnerie  { background: linear-gradient(135deg, #112e58 0%, #215099 100%); }
.ri-pharmacie   { background: linear-gradient(135deg, #0d2a4d 0%, #1d488e 100%); }
.ri-location    { background: linear-gradient(135deg, #0f2c52 0%, #1f4a93 100%); }
.ri-photographie { background: linear-gradient(135deg, #102e55 0%, #204c94 100%); }

.real-info { padding: 16px 20px; }
.real-sector {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--marine);
  background: rgba(11,45,94,.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.real-info h3 {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.real-info p { font-size: 12px; color: var(--muted); }

/* ── AVIS ── */
.rating-band {
  background: var(--off);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.rating-inner { text-align: center; }
.rating-stars { font-size: 32px; color: #C9A84C; letter-spacing: 4px; margin-bottom: 8px; }
.rating-score {
  font-family: var(--font-d);
  font-size: 48px;
  font-weight: 600;
  color: var(--marine);
  line-height: 1;
  margin-bottom: 6px;
}
.rating-sub { font-size: 14px; color: var(--muted); }

.avis-section { padding: 80px 0; background: var(--white); }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.avis-card {
  padding: 36px 32px;
  background: var(--off);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
}
.avis-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.avis-stars { font-size: 18px; color: #C9A84C; letter-spacing: 2px; margin-bottom: 20px; }
.avis-card blockquote p {
  font-family: var(--font-d);
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
}
.avis-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avis-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--marine);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.avis-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.avis-author span { font-size: 12px; color: var(--muted); }

/* ── CONTACT ── */
.contact-section {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left .page-title {
  font-family: var(--font-d);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-left .page-title em { color: var(--marine); }
.contact-left .eyebrow { color: var(--marine); }
.contact-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-infos { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.contact-info-item:hover { border-color: var(--marine); box-shadow: 0 4px 16px rgba(11,45,94,.08); }
.ci-icon {
  width: 36px; height: 36px;
  color: var(--marine);
  flex-shrink: 0;
}
.ci-icon svg { width: 100%; height: 100%; }
.ci-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.ci-value { font-size: 15px; font-weight: 500; color: var(--text); }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(11,45,94,.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group label span { color: var(--marine); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(11,45,94,.08);
}
.form-group input.error { border-color: #dc2626; }
.form-error { font-size: 12px; color: #dc2626; min-height: 16px; }

.btn-form {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 14px;
  margin-top: 8px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(11,45,94,.06);
  border-radius: var(--radius);
  margin-bottom: 16px;
  color: var(--marine);
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success p { font-size: 14px; font-weight: 500; }
.form-fail {
  padding: 16px;
  background: rgba(220,38,38,.06);
  border-radius: var(--radius);
  margin-bottom: 16px;
  color: #dc2626;
  font-size: 14px;
}
.form-legal { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--marine-dk);
  padding: 40px 0;
  color: rgba(255,255,255,.6);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .15em;
}
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }

/* ── 404 ── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--marine);
  text-align: center;
  padding: 24px;
}
.nf-code {
  font-family: var(--font-d);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 600;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}
.nf-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.nf-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .real-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-section { padding: 120px 0 60px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    transform: translateY(-110%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 800;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 14px 24px;
    color: var(--text) !important;
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-cta {
    margin: 12px 24px 0;
    text-align: center;
    background: var(--marine) !important;
    color: var(--white) !important;
    border-radius: var(--radius);
  }
  .nav-toggle { display: flex; }

  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-div { width: 60px; height: 1px; }
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .preview-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .avis-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .real-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cookie-banner { flex-direction: column; gap: 14px; text-align: center; }
}
