﻿/* Landing page styles — references colors_and_type.css tokens */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--white); color: var(--navy); font-family: var(--font-body); }

.dsam-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- URGENCY BAR ---------- */
.urgency-bar { background: var(--navy); color: #fff; text-align: center; padding: 10px 16px; font-size: 13px; font-family: var(--font-body); font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; }
@media (max-width: 480px) { .urgency-bar { font-size: 12px; padding: 8px 14px; line-height: 1.3; } }
.urgency-bar strong { color: var(--teal); font-weight: 700; }
.urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,0.7); animation: udot 1.8s var(--ease-out) infinite; }
@keyframes udot { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7) } 100% { box-shadow: 0 0 0 10px rgba(34,197,94,0) } }

/* ---------- HEADER ---------- */
.dsam-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-soft); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.hdr-logo img { max-height: 60px; max-width: 200px; width: auto; display: block; }
.hdr-nav { display: flex; gap: 28px; }
.hdr-nav a { color: var(--navy); font-weight: 600; font-size: 15px; font-family: var(--font-body); }
.hdr-nav a:hover { color: var(--teal-700); }
@media (max-width: 720px) { .hdr-nav { display: none; } .hdr-inner { gap: 12px; } }
@media (max-width: 380px) { .hdr-logo img { max-height: 26px; max-width: 200px; width: auto; } .btn-sm { padding: 9px 14px; font-size: 13px; } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 26px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 800; font-size: 16px; border: 0; cursor: pointer; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); text-decoration: none; line-height: 1; }
.btn-cta { background: var(--green); color: #fff; box-shadow: var(--shadow-cta); }
.btn-cta:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(34,197,94,0.45); }
.btn-cta:active { transform: translateY(0); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 20px 32px; font-size: 18px; }
.btn-xl { padding: 24px 40px; font-size: 20px; }
.btn-full { width: 100%; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: visible; padding: 64px 0 80px; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, var(--teal-50) 0%, #fff 70%); z-index: 0; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero { padding: 40px 0 56px; } .hero-inner { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) { .hero { padding: 28px 0 40px; } .hero-inner { gap: 24px; } }

/* ---------- HERO DIORAMA (sticky animated character) ---------- */
.hero-diorama {
  position: sticky; top: 80px;
  height: calc(100vh - 120px);
  max-height: 680px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .hero-diorama { position: relative; top: auto; height: 480px; max-height: 480px; }
}
.hero-diorama-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 440px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #E8FBFB 0%, #C5F1F1 55%, #1DBCBC 55%, #0E7A82 100%);
}
.hero-diorama-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.diorama-chip {
  position: absolute; background: #fff; border-radius: var(--r-lg);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; z-index: 3;
}
.diorama-chip > div { display: flex; flex-direction: column; }
.diorama-chip.chip-price {
  top: 6%; left: -4%; transform: rotate(-4deg);
  background: var(--pink); color: #fff; box-shadow: var(--shadow-pink);
  flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 20px;
}
.diorama-chip.chip-price .chip-big { font-family: var(--font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.03em; line-height: 1; }
.diorama-chip.chip-price .chip-small { font-size: 10px; font-weight: 700; opacity: 0.95; letter-spacing: 0.08em; text-transform: uppercase; }
.diorama-chip.chip-time { bottom: 10%; right: -2%; transform: rotate(3deg); }
.diorama-chip.chip-time .chip-emoji { font-size: 28px; }
.diorama-chip.chip-time .chip-big-alt { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.diorama-chip.chip-time .chip-small { font-size: 12px; color: var(--navy-600); font-weight: 500; }
@media (max-width: 900px) {
  .diorama-chip.chip-price { left: 4%; }
  .diorama-chip.chip-time { right: 4%; }
}
.hero-copy .eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-700); font-family: var(--font-body); display: inline-block; margin-bottom: 20px; }
/* H1 eyebrow — semantically the page H1, but visually styled like the original eyebrow tag */
.hero-copy h1.hero-h1-eyebrow {
  font-family: 'DM Sans', var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1dbcbc;
  margin: 0 0 20px;
  line-height: 1.4;
  display: inline-block;
}
.hero-copy h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 7vw, 84px); line-height: 1.02; letter-spacing: -0.035em; color: var(--navy); margin: 0 0 24px; }
.hero-headline { text-wrap: balance; }
.hl-pink { color: var(--pink); }
.lead { font-size: 20px; line-height: 1.5; color: var(--navy-600); max-width: 540px; margin: 0 0 32px; }
@media (max-width: 480px) { .lead { font-size: 17px; margin-bottom: 24px; } }
.lead strong { color: var(--navy); font-weight: 700; }
.hero-ctas { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hero-reassure { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--navy-600); font-weight: 600; align-items: center; }
.hero-reassure > svg { margin-right: -14px; }
.hero-checks { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.hero-checks li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--navy); font-weight: 500; }
.hero-checks strong { font-weight: 700; }
.hero-subcta { font-size: 13px; color: var(--gray-600); margin: 10px 0 0; font-weight: 500; }

/* Google badge */
.google-badge { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 12px 18px; box-shadow: var(--shadow-sm); }
.google-badge-score { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.g-num { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--navy); letter-spacing: -0.02em; }
.g-stars { color: #FBBF24; font-size: 14px; letter-spacing: 0.05em; margin-top: 2px; }
.google-badge-text { display: flex; flex-direction: column; font-size: 13px; line-height: 1.3; }
.google-badge-text strong { color: var(--navy); font-weight: 700; font-size: 14px; }
.google-badge-text span { color: var(--gray-600); }

/* Hero art */
.hero-art { position: relative; height: 480px; }
@media (max-width: 900px) { .hero-art { height: 380px; } }
@media (max-width: 480px) { .hero-art { height: 320px; margin: 0 8px; } }
.hero-blob { position: absolute; inset: 10% 5% 5% 5%; background: var(--teal); border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; z-index: 0; box-shadow: var(--shadow-teal); }
.hero-photo { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; z-index: 1; }
.hero-photo img { max-height: 100%; max-width: 100%; object-fit: contain; }

.float-chip { position: absolute; background: #fff; border-radius: var(--r-lg); padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; z-index: 3; }
.float-chip > div { display: flex; flex-direction: column; }
.chip-price { top: 6%; left: -4%; transform: rotate(-4deg); background: var(--pink); color: #fff; box-shadow: var(--shadow-pink); flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 20px; }
.chip-price .chip-was { font-size: 13px; font-weight: 500; text-decoration: line-through; opacity: 0.55; line-height: 1; }
.chip-price .chip-big { font-family: var(--font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.03em; line-height: 1; }
.chip-price .chip-small { font-size: 10px; font-weight: 700; opacity: 0.95; letter-spacing: 0.08em; text-transform: uppercase; }
.chip-time { bottom: 10%; right: -2%; transform: rotate(3deg); }
.chip-time .chip-emoji { font-size: 28px; }
.chip-time .chip-big-alt { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.chip-time .chip-small { font-size: 12px; color: var(--navy-600); font-weight: 500; }
@media (max-width: 480px) {
  .float-chip.chip-price { left: 0; padding: 10px 14px; }
  .float-chip.chip-price .chip-big { font-size: 28px; }
  .float-chip.chip-time { right: 0; padding: 10px 14px; }
  .float-chip.chip-time .chip-emoji { font-size: 22px; }
  .float-chip.chip-time .chip-big-alt { font-size: 18px; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }
@media (max-width: 480px) { .section { padding: 48px 0; } .dsam-container { padding: 0 18px; } .section-title { margin-bottom: 32px; } }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4.5vw, 56px); letter-spacing: -0.03em; line-height: 1.05; color: var(--navy); margin: 0 0 48px; text-wrap: balance; max-width: 780px; }
.eyebrow-center { display: block; text-align: left; margin-bottom: 16px; }

/* How it works */
.section-how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: #fff; border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
@media (max-width: 480px) { .step-card { padding: 28px 22px; } .step-card h4 { font-size: 20px; } .step-card p { font-size: 15px; } }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: var(--shadow-teal); }
.step-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 8px; letter-spacing: -0.02em; color: var(--navy); }
.step-card p { font-size: 16px; line-height: 1.55; color: var(--navy-600); margin: 0; }

/* Benefits */
.section-benefits { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .benefit-grid, .benefit-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefit-grid, .benefit-grid-6 { grid-template-columns: 1fr; gap: 14px; } .benefit-card { padding: 24px 22px; } }
.benefit-card { background: var(--cream); border-radius: var(--r-lg); padding: 28px 24px; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff; }
.benefit-emoji { font-size: 32px; margin-bottom: 14px; }
.benefit-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.015em; color: var(--navy); line-height: 1.2; }
.benefit-card p { font-size: 15px; line-height: 1.5; color: var(--navy-600); margin: 0; }

/* Urgency situational */
.section-urgency { position: relative; padding: 88px 0; overflow: hidden; color: #fff; text-align: center; }
.urgency-bg { position: absolute; inset: 0; background: var(--pink); }
.urgency-bg::before { content:''; position: absolute; inset: 0; background: url('assets/wave-pattern.webp') center bottom/cover no-repeat; opacity: 0.18; mix-blend-mode: overlay; }
.urgency-inner { position: relative; z-index: 1; }
.urgency-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; padding: 8px 16px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.12em; margin-bottom: 20px; }
.section-urgency h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 16px; color: #fff; text-wrap: balance; }
@media (max-width: 480px) { .section-urgency { padding: 64px 0; } .section-urgency p { font-size: 16px; } }
.section-urgency p { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.92); max-width: 580px; margin: 0 auto 32px; }

/* Reviews */
.section-reviews { background: var(--cream); }
.reviews-head { text-align: center; margin-bottom: 40px; }
.reviews-head .section-title { margin: 0 auto 12px; text-align: center; }
.reviews-sub { font-size: 15px; color: var(--navy-600); margin: 0; }
.reviews-sub strong { color: var(--navy); font-weight: 800; letter-spacing: 0.08em; font-family: var(--font-display); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.review-stars { color: #FBBF24; font-size: 15px; letter-spacing: 0.08em; }
.review-card p { font-size: 15px; line-height: 1.55; color: var(--navy); margin: 0; flex: 1; }
.review-meta { display: flex; gap: 12px; align-items: center; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.review-meta strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.review-meta span { font-size: 12px; color: var(--gray-600); }
.reviews-cta { text-align: center; margin-top: 36px; }

/* Video */
.section-video { background: #fff; }
.video-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .video-inner { grid-template-columns: 1fr; } }
.video-copy .section-title { margin-bottom: 16px; }
.video-copy p { font-size: 17px; line-height: 1.5; color: var(--navy-600); margin: 0 0 28px; max-width: 420px; }
@media (max-width: 480px) { .video-copy p { font-size: 16px; } .video-embed.video-embed-short { max-width: 280px; } }
.video-frame { position: relative; }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy); }
.video-embed.video-embed-short { aspect-ratio: 9/16; max-width: 360px; margin: 0 auto; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer; background: #000; display: block; }
.yt-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.2s; }
.yt-facade:hover img { opacity: 1; }
.yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); transition: transform 0.2s; }
.yt-facade:hover .yt-play { transform: translate(-50%, -50%) scale(1.1); }

/* Pricing */
.section-pricing { background: url('assets/pool-pattern.webp') center/cover; position: relative; padding: 120px 0; }
.section-pricing::before { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29,188,188,0.6), rgba(29,188,188,0.85)); }
.pricing-inner { position: relative; display: flex; justify-content: center; }
.price-card { background: #fff; border-radius: 32px; padding: 40px 40px 36px; max-width: 480px; width: 100%; box-shadow: var(--shadow-xl); position: relative; }
@media (max-width: 480px) { .price-card { padding: 32px 24px 28px; border-radius: 24px; } .price-value { font-size: 76px; } .badge-pink { left: 20px; font-size: 11px; padding: 7px 14px; } }
.badge-pink { position: absolute; top: -14px; left: 32px; background: var(--pink); color: #fff; padding: 8px 16px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.1em; box-shadow: var(--shadow-pink); }
.price-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; line-height: 1.15; margin: 8px 0 24px; color: var(--navy); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; }
.price-currency { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--navy); }
.price-value { font-family: var(--font-display); font-weight: 800; font-size: 96px; line-height: 1; letter-spacing: -0.04em; color: var(--navy); }
.price-per { font-size: 14px; color: var(--navy-600); margin-left: 6px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 12px; align-items: center; font-size: 16px; color: var(--navy); }
.price-note { font-size: 13px; color: var(--gray-600); text-align: center; margin: 14px 0 0; }

/* FAQ */
.section-faq { background: #fff; }
.faq-inner { max-width: 780px; }
.faq-inner .section-title { margin-bottom: 12px; }
.faq-sub { font-size: 17px; color: var(--navy-600); margin: 0 0 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border: 0; border-radius: var(--r-lg); padding: 20px 24px; text-align: left; cursor: pointer; width: 100%; font-family: var(--font-body); transition: background var(--dur-base) var(--ease-out); }
.faq-item:hover { background: var(--gray-100); }
.faq-item.open { background: #fff; box-shadow: var(--shadow-md); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--navy); letter-spacing: -0.01em; text-align: left; line-height: 1.3; }
@media (max-width: 480px) { .faq-item { padding: 16px 18px; } .faq-q { font-size: 15px; gap: 10px; } .faq-toggle { font-size: 24px; width: 22px; } .faq-a { font-size: 15px; } }
.faq-toggle { font-size: 28px; font-weight: 400; color: var(--teal); line-height: 1; width: 28px; flex-shrink: 0; text-align: center; }
.faq-a { margin-top: 14px; font-size: 16px; line-height: 1.55; color: var(--navy-600); }

/* Final CTA */
.section-final { position: relative; padding: 120px 0 140px; overflow: hidden; color: #fff; }
.final-bg { position: absolute; inset: 0; background: var(--navy) url('assets/pool-pattern.webp') center/cover; opacity: 1; }
.final-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,32,68,0.85), rgba(15,32,68,0.92)); }
.final-inner { position: relative; text-align: center; z-index: 1; }
.final-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 6vw, 72px); letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin: 0 0 20px; text-wrap: balance; }
.final-sub { font-size: 22px; color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 640px; }
@media (max-width: 480px) { .final-sub { font-size: 17px; } .section-final { padding: 80px 0 96px; } .final-checks li { font-size: 15px; } .btn-xl { padding: 18px 28px; font-size: 16px; } }
.final-checks { list-style: none; padding: 0; margin: 0 auto 36px; display: inline-flex; flex-direction: column; gap: 10px; text-align: left; }
.final-checks li { display: flex; gap: 10px; align-items: center; font-size: 16px; color: #fff; font-weight: 500; }
.final-note { font-size: 14px; color: rgba(255,255,255,0.7); margin: 24px 0 0; }
.final-cta-btn { display: inline-flex; margin: 32px auto 0; }

/* Ghost button */
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* Footer */
.dsam-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 56px 0 40px; }
.ftr-logo { max-height: 60px; max-width: 200px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 32px; }
.ftr-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 720px) { .ftr-cols { grid-template-columns: 1fr; } }
.ftr-cols h5 { font-family: var(--font-display); font-weight: 800; font-size: 14px; margin: 0 0 10px; color: #fff; letter-spacing: 0.04em; }
.ftr-cols p { font-size: 14px; line-height: 1.6; margin: 0; }
.ftr-cols a { color: rgba(255,255,255,0.85); }
.ftr-cols a:hover { color: var(--teal); }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 13px; color: #fff; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; text-align: center; }
.ftr-bottom p { margin: 0; line-height: 1.5; color: #fff; }
.ftr-social {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 8px 14px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--r-pill);
  color: #fff !important;
  font-size: 13px; font-weight: 600; font-family: var(--font-body);
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.ftr-social:hover { background: #fff; color: var(--navy) !important; transform: translateY(-2px); }
.ftr-social svg { display: block; }

/* Floating FAB — provided by wa-widget.js (pure-DOM, injects #dsam-wa-btn) */

/* ---------- HERO WAVE — removed ---------- */

/* ---------- GOOGLE RATING CARD (social proof inside hero copy) ---------- */
.section-google-rating { background: transparent; padding: 24px 0 0; }
.hero-copy .section-google-rating { padding: 24px 0 0; }
.hero-copy .section-google-rating .dsam-container { padding: 0; justify-content: flex-start; }
.hero-copy .google-rating-card { margin: 0; }
.google-rating-card {
  display: inline-flex; align-items: center; gap: 20px;
  background: #fff; border-radius: var(--r-lg); padding: 20px 28px;
  box-shadow: var(--shadow-sm); text-decoration: none; color: var(--navy);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  margin: 0 auto; display: flex; justify-content: center; max-width: fit-content;
  width: 100%;
}
.section-google-rating .dsam-container { display: flex; justify-content: center; }
.google-rating-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.grc-logo { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; }
.grc-body { display: flex; flex-direction: column; gap: 4px; }
.grc-line { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--navy-600); font-family: var(--font-body); }
.grc-value { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.grc-label { color: var(--navy-600); }
.grc-stars { color: #FBBF24; font-size: 14px; letter-spacing: 0.08em; }
.grc-reviews { font-size: 13px; color: var(--gray-600); }
.grc-reviews strong { color: var(--navy); font-weight: 700; font-variant-numeric: tabular-nums; }
.grc-arrow { color: var(--teal); display: grid; place-items: center; transition: transform var(--dur-base) var(--ease-out); }
.google-rating-card:hover .grc-arrow { transform: translateX(4px); }
@media (max-width: 480px) {
  .google-rating-card { padding: 16px 20px; gap: 14px; }
  .grc-line { font-size: 13px; }
  .grc-value { font-size: 18px; }
}

/* ---------- STEPS: carousel on mobile ---------- */
.step-icon { color: var(--teal); margin-bottom: 14px; display: inline-block; }
.step-card .step-num { box-shadow: var(--shadow-teal); }

.steps-carousel {
  position: relative;
  max-width: 360px;
  height: 380px;
  margin: 0 auto;
}
.step-card-carousel {
  position: absolute;
  inset: 0;
  text-align: center;
  padding: 32px 28px 36px;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
  will-change: transform, opacity;
}
.step-card-carousel .step-num { margin: 0 auto 16px; }
.step-card-carousel .step-icon { display: block; margin: 0 auto 16px; }
.step-card-carousel h4 { text-align: center; }
.step-card-carousel p { text-align: center; }

.step-pos-front { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; z-index: 3; }
.step-pos-left  { transform: translate(-36%, 18px) rotate(-5deg) scale(0.92); opacity: 0.55; z-index: 2; }
.step-pos-right { transform: translate(36%, 18px) rotate(5deg) scale(0.92); opacity: 0.55; z-index: 2; }
.step-pos-hidden { opacity: 0; pointer-events: none; transform: scale(0.9); z-index: 1; }

.steps-dots { position: absolute; left: 0; right: 0; bottom: -28px; display: flex; justify-content: center; gap: 8px; }
.steps-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--border); cursor: pointer; transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.steps-dot.active { background: var(--teal); transform: scale(1.3); }

/* ---------- REVIEWS: slider layout ---------- */
.section-reviews { background: var(--cream); padding: 96px 0; }
.reviews-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 28px;
  text-align: center;
}
.reviews-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .reviews-layout { grid-template-columns: 1fr; gap: 32px; align-items: stretch; } }

.reviews-badge .reviews-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -0.03em; color: var(--navy); margin: 0 0 24px; text-wrap: balance; }
.hl-teal { color: var(--teal); }
.badge-box { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
.badge-label { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.14em; color: var(--navy); margin-bottom: 10px; }
.badge-stars { color: #FBBF24; font-size: 28px; letter-spacing: 0.08em; margin-bottom: 10px; }
.badge-count { font-size: 14px; color: var(--navy-600); margin-bottom: 14px; }
.badge-count strong { color: var(--navy); font-weight: 800; font-family: var(--font-display); }
.badge-link { color: var(--teal-700); font-weight: 700; font-size: 14px; text-decoration: none; }
.badge-link:hover { text-decoration: underline; }

.reviews-slider { position: relative; min-width: 0; }
.reviews-slider-window { overflow: hidden; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.4s var(--ease-out); will-change: transform; }
.reviews-track .review-card {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.reviews-track .review-card.active { border-color: var(--teal); box-shadow: var(--shadow-md); }
.review-head { display: flex; gap: 12px; align-items: center; }
.review-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--teal); }
.review-head strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.review-head span { font-size: 13px; color: var(--gray-600); }
.reviews-track .review-stars { display: flex; gap: 2px; }
.reviews-track .review-card p { font-size: 15px; line-height: 1.55; color: var(--navy); margin: 0; }
.reviews-track .review-empty { color: var(--gray-600); font-style: italic; }

.reviews-controls { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.reviews-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border-soft); color: var(--navy);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.reviews-arrow:hover:not(:disabled) { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }
.reviews-arrow:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
@media (max-width: 900px) {
  .reviews-track .review-card { flex: 0 0 85%; }
  .reviews-controls { justify-content: center; }
}
