/* ── Variables ────────────────────────────────────── */
:root {
  --navy: #ffffff;
  --navy-light: #f8fafc;
  --navy-mid: #f1f5f9;
  --blue: #cca300;
  --blue-light: #e6b800;
  --blue-bright: #fecc00;
  --chrome: #6b7c99;
  --chrome-light: #e2e8f0;
  --gold: #fecc00;
  --white: #ffffff;
  --text: #1c1b17;
  --text-muted: #6b7c99;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg,var(--blue),var(--blue-bright)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { color: var(--white); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.05em; }
.logo-sub { color: var(--chrome); font-size: 0.65rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.12em; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: #333333; font-size: 0.875rem; font-weight: 600; padding: 8px 14px; border-radius: 8px; transition: var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: rgba(0,0,0,0.04); }
.nav-links a.active::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:20px; height:2px; background:var(--blue); border-radius:2px; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position:absolute; top:calc(100% + 8px); left:0; background:var(--white); border:1px solid rgba(0,0,0,0.08); border-radius:var(--radius); padding:8px; min-width:220px; opacity:0; visibility:hidden; transform:translateY(-8px); transition:var(--transition); box-shadow:var(--shadow-lg); }
.dropdown-menu a { display:flex; align-items:center; gap:10px; color:#333333; font-size:0.875rem; padding:10px 14px; border-radius:8px; transition:var(--transition); }
.dropdown-menu a:hover { color:var(--blue); background:rgba(0,0,0,0.04); }
.dropdown-menu a i { width:18px; color:var(--blue-bright); }
.btn-rdv { display:flex; align-items:center; gap:8px; background:linear-gradient(135deg,var(--blue),var(--blue-bright)); color:var(--white); padding:10px 20px; border-radius:50px; font-size:0.875rem; font-weight:600; transition:var(--transition); border:none; cursor:pointer; }
.btn-rdv:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(254,204,0,0.4); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span { display:block; width:24px; height:2px; background:#333333; border-radius:2px; transition:var(--transition); }

/* ── Hero ─────────────────────────────────────────── */
/* ── Hero ─────────────────────────────────────────── */
.hero { position:relative; min-height:100vh; background:#ffffff; display:flex; align-items:center; overflow:hidden; padding-top:70px; }
.hero-bg { position:absolute; inset:0; background:#ffffff; }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(254,204,0,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(254,204,0,0.04) 1px,transparent 1px); background-size:60px 60px; }
.hero-glow { position:absolute; top:20%; right:10%; width:600px; height:600px; background:radial-gradient(circle,rgba(254,204,0,0.1) 0%,transparent 70%); pointer-events:none; }
.hero-container { position:relative; max-width:1280px; margin:0 auto; padding:0 24px; display:grid; grid-template-columns:1.2fr 1fr; gap:40px; align-items:center; width:100%; z-index:1; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(254,204,0,0.12); border:1px solid rgba(254,204,0,0.3); color:var(--blue); font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; padding:6px 12px; border-radius:50px; margin-bottom:16px; box-shadow:0 2px 10px rgba(254,204,0,0.1); }
.hero-title { font-size:clamp(1.8rem,3.8vw,3rem); font-weight:900; color:var(--text); line-height:1.15; margin-bottom:16px; letter-spacing:-0.02em; }
.hero-title span { background:linear-gradient(90deg,var(--blue),var(--blue-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; position:relative; display:inline-block; }
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawUnderline 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.8s;
}
@keyframes drawUnderline {
  to { transform: scaleX(1); }
}
.hero-desc { color:var(--text-muted); font-size:1rem; line-height:1.7; margin-bottom:28px; max-width:500px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.btn-primary { display:inline-flex; align-items:center; gap:10px; background:linear-gradient(135deg,var(--blue),var(--blue-light)); color:white; padding:12px 24px; border-radius:50px; font-weight:700; font-size:0.9rem; transition:var(--transition); border:none; cursor:pointer; box-shadow:0 4px 14px rgba(204,163,0,0.25); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(204,163,0,0.35); }
.btn-secondary { display:inline-flex; align-items:center; gap:10px; background:transparent; color:var(--text); border:1px solid #cbd5e1; padding:12px 24px; border-radius:50px; font-weight:600; font-size:0.9rem; transition:var(--transition); }
.btn-secondary:hover { border-color:var(--text); color:var(--text); background:rgba(0,0,0,0.02); transform:translateY(-2px); }
.hero-stats { display:flex; gap:24px; background:#ffffff; border:1px solid rgba(0,0,0,0.06); padding:12px 24px; border-radius:50px; box-shadow:var(--shadow-lg); backdrop-filter:blur(10px); width:fit-content; }
.hero-stat { text-align:left; border-right:1px solid rgba(0,0,0,0.08); padding-right:20px; }
.hero-stat:last-child { border-right:none; padding-right:0; }
.hero-stat-num { font-size:1.8rem; font-weight:900; color:var(--blue); display:block; line-height:1; margin-bottom:2px; }
.hero-stat-label { font-size:0.7rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.08em; font-weight:600; }
.hero-visual { display:flex; flex-direction:column; gap:16px; position:relative; }
.hero-card { background:#ffffff; border:1px solid #e2e8f0; border-radius:var(--radius-lg); padding:20px; box-shadow:var(--shadow); transition:var(--transition); z-index:1; }
.hero-card:hover { background:#ffffff; transform:translateY(-8px); box-shadow:0 12px 32px rgba(204,163,0,0.08), var(--shadow-lg); border-color:rgba(204,163,0,0.25); }
.hero-card-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; margin-bottom:12px; transition:transform 0.3s ease; }
.hero-card:hover .hero-card-icon { transform:scale(1.1) rotate(5deg); }
.hero-card h3 { color:var(--text); font-size:1rem; font-weight:700; margin-bottom:6px; }
.hero-card p { color:var(--text-muted); font-size:0.8rem; line-height:1.5; }
.hero-card-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; position:relative; z-index:1; }

/* floating shapes */
.hero-shape { position: absolute; pointer-events: none; border-radius: 50%; z-index: 0; }
.hero-shape-1 { width: 300px; height: 300px; top: -100px; right: -50px; border: 1px solid rgba(204,163,0,0.08); background: radial-gradient(circle, rgba(254,204,0,0.03) 0%, transparent 80%); }
.hero-shape-2 { width: 450px; height: 450px; bottom: -150px; left: -100px; border: 1px dashed rgba(204,163,0,0.06); background: radial-gradient(circle, rgba(254,204,0,0.02) 0%, transparent 80%); }
.hero-gauge-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 380px; height: 380px; border: 1.5px dashed rgba(204,163,0,0.06); border-radius: 50%; z-index: 0; animation: rotateGauge 60s linear infinite; pointer-events: none; }
@keyframes rotateGauge { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── Section Commons ──────────────────────────────── */
.section { padding: 70px 0; }
.section-dark { background:#ffffff; color:var(--text); border-top:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; }
.section-gray { background:#f8fafc; }
.container { max-width:1280px; margin:0 auto; padding:0 24px; }
.section-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(204,163,0,0.1); border:1px solid rgba(204,163,0,0.2); color:var(--blue); font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; padding:5px 12px; border-radius:50px; margin-bottom:12px; }
.section-dark .section-badge { background:rgba(204,163,0,0.1); border-color:rgba(204,163,0,0.2); color:var(--blue); }
.section-title { font-size:clamp(1.5rem,2.5vw,2.2rem); font-weight:800; line-height:1.2; margin-bottom:12px; }
.section-desc { color:var(--text-muted); font-size:0.95rem; line-height:1.7; max-width:600px; }
.section-dark .section-desc { color:var(--text-muted); }
.section-header { text-align:center; margin-bottom:48px; }
.section-header .section-desc { margin:0 auto; }

/* ── Services Grid ────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.service-card { background:var(--white); border:1px solid #e4e8f0; border-radius:var(--radius-lg); padding:32px; transition:var(--transition); position:relative; overflow:hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue),var(--blue-bright)); transform:scaleX(0); transform-origin:left; transition:var(--transition); }
.service-card:hover { transform:translateY(-8px); box-shadow:0 16px 36px rgba(204,163,0,0.06), var(--shadow-lg); border-color:rgba(204,163,0,0.25); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { width:60px; height:60px; border-radius:16px; background:linear-gradient(135deg,rgba(204,163,0,0.1),rgba(254,204,0,0.15)); display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:var(--blue); margin-bottom:20px; transition:var(--transition); }
.service-card:hover .service-icon { background:linear-gradient(135deg,var(--blue),var(--blue-bright)); color:var(--white); }
.service-card h3 { font-size:1.15rem; font-weight:700; margin-bottom:10px; color:var(--text); }
.service-card p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; }
.service-card .service-link { display:inline-flex; align-items:center; gap:6px; color:var(--blue); font-size:0.875rem; font-weight:600; margin-top:16px; transition:var(--transition); }
.service-card:hover .service-link { gap:10px; }

/* ── Why us ───────────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.why-list { display:flex; flex-direction:column; gap:20px; }
.why-item { display:flex; gap:14px; padding:16px; border-radius:var(--radius); background:#ffffff; border:1px solid #e2e8f0; box-shadow:var(--shadow); transition:var(--transition); }
.why-item:hover { background:#ffffff; transform:translateX(4px); box-shadow:var(--shadow-lg); }
.why-item-icon { width:38px; height:38px; border-radius:8px; background:linear-gradient(135deg,var(--blue),var(--blue-light)); display:flex; align-items:center; justify-content:center; color:white; font-size:1rem; flex-shrink:0; }
.why-item h4 { color:var(--text); font-size:0.9rem; font-weight:700; margin-bottom:2px; }
.why-item p { color:var(--text-muted); font-size:0.8rem; }
.why-visual { border-radius:var(--radius-lg); background:#f8fafc; border:1px solid #e2e8f0; padding:28px; }
.why-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.why-stat { text-align:center; padding:16px; background:#ffffff; border:1px solid #e2e8f0; border-radius:var(--radius); box-shadow:var(--shadow); }
.why-stat-num { font-size:2rem; font-weight:900; background:linear-gradient(90deg,var(--blue),var(--blue-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; }
.why-stat-label { color:var(--text-muted); font-size:0.75rem; text-transform:uppercase; letter-spacing:0.08em; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item { border:1px solid #e4e8f0; border-radius:var(--radius); overflow:hidden; transition:var(--transition); background:var(--white); position:relative; }
.faq-item::before { content:''; position:absolute; top:0; left:0; bottom:0; width:4px; background:var(--blue); transform:scaleY(0); transition:var(--transition); }
.faq-item.open::before { transform:scaleY(1); }
.faq-item.open { border-color:var(--blue); box-shadow:0 12px 32px rgba(204,163,0,0.05), var(--shadow-lg); }
.faq-question { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; cursor:pointer; font-weight:600; font-size:0.95rem; background:var(--white); transition:var(--transition); }
.faq-question:hover { background:#f8fafc; }
.faq-item.open .faq-question { color:var(--blue); }
.faq-toggle { width:28px; height:28px; border-radius:50%; background:rgba(204,163,0,0.1); display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; transition:var(--transition); }
.faq-item.open .faq-toggle { background:var(--blue); color:white; transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.3s; padding:0 24px; color:var(--text-muted); font-size:0.9rem; line-height:1.8; }
.faq-item.open .faq-answer { max-height:200px; padding:0 24px 20px; }

/* ── CTA Band ─────────────────────────────────────── */
.cta-band { background:#f8fafc; border-top:1px solid #e2e8f0; border-bottom:1px solid #e2e8f0; padding:60px 0; text-align:center; }
.cta-band h2 { color:var(--text); font-size:1.8rem; font-weight:800; margin-bottom:8px; }
.cta-band p { color:var(--text-muted); font-size:0.95rem; margin-bottom:24px; }
.cta-band .btn-white { background:linear-gradient(135deg,var(--blue),var(--blue-light)); color:white; padding:12px 28px; border-radius:50px; font-weight:700; font-size:0.9rem; display:inline-flex; align-items:center; gap:10px; transition:var(--transition); }
.cta-band .btn-white:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(204,163,0,0.35); }

/* ── Contact ──────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:48px; align-items:start; }
.contact-info-card { background:#f8fafc; color:var(--text); border:1px solid #e2e8f0; border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow); }
.contact-info-card h3 { font-size:1.25rem; font-weight:800; margin-bottom:6px; }
.contact-info-card p { color:var(--text-muted); font-size:0.85rem; margin-bottom:24px; }
.contact-item { display:flex; gap:12px; margin-bottom:20px; }
.contact-item-icon { width:38px; height:38px; background:rgba(254,204,0,0.12); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; font-size:0.9rem; }
.contact-item h5 { color:var(--text-muted); font-size:0.75rem; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:2px; }
.contact-item p { color:var(--text); font-weight:600; font-size:0.85rem; }
.form-card { background:white; border:1px solid #e4e8f0; border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:0.875rem; font-weight:600; color:var(--text); margin-bottom:8px; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:12px 16px; border:1.5px solid #e4e8f0; border-radius:var(--radius); font-family:inherit; font-size:0.9rem; transition:var(--transition); background:white; color:var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(204,163,0,0.1); }
.form-group textarea { resize:vertical; min-height:120px; }

/* ── Footer ───────────────────────────────────────── */
.footer { background:var(--white); border-top:1px solid rgba(0,0,0,0.08); }
.footer-container { max-width:1280px; margin:0 auto; padding:64px 24px 32px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1.5fr; gap:48px; margin-bottom:48px; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo i { color:var(--blue-bright); font-size:1.8rem; }
.footer-logo span { color:#222222; font-size:1.1rem; font-weight:800; letter-spacing:0.05em; display:block; }
.footer-logo small { color:#6b7c99; font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; }
.footer-brand p { color:#555555; font-size:0.875rem; line-height:1.7; margin-bottom:24px; }
.footer-social { display:flex; gap:12px; }
.footer-social a { width:38px; height:38px; border-radius:10px; background:#f0f4f8; display:flex; align-items:center; justify-content:center; color:#555555; font-size:1rem; transition:var(--transition); }
.footer-social a:hover { background:var(--blue); color:white; transform:translateY(-3px); }
.footer-links h4 { color:#222222; font-size:0.95rem; font-weight:700; margin-bottom:20px; }
.footer-links ul li { margin-bottom:10px; }
.footer-links a { color:#555555; font-size:0.875rem; transition:var(--transition); }
.footer-links a:hover { color:var(--blue); padding-left:4px; }
.footer-contact h4 { color:#222222; font-size:0.95rem; font-weight:700; margin-bottom:20px; }
.footer-contact-item { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; color:#555555; font-size:0.875rem; }
.footer-contact-item i { color:var(--blue); width:16px; margin-top:2px; }
.btn-rdv-footer { display:inline-flex; align-items:center; gap:8px; background:var(--blue); color:white; padding:10px 20px; border-radius:50px; font-size:0.875rem; font-weight:600; margin-top:16px; transition:var(--transition); }
.btn-rdv-footer:hover { background:var(--blue-light); transform:translateY(-2px); }
.footer-bottom { border-top:1px solid rgba(0,0,0,0.08); padding-top:24px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-bottom p { color:var(--text-muted); font-size:0.85rem; }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { color:var(--text-muted); font-size:0.85rem; transition:var(--transition); }
.footer-bottom-links a:hover { color:#555555; }

/* ── WhatsApp Float ───────────────────────────────── */
.whatsapp-float { position:fixed; bottom:28px; right:28px; width:58px; height:58px; background:#25d366; border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:1.6rem; box-shadow:0 4px 20px rgba(37,211,102,0.5); z-index:999; transition:var(--transition); }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-float::before, .whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  z-index: -1;
  animation: pulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
.whatsapp-float::after {
  animation-delay: 0.8s;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── Alert Flash ──────────────────────────────────── */
.alert-success { position:fixed; top:80px; right:24px; background:#10b981; color:white; padding:14px 20px; border-radius:var(--radius); display:flex; align-items:center; gap:12px; font-size:0.9rem; font-weight:500; box-shadow:var(--shadow-lg); z-index:2000; max-width:400px; }
.alert-success button { background:none; border:none; color:white; cursor:pointer; margin-left:auto; opacity:0.7; }
.alert-success button:hover { opacity:1; }

/* ── Page Hero Banner ─────────────────────────────── */
.page-hero { background:#ffffff; border-bottom:1px solid #e2e8f0; padding:100px 0 50px; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:#ffffff; }
.page-hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(254,204,0,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(254,204,0,0.06) 1px,transparent 1px); background-size:50px 50px; }
.page-hero-content { position:relative; }
.page-hero h1 { color:var(--text); font-size:clamp(1.8rem,3vw,2.5rem); font-weight:900; margin-bottom:8px; }
.page-hero p { color:var(--text-muted); font-size:1rem; max-width:600px; margin:0 auto; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container, .why-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display:none; position:fixed; top:70px; left:0; right:0; bottom:0; background:var(--white); border-top:1px solid rgba(0,0,0,0.08); flex-direction:column; padding:24px; gap:8px; overflow-y:auto; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .hero-stats { flex-direction:column; gap:16px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .form-row { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; }
}

/* ── Scroll Reveal Animations ────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.scroll-reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.services-grid > :nth-child(1) { transition-delay: 0.1s; }
.services-grid > :nth-child(2) { transition-delay: 0.18s; }
.services-grid > :nth-child(3) { transition-delay: 0.26s; }
.services-grid > :nth-child(4) { transition-delay: 0.34s; }
.services-grid > :nth-child(5) { transition-delay: 0.42s; }
.services-grid > :nth-child(6) { transition-delay: 0.5s; }

.hero-card-grid > :nth-child(1) { transition-delay: 0.1s; }
.hero-card-grid > :nth-child(2) { transition-delay: 0.18s; }
.hero-card-grid > :nth-child(3) { transition-delay: 0.26s; }
.hero-card-grid > :nth-child(4) { transition-delay: 0.34s; }

.why-list > :nth-child(1) { transition-delay: 0.1s; }
.why-list > :nth-child(2) { transition-delay: 0.2s; }
.why-list > :nth-child(3) { transition-delay: 0.3s; }
