:root{
  --brand:#7daea3;
  --ink:#222; --muted:#6b7280;
  --radius:12px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --bg:#FAF9F8;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Arial,sans-serif;color:var(--ink);background:var(--bg)}
.container{max-width:1200px;margin:auto;padding:0 20px}

/* Hero */
/* HERO SECTION WITH BACKGROUND IMAGE */
.hero {
  margin-top: 70px;
  position: relative;
  background: url("/images/skin-analysis.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero p {
  color: #f5f5f5;
  line-height: 1.6;
}

.hero .cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero .note {
  margin-top: 14px;
  font-size: 1rem;
  color: #ddd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
    background-position: top center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}

/* WHAT'S INCLUDED SECTION */
#included {
  padding: 80px 20px;
  text-align: center;
  color: #333;
  border-top: 1px solid #eee;
}

#included .container {
  max-width: 1100px;
  margin: 0 auto;
}

#included .eyebrow {
  color: #59aeb0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

#included .h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
  line-height: 1.3;
}

/* Card Grid */
#included .cards {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  #included .cards.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Style */
#included .card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 22px 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

#included .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Step Badge */
#included .step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #59aeb0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card Content */
#included h3 {
  margin-top: 35px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
}

#included p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* Muted text for details */
#included .muted {
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  #included {
    padding: 60px 16px;
  }
  #included .h2 {
    font-size: 1.5rem;
  }
  #included .card {
    padding: 26px 20px;
  }
}

/* HOW IT WORKS */
#how {
  padding: 80px 20px;
  background: #fff;
  color: #333;
  border-top: 1px solid #eee;
}

#how .container { max-width: 1100px; margin: 0 auto; }

#how .eyebrow {
  color: #59aeb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: 8px;
  display: inline-block;
}

#how .h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 6px 0 26px;
  color: #222;
}

/* Grid */
#how .how-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) {
  #how .how-grid { grid-template-columns: 1fr 1fr; }
}

/* Cards */
#how .slab {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* subtle accent bar on the left */
#how .slab::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #59aeb0;
  border-radius: 16px 0 0 16px;
}

#how .slab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

#how h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #222;
}

/* Lists */
#how ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#how li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  line-height: 1.6;
  color: #4a4a4a;
}

/* checkmark bullets */
#how li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800;
  color: #fff;
  background: #59aeb0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #how { padding: 60px 16px; }
  #how .h2 { font-size: 1.5rem; }
  #how .slab { padding: 20px; }
}



/* Typo & components */
.eyebrow{text-transform:uppercase;letter-spacing:.12em;font-size:12px;color:#59aeb0;font-weight:800}
.h2{font-size:26px;margin:6px 0 18px;font-weight:800}
.muted{color:var(--muted)}
.slab{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.cards{display:grid;gap:16px}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)}
.step{position:relative;padding-top:36px}
.step-badge{position:absolute;top:-12px;left:16px;width:36px;height:36px;border-radius:50%;background:#59aeb0;color:#fff;display:grid;place-items:center;font-weight:800;box-shadow:var(--shadow)}

.how-grid{display:grid;gap:16px}
@media(min-width:900px){.how-grid{grid-template-columns:1fr 1fr}}

ul{margin:0;padding-left:18px}
ul li{margin:6px 0}

/* Buttons */
.cta-primary,.cta-secondary{display:inline-block;padding:12px 18px;border-radius:10px;font-weight:700;text-decoration:none;text-align:center}
.cta-primary{background:#59aeb0;color:#fff}
.cta-secondary{color:#59aeb0;background:#fff}

/* Pricing banner */
/* PRICING BANNER */
#pricing {
  padding: 70px 20px;
  text-align: center;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

#pricing .container {
  max-width: 900px;
  margin: 0 auto;
}

#pricing .eyebrow {
  color: #59aeb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

#pricing .h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

#pricing .price {
  color: #59aeb0;
  font-weight: 800;
}

#pricing .muted {
  color: #fafafa;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

#pricing .cta-primary {
  display: inline-block;
  background: #59aeb0;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

#pricing .cta-primary:hover {
  background: #ca733f;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}


/* Responsive */
@media (max-width: 768px) {
  #pricing {
    padding: 60px 16px;
  }

  #pricing .h2 {
    font-size: 1.6rem;
  }

  #pricing .cta-primary {
    padding: 12px 26px;
    font-size: 0.95rem;
  }
}


#care{padding:60px 20px}
#faq{padding:60px 20px}
details{background:#fff;border:1px solid #eee;border-radius:12px;box-shadow:var(--shadow);padding:14px 18px;margin-bottom:10px}
summary{font-weight:700;cursor:pointer}

/* Booking form */
#book{padding:70px 20px}
.book-form{display:grid;gap:12px;grid-template-columns:1fr}
.book-form input,.book-form select{padding:14px 12px;border:1px solid #ddd;border-radius:10px}
.hint{margin-top:8px}

/* FAQ */
#faq {
  padding: 80px 20px;
  background: #fff;
  color: #333;
  border-top: 1px solid #eee;
}

#faq .container { margin: 0 auto; }

#faq .eyebrow {
  color: #59aeb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: 8px;
  display: inline-block;
}

#faq .h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin: 6px 0 24px;
}

/* Accordion cards */
#faq details {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  padding: 14px 18px;
  margin-bottom: 12px;
  transition: box-shadow .25s ease, transform .25s ease;
}
#faq details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
}

/* Remove default arrow */
#faq summary::-webkit-details-marker { display: none; }
#faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  outline: none;
}

/* Custom caret icon */
#faq summary::after {
  content: "▾";
  margin-left: auto;
  font-size: 1rem;
  color: #59aeb0;
  transition: transform .25s ease;
}
#faq details[open] summary::after { transform: rotate(-180deg); }

/* Answer text */
#faq p {
  margin: 10px 2px 2px;
  color: #525252;
  line-height: 1.65;
}

/* Focus states for keyboard users */
#faq summary:focus-visible {
  outline: 2px solid #59aeb0;
  outline-offset: 3px;
  border-radius: 8px;
}

/* Subtle open animation */
#faq details[open] > *:not(summary) {
  animation: faq-reveal .25s ease;
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #faq { padding: 60px 16px; }
  #faq .h2 { font-size: 1.5rem; }
}


/* BOOKING SECTION */
#book {
  padding: 80px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
}

#book .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

#book .slab {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

#book .eyebrow {
  color: #59aeb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: inline-block;
}

#book .h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin: 6px 0 26px;
}

/* Form styling */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 18px;
}

.book-form input,
.book-form select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-form input:focus,
.book-form select:focus {
  outline: none;
  border-color: #59aeb0;
  box-shadow: 0 0 0 3px rgba(125,174,163,0.25);
}

/* CTA button */
#book .cta-primary {
  background: #59aeb0;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
}

#book .cta-primary:hover {
  background: #699e92;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Hint text */
#book .hint {
  color: #555;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  #book {
    padding: 60px 16px;
  }
  #book .slab {
    padding: 36px 24px;
  }
  #book .h2 {
    font-size: 1.5rem;
  }
}

/* ===== PRICING BANNER WITH MOVING GALLERY ===== */
.pricing-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #fff;
}

/* Make the moving gallery always fill the banner height */
.bg-track-wrap,
.bg-track,
.bg-track img {
  height: 100%;
}

.bg-track img {
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

/* the long row of images that moves */
.bg-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-gallery 30s linear infinite;
}

/* each image in the belt */
.bg-track img {
  height: 320px;          /* match section height or a bit taller */
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

/* slow pan animation */
@keyframes scroll-gallery {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*
Why -50%?
Because we duplicated the 4 images twice.
When we've shifted left by exactly half (the first set width),
the second set is in the same place, so it loops seamlessly.
*/

/* subtle dark overlay so white text is readable */
.bg-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* foreground pricing card */
.price-banner {
  position: relative;
  z-index: 2;
  text-align: center;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);

  border-radius: 16px;
  padding: 24px 28px;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  color: #fff;
}

.price-banner .eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.price-banner .h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.price-banner .price {
  color: #fff;
  font-weight: 700;
}

.price-banner .muted {
  color: #e5e7eb;
  font-size: .95rem;
  line-height: 1.4;
  margin: 0 0 20px;
}

/* CTA button */
.price-banner .cta-primary {
  display: inline-block;
  background: var(--brand, #7daea3);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  transition: all .25s ease;
  font-size: .95rem;
}

.price-banner .cta-primary:hover {
  background: #68978a;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

/* responsive tweaks */
@media(max-width:600px){
  .pricing-banner {
    min-height: 280px;
    padding: 40px 16px;
  }

  .bg-track img {
    height: 280px;
  }

  .price-banner {
    padding: 20px 20px;
    max-width: 90%;
  }

  .price-banner .h2 {
    font-size: 1.3rem;
  }
}

.pricing-banner {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.bg-track-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-track {
  display: flex;
  gap: 0;
  width: max-content;
  height: 100%;
  animation: scroll-gallery 40s linear infinite;
}

.bg-track img {
  height: 100%;
  width: auto;
  flex-shrink: 0;
  object-fit: cover;
}

@keyframes scroll-gallery {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bg-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.price-banner {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 24px 28px;
  border-radius: 16px;
  backdrop-filter: blur(5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
