/* ============================================================
   OSEBOIS26 – STYLESHEET
   Aesthetic: Natural Luxury – warm wood tones + solar gold
   ============================================================ */

:root {
  --wood: #5C3A1E;
  --wood-light: #8B5A2B;
  --wood-pale: #F5EDE0;
  --solar: #F59E0B;
  --solar-light: #FDE68A;
  --solar-dark: #D97706;
  --green: #2D6A4F;
  --green-light: #52B788;
  --dark: #1A0F06;
  --mid: #4A3728;
  --text: #2C1A0E;
  --text-light: #6B4F3A;
  --white: #FFFAF5;
  --border: rgba(92,58,30,0.12);
  --shadow: 0 4px 24px rgba(92,58,30,0.12);
  --shadow-lg: 0 16px 48px rgba(92,58,30,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 80px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================== HEADER ======================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wood);
}
.logo-icon { font-size: 1.3rem; }
.logo-accent { color: var(--solar-dark); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--mid);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--wood); background: var(--wood-pale); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 260px;
  flex-direction: column;
}
.nav-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--wood-pale); color: var(--wood); }

.btn-nav {
  background: var(--solar);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-nav:hover { background: var(--solar-dark); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--wood); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 12px; border-radius: 8px; font-weight: 500; color: var(--mid); }
.mobile-nav a:hover { background: var(--wood-pale); }
.btn-mobile-cta { background: var(--solar); color: var(--dark); text-align: center; margin-top: 8px; border-radius: 10px; font-weight: 600; }

/* ======================== BUTTONS ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--solar);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.btn-primary:hover { background: var(--solar-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--wood);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--wood-light);
  transition: all 0.25s;
}
.btn-secondary:hover { background: var(--wood-pale); transform: translateY(-2px); }

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF8EE 0%, #F5EDE0 50%, #FFF3D0 100%);
  z-index: 0;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.shape1 { width: 600px; height: 600px; background: var(--solar); top: -200px; right: -150px; }
.shape2 { width: 400px; height: 400px; background: var(--green-light); bottom: -100px; left: -100px; }
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--wood);
  line-height: 1.15;
  margin-bottom: 20px;
}
.highlight {
  color: var(--solar-dark);
  position: relative;
}
.highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--solar);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 500; color: var(--text-light); }
.trust-sep { color: var(--border); font-size: 1.2rem; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 3s ease-in-out infinite;
}

.main-card {
  padding: 40px;
  text-align: center;
  z-index: 2;
}
.card-icon { font-size: 3rem; margin-bottom: 12px; }
.card-stat { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--solar-dark); }
.card-label { font-size: 0.95rem; color: var(--text-light); font-weight: 500; }

.float-card {
  position: absolute;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--wood);
  border-radius: 12px;
}
.fc1 { top: 40px; right: 10px; animation-delay: 0.5s; }
.fc2 { bottom: 80px; left: 0px; animation-delay: 1s; }
.fc3 { bottom: 20px; right: 20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ======================== STATS BAND ======================== */
.stats-band {
  background: var(--wood);
  padding: 28px 0;
}
.stats-band .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--solar); }
.stat-label { font-size: 0.8rem; font-weight: 500; color: rgba(255,250,245,0.75); text-align: center; }

/* ======================== SECTION COMMON ======================== */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--solar-light);
  color: var(--solar-dark);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--wood);
  line-height: 1.25;
}

/* ======================== SERVICES PREVIEW ======================== */
.services-preview { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--wood-pale);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid transparent;
  transition: all 0.3s;
}
.service-card:hover { border-color: var(--solar); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.featured { background: var(--wood); }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li { color: rgba(255,250,245,0.9); }
.service-card.featured .sc-list li::before { color: var(--solar); }

.sc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--wood); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; }

.sc-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.sc-list li { font-size: 0.88rem; font-weight: 500; color: var(--text-light); }
.service-card.featured .sc-list li { color: rgba(255,250,245,0.8); }

.sc-link { font-weight: 700; font-size: 0.9rem; color: var(--solar-dark); transition: gap 0.2s; }
.service-card.featured .sc-link { color: var(--solar); }
.sc-link:hover { text-decoration: underline; }

/* ======================== WHY US ======================== */
.why-us { background: var(--wood-pale); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: var(--wood);
  line-height: 1.25;
  margin-bottom: 16px;
}
.why-intro { color: var(--text-light); font-size: 1rem; margin-bottom: 32px; }

.why-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.wi-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.why-item strong { display: block; font-size: 1rem; font-weight: 700; color: var(--wood); margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-light); }

.why-cert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.cert-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cert-badge { background: var(--solar-light); color: var(--solar-dark); padding: 6px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 700; }

.why-big-stat { margin-bottom: 20px; }
.big-num { display: block; font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: var(--wood); line-height: 1; }
.big-text { font-size: 0.95rem; color: var(--text-light); }

.map-france { font-size: 0.85rem; font-weight: 600; color: var(--green); background: #E8F5EE; padding: 8px 16px; border-radius: 100px; display: inline-block; }

/* ======================== TESTIMONIALS ======================== */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--wood-pale);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { font-size: 1rem; margin-bottom: 16px; }
.testi-card p { font-size: 0.92rem; color: var(--text-light); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar { width: 40px; height: 40px; background: var(--wood); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--solar); }
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--wood); }
.testi-author small { font-size: 0.8rem; color: var(--text-light); }

/* ======================== CTA BAND ======================== */
.cta-band {
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-light) 100%);
  padding: 80px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-content p { color: rgba(255,250,245,0.75); }
.btn-cta-big {
  display: inline-flex;
  background: var(--solar);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
  white-space: nowrap;
}
.btn-cta-big:hover { background: var(--solar-dark); transform: translateY(-2px); }

/* ======================== FOOTER ======================== */
.site-footer {
  background: var(--dark);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,250,245,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.2rem; }

.footer-col h4 { color: var(--solar); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,250,245,0.6); font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--solar); }
.footer-col p { color: rgba(255,250,245,0.6); font-size: 0.88rem; margin-bottom: 10px; }
.footer-col p a { display: inline; }

.footer-bottom {
  border-top: 1px solid rgba(255,250,245,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,250,245,0.35); }

/* ======================== STICKY FOOTER ======================== */
.sticky-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--wood);
  border-top: 2px solid var(--solar);
  z-index: 200;
  padding: 12px 24px;
}
.sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sticky-text { display: flex; align-items: center; gap: 12px; flex: 1; }
.sticky-emoji { font-size: 1.5rem; }
.sticky-text strong { color: var(--white); font-size: 1rem; }
.sticky-sub { color: rgba(255,250,245,0.7); font-size: 0.85rem; }
.btn-sticky {
  background: var(--solar);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-sticky:hover { background: var(--solar-dark); }
.sticky-close { background: none; border: none; color: rgba(255,250,245,0.5); cursor: pointer; font-size: 1.2rem; padding: 4px 8px; }

/* ======================== EXIT POPUP ======================== */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,15,6,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.exit-overlay.active { display: flex; }

.exit-modal {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 540px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(26,15,6,0.4);
  animation: slideUp 0.35s ease;
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--wood-pale);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--mid);
}
.exit-badge {
  display: inline-block;
  background: var(--solar-light);
  color: var(--solar-dark);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.exit-modal h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--wood);
  margin-bottom: 16px;
}
.exit-modal p { color: var(--text-light); margin-bottom: 28px; }

.exit-savings {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.savings-item { text-align: center; }
.savings-item .big { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--solar-dark); }
.savings-item small { font-size: 0.78rem; color: var(--text-light); }

.btn-exit {
  display: block;
  background: var(--solar);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
}
.btn-exit:hover { background: var(--solar-dark); }
.btn-exit-skip {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ======================== NOTIFICATION TOAST ======================== */
.notif-toast {
  position: fixed;
  bottom: 90px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--solar);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  z-index: 150;
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.notif-toast.show { opacity: 1; transform: translateX(0); }
.notif-avatar { font-size: 1.5rem; }
.notif-text { display: flex; flex-direction: column; gap: 2px; }
.notif-text strong { font-size: 0.88rem; color: var(--wood); font-weight: 700; }
.notif-text span { font-size: 0.82rem; color: var(--text-light); }
.notif-text small { font-size: 0.75rem; color: var(--solar-dark); font-weight: 500; }

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--wood-pale) 0%, #FFF0D8 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a:hover { color: var(--solar-dark); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--wood);
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ======================== DEVIS PAGE ======================== */
.devis-page { padding: 60px 0 120px; }
.devis-page .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.devis-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--wood);
  margin-bottom: 16px;
}
.devis-info p { color: var(--text-light); margin-bottom: 28px; }
.devis-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.dp-item { display: flex; align-items: center; gap: 12px; }
.dp-icon { font-size: 1.3rem; }
.dp-item strong { font-size: 0.9rem; font-weight: 700; color: var(--wood); display: block; }
.dp-item span { font-size: 0.82rem; color: var(--text-light); }

.devis-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.form-header {
  background: var(--wood);
  padding: 24px 28px;
  text-align: center;
}
.form-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.form-header p { font-size: 0.85rem; color: rgba(255,250,245,0.7); }
.form-body { padding: 28px; }

/* ======================== REALISATIONS ======================== */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.real-card {
  background: var(--wood-pale);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  border: 1.5px solid var(--border);
}
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.real-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--wood) 0%, var(--wood-light) 100%);
}
.real-body { padding: 24px; }
.real-tag { font-size: 0.75rem; font-weight: 700; color: var(--solar-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.real-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--wood); margin-bottom: 8px; }
.real-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.real-stat { display: inline-flex; align-items: center; gap: 6px; background: var(--solar-light); color: var(--solar-dark); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; }

/* ======================== SERVICE PAGE ======================== */
.service-detail { padding: 80px 0; }
.service-detail .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.sd-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--wood); margin-bottom: 16px; }
.sd-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.features-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.features-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text); font-weight: 500; }
.features-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 1rem; }
.sd-sidebar { position: sticky; top: 100px; }
.sd-cta-card { background: var(--wood); border-radius: var(--radius); padding: 36px; text-align: center; }
.sd-cta-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.sd-cta-card p { font-size: 0.88rem; color: rgba(255,250,245,0.7); margin-bottom: 24px; }
.sd-cta-card .btn-primary { width: 100%; justify-content: center; }

/* ======================== PROCESS ======================== */
.process-steps {
  display: flex;
  gap: 0;
  margin: 40px 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%;
  width: 80%; height: 2px;
  background: var(--solar-light);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 64px; height: 64px;
  background: var(--solar);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.ps-title { font-weight: 700; font-size: 0.9rem; color: var(--wood); margin-bottom: 6px; }
.ps-desc { font-size: 0.8rem; color: var(--text-light); padding: 0 8px; }

/* ======================== 404 ======================== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.page-404 .num { font-family: var(--font-display); font-size: 8rem; font-weight: 900; color: var(--solar); line-height: 1; margin-bottom: 12px; }
.page-404 h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--wood); margin-bottom: 12px; }
.page-404 p { color: var(--text-light); margin-bottom: 32px; }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: slideUp 0.6s ease forwards; opacity: 0; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .real-grid { grid-template-columns: 1fr 1fr; }
  .devis-page .container { grid-template-columns: 1fr; }
  .service-detail .container { grid-template-columns: 1fr; }
  .sd-sidebar { position: relative; top: 0; }
  .process-steps::before { display: none; }
  .process-steps { flex-direction: column; align-items: flex-start; gap: 24px; }
  .process-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .ps-num { flex-shrink: 0; margin: 0; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .testi-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .stats-band .container { justify-content: center; }
  .sticky-text .sticky-sub { display: none; }
  .exit-modal { padding: 32px 24px; }
  .exit-savings { gap: 16px; }
}
