/* ============================================================
   RENOVATION — Premium Agency Edition
   Architectural Editorial Design System
   Mobile-First · Scroll Animations · Premium UX
   ============================================================ */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary: #1B2A4A;
  --primary-dark: #0F1A30;
  --primary-medium: #223558;
  --primary-light: #2A3F6A;
  --accent: #C8834A;
  --accent-dark: #A86B35;
  --accent-light: #E8A86D;
  --accent-glow: rgba(200, 131, 74, 0.15);
  --accent-subtle: rgba(200, 131, 74, 0.06);
  --surface: #FAF7F2;
  --surface-alt: #F0EDE6;
  --surface-card: #FFFFFF;
  --text: #1B2A4A;
  --text-secondary: #6B7A8D;
  --text-light: #94A3B8;
  --border: #E2DED6;
  --border-light: #EDEBE5;
  --success: #2D8A56;
  --error: #C0392B;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.04), 0 1px 2px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.06), 0 2px 6px rgba(27, 42, 74, 0.04);
  --shadow-lg: 0 12px 40px rgba(27, 42, 74, 0.08), 0 4px 12px rgba(27, 42, 74, 0.04);
  --shadow-xl: 0 24px 60px rgba(27, 42, 74, 0.12), 0 8px 20px rgba(27, 42, 74, 0.06);
  --shadow-premium: 0 1px 1px rgba(27, 42, 74, 0.02), 0 4px 8px rgba(27, 42, 74, 0.03), 0 16px 48px rgba(27, 42, 74, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(27, 42, 74, 0.08), 0 2px 8px rgba(27, 42, 74, 0.04);
  --shadow-accent: 0 8px 30px rgba(200, 131, 74, 0.25);
  --shadow-glow-accent: 0 0 40px rgba(200, 131, 74, 0.15), 0 8px 30px rgba(200, 131, 74, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
  --transition-smooth: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --section-gap: clamp(5rem, 10vw, 9rem);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* Selection */
::selection { background: var(--accent-glow); color: var(--primary); }

/* --- TYPOGRAPHY --- */
h1, h2 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 400;
  color: var(--primary);
}

h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { color: var(--text-secondary); }

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }

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

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }
.container-md { max-width: 920px; margin: 0 auto; padding: 0 1.25rem; }

/* ============================================================
   HEADER — Floating Glass Bar
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.logo:hover .logo-icon { transform: rotate(-6deg) scale(1.05); }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.logo-text .accent { color: var(--accent); }

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 131, 74, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 999;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open { display: flex; opacity: 1; }

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 400;
  color: var(--primary);
  padding: 0.75rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
  position: relative;
}

.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link:hover { color: var(--accent); }

.mobile-menu-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* ============================================================
   HERO — Cinematic Full Impact
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-medium) 70%, var(--primary-dark) 100%);
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
}

/* Decorative background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200, 131, 74, 0.18) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--surface), transparent);
  z-index: 2;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, 3%) scale(1.1); }
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Geometric decorative element */
.hero-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 131, 74, 0.15);
  border-radius: 50%;
  top: 15%;
  right: 8%;
  animation: heroDecorSpin 30s linear infinite;
}

.hero-decor::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(200, 131, 74, 0.1);
  border-radius: 50%;
}

.hero-decor::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(200, 131, 74, 0.07);
  border-radius: 50%;
}

@keyframes heroDecorSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 131, 74, 0.12);
  border: 1px solid rgba(200, 131, 74, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent-light);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
}

/* ============================================================
   TRUST BAR — Stats
   ============================================================ */
.trust-bar {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding: 0 1.25rem;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  max-width: 860px;
  margin: 0 auto;
}

.trust-item {
  background: var(--surface-card);
  padding: 2rem 1.25rem;
  text-align: center;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.trust-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  margin: 0.5rem auto;
  opacity: 0.5;
}

/* ============================================================
   BUTTONS — Premium
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(200, 131, 74, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: 50px;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-accent);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  padding: 1.15rem 2.75rem;
  font-size: 1.05rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary);
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   SECTIONS — Generous Spacing
   ============================================================ */
.section {
  padding: var(--section-gap) 1.25rem;
}

.section-alt { background: var(--surface-alt); }
.section-dark { background: var(--primary); }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.section-overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 1px;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
}

/* ============================================================
   SERVICE BUTTONS — Elegant CTA Grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-btn:hover {
  border-color: rgba(200, 131, 74, 0.3);
  background: var(--surface-card);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-btn:hover::before { transform: scaleX(1); }

.service-btn-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-subtle);
  border-radius: 50%;
  padding: 8px;
}

.service-btn-icon svg {
  width: 32px;
  height: 32px;
}

.service-btn-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}

.service-btn-arrow {
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-fast);
}

.service-btn:hover .service-btn-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CTA BANNER — Depth & Drama
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-medium) 100%);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(200, 131, 74, 0.1);
  border-bottom: 1px solid rgba(200, 131, 74, 0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(200, 131, 74, 0.14) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(200, 131, 74, 0.1) 0%, transparent 70%);
}

.cta-content { position: relative; z-index: 2; }

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================================
   BUDGET TABLE
   ============================================================ */
.budget-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-card);
  min-width: 600px;
}

.budget-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.budget-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.budget-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.budget-table tbody tr {
  transition: background var(--transition-fast);
}

.budget-table tbody tr:hover { background: var(--accent-subtle); }
.budget-table tbody tr:last-child td { border-bottom: none; }

.budget-table .price-cell {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--primary);
  font-size: 1rem;
}

.budget-table .note-cell {
  color: var(--text-light);
  font-size: 0.82rem;
}

/* ============================================================
   CONSEILS (Tips) Cards — Elegant
   ============================================================ */
.conseils-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.conseil-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.conseil-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.conseil-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.conseil-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   FAQ ACCORDION — Refined
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ============================================================
   PARTNER FORM — Premium Card
   ============================================================ */
.partner-form-card {
  background: var(--surface-card);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.partner-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

/* ============================================================
   FOOTER — Polished
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0A1220 100%);
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(4rem, 7vw, 6rem) 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 131, 74, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand-text .accent { color: var(--accent); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer h4::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  margin-right: 0.5rem;
  vertical-align: middle;
  opacity: 0.6;
}

.footer ul { list-style: none; }

.footer li { margin-bottom: 0.5rem; }

.footer-grid a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-grid a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width var(--transition-fast);
}

.footer-grid a:hover { color: var(--accent-light); }
.footer-grid a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
  border-radius: 1px;
}

/* ============================================================
   FORM ELEMENTS (shared)
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.92rem;
}

.form-label .required { color: var(--accent); }

.form-input, .form-select {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-input::placeholder { color: var(--text-light); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  padding-right: 2.75rem;
}

.radio-group { display: flex; flex-direction: column; gap: 0.5rem; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.92rem;
}

.radio-option:hover { border-color: var(--primary-light); background: rgba(27, 42, 74, 0.02); }

.radio-option input[type="radio"] {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

/* ============================================================
   ESTIMATION PAGE — Steps & Results
   ============================================================ */
.estimation-page { padding-top: var(--header-h); min-height: 100vh; }

.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--border);
  color: var(--text-light);
  background: var(--surface-card);
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.step-dot.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(27, 42, 74, 0.1);
}

.step-dot.completed {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

.step-connector {
  width: 56px;
  height: 2px;
  background: var(--border);
  transition: background var(--transition-base);
}

.step-connector.active { background: var(--success); }

/* Progress bar */
.progress-bar-container {
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.5s var(--ease-out);
  border-radius: 4px;
}

/* Form steps */
.form-step { display: none; }
.form-step.active {
  display: block;
  animation: stepFadeIn 0.5s var(--ease-out);
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service selection cards */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.service-select-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-select-card:hover {
  border-color: var(--primary-light);
  background: rgba(27, 42, 74, 0.02);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-select-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 3px rgba(200, 131, 74, 0.12);
}

.service-select-card .icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  margin-bottom: 0.5rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-select-card .icon svg { width: 36px; height: 36px; }
.service-select-card .name { font-weight: 600; font-size: 0.85rem; color: var(--primary); }

/* Result box */
.result-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 40%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.result-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200, 131, 74, 0.15) 0%, transparent 70%);
}

.result-box-content { position: relative; z-index: 2; }

.result-label {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.result-price {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  margin: 0.75rem 0;
  line-height: 1.2;
}

.result-disclaimer {
  font-size: 0.82rem;
  opacity: 0.5;
  margin-top: 1rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* Breakdown */
.breakdown-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.breakdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.breakdown-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.breakdown-table {
  width: 100%;
  border-collapse: collapse;
}

.breakdown-table td {
  padding: 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.breakdown-table tr:last-child td {
  border-bottom: none;
  padding-top: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* Factor tags */
.factors-section {
  margin-bottom: 2rem;
}

.factors-section h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.factor-tag {
  display: inline-block;
  background: var(--accent-subtle);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 0.2rem;
  border: 1px solid var(--accent-glow);
}

/* ============================================================
   SCROLL ANIMATIONS — Subtle & Elegant
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hamburger { display: block; }
  .nav { display: none; }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 3rem) 1.25rem 6rem;
  }

  .hero-decor { display: none; }

  .trust-bar { margin-top: -40px; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item { padding: 1.25rem 0.5rem; }
  .trust-number { font-size: 1.6rem; }
  .trust-label { font-size: 0.68rem; }
  .trust-label::before { width: 16px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .service-btn { padding: 1.25rem 0.75rem; gap: 0.5rem; }
  .service-btn-icon { width: 40px; min-width: 40px; height: 40px; padding: 6px; }
  .service-btn-name { font-size: 0.8rem; }

  .conseils-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .service-select-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .service-select-card { padding: 1rem 0.75rem; }
  .service-select-card .icon { width: 28px; height: 28px; }
  .service-select-card .name { font-size: 0.78rem; }

  .form-nav {
    flex-direction: column;
  }

  .form-nav .btn-ghost { order: 2; }
  .form-nav .btn-primary { order: 1; width: 100%; justify-content: center; }

  /* Touch-friendly minimum targets for mobile */
  .btn-primary, .btn-secondary, .btn-ghost, .btn-dark, .btn-white {
    min-height: 48px;
  }

  .header-cta { min-height: 40px; }

  /* Section spacing refinement for mobile */
  .section { padding: clamp(3.5rem, 8vw, 5rem) 1.25rem; }
  .section-header { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

  /* Hero adjustments */
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1.1rem;
  }

  .hero-note { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }

  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-select-grid {
    grid-template-columns: 1fr 1fr;
  }

  .budget-table th,
  .budget-table td {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .conseil-card {
    padding: 1.5rem;
  }
}

/* ============================================================
   PREMIUM SECTION DIVIDERS
   ============================================================ */
.produit-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 0 auto;
  position: relative;
  top: -1px;
  opacity: 0.5;
}

.confiance-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 0 auto;
  position: relative;
  top: -1px;
  opacity: 0.5;
}

/* ============================================================
   MOBILE FLOATING CTA
   ============================================================ */
.mobile-cta-float {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.85rem 1.25rem;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-cta-float.visible { transform: translateY(0); }

.mobile-cta-float .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

@media (max-width: 768px) {
  .mobile-cta-float { display: block; }
  body { padding-bottom: 80px; }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV — Lien Guide Zen
   ============================================================ */
.nav-link-guide {
  color: var(--accent) !important;
  font-weight: 600;
  position: relative;
}

.nav-link-guide::after {
  background: var(--accent) !important;
}

.mobile-menu-link-guide {
  color: var(--accent) !important;
}

/* ============================================================
   TRUST ITEM CTA
   ============================================================ */
.trust-item-cta {
  display: block;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.trust-item-cta:hover {
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

.trust-item-cta .trust-number {
  transition: color var(--transition-fast);
}

.trust-item-cta:hover .trust-number { color: var(--accent-dark); }

/* ============================================================
   TÉMOIGNAGE — Social Proof Block
   ============================================================ */
.temoignage-section { background: var(--surface-alt); }

.temoignage-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.temoignage-visuel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem 2rem 2rem;
  background: var(--surface-alt);
  height: 100%;
}

.temoignage-avant,
.temoignage-apres {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.temoignage-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.temoignage-img svg { width: 100%; height: auto; display: block; }

.temoignage-img-apres {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 131, 74, 0.3);
}

.temoignage-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.temoignage-label-apres { color: var(--accent); }

.temoignage-fleche {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 300;
}

.temoignage-contenu { padding: 2.5rem 2.5rem 2.5rem 0; }

.temoignage-etoiles {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.temoignage-quote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
  position: relative;
  padding-left: 1.25rem;
}

.temoignage-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.temoignage-auteur {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.temoignage-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.temoignage-nom {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  font-family: var(--font-display);
}

.temoignage-meta {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.temoignage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.temoignage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(45, 138, 86, 0.08);
  border: 1px solid rgba(45, 138, 86, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.temoignage-badge::before {
  content: '✓';
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .temoignage-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .temoignage-visuel {
    padding: 1.5rem;
  }

  .temoignage-contenu {
    padding: 1.75rem;
  }
}

/* ============================================================
   HOOKS GRID — Direct Response
   ============================================================ */
.hooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
}

.hook-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.hook-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.hook-danger::before { background: linear-gradient(90deg, #C0392B, #E74C3C); }
.hook-money::before { background: linear-gradient(90deg, var(--success), #34D399); }
.hook-shield::before { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }

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

.hook-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hook-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.hook-card strong {
  color: var(--primary);
}

@media (max-width: 900px) {
  .hooks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  /* Last card spans full width when odd count */
  .hook-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .hook-card { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .hooks-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hook-card:last-child:nth-child(odd) {
    max-width: 100%;
  }

  .hook-card { padding: 1.15rem; }
  .hook-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .hook-card p { font-size: 0.85rem; }
}

/* ============================================================
   PRODUIT NUMÉRIQUE — Guide Ultime Zen
   ============================================================ */
.produit-section { background: var(--surface-alt); }

/* Badge overline */
.produit-overline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-subtle);
  border: 1px solid rgba(200, 131, 74, 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}

.produit-section .section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.produit-section .section-header h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Pitch closer */
.produit-pitch-closer {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 380px;
}

.produit-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-medium) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.produit-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(200, 131, 74, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.produit-card .section-overline { color: var(--accent-light); }
.produit-card .section-overline::before { background: var(--accent-light); }

.produit-titre {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.produit-sous-titre {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.produit-sous-titre strong { color: rgba(255, 255, 255, 0.9); }

.produit-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.produit-liste li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

/* Icône SVG (ancienne version, conservée pour compatibilité) */
.produit-liste-icon {
  width: 28px;
  height: 28px;
  background: rgba(200, 131, 74, 0.15);
  border: 1px solid rgba(200, 131, 74, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Icône Emoji */
.produit-liste-emoji {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.produit-liste strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.produit-liste span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* Titre avec italic accent */
.produit-titre em {
  font-style: italic;
  color: var(--accent-light);
}

/* Titre groupe */
.produit-titre-group { margin-bottom: 1.75rem; }
.produit-titre-group .section-overline { margin-bottom: 0.5rem; }

/* Bouton CTA principal Zen */
.produit-btn-zen {
  font-size: 1.05rem;
  padding: 1.2rem 2.5rem;
  min-height: 56px;
  box-shadow: var(--shadow-glow-accent);
  width: 100%;
  max-width: 420px;
  justify-content: center;
}

.produit-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.produit-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

/* Mockup document */
.produit-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.produit-doc {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
  transform: rotate(-3deg);
  transition: transform var(--transition-base);
}

.produit-card:hover .produit-doc { transform: rotate(0deg) translateY(-4px); }

.produit-doc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.produit-doc-logo {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.produit-doc-line {
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  margin-bottom: 1rem;
  opacity: 0.1;
}

.produit-doc-line-title {
  height: 10px;
  background: var(--primary);
  opacity: 0.15;
  width: 80%;
  margin-bottom: 1.25rem;
}

.produit-doc-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.produit-doc-cell {
  height: 7px;
  border-radius: 3px;
  background: var(--border);
}

.produit-doc-cell-label { flex: 1.2; }
.produit-doc-cell-val { flex: 0.8; }
.produit-doc-cell.accent { background: rgba(200, 131, 74, 0.35); }

.produit-doc-divider {
  height: 1px;
  background: var(--border-light);
  margin: 1rem 0;
}

.produit-doc-check {
  font-size: 0.68rem;
  color: var(--success);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.produit-doc-check span {
  color: var(--success);
  font-weight: 700;
}

.produit-badge-prix {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
  transform: rotate(6deg);
}

/* Mobile mockup (hidden on desktop, visible on mobile) */
.produit-mockup-mobile { display: none; }

@media (max-width: 900px) {
  .produit-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-radius: var(--radius-lg);
  }

  /* Hide desktop mockup, show mobile version */
  .produit-mockup { display: none; }
  .produit-mockup-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .produit-doc-mini {
    flex: 1;
    min-width: 0;
  }

  .produit-doc-mini .produit-doc-header {
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
  }

  .produit-doc-mini-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .produit-doc-mini-checks span {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(200, 131, 74, 0.12);
    border: 1px solid rgba(200, 131, 74, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    white-space: nowrap;
  }

  .produit-badge-prix-mobile {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    text-align: center;
    line-height: 1.2;
  }

  /* Product content area on mobile */
  .produit-contenu {
    padding: 1.75rem 1.5rem 2rem;
    overflow: hidden;
  }

  .produit-liste li > div {
    min-width: 0;
  }

  .produit-titre-group { margin-bottom: 1.25rem; }

  .produit-titre {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .produit-titre br { display: none; }

  .produit-liste {
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .produit-liste li { gap: 0.75rem; }

  .produit-liste-emoji {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .produit-liste strong { font-size: 0.88rem; }
  .produit-liste span { font-size: 0.8rem; }

  /* CTA actions on mobile */
  .produit-actions { align-items: stretch; }

  .produit-btn-zen {
    max-width: 100%;
    font-size: 1rem;
    padding: 1.1rem 1.5rem;
    min-height: 52px;
  }

  .produit-note {
    text-align: center;
    font-size: 0.72rem;
  }

  .produit-pitch-closer {
    text-align: center;
    max-width: 100%;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .produit-mockup-mobile { padding: 1rem 1.25rem; }
  .produit-contenu { padding: 1.5rem 1.25rem 1.75rem; }
  .produit-badge-prix-mobile { font-size: 1rem; padding: 0.5rem 0.85rem; }
  .produit-overline-badge {
    font-size: 0.62rem;
    padding: 0.35rem 0.9rem;
    word-break: break-word;
    text-align: center;
    line-height: 1.5;
  }
  .produit-section .section-header h2 {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  .produit-section .section-header h2 br { display: none; }
}

/* ============================================================
   CONFIANCE — Credibility Section
   ============================================================ */
.confiance-section { background: var(--surface); }

.confiance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.confiance-item {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.confiance-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.confiance-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border: 1px solid rgba(200, 131, 74, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.confiance-item h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.confiance-item p {
  font-size: 0.85rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .confiance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .confiance-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .confiance-item { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   MOBILE CTA — Dual Options
   ============================================================ */
.mobile-cta-secondary {
  display: block;
  text-align: center;
  padding: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 0.25rem;
}

.mobile-cta-secondary:hover { text-decoration: underline; }

/* ============================================================
   FOOTER QUARTIERS
   ============================================================ */
.footer-quartiers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-quartiers li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 0.75rem;
  position: relative;
}

.footer-quartiers li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.4;
  font-size: 0.7rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.hidden { display: none !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
