/* =========================================================
   YOUKA TRANS — Global Stylesheet
   Transport routier de fret de proximité · Strasbourg
   ========================================================= */

/* --- CSS Custom Properties --- */
:root {
  --primary: #d41419;
  --primary-dark: #a0100f;
  --primary-light: #e8302e;
  --accent: #d41419;
  --accent-glow: #ff3b3b;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --bg-dark: #0a1628;
  --text-main: #2b2d42;
  --text-muted: #6c757d;
  --text-light: #e8ecf1;
  --border: #dee2e6;
  --success: #28a745;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1200px;
  --header-h: 80px;
}

/* --- Reset & Base --- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--accent); text-decoration:none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul,ol { list-style:none; }
button,input,select,textarea { font-family:inherit; font-size:inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight:700; line-height:1.2; color:var(--primary-dark); }
::selection { background:var(--primary); color:#fff; }

/* Screen-reader only */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* --- Container --- */
.container { width:90%; max-width:var(--container); margin:0 auto; }

/* --- HEADER --- */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(0,0,0,.06);
  height:var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background:rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display:flex; align-items:center; justify-content:space-between;
  height:var(--header-h); gap:1rem;
}
.logo-link { display:flex; align-items:center; flex-shrink:0; }
.logo-link img { height:50px; width:auto; }
.logo-link .logo-text {
  font-family:var(--font-heading); font-weight:800; font-size:1.4rem;
  color:var(--primary); margin-left:.6rem; letter-spacing:-.02em;
}

/* Main Nav */
.main-nav ul { display:flex; gap:.4rem; align-items:center; }
.main-nav a {
  display:block; padding:.55rem 1rem; font-size:.92rem; font-weight:600;
  color:var(--text-main); border-radius:var(--radius); transition: all var(--transition);
  position:relative;
}
.main-nav a::after {
  content:''; position:absolute; bottom:6px; left:50%; width:0; height:2px;
  background:var(--accent); transition:all var(--transition); transform:translateX(-50%);
}
.main-nav a:hover, .main-nav a.active { color:var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width:50%; }

/* Header CTA */
.header-cta {
  display:flex; align-items:center; gap:.8rem; flex-shrink:0;
}
.header-phone {
  font-weight:700; font-size:.9rem; color:var(--primary);
  display:flex; align-items:center; gap:.35rem;
}
.header-phone svg { width:18px; height:18px; }

/* Burger */
.burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:1100; }
.burger span { display:block; width:26px; height:2.5px; background:var(--primary); border-radius:3px; transition:all var(--transition); }
.burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity:0; }
.burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* --- HERO SECTION --- */
.hero {
  position:relative; min-height:92vh; display:flex; align-items:center;
  overflow:hidden; margin-top:var(--header-h);
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background-size:cover; background-position:center 40%;
  filter:brightness(.45);
  transform:scale(1.05);
  transition:transform 8s ease-out;
}
.hero.in-view .hero-bg { transform:scale(1); }
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(135deg, rgba(100,10,10,.85) 0%, rgba(100,10,10,.4) 50%, transparent 100%);
}
.hero-content {
  position:relative; z-index:2; color:#fff; max-width:680px;
  padding:3rem 0;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.45rem;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.2);
  padding:.4rem 1rem; border-radius:50px; font-size:.82rem; font-weight:600;
  margin-bottom:1.5rem; letter-spacing:.04em; text-transform:uppercase;
}
.hero-badge svg { width:16px; height:16px; }
.hero h1 {
  font-size:clamp(2.2rem, 5vw, 3.8rem); color:#fff;
  margin-bottom:1rem; font-weight:800; letter-spacing:-.03em;
  line-height:1.1;
}
.hero h1 span { color:var(--accent-glow); }
.hero p {
  font-size:clamp(1rem, 2vw, 1.2rem); opacity:.9;
  margin-bottom:2rem; line-height:1.7; max-width:540px;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

/* --- BUTTONS --- */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 2rem; font-weight:700; font-size:.95rem;
  border-radius:50px; border:2px solid transparent;
  cursor:pointer; transition:all var(--transition);
  text-align:center; justify-content:center;
}
.btn svg { width:18px; height:18px; flex-shrink:0; }
.btn-primary {
  background:var(--accent); color:#fff; border-color:var(--accent);
}
.btn-primary:hover {
  background:#fff; color:var(--primary); border-color:#fff;
  box-shadow:var(--shadow-md); transform:translateY(-2px);
}
.btn-outline {
  background:transparent; color:#fff; border-color:rgba(255,255,255,.5);
}
.btn-outline:hover {
  background:#fff; color:var(--primary); border-color:#fff;
}
.btn-dark {
  background:var(--primary); color:#fff; border-color:var(--primary);
}
.btn-dark:hover {
  background:var(--primary-dark); border-color:var(--primary-dark);
  transform:translateY(-2px); box-shadow:var(--shadow-md);
}

/* --- SECTIONS --- */
.section { padding:5rem 0; }
.section-dark { background:var(--bg-dark); color:var(--text-light); }
.section-dark h2, .section-dark h3 { color:#fff; }
.section-alt { background:var(--bg-light); }
.section-header {
  text-align:center; max-width:680px; margin:0 auto 3.5rem;
}
.section-label {
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.82rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--accent); margin-bottom:.8rem;
}
.section-label svg { width:16px; height:16px; }
.section-header h2 {
  font-size:clamp(1.8rem,4vw,2.8rem); margin-bottom:1rem;
  letter-spacing:-.02em;
}
.section-header p { color:var(--text-muted); font-size:1.05rem; }
.section-dark .section-header p { color:rgba(255,255,255,.65); }

/* --- SERVICE CARDS --- */
.services-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
}
.service-card {
  background:#fff; border-radius:var(--radius-lg); padding:2.5rem 2rem;
  border:1px solid var(--border); position:relative; overflow:hidden;
  transition:all var(--transition);
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  transform:scaleX(0); transform-origin:left; transition:transform var(--transition);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-card:hover::before { transform:scaleX(1); }
.service-card .icon-wrap {
  width:60px; height:60px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(212,20,25,.1), rgba(100,10,10,.06));
  margin-bottom:1.5rem;
}
.service-card .icon-wrap svg { width:28px; height:28px; color:var(--primary); }
.service-card h3 { font-size:1.25rem; margin-bottom:.8rem; }
.service-card p { color:var(--text-muted); font-size:.95rem; line-height:1.7; }
.service-card .card-link {
  display:inline-flex; align-items:center; gap:.35rem;
  margin-top:1.2rem; font-weight:700; font-size:.9rem; color:var(--accent);
}
.service-card .card-link svg { width:16px; height:16px; transition:transform var(--transition); }
.service-card:hover .card-link svg { transform:translateX(4px); }

/* --- STATS BAR --- */
.stats-bar {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2rem; padding:3rem 0;
}
.stat-item { text-align:center; }
.stat-number {
  font-family:var(--font-heading); font-size:clamp(2rem,4vw,3rem);
  font-weight:800; color:var(--accent-glow); line-height:1;
  margin-bottom:.4rem;
}
.stat-label { font-size:.95rem; opacity:.8; }

/* --- WHY CHOOSE US --- */
.why-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2rem;
}
.why-card {
  padding:2rem; border-radius:var(--radius-lg);
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  transition:all var(--transition);
}
.why-card:hover { background:rgba(255,255,255,.1); transform:translateY(-4px); }
.why-card .icon-circle {
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--accent), var(--primary));
  margin-bottom:1.2rem;
}
.why-card .icon-circle svg { width:24px; height:24px; color:#fff; }
.why-card h3 { font-size:1.1rem; margin-bottom:.6rem; }
.why-card p { font-size:.92rem; opacity:.75; line-height:1.7; }

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
}
.testimonial-card {
  background:#fff; border-radius:var(--radius-lg); padding:2.5rem;
  border:1px solid var(--border); position:relative;
}
.testimonial-card .quote-mark {
  font-family:Georgia,serif; font-size:4rem; color:var(--accent);
  opacity:.2; line-height:1; position:absolute; top:1rem; right:1.5rem;
}
.testimonial-card p { font-size:1rem; font-style:italic; color:var(--text-muted); margin-bottom:1.5rem; line-height:1.8; }
.testimonial-author { display:flex; align-items:center; gap:1rem; }
.testimonial-avatar {
  width:48px; height:48px; border-radius:50%; background:var(--bg-light);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:var(--primary); font-size:1.1rem;
}
.testimonial-author strong { display:block; font-size:.95rem; color:var(--text-main); }
.testimonial-author span { font-size:.82rem; color:var(--text-muted); }

/* --- CTA BANNER --- */
.cta-banner {
  background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding:4rem 0; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; top:-50%; right:-10%; width:500px; height:500px;
  border-radius:50%; background:rgba(255,255,255,.04);
}
.cta-banner h2 { color:#fff; font-size:clamp(1.6rem,3.5vw,2.4rem); margin-bottom:1rem; }
.cta-banner p { color:rgba(255,255,255,.8); margin-bottom:2rem; font-size:1.05rem; }

/* --- ABOUT PAGE --- */
.about-intro {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center;
}
.about-intro .about-img {
  border-radius:var(--radius-lg); overflow:hidden; position:relative;
}
.about-intro .about-img img { width:100%; height:400px; object-fit:cover; }
.about-intro .about-img::after {
  content:''; position:absolute; inset:0;
  border:3px solid var(--accent); border-radius:var(--radius-lg);
  transform:translate(12px,12px); z-index:-1; opacity:.3;
}
.values-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:2rem;
}
.value-card {
  text-align:center; padding:2.5rem 1.5rem;
  border-radius:var(--radius-lg); background:#fff;
  border:1px solid var(--border); transition:all var(--transition);
}
.value-card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.value-card .v-icon {
  width:64px; height:64px; border-radius:50%; margin:0 auto 1.2rem;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(212,20,25,.12), rgba(100,10,10,.06));
}
.value-card .v-icon svg { width:28px; height:28px; color:var(--primary); }
.value-card h3 { font-size:1.15rem; margin-bottom:.6rem; }
.value-card p { font-size:.92rem; color:var(--text-muted); }
.map-embed {
  border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-md); margin-top:2rem;
}
.map-embed iframe { width:100%; height:400px; border:none; }

/* --- SERVICES PAGE --- */
.services-detail-grid {
  display:grid; gap:3rem;
}
.service-detail {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem;
  align-items:center; padding:3rem; background:#fff;
  border-radius:var(--radius-lg); border:1px solid var(--border);
}
.service-detail:nth-child(even) { direction:rtl; }
.service-detail:nth-child(even) > * { direction:ltr; }
.service-detail .sd-img { border-radius:var(--radius); overflow:hidden; }
.service-detail .sd-img img { width:100%; height:280px; object-fit:cover; }
.service-detail h3 { font-size:1.35rem; margin-bottom:.8rem; }
.service-detail p { color:var(--text-muted); margin-bottom:1.2rem; }
.service-detail .features-list { display:flex; flex-direction:column; gap:.5rem; }
.service-detail .features-list li {
  display:flex; align-items:flex-start; gap:.5rem; font-size:.92rem;
}
.service-detail .features-list li svg { width:18px; height:18px; color:var(--success); flex-shrink:0; margin-top:3px; }

/* Comparison Table */
.comparison-table-wrap { overflow-x:auto; margin-top:2rem; }
.comparison-table {
  width:100%; border-collapse:collapse; font-size:.92rem;
  background:#fff; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.comparison-table thead { background:var(--primary); color:#fff; }
.comparison-table th { padding:1rem 1.2rem; text-align:left; font-weight:700; }
.comparison-table td { padding:.9rem 1.2rem; border-bottom:1px solid var(--border); }
.comparison-table tbody tr:hover { background:rgba(212,20,25,.03); }
.comparison-table .check { color:var(--success); font-weight:700; }

/* --- ZONE PAGE --- */
.zone-content {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem;
}
.zone-map { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); min-height:500px; }
.zone-map iframe { width:100%; height:100%; min-height:500px; border:none; }
.zone-info h3 { margin-bottom:1rem; }
.cities-list {
  display:grid; grid-template-columns:1fr 1fr; gap:.4rem .8rem;
}
.cities-list li {
  display:flex; align-items:center; gap:.4rem; font-size:.92rem; padding:.35rem 0;
}
.cities-list li svg { width:16px; height:16px; color:var(--accent); flex-shrink:0; }
.zone-coverage {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem; margin-top:2rem;
}
.coverage-card {
  padding:1.5rem; background:#fff; border-radius:var(--radius);
  border:1px solid var(--border); text-align:center;
}
.coverage-card h4 { font-size:1.05rem; margin-bottom:.3rem; color:var(--primary); }
.coverage-card p { font-size:.88rem; color:var(--text-muted); }

/* --- CONTACT PAGE --- */
.contact-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem;
}
.contact-form-wrap {
  background:#fff; padding:2.5rem; border-radius:var(--radius-lg);
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
}
.form-group { margin-bottom:1.5rem; }
.form-group label {
  display:block; font-weight:600; font-size:.9rem; margin-bottom:.5rem;
  color:var(--text-main);
}
.form-group label .required { color:#e53e3e; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:.8rem 1rem; border:1.5px solid var(--border);
  border-radius:var(--radius); background:var(--bg-light);
  transition:all var(--transition); font-size:.95rem;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color:var(--accent); outline:none;
  box-shadow:0 0 0 3px rgba(212,20,25,.12);
  background:#fff;
}
.form-group textarea { resize:vertical; min-height:130px; }
.checkbox-group { display:flex; flex-wrap:wrap; gap:.8rem; }
.checkbox-group label {
  display:flex; align-items:center; gap:.4rem; font-weight:500;
  font-size:.9rem; cursor:pointer;
}
.checkbox-group input[type="checkbox"] {
  width:18px; height:18px; accent-color:var(--primary); cursor:pointer;
}
.form-status {
  padding:1rem; border-radius:var(--radius); font-weight:600; font-size:.92rem;
  display:none; margin-top:1rem;
}
.form-status.success { display:block; background:rgba(40,167,69,.1); color:var(--success); }
.form-status.error { display:block; background:rgba(229,62,62,.1); color:#e53e3e; }

.contact-info-side h3 { font-size:1.3rem; margin-bottom:1.5rem; }
.contact-info-list { display:flex; flex-direction:column; gap:1.5rem; }
.ci-item { display:flex; gap:1rem; align-items:flex-start; }
.ci-item .ci-icon {
  width:48px; height:48px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(212,20,25,.1), rgba(100,10,10,.06));
}
.ci-item .ci-icon svg { width:22px; height:22px; color:var(--primary); }
.ci-item strong { display:block; font-size:.95rem; margin-bottom:.2rem; }
.ci-item p, .ci-item a { font-size:.9rem; color:var(--text-muted); }

/* --- PAGE HERO (sub-pages) --- */
.page-hero {
  position:relative; padding:6rem 0 4rem;
  background:linear-gradient(135deg, var(--primary-dark), var(--primary));
  margin-top:var(--header-h); overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; top:-30%; right:-5%;
  width:450px; height:450px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { color:#fff; font-size:clamp(2rem,4vw,3rem); margin-bottom:.6rem; }
.page-hero p { color:rgba(255,255,255,.75); font-size:1.1rem; }
.breadcrumb {
  display:flex; gap:.5rem; font-size:.85rem; color:rgba(255,255,255,.5); margin-bottom:1rem;
}
.breadcrumb a { color:rgba(255,255,255,.7); }
.breadcrumb a:hover { color:#fff; }

/* --- FOOTER --- */
.site-footer {
  background:var(--bg-dark); color:var(--text-light); padding:4rem 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2.5rem; padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size:.9rem; opacity:.65; margin-top:.8rem; line-height:1.7; max-width:300px; }
.footer-brand .logo-link { margin-bottom:.5rem; }
.footer-brand .logo-link img { height:40px; }
.footer-col h4 {
  font-size:.92rem; text-transform:uppercase; letter-spacing:.06em;
  color:#fff; margin-bottom:1.2rem; font-weight:700;
}
.footer-col ul li { margin-bottom:.6rem; }
.footer-col ul a { color:rgba(255,255,255,.6); font-size:.9rem; transition:color var(--transition); }
.footer-col ul a:hover { color:#fff; }
.footer-contact-item {
  display:flex; align-items:flex-start; gap:.7rem; margin-bottom:1rem;
  font-size:.9rem; color:rgba(255,255,255,.65);
}
.footer-contact-item svg { width:18px; height:18px; color:var(--accent); flex-shrink:0; margin-top:2px; }
.footer-social { display:flex; gap:.8rem; margin-top:1.2rem; }
.footer-social a {
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.7);
  transition:all var(--transition);
}
.footer-social a:hover { background:var(--accent); color:#fff; }
.footer-social a svg { width:18px; height:18px; }
.footer-bottom {
  padding:1.5rem 0; display:flex; justify-content:space-between;
  align-items:center; font-size:.82rem; color:rgba(255,255,255,.4);
  flex-wrap:wrap; gap:.5rem;
}
.footer-bottom a { color:rgba(255,255,255,.5); }
.footer-bottom a:hover { color:#fff; }

/* --- LEGAL PAGE --- */
.legal-content { max-width:800px; margin:0 auto; }
.legal-content h2 { font-size:1.4rem; margin:2.5rem 0 1rem; color:var(--primary); }
.legal-content h3 { font-size:1.1rem; margin:1.5rem 0 .6rem; }
.legal-content p { margin-bottom:1rem; color:var(--text-muted); font-size:.95rem; }

/* --- ANIMATIONS / REVEAL --- */
.reveal {
  opacity:0; transform:translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* Counter animation */
.counter-animate { display:inline-block; }

/* --- RESPONSIVE: TABLET --- */
@media (max-width:1024px) {
  .about-intro, .service-detail, .zone-content, .contact-grid {
    grid-template-columns:1fr;
  }
  .service-detail:nth-child(even) { direction:ltr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width:768px) {
  :root { --header-h:68px; }
  .burger { display:flex; }
  .main-nav {
    position:fixed; top:0; right:-100%; width:80%; max-width:360px;
    height:100vh; background:#fff; z-index:1050;
    flex-direction:column; padding:5rem 2rem 2rem;
    box-shadow:var(--shadow-lg); transition:right var(--transition);
  }
  .main-nav.open { right:0; }
  .main-nav ul { flex-direction:column; gap:0; width:100%; }
  .main-nav a { padding:.9rem 0; font-size:1.05rem; border-bottom:1px solid var(--border); }
  .main-nav a::after { display:none; }
  .overlay {
    position:fixed; inset:0; background:rgba(0,0,0,.4);
    z-index:1040; opacity:0; pointer-events:none;
    transition:opacity var(--transition);
  }
  .overlay.active { opacity:1; pointer-events:auto; }
  .header-phone { display:none; }
  .hero { min-height:80vh; }
  .hero-content { max-width:100%; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; }
  .services-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .section { padding:3.5rem 0; }
  .zone-map { min-height:350px; }
  .zone-map iframe { min-height:350px; }
  .cities-list { grid-template-columns:1fr; }
}

@media (max-width:480px) {
  .stats-bar { grid-template-columns:1fr; }
  .hero h1 { font-size:1.9rem; }
  .section-header h2 { font-size:1.6rem; }
}

/* --- PRINT --- */
@media print {
  .site-header, .site-footer, .burger, .overlay { display:none; }
  .hero { min-height:auto; padding:2rem 0; }
  body { color:#000; }
}
