/* ============================================================
   SOFTSKIN KORB – Premium Beauty Studio
   styles.css · 2026
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --bg:          #FAFAF8;
  --cream:       #F3EDE3;
  --dark:        #111111;
  --gold:        #C4A47C;
  --gold-dark:   #A8875A;
  --gold-light:  #DDD0BA;
  --text:        #2C2C2C;
  --muted:       #757575;
  --border:      #E4DDD4;
  --white:       #FFFFFF;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow:      0 6px 28px rgba(0,0,0,.09);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.13);
  --max-w:       1200px;
  --pad-x:       clamp(20px, 5vw, 48px);
  --section-pad: clamp(72px, 9vw, 120px);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; }
p { line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section {
  padding: var(--section-pad) 0;
}
.section-cream {
  background: var(--cream);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--dark);
  margin: 8px 0 16px;
}
.section-lead {
  color: var(--muted);
  font-size: 17px;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196,164,124,.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 24px rgba(196,164,124,.45);
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: #2a2a2a;
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
}
.btn-block { width: 100%; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}
.header.scrolled {
  background: rgba(250,250,248,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  transition: color var(--transition);
}
.header.scrolled .logo-text { color: var(--dark); }
.logo-sub {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
  transition: color var(--transition);
}
.header.scrolled .logo-sub { color: var(--muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header.scrolled .nav-link { color: var(--muted); }
.header.scrolled .nav-link:hover { color: var(--dark); background: var(--cream); }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: 16px; }
.header-cta { padding: 11px 22px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1000;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold-dark); }
.mobile-nav-cta { margin-top: 32px; }
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,.35) 0%,
    rgba(10,8,6,.62) 55%,
    rgba(10,8,6,.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x);
  max-width: 820px;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(54px, 10.5vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.80);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  transition: color var(--transition), border-color var(--transition);
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--white); border-color: rgba(255,255,255,.7); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
}
.trust-body strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 2px;
}
.trust-body span { font-size: 13px; color: var(--muted); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 22px;
  color: var(--dark);
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  flex-grow: 1;
}
.service-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .02em;
  transition: letter-spacing var(--transition);
  margin-top: 4px;
}
.service-link:hover { letter-spacing: .05em; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text h2 { font-size: clamp(30px, 4vw, 46px); color: var(--dark); }
.about-text p { font-size: 15.5px; color: var(--muted); }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/7;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.benefit-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.benefit-item p { font-size: 14px; color: var(--muted); }

/* ── STEPS ── */
.steps-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.step-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.step-item h3 { font-size: 20px; color: var(--dark); }
.step-item p { font-size: 14px; color: var(--muted); text-align: center; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  color: var(--gold-light);
}
.step-connector::before {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

/* ── REVIEWS MARQUEE ── */
.reviews-section { overflow: hidden; }
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.rating-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.rating-label { font-size: 14px; color: var(--muted); font-weight: 500; }

.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: 8px 0 16px;
  cursor: default;
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--av-bg, var(--gold));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-meta { flex-grow: 1; }
.review-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.review-source { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

/* ── PRICES ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.price-category {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.price-category--sub { margin-top: 28px; }
.price-list { display: flex; flex-direction: column; gap: 12px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.price-list li:last-child { border-bottom: none; padding-bottom: 0; }
.price-val { font-weight: 600; color: var(--dark); white-space: nowrap; }
.price-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  line-height: 1.5;
}
.price-image-hint {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.price-image-hint img {
  max-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.location-text h2 { font-size: clamp(28px, 4vw, 44px); color: var(--dark); margin: 8px 0 28px; }
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.location-row svg { flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }
.location-row strong { color: var(--dark); }
.route-btn { margin-top: 28px; }

.location-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location-image img { width: 100%; display: block; }
.location-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(17,17,17,.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-text h2 { font-size: clamp(28px, 4vw, 44px); color: var(--dark); margin: 8px 0 16px; }
.contact-text p { color: var(--muted); margin-bottom: 28px; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.contact-method:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(196,164,124,.05);
}
.contact-method svg { color: var(--gold-dark); flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}
.req { color: var(--gold-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,164,124,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-check input[type=checkbox] {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-check a { color: var(--gold-dark); text-decoration: underline; }
.form-success {
  text-align: center;
  padding: 16px;
  background: #F0FAF0;
  border-radius: 10px;
  font-size: 14px;
  color: #2E7D32;
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-top: 72px;
  padding-bottom: 56px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.45); }
.footer-tagline { margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-list a:hover { color: var(--white); }
.footer-address { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-address a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-legal a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }
.footer-powered { font-size: 13px; color: rgba(255,255,255,.4); }
.wowobot-link {
  color: #22b8e0;
  font-weight: 600;
  transition: opacity var(--transition);
}
.wowobot-link:hover { opacity: .8; }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.trust-item:nth-child(2).reveal.visible  { transition-delay: .08s; }
.trust-item:nth-child(3).reveal.visible  { transition-delay: .16s; }
.trust-item:nth-child(4).reveal.visible  { transition-delay: .24s; }
.service-card:nth-child(2).reveal.visible { transition-delay: .07s; }
.service-card:nth-child(3).reveal.visible { transition-delay: .14s; }
.service-card:nth-child(4).reveal.visible { transition-delay: .21s; }
.service-card:nth-child(5).reveal.visible { transition-delay: .28s; }
.service-card:nth-child(6).reveal.visible { transition-delay: .35s; }
.benefit-item:nth-child(2).reveal.visible { transition-delay: .06s; }
.benefit-item:nth-child(3).reveal.visible { transition-delay: .12s; }
.benefit-item:nth-child(4).reveal.visible { transition-delay: .18s; }
.benefit-item:nth-child(5).reveal.visible { transition-delay: .24s; }
.benefit-item:nth-child(6).reveal.visible { transition-delay: .30s; }
.price-card:nth-child(2).reveal.visible   { transition-delay: .09s; }
.price-card:nth-child(3).reveal.visible   { transition-delay: .18s; }
.gallery-item:nth-child(2).reveal.visible { transition-delay: .09s; }
.gallery-item:nth-child(3).reveal.visible { transition-delay: .18s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header { padding: 16px 0; }

  /* Hero */
  .hero-title { font-size: clamp(44px, 12vw, 70px); }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; grid-template-columns: 1fr; }
  .about-img-secondary { aspect-ratio: 16/7; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Steps */
  .steps-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .step-connector { display: none; }

  /* Prices */
  .price-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .location-image { order: -1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .footer-bottom-inner { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
  .footer-powered { order: -1; }

  /* Review card */
  .review-card { width: 290px; padding: 22px 20px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 18px; }
  .hero-eyebrow { font-size: 10px; }
  .section-header h2 { font-size: 28px; }
  .service-card { padding: 28px 22px; }
  .price-card { padding: 28px 22px; }
  .step-item { padding: 28px 22px; }
  .review-card { width: 270px; }
}
