/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-primary:   #2F4858;
  --clr-accent:    #C9A86A;
  --clr-accent-dk: #B08D57;
  --clr-bg:        #FAFAF8;
  --clr-alt:       #F2F0EC;
  --clr-dark:      #1C2E3A;
  --clr-text:      #1F2933;
  --clr-muted:     #6B7A85;
  --clr-border:    #E0DDD8;
  --radius:        10px;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --nav-h:         68px;
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(47,72,88,0.97);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 85px;
  width: auto;
  display: block;
}
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}
.logo-accent {
  color: var(--clr-accent);
}
.logo-icon { color: var(--clr-accent); font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--clr-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-phone:hover { color: #fff; }
.nav-phone-icon { font-size: 1rem; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  opacity: 0.7;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-primary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 0 0.5rem;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff !important;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

@keyframes phone-ring {
  0%   { transform: rotate(0deg); }
  5%   { transform: rotate(15deg); }
  10%  { transform: rotate(-14deg); }
  15%  { transform: rotate(13deg); }
  20%  { transform: rotate(-12deg); }
  25%  { transform: rotate(10deg); }
  30%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}
.nav-cta {
  background: var(--clr-accent) !important;
  color: #2F4858 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background var(--transition), transform 0.15s !important;
}
.nav-cta .cta-icon {
  display: inline-block;
  animation: phone-ring 3s ease-in-out infinite;
  transform-origin: top center;
}
.nav-cta:hover {
  background: var(--clr-accent-dk) !important;
  color: #fff !important;
  transform: scale(1.04);
}

.nav-wa-mobile { display: none; }

.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  transition: background var(--transition), transform 0.15s;
  flex-shrink: 0;
}
.nav-wa:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  font-family: inherit;
}
.lang-btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.lang-btn.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-dark);
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47,72,88,0.55) 0%, rgba(28,46,58,0.40) 50%, rgba(47,72,88,0.50) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: -30%;
  background: url('../bild_hero.png') center center / cover no-repeat;
  transform: scale(0.72);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1.5rem;
  margin: 0 auto 0 calc((100% - 1140px) / 2 + 1.5rem);
}

.hero-tag {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 3px solid var(--clr-accent);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 0 8px rgba(201,168,106,0.12), 0 8px 32px rgba(0,0,0,0.35);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-badge:hover {
  background: rgba(201,168,106,0.08);
  box-shadow: 0 0 0 12px rgba(201,168,106,0.18), 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--clr-accent-dk);
  transform: translate(-50%, -50%) scale(1.06);
}
.badge-num { font-size: 3.4rem; font-weight: 900; color: var(--clr-accent); line-height: 1; letter-spacing: -0.02em; }
.badge-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.1rem; }
.badge-cta { font-size: 0.85rem; font-weight: 700; color: #fff; background: var(--clr-accent); border-radius: 0.4rem; padding: 0.35rem 0.85rem; margin-top: 0.7rem; letter-spacing: 0.02em; }


/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--clr-accent-dk); transform: translateY(-1px); }

.btn-outline {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.btn-outline:hover { border-color: var(--clr-accent-dk); background: rgba(201,168,106,0.12); }

.hero .btn-outline {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
.hero .btn-outline:hover {
  border-color: var(--clr-accent-dk);
  color: var(--clr-accent-dk);
  background: rgba(201,168,106,0.15);
}

.btn-full { width: 100%; }

/* ── STATS ── */
.stats {
  background: #fff;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat { padding: 1rem; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.8rem; color: var(--clr-muted); }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--clr-alt); }
.section-dark { background: #FAFAF8; border-top: 1px solid var(--clr-border); }

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.6rem;
}
.section-tag.light { color: var(--clr-primary); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-title.light { color: var(--clr-primary); }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card-icon-wrap {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
}
.card-icon-wrap svg {
  width: 100%;
  height: 100%;
}
.card h3 { font-size: 1.3rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 0.6rem; }
.card p { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.step-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 0.4rem; }
.step-body p { font-size: 0.9rem; color: var(--clr-muted); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 4rem;
  align-items: center;
}
.about-text p { color: var(--clr-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.about-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-accent) !important;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 1.5rem !important;
}

.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-primary);
}
.check-list li::before {
  content: '✓';
  color: var(--clr-accent);
  font-weight: 700;
}

.about-img {
  min-height: 420px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-photos {
  position: relative;
  height: 480px;
}
.about-photo {
  position: absolute;
  width: 88%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.about-photo--before {
  top: 0;
  left: 0;
  z-index: 1;
}
.about-photo--after {
  top: 200px;
  right: 0;
  z-index: 2;
  border: 4px solid #fff;
}

.visual-box {
  background: #fff;
  border: 2px solid var(--clr-accent);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  box-shadow: var(--shadow);
}
.visual-inner {
  text-align: center;
}
.visual-icon {
  font-size: 3.5rem;
  color: var(--clr-primary);
  display: block;
  margin-bottom: 1rem;
}
.visual-inner p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--clr-primary);
}
/* ── SLIDER ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.75);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}
.slider-arrow--prev { left: 0.6rem; }
.slider-arrow--next { right: 0.6rem; }
.slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide-img {
  flex: 0 0 50%;
  width: 50%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ── REVIEWS ── */
.reviews-wrap {
  overflow: hidden;
  width: 100%;
}
.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 25%;
  width: 25%;
  padding: 0 0.6rem;
  box-sizing: border-box;
}
.review-card-inner {
  background: transparent;
  padding: 0 0 0.5rem 0;
}
.review-stars {
  color: var(--clr-accent);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.review-text {
  color: var(--clr-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-primary);
}
.review-city {
  font-size: 0.78rem;
  color: var(--clr-muted);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-logo { display: flex; justify-content: center; align-items: center; }
.contact-logo-img { width: 100%; max-width: 350px; height: auto; }

.contact-sub { color: var(--clr-muted); margin-bottom: 2.5rem; font-size: 0.95rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.ci-label { display: block; font-size: 0.75rem; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.ci-value { font-size: 1.05rem; font-weight: 600; color: var(--clr-primary); display: block; }
a.ci-value:hover { color: var(--clr-accent-dk); }

/* ── FORM ── */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--clr-accent); }

.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 0.75rem; }

.form-success {
  display: none;
  background: rgba(143,214,148,0.15);
  border: 1px solid var(--clr-accent);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--clr-accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

/* ── FOOTER ── */
.footer {
  background: #1e3040;
  padding: 3rem 0 1.5rem;
}
.footer-main {
  display: flex;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: 0.01em;
}
.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: #fff; }
.footer-wa { color: rgba(255,255,255,0.7) !important; }
.footer-wa:hover { color: #fff !important; }

.footer-cities-wrap { flex: 1; min-width: 220px; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.9rem;
}
.footer-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1rem;
}
.footer-cities a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-cities a:hover { color: var(--clr-accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── LEGAL PAGES ── */
.legal-section { padding-top: calc(var(--nav-h) + 3rem); min-height: 80vh; }
.legal-container { max-width: 780px; }
.legal-title { font-size: 2.2rem; font-weight: 800; color: var(--clr-primary); margin-bottom: 2rem; }
.legal-container h2 { font-size: 1.2rem; font-weight: 700; color: var(--clr-primary); margin: 2rem 0 0.5rem; }
.legal-container h3 { font-size: 1rem; font-weight: 600; color: var(--clr-text); margin: 1.2rem 0 0.4rem; }
.legal-container p { color: var(--clr-muted); line-height: 1.75; margin-bottom: 0.5rem; }
.legal-container a { color: var(--clr-primary); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { margin-left: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: block; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-card { flex: 0 0 100%; width: 100%; }
  .form-row { grid-template-columns: 1fr; }

  .nav-phone { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--nav-h) + 76px);
    left: 0; right: 0;
    background: #1C2E3A;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 97;
  }
  .nav-links.open { display: flex; }
  .nav-links.open {
    padding: 0;
    gap: 0;
  }
  .nav-links.open a {
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    display: block;
    text-align: center;
    transition: background 0.18s ease, color 0.18s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .nav-links.open a:active {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }
  .burger { display: flex; }
  .nav-cta {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    border-radius: 0;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    z-index: 99;
  }
  .nav-wa {
    display: none;
  }
  .nav-wa-mobile {
    display: flex !important;
    position: fixed;
    top: calc(var(--nav-h) + 38px);
    left: 0;
    right: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #2F4858;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    text-decoration: none;
    z-index: 98;
    border-radius: 0;
    border-bottom: 1px solid rgba(47,72,88,0.1);
  }
  .nav-wa-mobile:hover { background: #f5f5f5; color: #2F4858; }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: calc(var(--nav-h) + 100px);
    padding-bottom: 3rem;
  }
  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 0 1.25rem;
  }
  .hero-badge {
    position: static;
    transform: scale(1);
    width: 175px;
    height: 175px;
    margin: 2rem auto 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .hero-badge:hover,
  .hero-badge:active {
    transform: scale(1.08);
    background: #FDF8F0;
    box-shadow: 0 12px 36px rgba(47,72,88,0.22);
    border-color: var(--clr-accent-dk);
  }
  .hero h1 { font-size: 2.2rem; }

  .footer-main { flex-direction: column; gap: 2rem; }
  .footer-brand { flex: none; }
  .footer-cities { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-actions { display: block; text-align: center; }
  .hero-actions .btn { display: inline-flex; width: auto; }
}
