/* ================================================
   MEDFIX v6 — Lāzerepilācija Landing Page
   Design tokens: Outfit + Figtree, rose CTA, warm palette
   ================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --color-rose: #e11d48;
  --color-rose-hover: #be123c;
  --color-rose-glow: rgba(225, 29, 72, 0.25);
  --color-rose-light: #FFF1F3;
  --color-blush: #FDF2F4;
  --color-warm-white: #FFFBFA;
  --color-charcoal: #1C1917;
  --color-muted: #78716C;
  --color-border: #E7E5E4;
  --color-teal-medical: #0D9488;
  --color-gold: #D97706;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Figtree', sans-serif;

  /* Spacing */
  --section-py: clamp(56px, 8vw, 96px);
  --container-px: clamp(16px, 4vw, 24px);
  --container-max: 1120px;

  /* Radius */
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-btn: 16px;
  --radius-input: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal);
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--color-charcoal);
  color: var(--color-white);
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 8px;
}
.section-header--light h2 {
  color: var(--color-white);
}
.section-header--light .section-sub {
  color: rgba(255, 255, 255, 0.75);
}
.section-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--color-muted);
  font-weight: 400;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px var(--color-rose-glow);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-rose-hover);
  border-color: var(--color-rose-hover);
  box-shadow: 0 6px 28px var(--color-rose-glow);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  font-size: 1.125rem;
  padding: 16px 32px;
  min-height: 56px;
}
.btn-md {
  font-size: 0.9rem;
  padding: 12px 24px;
  min-height: 48px;
}
.btn-sm {
  font-size: 0.85rem;
  padding: 8px 20px;
  min-height: 40px;
  border-radius: var(--radius-pill);
}
.btn-full {
  width: 100%;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 12px 0;
}
.site-header.is-scrolled {
  background: rgba(255, 251, 250, 0.97);
  box-shadow: 0 1px 8px rgba(28, 25, 23, 0.06);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 36px;
  width: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.is-scrolled .header-phone {
  color: var(--color-charcoal);
}
.header-phone-text {
  display: none;
}
.header-cta {
  background: var(--color-rose);
  color: var(--color-white);
  border-color: var(--color-rose);
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 3px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s;
}
.is-scrolled .lang-switcher {
  background: rgba(28, 25, 23, 0.05);
  border-color: var(--color-border);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.is-scrolled .lang-btn {
  color: var(--color-charcoal);
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.is-scrolled .lang-btn:hover {
  background: rgba(28, 25, 23, 0.08);
}
.lang-btn.is-active {
  background: var(--color-white);
  color: var(--color-charcoal);
}
.is-scrolled .lang-btn.is-active {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 23, 0.25) 0%,
    rgba(28, 25, 23, 0.55) 40%,
    rgba(28, 25, 23, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-badge svg {
  flex-shrink: 0;
}

/* Hero H1 */
.hero-h1 {
  font-size: clamp(1.75rem, 5.5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  max-width: 700px;
}

/* Hero promo */
.hero-promo {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 400;
  opacity: 0.92;
  max-width: 600px;
}
.promo-highlight {
  color: var(--color-gold);
  font-weight: 700;
}

/* Hero trust row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.88;
}
.hero-trust-row li {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

/* Hero rating */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.hero-rating-stars {
  display: flex;
  gap: 2px;
}
.hero-rating-text {
  font-size: 0.85rem;
  opacity: 0.95;
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--color-rose-light);
  padding: clamp(24px, 4vw, 40px) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 8px;
}
.trust-icon {
  color: var(--color-charcoal);
}
.trust-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-charcoal);
}
.trust-text strong {
  display: block;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

/* ================================================
   ZONE SELECTOR
   ================================================ */
.zones {
  background: var(--color-warm-white);
  padding: var(--section-py) 0;
}
.zones-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Zone buttons */
.zone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.zone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  text-align: left;
}
.zone-btn:hover {
  border-color: var(--color-charcoal);
}
.zone-btn.is-active {
  border-color: var(--color-charcoal);
  background: var(--color-blush);
}
.zone-btn-icon {
  display: flex;
  flex-shrink: 0;
  color: var(--color-muted);
}
.zone-btn.is-active .zone-btn-icon {
  color: var(--color-charcoal);
}

/* Zone price card */
.zone-price-card {
  background: var(--color-rose-light);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
}
.zone-price-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.zone-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.zone-price-row--course {
  border-bottom: none;
}
.zone-price-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
}
.zone-price-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
}
.zone-price-savings {
  font-size: 0.85rem;
  color: var(--color-muted);
  padding: 10px 16px;
  background: var(--color-warm-white);
  border-radius: var(--radius-btn);
  text-align: center;
}
.zone-cta-btn {
  text-align: center;
}

/* ================================================
   WHY US
   ================================================ */
.why-us {
  background: var(--color-rose-light);
  padding: var(--section-py) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 32px);
  border: 2px solid transparent;
  transition: border-color 0.25s;
}
.why-card:hover {
  border-color: var(--color-border);
}
.why-icon {
  margin-bottom: 16px;
  color: var(--color-charcoal);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}
.why-card--has-image {
  padding-top: 0;
  overflow: hidden;
}
.why-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  margin-bottom: 20px;
}
.why-card--has-image-bottom {
  padding-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.why-card--has-image-bottom .why-card-text {
  padding-bottom: 16px;
  flex: 1;
}
.why-card-img-bottom {
  width: calc(100% + clamp(48px, 6vw, 64px));
  margin-left: calc(-1 * clamp(24px, 3vw, 32px));
  margin-bottom: calc(-1 * clamp(24px, 3vw, 32px));
  height: 180px;
  object-fit: cover;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

/* ================================================
   VISUAL BREAK
   ================================================ */
.visual-break {
  width: 100%;
  height: clamp(200px, 30vw, 340px);
  overflow: hidden;
}
.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   SPECIALISTS
   ================================================ */
.specialists {
  background: var(--color-warm-white);
  padding: var(--section-py) 0;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.specialist-card {
  text-align: center;
}
.specialist-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 12px;
  aspect-ratio: 3 / 4;
}
.specialist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.specialist-card p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  background: var(--color-blush);
  padding: var(--section-py) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  text-align: center;
}
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  background: var(--color-rose-light);
  padding: var(--section-py) 0;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  content: '';
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--color-muted);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 0 18px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ================================================
   BOOKING
   ================================================ */
.booking {
  background: var(--color-charcoal);
  padding: var(--section-py) 0;
}
.booking-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(24px, 5vw, 40px);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--color-charcoal);
}
.form-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-input);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-rose);
}
.form-input::placeholder {
  color: var(--color-muted);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group .form-input.is-error {
  border-color: var(--color-rose);
}

.booking-form .btn {
  margin-top: 8px;
}
.form-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Form success */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success-icon {
  margin-bottom: 16px;
}
.form-success h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Booking phone */
.booking-phone {
  text-align: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.booking-phone-link {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ================================================
   FOOTER
   ================================================ */
/* ================================================
   LOCATION STRIP
   ================================================ */
.location-strip {
  background: var(--color-charcoal);
  padding: clamp(40px, 6vw, 64px) 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.location-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.location-card {
  color: var(--color-white);
}
.location-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.location-address {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 4px;
}
.location-hours {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 24px;
}
.location-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.location-btn:hover {
  transform: translateY(-2px);
}
.location-btn--gmaps {
  background: var(--color-white);
  color: var(--color-charcoal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.location-btn--gmaps:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.location-btn--waze {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.location-btn--waze:hover {
  background: rgba(255, 255, 255, 0.2);
}
.location-contact {
  display: flex;
  gap: 20px;
}
.location-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.location-contact a:hover {
  color: var(--color-white);
}

/* ================================================
   CLOSING STATEMENT
   ================================================ */
.closing-statement {
  background: var(--color-charcoal);
  padding: clamp(32px, 5vw, 48px) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.closing-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.site-footer {
  background: var(--color-charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  opacity: 0.7;
}
.footer-bird-logo {
  height: 36px;
  width: auto;
}
.footer-info {
  text-align: center;
  flex: 1;
}
.footer-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-info a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-info a:hover {
  color: var(--color-white);
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-credit-link:hover {
  opacity: 0.8;
}
.footer-credit-logo {
  height: 18px;
  width: auto;
}

/* ================================================
   STICKY MOBILE CTA
   ================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-white);
  box-shadow: 0 -2px 12px rgba(28, 25, 23, 0.08);
  padding: 8px 16px;
  transform: translateY(100%);
  transition: transform 0.3s;
  display: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.sticky-cta-btn {
  flex: 1;
  min-height: 48px;
  font-size: 0.95rem;
}
.sticky-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  color: var(--color-charcoal);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.sticky-cta-phone:hover {
  border-color: var(--color-rose);
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.15);
  padding: 20px 24px;
  max-width: 640px;
  margin: 0 auto;
  animation: cookieSlideUp 0.3s ease-out;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-banner-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-charcoal);
}
.cookie-banner-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-muted);
  margin: 0;
}
.cookie-banner-text a {
  color: var(--color-rose);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  min-height: 40px;
}
.cookie-btn-decline {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-charcoal);
}
.cookie-btn-decline:hover {
  border-color: var(--color-charcoal);
}
.cookie-btn-accept {
  background: var(--color-rose);
  border: 2px solid var(--color-rose);
  color: var(--color-white);
}
.cookie-btn-accept:hover {
  background: var(--color-rose-hover);
  border-color: var(--color-rose-hover);
}
@media (min-width: 600px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .cookie-banner-text {
    flex: 1;
  }
  .cookie-banner-actions {
    flex-shrink: 0;
  }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ================================================
   RESPONSIVE — Tablet (768px)
   ================================================ */
@media (min-width: 768px) {
  .header-phone-text {
    display: inline;
  }
  .sticky-cta {
    display: none !important;
  }
}

/* ================================================
   RESPONSIVE — Mobile (max 767px)
   ================================================ */
@media (max-width: 767px) {
  /* Trust bar */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .trust-item {
    padding: 12px 8px;
  }

  /* Zone selector */
  .zones-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zone-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .zone-btn {
    padding: 12px;
    font-size: 0.8rem;
  }
  .zone-price-card {
    position: static;
    padding: 24px;
  }

  /* Why us */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Specialists */
  .specialists-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-photo {
    max-height: 200px;
  }
  .location-actions {
    flex-direction: column;
    gap: 10px;
  }
  .location-btn {
    justify-content: center;
  }
  .location-contact {
    flex-direction: column;
    gap: 8px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }

  /* Hero adjustments for 390px CTA visibility */
  .hero {
    min-height: auto;
    padding: 80px 0 32px;
  }
  .hero-content {
    gap: 12px;
  }
  .hero-h1 {
    font-size: 1.6rem;
  }
  .hero-promo {
    font-size: 0.9rem;
  }
  .hero-trust-row {
    font-size: 0.75rem;
    gap: 4px 12px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .hero-rating {
    margin-top: 0;
  }

  /* Add bottom padding to body for sticky CTA */
  body {
    padding-bottom: 72px;
  }
}

/* Extra small mobile (375px and below) */
@media (max-width: 375px) {
  .hero-h1 {
    font-size: 1.4rem;
  }
  .zone-buttons {
    grid-template-columns: 1fr;
  }
  .specialists-grid {
    gap: 8px;
  }
}

/* ================================================
   NOSCRIPT FALLBACK TABLE
   ================================================ */
.zone-table-fallback {
  margin-top: 32px;
}
.zone-table-fallback table {
  width: 100%;
  border-collapse: collapse;
}
.zone-table-fallback th,
.zone-table-fallback td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.zone-table-fallback th {
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--color-rose-light);
}
