:root {
  --primary: #1e5c87;
  --primary-dark: #0d3a5c;
  --primary-light: #e3eef7;
  --charcoal: #14283d;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-soft: #6b7a87;
  --bg: #f4f8fb;
  --white: #ffffff;
  --border: #dfe6ee;
  --border-light: #eef2f6;
  --accent: #ff7a1f;
  --accent-dark: #e56512;
  --accent-light: #ffe7d4;
  --success: #16a34a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(20, 40, 61, .07);
  --shadow-md: 0 4px 14px rgba(20, 40, 61, .08);
  --shadow-lg: 0 12px 32px rgba(20, 40, 61, .12);
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--text-mid); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }

/* === TOP BAR === */
.top-bar { background: var(--charcoal); color: rgba(255,255,255,.85); font-size: .82rem; padding: .55rem 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent); }
.top-bar-right { display: flex; gap: 1.1rem; align-items: center; }
.top-bar-right span { opacity: .4; }

/* === NAV === */
nav { background: var(--white); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.logo { display: flex; align-items: center; gap: .65rem; }
.logo-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 1.15rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-weight: 800; color: var(--charcoal); font-size: 1.05rem; letter-spacing: .02em; }
.logo-sub { font-size: .72rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.nav-links { display: flex; gap: 1.6rem; align-items: center; list-style: none; }
.nav-links a { color: var(--charcoal); font-weight: 500; font-size: .95rem; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--accent); color: #fff !important; padding: .55rem 1.1rem; border-radius: var(--radius); font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }
.nav-cta-phone { display: flex; align-items: center; gap: .4rem; color: var(--primary) !important; font-weight: 700; white-space: nowrap; }
.hamburger { display: none; background: none; border: none; padding: .5rem; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: .55rem; padding: .8rem 1.4rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; transition: all .2s; border: none; cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--primary-dark); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* === HERO === */
.hero { background: linear-gradient(135deg, #f4f8fb 0%, #e3eef7 100%); padding: clamp(3rem, 6vw, 5rem) 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.badge { display: inline-block; background: var(--white); color: var(--primary); padding: .4rem .9rem; border-radius: 100px; font-size: .82rem; font-weight: 600; border: 1px solid var(--border); margin-bottom: 1rem; }
.hero h1 { margin-bottom: 1.2rem; color: var(--charcoal); }
.hero h1 strong { color: var(--primary); }
.hero-desc { font-size: 1.08rem; color: var(--text-mid); margin-bottom: 1.8rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-img { border-radius: var(--radius-lg); width: 100%; height: 100%; max-height: 460px; object-fit: cover; box-shadow: var(--shadow-lg); }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text-mid); }
.hero-trust-item svg { color: var(--success); flex-shrink: 0; }

/* === HERO FORM === */
.hero-form-card { background: #fff; border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.hero-form-title { color: var(--charcoal); font-size: 1.35rem; margin-bottom: .3rem; }
.hero-form-subtitle { color: var(--text-soft); font-size: .9rem; margin-bottom: 1.2rem; }
.hero-form .form-group { margin-bottom: .9rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--charcoal); margin-bottom: .3rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit; transition: border-color .2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* === STATS === */
.stats { background: var(--white); padding: 3rem 0; border-bottom: 1px solid var(--border-light); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 1.2rem; }
.stat-number { display: block; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: .4rem; }
.stat-label { color: var(--text-soft); font-size: .9rem; font-weight: 500; }

/* === SECTIONS === */
section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section-title { text-align: center; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--text-soft); margin-bottom: 2.5rem; font-size: 1.05rem; }
.seo-section { background: var(--white); }
.seo-content { max-width: 820px; margin: 0 auto; }
.seo-content h2 { margin-bottom: 1.2rem; }
.seo-content p { margin-bottom: 1rem; color: var(--text-mid); }
.seo-content strong { color: var(--charcoal); }

/* === SERVICES GRID === */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; text-decoration: none; color: inherit; border: 1px solid var(--border-light); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.service-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; margin-bottom: .6rem; }
.service-card h3 { color: var(--charcoal); font-size: 1.15rem; }
.service-price { background: var(--accent-light); color: var(--accent-dark); padding: .2rem .55rem; border-radius: 6px; font-size: .78rem; font-weight: 600; white-space: nowrap; }
.service-card p { flex: 1; font-size: .93rem; margin-bottom: 1rem; }
.service-link { color: var(--primary); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; }

/* === WHY / FEATURES === */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { padding: 1.8rem; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--border-light); transition: transform .25s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; background: var(--primary-light); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { font-size: .92rem; color: var(--text-mid); }

/* === BRANDS === */
.brands { background: var(--bg); padding: 3rem 0; }
.brands-title { text-align: center; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); margin-bottom: 1.5rem; font-weight: 600; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; }
.brands-grid img { height: 38px; width: auto; filter: grayscale(1); opacity: .65; transition: all .25s; }
.brands-grid img:hover { filter: grayscale(0); opacity: 1; }

/* === TESTIMONIALS === */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg); padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }
.testimonial-stars { color: #fbbf24; margin-bottom: .8rem; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-mid); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; font-size: .88rem; }
.testimonial-name { font-weight: 700; color: var(--charcoal); }
.testimonial-location { color: var(--text-soft); }

/* === FAQ === */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: .8rem; border: 1px solid var(--border-light); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 1.2rem 1.4rem; background: none; border: none; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--charcoal); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 1.4rem; color: var(--text-mid); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.4rem 1.2rem; }

/* === CTA BANNER === */
.cta-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); color: #fff; padding: 3rem 0; }
.cta-banner h2 { color: #fff; margin-bottom: .6rem; }
.cta-banner-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--accent); }
.cta-banner .btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.cta-banner .btn-secondary:hover { background: #fff; color: var(--primary); }

/* === BREADCRUMB === */
.breadcrumb { background: var(--bg); padding: .9rem 0; font-size: .87rem; border-bottom: 1px solid var(--border-light); }
.breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; list-style: none; }
.breadcrumb-list a { color: var(--text-soft); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: .4rem; color: var(--text-soft); }
.breadcrumb-list li:last-child { color: var(--charcoal); font-weight: 500; }

/* === PAGE HEADER === */
.page-header { background: linear-gradient(135deg, #f4f8fb 0%, #e3eef7 100%); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.page-header h1 { margin-bottom: .8rem; }
.page-header-lead { font-size: 1.1rem; color: var(--text-mid); max-width: 720px; }

/* === PROSE (legal, content pages) === */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 2rem 0 .8rem; color: var(--charcoal); font-size: 1.5rem; }
.prose h3 { margin: 1.5rem 0 .5rem; color: var(--primary-dark); font-size: 1.15rem; }
.prose p { margin-bottom: 1rem; color: var(--text-mid); line-height: 1.75; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; color: var(--text-mid); }
.prose ul li, .prose ol li { margin-bottom: .4rem; }
.prose a { color: var(--primary); border-bottom: 1px solid var(--primary-light); }
.prose a:hover { color: var(--primary-dark); border-bottom-color: var(--primary); }
.prose strong { color: var(--charcoal); }

/* === TWO COL === */
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-block { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--bg); border-radius: var(--radius); border: 1px solid var(--border-light); }
.contact-block-icon { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-block-content h3 { margin-bottom: .25rem; font-size: 1rem; }
.contact-block-content p, .contact-block-content a { color: var(--text-mid); font-size: .92rem; }
.contact-block-content a:hover { color: var(--primary); }
.contact-form { background: var(--white); padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }

/* === CITIES GRID === */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: .8rem; }
.city-link { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); color: var(--charcoal); font-weight: 500; font-size: .93rem; transition: all .2s; }
.city-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.city-link svg { color: var(--primary); }

/* === FOOTER === */
footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h3 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand-logo { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 1.3rem; }
.footer-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; line-height: 1.7; }
.footer-rating { display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.3rem; background: rgba(255,255,255,.06); border-radius: var(--radius); margin-bottom: 2.2rem; flex-wrap: wrap; }
.footer-rating-stars { color: #fbbf24; font-size: 1.2rem; letter-spacing: 3px; }
.footer-rating span { color: rgba(255,255,255,.9); font-size: .92rem; }
.footer-rating strong { color: #fff; font-size: 1.05rem; font-weight: 800; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; }
.footer-socials a:hover { background: var(--accent); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }

/* === STICKY CALL BUTTON (mobile) === */
.sticky-phone { position: fixed; bottom: 1.2rem; right: 1.2rem; width: 58px; height: 58px; background: var(--accent); color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(255,122,31,.4); z-index: 99; animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255,122,31,.6); } 70% { box-shadow: 0 0 0 18px rgba(255,122,31,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,31,0); } }

/* === COOKIE BANNER === */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal); color: #fff; padding: 1.2rem; z-index: 200; display: none; box-shadow: 0 -4px 12px rgba(0,0,0,.15); }
.cookie-banner.visible { display: block; }
.cookie-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.cookie-text { font-size: .88rem; max-width: 720px; line-height: 1.5; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; }

/* === TARIFS === */
.tarifs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 1rem; }
.tarif-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1.3rem 1.5rem; transition: box-shadow .2s; }
.tarif-card:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.tarif-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .6rem; flex-wrap: wrap; }
.tarif-head h3 { color: var(--charcoal); font-size: 1.05rem; flex: 1; min-width: 180px; }
.tarif-range { background: var(--accent-light); color: var(--accent-dark); padding: .3rem .7rem; border-radius: 6px; font-size: .88rem; font-weight: 700; white-space: nowrap; }
.tarif-card p { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* === GOOGLE REVIEWS WIDGET === */
.greviews { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.greviews-header { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.8rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-light); }
.greviews-brand { display: flex; align-items: center; gap: .8rem; }
.greviews-title { font-weight: 700; color: var(--charcoal); font-size: 1.05rem; }
.greviews-sub { font-size: .85rem; color: var(--text-soft); }
.greviews-score { display: flex; flex-direction: column; align-items: flex-end; }
.greviews-stars { color: #fbbf24; font-size: 1.3rem; letter-spacing: 3px; }
.greviews-rating { font-size: 1.1rem; color: var(--charcoal); margin-top: .2rem; }
.greviews-rating strong { font-size: 1.4rem; color: var(--primary-dark); font-weight: 800; }
.greviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.greview-card { background: var(--bg); padding: 1.3rem; border-radius: var(--radius); border: 1px solid var(--border-light); }
.greview-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.greview-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.greview-avatar-init { background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.greview-name { font-weight: 700; color: var(--charcoal); font-size: .95rem; line-height: 1.2; }
.greview-meta { font-size: .78rem; color: var(--text-soft); margin-top: 2px; }
.greview-stars { color: #fbbf24; letter-spacing: 1px; }
.greview-text { font-size: .92rem; color: var(--text-mid); line-height: 1.55; margin: 0; }
.greviews-fallback { text-align: center; padding: 2rem; color: var(--text-soft); background: var(--bg); border-radius: var(--radius); }
.greviews-fallback a { color: var(--primary); font-weight: 600; }

/* === GOOGLE MAPS SECTION === */
.map-section { background: var(--bg); padding: 0; }
.map-section .container { max-width: 100%; padding: 0; }
.map-section iframe { display: block; width: 100%; height: 360px; border: 0; }
.map-info { max-width: 1180px; margin: 0 auto; padding: 1.5rem clamp(1rem, 3vw, 2rem); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; background: var(--white); border-top: 1px solid var(--border-light); }
.map-info-addr { display: flex; align-items: center; gap: .7rem; }
.map-info-addr svg { color: var(--primary); flex-shrink: 0; }
.map-info-addr strong { color: var(--charcoal); }
.map-info-addr span { color: var(--text-soft); font-size: .92rem; display: block; }

/* === 404 === */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 3rem 1rem; }
.error-code { font-size: clamp(4rem, 12vw, 7rem); font-weight: 900; color: var(--primary); line-height: 1; }
.error-page h1 { margin: .5rem 0 1rem; }
.error-page p { max-width: 520px; margin: 0 auto 1.5rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid, .cta-banner-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hamburger { display: block; }
  .nav-links { position: fixed; inset: 64px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 1.5rem; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--border-light); transform: translateY(-100vh); transition: transform .25s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--border-light); }
  .nav-links li:last-child, .nav-links li:nth-last-child(2) { border-bottom: none; }
  .nav-links a { padding: .9rem 0; display: block; }
  .nav-cta, .nav-cta-phone { margin-top: .6rem; text-align: center; }
  .sticky-phone { display: flex; }
  .top-bar-right { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}
