/* ===== VARIABLES ===== */
:root {
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-deep: #0A2E6E;
  --blue-light: #1E88E5;
  --blue-pale: #E3F2FD;
  --blue-glow: rgba(21,101,192,0.15);
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --text: #0F172A;
  --border: #DDE6F0;
  --font: 'Inter', system-ui, sans-serif;
  --font-title: 'Syne', 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(21,101,192,0.08);
  --shadow-md: 0 8px 32px rgba(21,101,192,0.12);
  --shadow-lg: 0 20px 60px rgba(21,101,192,0.15);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.blue { color: var(--blue); }
.blue-text { color: var(--blue); }
.br-desktop { display: block; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.6rem; font-weight: 800;
  color: var(--gray-800); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background var(--transition) !important, transform var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.9rem 2rem; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600); border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--blue); background: var(--blue-pale); }
.mobile-link.cta { color: var(--blue); font-weight: 600; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: var(--white);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem; font-weight: 600;
  border-radius: 10px; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(21,101,192,0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,0.4); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-primary.full-width { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--blue);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem; font-weight: 600;
  border-radius: 10px; border: 2px solid var(--blue);
  cursor: pointer; transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--blue-pale); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; padding: 100px 2rem 80px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 50%, #EFF6FF 100%);
  position: relative; overflow: hidden;
}
#pageBg {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9998; display: block;
}
.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--border);
  color: var(--gray-600); font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px;
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.25); } 50% { box-shadow: 0 0 0 5px rgba(34,197,94,0.1); } }
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  font-weight: 400; line-height: 1.75; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.1rem; }
.stat-number { font-family: var(--font-title); font-size: 1.6rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 400; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* MOCKUP */
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; padding-left: 3rem; position: relative; z-index: 1; }
.mockup {
  width: 100%; max-width: 420px;
  background: var(--white); border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
}
.mockup-bar {
  background: var(--gray-100); padding: 0.6rem 1rem;
  display: flex; gap: 6px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.mockup-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); }
.mockup-bar span:first-child { background: #FF5F57; }
.mockup-bar span:nth-child(2) { background: #FFBD2E; }
.mockup-bar span:nth-child(3) { background: #28C840; }
.mockup-content { padding: 1.25rem; }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.mockup-logo { width: 36px; height: 18px; background: var(--blue); border-radius: 4px; }
.mockup-nav { display: flex; gap: 8px; }
.mockup-nav div { width: 28px; height: 8px; background: var(--gray-200); border-radius: 4px; }
.mockup-hero-block {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 10px; padding: 1.25rem; margin-bottom: 1rem;
}
.mockup-title { width: 75%; height: 12px; background: rgba(255,255,255,0.9); border-radius: 6px; margin-bottom: 8px; }
.mockup-subtitle { width: 55%; height: 8px; background: rgba(255,255,255,0.5); border-radius: 4px; margin-bottom: 14px; }
.mockup-btn { width: 90px; height: 28px; background: var(--white); border-radius: 6px; }
.mockup-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mockup-card { height: 52px; background: var(--gray-100); border-radius: 8px; border: 1px solid var(--border); }

/* ===== SECTIONS COMMON ===== */
section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text);
}
.section-desc { margin-top: 0.75rem; font-size: 1rem; color: var(--gray-600); max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== ARTISANS ===== */
#artisans { background: var(--off-white); }
.artisans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.artisan-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.artisan-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.artisan-icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 0.75rem; }
.artisan-icon svg { width: 100%; height: 100%; }
.artisan-card h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.artisan-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ===== SERVICES ===== */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #F0F7FF 0%, var(--white) 100%);
  box-shadow: var(--shadow-md);
}
.featured-tag {
  position: absolute; top: -1px; left: 1.5rem;
  background: var(--blue); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem; border-radius: 0 0 8px 8px;
}
.service-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 1.25rem;
}
.service-icon-wrap.blue-bg { background: var(--blue-pale); }
.service-icon-wrap svg { width: 22px; height: 22px; }
.service-card h3 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 1.25rem; }
.service-list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-list li {
  font-size: 0.82rem; color: var(--gray-600);
  padding-left: 1.1rem; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}

/* ===== PROCESSUS ===== */
#processus { background: var(--blue-deep); }
#processus .section-eyebrow { color: #90CAF9; }
#processus .section-title { color: var(--white); }
.process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0.5rem;
}
.process-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.process-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.process-num {
  font-family: var(--font-title); font-size: 2rem; font-weight: 800;
  color: rgba(144,202,249,0.4); line-height: 1; margin-bottom: 0.75rem;
}
.process-card h3 { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.process-arrow {
  font-size: 1.25rem; color: rgba(255,255,255,0.25);
  padding-top: 2.5rem; padding: 2.5rem 0.5rem 0;
}

/* ===== POURQUOI ===== */
#pourquoi { background: var(--off-white); }
.why-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.why-left .section-title { text-align: left; margin-bottom: 1rem; }
.why-desc { font-size: 0.95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; }
.why-right { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.why-item h4 { font-family: var(--font-title); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; }

/* ===== CONTACT ===== */
#contact { background: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-left .section-title { text-align: left; margin-bottom: 0.75rem; }
.contact-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--gray-600); transition: color var(--transition); }
.contact-item:hover { color: var(--blue); }
.contact-icon {
  width: 36px; height: 36px; background: var(--blue-pale);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--blue);
}
.contact-icon svg { width: 16px; height: 16px; }

/* FORM */
.contact-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-100); border: 1.5px solid transparent;
  color: var(--text); padding: 0.75rem 1rem;
  font-size: 0.9rem; border-radius: 8px; outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: vertical; font-family: var(--font);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 0.75rem; }

/* ===== À PROPOS ===== */
#apropos { background: var(--white); }
.apropos-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
.apropos-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.apropos-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 3rem; font-weight: 800;
  color: var(--white); box-shadow: 0 8px 32px rgba(21,101,192,0.3);
}
.apropos-card {
  width: 100%; max-width: 220px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.apropos-card-line { height: 10px; background: var(--gray-100); border-radius: 6px; margin-bottom: 8px; }
.apropos-card-line.short { width: 60%; }
.apropos-card-badge {
  display: inline-block; margin-top: 0.75rem;
  background: var(--blue-pale); color: var(--blue);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.apropos-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.apropos-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.apropos-values { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.apropos-value {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--gray-600);
}
.apropos-value-icon { font-size: 1rem; }
.apropos-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 6px; }

/* ===== FAQ ===== */
#faq { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: left; gap: 1rem;
}
.faq-question span { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.faq-icon { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; }

/* ===== ARTISANS CTA ===== */
.artisans-cta {
  text-align: center; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.artisans-cta p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== MOCKUP AMÉLIORÉ ===== */
.mockup-url {
  flex: 1; background: var(--white); border-radius: 4px;
  height: 20px; font-size: 0.65rem; color: var(--gray-400);
  display: flex; align-items: center; padding: 0 8px;
  border: 1px solid var(--border);
}
.mockup-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.mockup-card-icon { font-size: 1.1rem; }
.mockup-card-line { width: 70%; height: 6px; background: var(--gray-200); border-radius: 4px; }
.mockup-cta-row { display: flex; gap: 8px; margin-top: 10px; }
.mockup-cta-btn {
  flex: 1; height: 28px; background: var(--blue); border-radius: 6px;
  font-size: 0.6rem; color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.mockup-phone-btn {
  flex: 1; height: 28px; background: var(--gray-100); border-radius: 6px;
  font-size: 0.6rem; color: var(--gray-600); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.mockup-label {
  text-align: center; margin-top: 1rem;
  font-size: 0.75rem; color: var(--gray-400);
  font-style: italic;
}

/* ===== WHATSAPP FLOTTANT ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float-tooltip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--gray-800); color: var(--white);
  font-size: 0.8rem; font-weight: 500; padding: 0.4rem 0.8rem;
  border-radius: 6px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ===== BOUTON WHATSAPP HERO ===== */
.btn-wa {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3) !important;
}
.btn-wa:hover { background: #1ebd5b !important; border-color: #1ebd5b !important; }

/* ===== CONTACT WA ICON ===== */
.wa-icon { background: rgba(37,211,102,0.12) !important; color: #25D366 !important; }

/* ===== FOOTER WA ===== */
.footer-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; font-size: 0.8rem; font-weight: 600;
  color: #25D366; transition: opacity var(--transition);
}
.footer-wa:hover { opacity: 0.8; }
.footer-nav-title {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 0.25rem;
}

/* ===== FOOTER ===== */
footer { background: var(--gray-800); padding: 3rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; margin-top: 0.75rem; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a, .footer-contact a, .footer-contact span {
  font-size: 0.875rem; color: var(--gray-400);
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  #hero { flex-direction: column; text-align: center; padding: 110px 2rem 60px; }
  .hero-content { max-width: 100%; }
  .hero-visual { padding-left: 0; padding-top: 3rem; width: 100%; max-width: 420px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .br-desktop { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .artisans-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-arrow { display: none; }
  .why-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .apropos-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .apropos-visual { flex-direction: row; justify-content: center; }
}
@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .artisans-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-sep { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .contact-form { padding: 1.5rem; }
  .hero-title { font-size: 2rem; }
}
