/* ══════════════════════════════════════════
   ESTÉTICA V12 — Design System
   Palette: Black / Amber / Orange
   ══════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --line: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --muted: #888;
  --accent: #f11d28;
  --accent-2: #c8101e;
  --accent-glow: rgba(241, 29, 40, 0.35);
  --gradient: linear-gradient(135deg, #f11d28 0%, #c8101e 100%);
  --font: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto !important; }
html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.1; }
em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.8rem; font-family: var(--font); font-size: .95rem; font-weight: 600;
  border: none; border-radius: 6px; cursor: pointer; letter-spacing: .5px;
  transition: all .3s var(--ease); text-transform: uppercase;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--gradient); color: #000; box-shadow: 0 4px 20px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px var(--accent-glow); }

.btn-accent { background: var(--accent); color: #000; box-shadow: 0 4px 20px var(--accent-glow); }
.btn-accent:hover { background: #fff; color: #000; transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }

.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-light { background: #fff; color: #000; }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,255,255,.15); }

.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }

.btn-sm { padding: .6rem 1.2rem; font-size: .8rem; }

.btn-pulse { position: relative; }
.btn-pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: inherit;
  background: var(--gradient); opacity: 0; z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.25); } }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: .5rem;
}
.eyebrow.light { color: rgba(255,255,255,.7); }

/* ── SECTION HEAD ── */
.section-head { margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.section-head p { color: var(--muted); max-width: 550px; font-size: 1.05rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── DOT ── */
.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; animation: dot-blink 2s ease infinite;
}
@keyframes dot-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.2rem 0; transition: all .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: .8rem 0; border-bottom-color: var(--line);
}
.header-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.logo { font-size: 1.4rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; text-decoration: none; }
.logo span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.header-logo-img { height: 98px; object-fit: contain; transition: height 0.4s var(--ease); }
.site-header.scrolled .header-logo-img { height: 65px; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; justify-self: start; }
.nav-links a { font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #ffffff; transition: color .3s; }
.nav-links a:hover { color: var(--accent); }

.header-cta-wrap { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.header-cta { margin-left: 0; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--ease); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background: url('BMW HEADER.jpg') center/cover no-repeat; z-index: 0;
}
@media (hover:hover) and (min-width:1025px) { .hero-bg { background-attachment: fixed; } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 45%, transparent 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2; opacity: .04; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--accent);
  opacity: 0; animation: float-up 6s ease-in-out infinite;
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1.2s; }
.particle:nth-child(3) { left: 45%; animation-delay: 2.5s; }
.particle:nth-child(4) { left: 65%; animation-delay: 0.8s; }
.particle:nth-child(5) { left: 80%; animation-delay: 3.5s; }
.particle:nth-child(6) { left: 92%; animation-delay: 1.8s; }
@keyframes float-up {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: .6; }
  90% { opacity: .2; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

.hero-grid { position: relative; z-index: 3; width: 100%; }

.hero-tag-pill {
  display: inline-flex; align-items: center;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  color: #ccc; letter-spacing: 1px; margin-bottom: 2rem;
}

.hero-title-pro { 
  font-size: clamp(2.5rem, 5.5vw, 4.8rem); 
  text-transform: uppercase; 
  margin-bottom: 1.5rem; 
  font-weight: 900; 
  line-height: 0.95; 
  letter-spacing: -0.5px;
}
.hero-title-pro .line { display: block; overflow: hidden; }
.hero-title-pro .word {
  display: inline-block; opacity: 0; transform: translateY(100%);
  animation: word-up .8s var(--ease) forwards;
}
.hero-title-pro .line:nth-child(1) .word { animation-delay: .1s; }
.hero-title-pro .line:nth-child(2) .word { animation-delay: .25s; }
.hero-title-pro .line:nth-child(3) .word { animation-delay: .4s; }

.text-outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}

@keyframes word-up { to { opacity: 1; transform: translateY(0); } }

.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 600px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font-size: 1.8rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-meta span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 5;
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,.2); border-radius: 14px;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: var(--accent); border-radius: 2px; transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 28px; } }

/* ═══════════════ SERVICES GRID ═══════════════ */
.services { padding: 8rem 0; background: var(--bg-2); }

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}

.service-card {
  background: var(--bg-3); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01); border-color: rgba(241, 29, 40, 0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(241, 29, 40, 0.15);
}

.service-card .img-wrap {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
}
.service-card .img-wrap img {
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}
.service-card:hover .img-wrap img {
  transform: scale(1.08);
}
  position: relative;
}
.service-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .img-wrap img {
  transform: scale(1.05);
}
.service-card .img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-3) 0%, transparent 60%);
}

.service-card .svc-content {
  padding: 2.5rem; flex-grow: 1; display: flex; flex-direction: column;
}
.service-card .title {
  font-family: var(--font); font-size: clamp(1.5rem, 3.2vw, 2rem);
  line-height: 1.1; text-transform: uppercase; margin-bottom: 1rem;
  color: #fff;
}
.service-card .desc {
  color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin: 0;
}

/* ═══════════════ COMPARE BEFORE / AFTER ═══════════════ */
.compare-section {
  padding: 8rem 0; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.compare {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); user-select: none; touch-action: pan-y; aspect-ratio: 16/9;
}
.compare-img {
  display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.after-wrap {
  position: absolute; top: 0; left: 0; width: 50%; height: 100%;
  overflow: hidden; border-right: 2px solid #fff; z-index: 2;
}
.after-wrap img {
  width: 100vw; max-width: 900px; height: 100%; object-fit: cover;
}
@media (max-width: 900px) {
  .after-wrap img { width: calc(100vw - 2.4rem); }
}

.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 24px rgba(255,255,255,0.4);
}
.compare-handle .knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gradient); display: grid; place-items: center; color: #000;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.95), 0 12px 28px var(--accent-glow);
  font-size: 1.2rem;
}
.compare-label {
  position: absolute; top: 1rem;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem; border-radius: 999px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.l-before { left: 1rem; }
.l-after { right: 1rem; }

/* ═══════════════ GALLERY CAROUSEL ═══════════════ */
.gallery { padding: 8rem 0; background: var(--bg); overflow: hidden; }

.swiper-wrap-mask { padding: 0 1rem; }
#gallerySwiper { width: 100%; padding: 1rem 0 3.5rem; overflow: visible; }
#gallerySwiper .swiper-slide {
  width: min(80vw, 400px); aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: transform 0.5s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
#gallerySwiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
#gallerySwiper .swiper-slide-active {
  transform: scale(1.03); border-color: rgba(245,158,11,0.5); box-shadow: 0 30px 80px -30px var(--accent-glow);
}
#gallerySwiper .swiper-pagination-bullet { background: #fff; opacity: 0.4; }
#gallerySwiper .swiper-pagination-bullet-active { background: var(--accent); opacity: 1; width: 24px; border-radius: 4px; }
#gallerySwiper .swiper-button-prev, #gallerySwiper .swiper-button-next {
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
#gallerySwiper .swiper-button-prev:hover, #gallerySwiper .swiper-button-next:hover {
  background: var(--accent); border-color: var(--accent); color: #000;
}
#gallerySwiper .swiper-button-prev::after, #gallerySwiper .swiper-button-next::after {
  font-size: 1.1rem; font-weight: 700;
}

/* ═══════════════ REVIEWS MARQUEE ═══════════════ */
.reviews { padding: 8rem 0; background: var(--bg-2); }

.marquee-mask { overflow: hidden; padding: 2rem 0; }
.marquee {
  display: flex; width: max-content; gap: 1.5rem;
  animation: marquee-scroll 60s linear infinite;
}
.marquee:hover { animation-play-state: paused; }

.review-card {
  width: 380px; flex-shrink: 0; background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.review-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gradient); opacity: 0; transition: opacity .3s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(245,158,11,.3); box-shadow: 0 15px 30px rgba(0,0,0,.5); }
.review-card:hover::before { opacity: 1; }

.review-card .stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); font-size: 1rem; }
.review-card p { color: var(--muted); font-size: .92rem; font-style: italic; line-height: 1.6; margin-bottom: 1.2rem; }
.review-card footer { display: flex; justify-content: space-between; align-items: center; }
.review-card footer strong { font-size: .9rem; }
.review-card footer span { font-size: .75rem; color: var(--muted); }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-380px * 9 - 1.5rem * 9)); }
}

/* ═══════════════ CTA STRIP ═══════════════ */
.cta-strip { padding: 8rem 0; background: var(--bg); position: relative; }
.cta-strip::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-grid h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.cta-grid p { color: var(--muted); font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; }

.map-wrap {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line); line-height: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  padding: 3rem 0; background: var(--bg-2); border-top: 1px solid var(--line);
}
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-brand p { color: var(--muted); font-size: .85rem; margin-top: .5rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: .85rem; color: var(--muted); transition: color .3s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { width: 100%; text-align: center; font-size: .75rem; color: #555; padding-top: 2rem; border-top: 1px solid var(--line); }

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366;
  animation: wa-ring 2s ease-out infinite;
}
@keyframes wa-ring { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }

/* ═══════════════ MODAL ═══════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .35s var(--ease);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
  background: var(--bg-2); width: 100%; max-width: 460px; padding: 2.5rem;
  border-radius: var(--radius); border: 1px solid var(--line); position: relative;
  transform: translateY(20px) scale(.96); transition: all .4s var(--ease);
  margin: 1rem;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }

.close-modal {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: var(--muted); font-size: 1.3rem; cursor: pointer; transition: all .3s;
}
.close-modal:hover { color: var(--text); transform: rotate(90deg); }
.modal-content h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: .4rem; font-size: .85rem; color: var(--muted); }
.form-control {
  width: 100%; padding: .85rem 1rem; background: var(--bg); border: 1px solid var(--line);
  border-radius: 6px; color: var(--text); font-family: var(--font); font-size: .95rem;
  transition: border-color .3s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-card .svc-content { padding: 1.8rem; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { align-items: center; }
}

@media (max-width: 768px) {
  .hero { align-items: flex-start; padding-top: 140px; min-height: 100vh; }
  .header-row { display: flex; justify-content: space-between; align-items: center; }
  .nav-links, .header-cta { display: none; }
  .header-logo-img { height: 55px; }
  .logo { font-size: 1.1rem; }
  .logo span { font-size: 1.1rem !important; }
  .menu-toggle { display: flex; }
  .hero-title-pro { font-size: 2.3rem; line-height: 1.15; margin-bottom: 1rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-meta { gap: 1.2rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; }
  .hero-bg { background-attachment: scroll; background-position: top center; }
  
  .footer-row { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  
  .carousel-item { width: 280px; height: 210px; }
  .review-card { width: 270px; padding: 1.5rem; }
  .review-card p { font-size: 0.9rem; }
  @keyframes carousel-scroll { 100% { transform: translateX(calc(-280px * 6 - 1.5rem * 6)); } }
  @keyframes marquee-scroll { 100% { transform: translateX(calc(-270px * 9 - 1.5rem * 9)); } }

  /* Mobile menu */
  .nav-links.open {
    display: flex !important; flex-direction: column; position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10,10,10,.97);
    justify-content: center; align-items: center; gap: 2rem; z-index: 150;
  }
  .nav-links.open a { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .svc-card { min-height: 180px; padding: 2rem 1rem; }
}
