/* ========================================
   PLOMBIER CHEVALIER DE PARIS
   Style Premium Industriel - Version 3.0
======================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { 
  font-family: 'Inter', system-ui, -apple-system, sans-serif; 
  line-height: 1.6; 
  color: #1a1a2e; 
  background-color: #ffffff; 
  display: flex; 
  flex-direction: column; 
  min-height: 100vh; 
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

/* Variables - Palette Industriel Premium */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #e94560;
  --accent-dark: #c73e54;
  --accent-light: #ff6b6b;
  --gold: #f4a935;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

/* ========================================
   HEADER - Style Moderne Épuré
======================================== */
.header { 
  background: var(--white); 
  position: fixed; 
  width: 100%; 
  top: 0; 
  z-index: 100; 
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--gray-200);
}
.header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1rem 1.25rem; 
  gap: 1rem;
}
.logo { height: 2.75rem; transition: transform 0.3s; }
.logo:hover { transform: scale(1.02); }

/* Navigation */
.nav-menu { display: none; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { 
  display: block; 
  padding: 0.625rem 1rem; 
  color: var(--gray-700); 
  font-weight: 500; 
  font-size: 0.9rem; 
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-menu > li > a:hover { color: var(--primary); }
.nav-menu > li > a:hover::after { width: 80%; }

/* Dropdown */
.nav-dropdown-content { 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: var(--white); 
  box-shadow: var(--shadow-lg); 
  border-radius: var(--radius); 
  min-width: 220px; 
  padding: 0.75rem 0; 
  z-index: 100; 
  list-style: none;
  border: 1px solid var(--gray-100);
}
.nav-dropdown-content li a { 
  display: block; 
  padding: 0.625rem 1.25rem; 
  color: var(--gray-600); 
  font-size: 0.875rem; 
}
.nav-dropdown-content li a:hover { 
  background: var(--gray-50); 
  color: var(--accent); 
}
.nav-dropdown > a::after { content: " ▾"; font-size: 0.7rem; opacity: 0.6; }

/* Menu Toggle (Hamburger) */
.menu-toggle { 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer; 
  background: var(--gray-50); 
  border: none; 
  border-radius: var(--radius);
  z-index: 1001; 
  transition: background 0.3s;
}
.menu-toggle:hover { background: var(--gray-100); }
.menu-toggle span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--primary); 
  transition: all 0.3s; 
  border-radius: 2px; 
  margin: 3px 0;
}
.menu-toggle.active { background: var(--accent); }
.menu-toggle.active span { background: var(--white); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-menu.active { 
  display: flex; 
  flex-direction: column; 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: var(--white); 
  padding: 6rem 1.5rem 2rem; 
  overflow-y: auto; 
  z-index: 1000;
}
.nav-menu.active > li { border-bottom: 1px solid var(--gray-100); }
.nav-menu.active > li > a { 
  padding: 1.25rem 0; 
  font-size: 1.25rem; 
  font-weight: 600;
}
.nav-menu.active > li > a::after { display: none; }
.nav-menu.active .nav-dropdown-content { 
  display: block; 
  position: static; 
  box-shadow: none; 
  padding: 0 0 1rem 1rem; 
  background: transparent;
  border: none;
}

/* CTA Button */
.btn-cta { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem; 
  background: var(--accent); 
  color: var(--white); 
  font-weight: 700; 
  padding: 0.75rem 1.5rem; 
  border-radius: 50px; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 14px rgba(233, 69, 96, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.btn-cta:hover { 
  background: var(--accent-dark); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}
.btn-cta-large { 
  font-size: 1.125rem; 
  padding: 1rem 2.25rem; 
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .nav-menu { 
    display: flex !important; 
    align-items: center; 
    gap: 0.25rem; 
    position: static; 
    flex-direction: row; 
    background: transparent; 
    padding: 0; 
    overflow: visible; 
  }
  .nav-menu > li { border: none; }
  .nav-menu > li > a { padding: 0.5rem 0.875rem; font-size: 0.875rem; }
  .nav-dropdown:hover .nav-dropdown-content { display: block; }
}

/* ========================================
   HERO SECTION - Style Impact
======================================== */
.hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/hero-bg.webp') center/cover no-repeat;
  opacity: 0.15;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { 
  text-align: center; 
  color: var(--white); 
  max-width: 800px; 
  margin: 0 auto;
}
.hero-badge { 
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent); 
  font-size: 0.75rem; 
  font-weight: 700; 
  padding: 0.5rem 1rem; 
  border-radius: 50px; 
  text-transform: uppercase; 
  margin-bottom: 1.5rem; 
  letter-spacing: 0.1em;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(233, 69, 96, 0); }
}
.hero h1 { 
  font-size: 2.5rem; 
  font-weight: 800; 
  margin-bottom: 1.25rem; 
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 span { 
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle { 
  font-size: 1.125rem; 
  color: rgba(255,255,255,0.85); 
  margin-bottom: 2rem; 
  line-height: 1.7;
}
.hero-cta { margin-bottom: 2.5rem; }

/* Trust badges */
.trust-badges { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 0.75rem; 
}
.trust-badge { 
  display: flex; 
  align-items: center; 
  gap: 0.5rem; 
  background: rgba(255,255,255,0.1); 
  backdrop-filter: blur(10px);
  padding: 0.625rem 1rem; 
  border-radius: 50px; 
  font-size: 0.8rem; 
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
}
.trust-badge i { color: var(--gold); }

/* ========================================
   SERVICES SECTION
======================================== */
.services { 
  padding: 4rem 0; 
  background: var(--white); 
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { 
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}
.services h2 {
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.services-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 1.5rem; 
}
.service-card { 
  padding: 2rem; 
  background: var(--gray-50);
  border-radius: var(--radius-lg); 
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover { 
  background: var(--white);
  box-shadow: var(--shadow-lg); 
  transform: translateY(-4px); 
}
.service-card:hover::before { transform: scaleX(1); }
.service-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 { 
  font-size: 1.25rem; 
  font-weight: 700; 
  margin-bottom: 0.75rem; 
  color: var(--primary); 
}
.service-card p { 
  font-size: 0.9375rem; 
  color: var(--gray-600); 
  line-height: 1.7; 
}

/* ========================================
   ABOUT / CITY CONTENT
======================================== */
.city-content { 
  padding: 4rem 0; 
  background: var(--gray-50);
}
.city-content h2 { 
  font-size: 1.875rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.city-content > .container > p { 
  color: var(--gray-600); 
  margin-bottom: 1rem; 
  line-height: 1.8;
  font-size: 1rem;
}
.city-content p {
  color: var(--gray-600); 
  margin-bottom: 1rem; 
  line-height: 1.8;
}
.city-content strong { color: var(--primary); }

.city-features { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 1.25rem; 
  margin-top: 2rem; 
}
.city-feature { 
  display: flex; 
  gap: 1rem; 
  padding: 1.5rem; 
  background: var(--white); 
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.city-feature:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.city-feature i {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.25rem;
}
.city-feature-text h4 { 
  font-weight: 700; 
  color: var(--primary); 
  margin-bottom: 0.375rem;
  font-size: 1.0625rem;
}
.city-feature-text p { 
  font-size: 0.9rem; 
  color: var(--gray-600); 
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq { 
  padding: 4rem 0; 
  background: var(--white);
}
.faq h2 { 
  font-size: 2rem; 
  font-weight: 800; 
  text-align: center; 
  color: var(--primary); 
  margin-bottom: 2.5rem;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { 
  margin-bottom: 1rem; 
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  transition: all 0.3s ease;
}
.faq-item:hover { background: var(--gray-100); }
.faq-item.open { background: var(--white); box-shadow: var(--shadow); }
.faq-question { 
  width: 100%; 
  padding: 1.25rem 1.5rem; 
  background: transparent; 
  border: none; 
  text-align: left; 
  font-size: 1rem; 
  font-weight: 600; 
  color: var(--primary); 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-family: inherit; 
}
.faq-question::after { 
  content: "+"; 
  font-size: 1.5rem; 
  color: var(--accent); 
  font-weight: 300;
  transition: transform 0.3s; 
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { 
  padding: 0 1.5rem; 
  max-height: 0; 
  overflow: hidden; 
  transition: all 0.3s ease;
}
.faq-item.open .faq-answer { 
  padding: 0 1.5rem 1.5rem; 
  max-height: 500px; 
}
.faq-answer p { 
  color: var(--gray-600); 
  line-height: 1.8; 
  margin: 0; 
}

/* ========================================
   ZONES D'INTERVENTION
======================================== */
.zones { 
  padding: 3rem 0; 
  background: var(--primary);
}
.zones h3 { 
  font-size: 1.125rem; 
  font-weight: 700; 
  color: var(--white); 
  text-align: center; 
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.zones-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 0.75rem; 
  text-align: center; 
}
.zones-grid a { 
  color: rgba(255,255,255,0.7); 
  padding: 0.75rem; 
  border-radius: var(--radius); 
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.zones-grid a:hover { 
  color: var(--white); 
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.zones-grid a.active { 
  color: var(--primary); 
  font-weight: 700; 
  background: var(--white);
}

/* ========================================
   FOOTER
======================================== */
.footer { 
  background: var(--primary); 
  color: var(--white); 
  padding: 3rem 0 2rem; 
  margin-top: auto;
}
.footer-content { text-align: center; }
.footer-content p {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.footer-content .phone { 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--accent); 
  display: inline-block; 
  margin-bottom: 1.5rem;
}
.footer-content .phone:hover { color: var(--accent-light); }
.footer-links { 
  display: flex; 
  justify-content: center; 
  gap: 2rem; 
  font-size: 0.875rem; 
  padding-top: 1.5rem; 
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--white); }

/* ========================================
   STICKY CTA MOBILE
======================================== */
.sticky-cta { 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: var(--accent); 
  color: var(--white); 
  text-align: center; 
  padding: 1rem; 
  font-weight: 700; 
  font-size: 1rem; 
  z-index: 90; 
  box-shadow: 0 -4px 20px rgba(233, 69, 96, 0.4);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal { padding: 7rem 0 4rem; }
.legal h1 { 
  font-size: 2.25rem; 
  font-weight: 800; 
  color: var(--primary); 
  margin-bottom: 2rem;
}
.legal h2 { 
  font-size: 1.375rem; 
  font-weight: 700; 
  color: var(--primary); 
  margin: 2.5rem 0 1rem;
}
.legal h3 { 
  font-size: 1.125rem; 
  font-weight: 600; 
  color: var(--gray-700); 
  margin: 1.5rem 0 0.75rem;
}
.legal p, .legal li { 
  color: var(--gray-600); 
  line-height: 1.8; 
  margin-bottom: 0.75rem;
}
.legal ul, .legal ol { 
  padding-left: 1.5rem; 
  margin-bottom: 1rem;
}
.legal ul { list-style: disc; }
.legal strong { color: var(--primary); }

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: inline-flex; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ========================================
   RESPONSIVE - TABLET (768px+)
======================================== */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .header-inner { padding: 1rem 2rem; }
  .logo { height: 3rem; }
  
  .hero { padding-top: 8rem; padding-bottom: 5rem; }
  .hero h1 { font-size: 3.5rem; }
  .hero-subtitle { font-size: 1.25rem; }
  
  .services { padding: 5rem 0; }
  .services h2 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  
  .city-content { padding: 5rem 0; }
  .city-content h2 { font-size: 2.25rem; }
  .city-features { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  
  .faq { padding: 5rem 0; }
  .faq h2 { font-size: 2.5rem; }
  
  .zones-grid { grid-template-columns: repeat(4, 1fr); }
  
  .sticky-cta { display: none; }
  
  .legal { padding: 9rem 0 5rem; }
  .legal h1 { font-size: 2.75rem; }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
======================================== */
@media (min-width: 1024px) {
  .hero { padding-top: 10rem; padding-bottom: 6rem; }
  .hero h1 { font-size: 4rem; }
  .hero-subtitle { font-size: 1.375rem; max-width: 700px; margin-left: auto; margin-right: auto; }
  
  .trust-badges { gap: 1rem; }
  .trust-badge { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
  
  .services { padding: 6rem 0; }
  .services-grid { gap: 2.5rem; }
  .service-card { padding: 2.5rem; }
  
  .city-content { padding: 6rem 0; }
  .city-features { grid-template-columns: repeat(3, 1fr); }
  
  .faq { padding: 6rem 0; }
}

/* ========================================
   ADDITIONAL COMPONENTS
======================================== */

/* Service Page Hero */
.hero-service { padding-top: 7rem; padding-bottom: 4rem; }
.hero-service-icon { 
  width: 100px; 
  height: 100px; 
  margin: 0 auto 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-service-icon img { width: 60px; height: 60px; }

/* Service Grid 4 columns */
.service-grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .service-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Brand Cards */
.brand-card { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  padding: 2rem 1.5rem; 
  background: var(--white); 
  border-radius: var(--radius-lg);
  transition: all 0.3s; 
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.brand-card:hover { 
  box-shadow: var(--shadow-lg); 
  transform: translateY(-4px);
}
.brand-card img { height: 60px; width: auto; margin-bottom: 1rem; object-fit: contain; }
.brand-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.brand-card p { font-size: 0.875rem; color: var(--gray-600); }

/* Tarifs */
.tarif-section { padding: 4rem 0; background: var(--white); }
.tarif-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .tarif-grid { grid-template-columns: repeat(3, 1fr); } }
.tarif-card { 
  padding: 2.5rem; 
  background: var(--gray-50);
  border-radius: var(--radius-lg); 
  text-align: center;
  transition: all 0.3s;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tarif-card.featured { 
  background: var(--primary);
  color: var(--white);
}
.tarif-card.featured .tarif-price { color: var(--accent); }
.tarif-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.tarif-price { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 1.5rem 0; }
.tarif-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.tarif-features { list-style: none; margin: 1.5rem 0; text-align: left; }
.tarif-features li { 
  padding: 0.625rem 0; 
  border-bottom: 1px solid var(--gray-200); 
  font-size: 0.9rem; 
  display: flex; 
  align-items: center; 
  gap: 0.75rem;
}
.tarif-card.featured .tarif-features li { border-color: rgba(255,255,255,0.1); }
.tarif-features li i { color: var(--accent); }

/* Process Steps */
.process-section { padding: 4rem 0; background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step { text-align: center; position: relative; }
.process-step-number { 
  width: 60px; 
  height: 60px; 
  background: var(--accent);
  color: var(--white); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.5rem; 
  font-weight: 800; 
  margin: 0 auto 1.25rem;
}
.process-step h4 { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; font-size: 1.0625rem; }
.process-step p { font-size: 0.9rem; color: var(--gray-600); }

/* Contact Form */
.contact-section { padding: 4rem 0; background: var(--gray-50); }
.contact-form { 
  max-width: 640px; 
  margin: 0 auto; 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: var(--radius-lg); 
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { 
  display: block; 
  font-weight: 600; 
  color: var(--primary); 
  margin-bottom: 0.5rem; 
  font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select { 
  width: 100%; 
  padding: 0.875rem 1rem; 
  border: 2px solid var(--gray-200); 
  border-radius: var(--radius); 
  font-size: 1rem; 
  font-family: inherit; 
  transition: all 0.3s;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
  outline: none; 
  border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.btn-submit { 
  width: 100%; 
  padding: 1rem; 
  background: var(--accent); 
  color: var(--white); 
  border: none; 
  border-radius: var(--radius); 
  font-size: 1rem; 
  font-weight: 700; 
  cursor: pointer; 
  transition: all 0.3s;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 1.25rem; text-align: center; }

/* Stats */
.stats-section { padding: 4rem 0; background: var(--primary); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item h3 { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--accent); }
.stat-item p { font-size: 0.9rem; opacity: 0.8; }

/* Info Box */
.info-box { 
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(233, 69, 96, 0.1));
  border-left: 4px solid var(--accent); 
  padding: 1.5rem; 
  border-radius: 0 var(--radius) var(--radius) 0; 
  margin: 1.5rem 0;
}
.info-box h4 { font-weight: 700; color: var(--accent); margin-bottom: 0.5rem; }
.info-box p { color: var(--gray-600); margin: 0; font-size: 0.9rem; }

/* Print */
@media print {
  .header, .sticky-cta, .btn-cta { display: none; }
  .hero { background: var(--primary) !important; padding-top: 2rem; }
}
