/* ─────────────────────────────────────────────
   DESIGN SYSTEM — iD Ortodoncia · Service Pages
   Shared stylesheet for all service subpages
───────────────────────────────────────────── */

:root {
  --p900: #180620;
  --p800: #2A0E3A;
  --p700: #3D1452;
  --p600: #501B5E;
  --p500: #6A2B7A;
  --p400: #8E52A0;
  --p300: #B98EC4;
  --p200: #D5BADF;
  --p100: #EAD9EF;
  --p50:  #F6F0F9;

  --cta:       #501B5E;
  --cta-hover: #3D1452;
  --cta-light: #EAD9EF;

  --n900: #180620;
  --n700: #3C2848;
  --n500: #585858;
  --n300: #C0B0CC;
  --n200: #E0D0E8;
  --n100: #F0E8F4;
  --n50:  #F9F5FB;
  --white: #FFFFFF;

  --font-display: 'Museo', 'Museo Sans', Georgia, sans-serif;
  --font-body:    'Museo', 'Museo Sans', Arial, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-full: 999px;

  --sh-sm: 0 1px 4px rgba(80,27,94,0.09), 0 4px 12px rgba(80,27,94,0.07);
  --sh-md: 0 4px 16px rgba(80,27,94,0.12), 0 12px 40px rgba(80,27,94,0.09);
  --sh-lg: 0 12px 48px rgba(80,27,94,0.16), 0 32px 80px rgba(80,27,94,0.11);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.28s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--n900); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--cta); margin-bottom: 14px;
}
.label-white { color: var(--p200); }

.h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 600; line-height: 1.08; color: var(--n900); }
.h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);   font-weight: 600; line-height: 1.12; color: var(--n900); }
.h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2;  color: var(--n900); }

.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--n700); }
.body-md { font-size: 0.95rem; line-height: 1.7;  color: var(--n700); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--r-full);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.15px;
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--p600); color: var(--white);
  box-shadow: 0 4px 18px rgba(80,27,94,0.32);
}
.btn-primary:hover { background: var(--p700); box-shadow: 0 8px 28px rgba(80,27,94,0.42); transform: translateY(-1px); }

.btn-cta {
  background: var(--cta); color: var(--white);
  box-shadow: 0 4px 18px rgba(80,27,94,0.35);
}
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 8px 28px rgba(80,27,94,0.45); transform: translateY(-1px); }

.btn-ghost-purple {
  background: transparent; color: var(--p600);
  border: 1.5px solid var(--p300);
}
.btn-ghost-purple:hover { background: var(--p50); border-color: var(--p400); }

.hero-sp .btn-ghost-purple {
  color: #fff; border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
}
.hero-sp .btn-ghost-purple:hover { background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.80); }

.btn-ghost-white {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

.btn-white { background: var(--white); color: var(--p600); border: none; font-weight: 700; }
.btn-white:hover { background: var(--p50); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn   { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeScale { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(80,27,94,0.09); }
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: #501B5E;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px;
}
.navbar-logo { outline: none; background: transparent; }
.navbar-logo img { height: 68px; width: 300px; object-fit: cover; object-position: 50% 55%; }
.navbar-logo-fallback {
  display: none; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--p600);
}
.navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.navbar-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--n700);
  transition: color var(--dur); position: relative; padding-bottom: 2px;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--p600);
  transition: width var(--dur) var(--ease);
}
.navbar-links a:hover { color: var(--p600); }
.navbar-links a:hover::after { width: 100%; }
.navbar-right { display: flex; align-items: center; gap: 12px; }
.navbar-btn-ghost {
  font-size: 0.85rem; font-weight: 500; color: var(--n700);
  padding: 8px 16px; border-radius: var(--r-full);
  transition: color var(--dur), background var(--dur);
}
.navbar-btn-ghost:hover { color: var(--p600); background: var(--p50); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: var(--n700); border-radius: 2px; }

/* ════════════════════════════════════════════
   HERO — SERVICE PAGES
════════════════════════════════════════════ */
.hero-sp {
  position: relative;
  min-height: 68vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-sp::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-img, url('hero-clinica.jpg')) center / cover no-repeat;
  z-index: 0;
  opacity: 0;
  animation: fadeScale 1.8s 0s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-sp::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(24,6,32,0.80) 0%, rgba(80,27,94,0.60) 50%, rgba(24,6,32,0.76) 100%);
  z-index: 1;
  opacity: 0;
  animation: overlayIn 1.4s 0.3s ease forwards;
}
.hero-sp-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 88px 28px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-sp-inner .hero-badge    { opacity: 0; animation: fadeUp 0.8s 0.5s var(--ease) forwards; }
.hero-sp-inner .hero-headline { opacity: 0; animation: fadeUp 0.9s 0.7s var(--ease) forwards; }
.hero-sp-inner .hero-sub      { opacity: 0; animation: fadeUp 0.8s 0.95s var(--ease) forwards; }
.hero-sp-inner .hero-actions  { opacity: 0; animation: fadeUp 0.8s 1.15s var(--ease) forwards; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-full); padding: 7px 18px;
  font-size: 0.78rem; font-weight: 600; color: #fff;
  letter-spacing: 0.8px; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-badge a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.hero-badge a:hover { color: #fff; }
.hero-badge-sep { color: rgba(255,255,255,0.4); margin: 0 2px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #D4A8E0; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.05;
  letter-spacing: -0.5px; color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,0.30);
  margin-bottom: 18px; max-width: 820px;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.08rem; font-weight: 300; line-height: 1.78;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── STRIP MARQUEE ── */
.strip {
  background: var(--p600); padding: 0;
  overflow: hidden; height: 48px; display: flex; align-items: center;
}
.strip-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 32px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); flex-shrink: 0;
}
.strip-item-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--p300); flex-shrink: 0; }

/* ════════════════════════════════════════════
   SERVICE INTRO SECTION
════════════════════════════════════════════ */
.svc-intro { background: var(--white); }
.svc-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.svc-intro-img {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg);
}
.svc-intro-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.svc-intro-img:hover img { transform: scale(1.04); }
.svc-intro-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--p600); border-radius: var(--r-lg);
  padding: 14px 18px; text-align: center; box-shadow: var(--sh-md);
}
.svc-intro-badge strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.svc-intro-badge span   { font-size: 0.7rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; margin-top: 3px; display: block; }

.svc-intro-text { }
.svc-intro-text .h2 { margin-top: 8px; }
.svc-intro-text .body-lg { margin-top: 20px; }
.svc-intro-text .body-md { margin-top: 14px; }

.svc-pills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 28px 0 36px;
}
.svc-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--p50); border: 1px solid var(--p200);
  border-radius: var(--r-md); font-size: 0.84rem;
  font-weight: 600; color: var(--p600);
}
.svc-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--p400); flex-shrink: 0; }

/* ════════════════════════════════════════════
   BENEFITS SECTION (dark)
════════════════════════════════════════════ */
.svc-benefits {
  background: linear-gradient(148deg, var(--p800) 0%, var(--p600) 100%);
  position: relative; overflow: hidden;
}
.svc-benefits::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(142,82,160,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.svc-benefits::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.svc-benefits-wrap { position: relative; z-index: 1; }

.section-header-dark { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.section-header-dark .h2 { color: var(--white); margin-top: 8px; }
.section-header-dark .body-md { margin-top: 14px; color: rgba(255,255,255,0.65); }

.svc-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.svc-benefit-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(185,142,196,0.40);
  transform: translateY(-4px);
}
.svc-benefit-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.svc-benefit-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.svc-benefit-card p  { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* ════════════════════════════════════════════
   EXTRA INFO SECTION (light)
════════════════════════════════════════════ */
.svc-extra { background: var(--n50); }
.svc-extra-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.svc-extra-img {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 5/4; box-shadow: var(--sh-md);
}
.svc-extra-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-steps { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.svc-step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px;
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--r-lg);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.svc-step:hover {
  border-color: var(--p200); box-shadow: var(--sh-sm);
  transform: translateX(4px);
}
.svc-step-num {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--p600); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--white);
}
.svc-step-body h4 { font-size: 0.92rem; font-weight: 700; color: var(--n900); margin-bottom: 4px; }
.svc-step-body p  { font-size: 0.82rem; line-height: 1.6; color: var(--n500); }

/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--p800) 0%, var(--p600) 55%, var(--p500) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 20px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 18px;
}
.final-cta p {
  font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.65;
}
.final-cta-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { background: var(--p800); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.42); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5);
  transition: all var(--dur);
}
.footer-social a:hover { background: var(--p500); border-color: var(--p500); color: white; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--p300); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.42); transition: color var(--dur); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color var(--dur); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-logos { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.footer-logos img { height: 32px; width: auto; opacity: 0.35; filter: grayscale(1) brightness(2); transition: opacity var(--dur); }
.footer-logos img:hover { opacity: 0.65; }

/* ════════════════════════════════════════════
   FLOATING CTA
════════════════════════════════════════════ */
.fab-wrap {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.fab {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r-full);
  font-size: 0.85rem; font-weight: 600; color: white;
  box-shadow: var(--sh-md); transition: all var(--dur);
}
.fab:hover { transform: translateY(-2px) scale(1.03); }
.fab-wa  { background: #25D366; }
.fab-wa:hover  { box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
.fab-tel { background: var(--p600); }
.fab-tel:hover { background: var(--p700); box-shadow: 0 10px 30px rgba(80,27,94,0.48); }

/* ════════════════════════════════════════════
   MOBILE MENU OVERLAY
════════════════════════════════════════════ */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; }
.mobile-menu.open { display: flex; }
.mobile-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(24,6,32,0.58); backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: var(--white); box-shadow: -8px 0 40px rgba(80,27,94,0.20);
  display: flex; flex-direction: column;
  animation: slideIn 0.3s var(--ease); overflow-y: auto;
}
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--n200);
}
.mobile-menu-header img { height: 48px; width: auto; }
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--n100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--n700); transition: background var(--dur);
}
.mobile-menu-close:hover { background: var(--p100); color: var(--p600); }
.mobile-menu-links { padding: 16px 0; list-style: none; flex: 1; }
.mobile-menu-links li a {
  display: flex; align-items: center;
  padding: 14px 24px; font-size: 1rem; font-weight: 500; color: var(--n900);
  border-left: 3px solid transparent; transition: all var(--dur);
}
.mobile-menu-links li a:hover {
  color: var(--p600); background: var(--p50); border-left-color: var(--p600);
}
.mobile-menu-footer {
  padding: 20px 24px; border-top: 1px solid var(--n200);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-menu-footer .btn { justify-content: center; width: 100%; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hamburger span { transition: transform 0.25s var(--ease), opacity 0.2s; transform-origin: center; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-extra-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .navbar-links, .navbar-right { display: none; }
  .hamburger { display: flex; }
  .hero-sp { min-height: 60svh; }
  .hero-sp-inner { padding: 60px 24px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .svc-pills { grid-template-columns: 1fr; }
  .svc-benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logos { flex-wrap: wrap; gap: 12px; }
  .fab-wrap { bottom: 16px; right: 12px; gap: 8px; }
  .fab { padding: 11px 16px; font-size: 0.8rem; }
  .final-cta { padding: 72px 0; }
}
