/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --cream:        #FFFDF7;
  --purple:       #B8A9FF;
  --purple-deep:  #9B8AEF;
  --purple-dark:  #2D1B69;
  --pink:         #FF6FAF;
  --pink-dark:    #e85a9a;
  --yellow:       #FFE066;
  --text:         #1E1E2E;
  --text-mid:     #5A5A72;
  --text-light:   #9898b0;
  --white:        #ffffff;
  --r:            20px;
  --r-sm:         12px;
  --shadow:       0 8px 40px rgba(184,169,255,.14);
  --shadow-hover: 0 20px 60px rgba(184,169,255,.28);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img   { display: block; width: 100%; height: 100%; object-fit: cover; }
ul    { list-style: none; }
a     { text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   BASE
============================================================ */
html { scroll-behavior: smooth; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--cream);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

/* Ambient background mesh */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(184,169,255,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255,111,175,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 85%, rgba(255,224,102,.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

section { position: relative; z-index: 1; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 { font-size: clamp(2rem, 6vw, 3.4rem); font-weight: 800; line-height: 1.25; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.35; }
h3 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); }

.script-accent {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--purple-deep);
  display: block;
  margin-bottom: 6px;
}
.script-accent--light { color: rgba(255,255,255,.85); }
.script-accent--gold  { color: var(--yellow); }

/* ============================================================
   SECTION COMMON
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { margin-top: 10px; }
.section-sub       { color: var(--text-light); margin-top: 8px; font-size: .95rem; }
.section-cta       { text-align: center; margin-top: 44px; }

.section-tag {
  display: inline-block;
  background: rgba(255,224,102,.28);
  color: #7a6200;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.section-tag.tag-pink {
  background: rgba(255,111,175,.12);
  color: #b0004a;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  padding: 17px 42px;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 6px 28px rgba(255,111,175,.42);
  transition:
    transform  .25s cubic-bezier(.34,1.56,.64,1),
    box-shadow .25s ease,
    background .2s  ease;
  animation: pulse-cta 2.8s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 42px rgba(255,111,175,.55);
  background: var(--pink-dark);
  animation: none;
}
.btn-primary--light {
  background: #fff;
  color: var(--purple-deep);
  box-shadow: 0 6px 28px rgba(255,255,255,.35);
  animation: none;
}
.btn-primary--light:hover { background: var(--cream); }
.btn-primary--large { font-size: 1.2rem; padding: 22px 52px; }

@keyframes pulse-cta {
  0%,100% { box-shadow: 0 6px 28px rgba(255,111,175,.42); }
  50%      { box-shadow: 0 6px 44px rgba(255,111,175,.65); }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-size: .98rem;
  font-weight: 500;
  border: 2px solid rgba(184,169,255,.35);
  transition: all .25s ease;
}
.btn-whatsapp:hover {
  background: rgba(184,169,255,.1);
  border-color: var(--purple);
  transform: translateY(-2px);
}
.btn-whatsapp--dark {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.btn-whatsapp--dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity   .6s cubic-bezier(.25,.46,.45,.94),
    transform .6s cubic-bezier(.25,.46,.45,.94);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay for grid children */
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }

/* ============================================================
   1. HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--cream) 0%, #f5edff 52%, #fff0f7 100%);
  padding: 110px 24px 80px;
  overflow: hidden;
}

/* Decorative glow blobs */
#hero::before,
#hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#hero::before {
  width: 520px; height: 520px;
  top: -140px; right: -140px;
  background: radial-gradient(circle, rgba(184,169,255,.2) 0%, transparent 70%);
}
#hero::after {
  width: 380px; height: 380px;
  bottom: -80px; left: -80px;
  background: radial-gradient(circle, rgba(255,111,175,.15) 0%, transparent 70%);
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(184,169,255,.16);
  border: 1px solid rgba(184,169,255,.42);
  color: var(--purple-deep);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .5px;
}

#hero h1 { margin-bottom: 18px; }
#hero h1 .highlight { color: var(--purple-deep); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 34px;
  font-weight: 400;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  margin-bottom: 42px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .97rem;
  color: var(--text-mid);
}
.hero-bullets li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 54px;
}

/* Decorative nail strip */
.hero-nail-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.nail-thumb {
  width: 72px; height: 110px;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}
.nail-thumb:hover { transform: translateY(-12px) scale(1.06); }

.nail-thumb[data-slot="1"] { background: linear-gradient(160deg,#ede0ff,#ffd6ec); }
.nail-thumb[data-slot="2"] { background: linear-gradient(160deg,#fff0f7,#f0e8ff); transform: translateY(-14px); }
.nail-thumb[data-slot="3"] { background: linear-gradient(160deg,#ffd6ec,#ffe0aa); }
.nail-thumb[data-slot="4"] { background: linear-gradient(160deg,#ffe8f0,#ede0ff); transform: translateY(-8px); }
.nail-thumb[data-slot="5"] { background: linear-gradient(160deg,#f0e8ff,#fff8ee); }
.nail-thumb[data-slot="2"]:hover,
.nail-thumb[data-slot="4"]:hover { transform: translateY(-20px) scale(1.06); }

/* ============================================================
   2. WHAT YOU GET
============================================================ */
#what-you-get {
  padding: 96px 0;
  background: var(--white);
}

.wyg-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.wyg-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(184,169,255,.18);
  transition: background .2s ease;
}
.wyg-item:last-child { border-bottom: none; }
.wyg-item:hover { padding-right: 8px; }

.wyg-num {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  color: rgba(184,169,255,.45);
  flex-shrink: 0;
  width: 52px;
  text-align: center;
  line-height: 1;
}

.wyg-content { flex: 1; }

.wyg-main {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.wyg-item:nth-child(even) .wyg-main { color: var(--purple-deep); }

.wyg-sub {
  font-size: .97rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(184,169,255,.5);
}

/* ============================================================
   3. ABOUT
============================================================ */
#about {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--cream) 0%, #f8f0ff 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image,
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
}
.about-image {
  display: block;
  object-fit: cover;
  object-position: center top;
}
.about-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(160deg,#e8dcff,#ffd6ec);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--purple-deep);
  line-height: 1;
}
.about-badge-label {
  font-size: .73rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.about-text h2 { margin: 8px 0 18px; }
.about-text p  { margin-bottom: 14px; font-size: .97rem; }
.about-text p:last-of-type { margin-bottom: 30px; }

/* ============================================================
   4. PAIN
============================================================ */
#pain {
  padding: 96px 0;
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.pain-card {
  background: #fff7fb;
  border: 1px solid rgba(255,111,175,.14);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(255,111,175,.13);
}
.pain-icon { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.pain-card h3 { font-size: .98rem; margin-bottom: 6px; }
.pain-card p  { font-size: .84rem; }

/* ============================================================
   5. SOLUTION
============================================================ */
#solution {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--purple) 0%, #c9a0f5 100%);
  text-align: center;
  overflow: hidden;
}
#solution::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.solution-inner { position: relative; z-index: 1; }
.solution-inner h2   { color: var(--white); margin: 12px 0 20px; }
.solution-inner > p  {
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.02rem;
}

/* ============================================================
   6. ADVANTAGES
============================================================ */
#advantages {
  padding: 96px 0;
  background: linear-gradient(160deg, #1a0a3d 0%, #2D1B69 100%);
}

#advantages .section-header h2 { color: var(--white); }
#advantages .section-header .section-sub { color: rgba(255,255,255,.6); }
#advantages .section-tag {
  background: rgba(255,224,102,.15);
  color: var(--yellow);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.adv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,169,255,.2);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
}
.adv-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,169,255,.45);
  transform: translateY(-6px);
}

.adv-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.adv-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.adv-card p {
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.6;
}

/* ============================================================
   7. GALLERY / CAROUSEL
============================================================ */
#gallery {
  padding: 80px 0 60px;
  background: var(--white);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 36px;
}
.gallery-header h2 { margin-top: 10px; }

.carousel-wrapper { position: relative; }

.carousel-viewport {
  overflow: hidden;
  padding: 16px 0 28px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  padding: 0 24px;
  direction: ltr;  /* gallery always flows left→right */
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.carousel-item {
  flex-shrink: 0;
  width: 210px;
  height: 315px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  transition: transform .3s ease;
}
.carousel-item:hover { transform: translateY(-10px); }
.carousel-item img { object-fit: cover; }

.carousel-item[data-slot="1"] { background: linear-gradient(160deg,#ede0ff,#ffd6ec); }
.carousel-item[data-slot="2"] { background: linear-gradient(160deg,#fff0f7,#fffaee); }
.carousel-item[data-slot="3"] { background: linear-gradient(160deg,#ffd6ec,#ede0ff); }
.carousel-item[data-slot="4"] { background: linear-gradient(160deg,#fffaee,#fff0f7); }
.carousel-item[data-slot="5"] { background: linear-gradient(160deg,#f0e8ff,#ffd6ec); }
.carousel-item[data-slot="6"] { background: linear-gradient(160deg,#fff8ee,#ede0ff); }
.carousel-item[data-slot="7"] { background: linear-gradient(160deg,#ede0ff,#fff0f7); }
.carousel-item[data-slot="8"] { background: linear-gradient(160deg,#ffd6ec,#fffaee); }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(184,169,255,.35);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--purple-deep);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.carousel-btn:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn:disabled { opacity: .35; pointer-events: none; }
.carousel-btn--prev { right: 16px; }
.carousel-btn--next { left:  16px; }

/* ============================================================
   8. WHY
============================================================ */
#why {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--cream) 0%, #fff0f7 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.why-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-content h3 { margin-bottom: 5px; font-size: .98rem; }
.why-content p  { font-size: .83rem; }

/* ============================================================
   9. TESTIMONIALS
============================================================ */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(184,169,255,.2);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Great Vibes', cursive;
  font-size: 6rem;
  color: rgba(184,169,255,.18);
  position: absolute;
  top: -6px; right: 20px;
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #f5c518;
  letter-spacing: 2px;
  font-size: .95rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  color: var(--text-mid);
  font-size: .93rem;
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: normal;
}

.testimonial-name {
  font-weight: 600;
  font-size: .82rem;
  color: var(--purple-deep);
  font-style: normal;
}

/* ============================================================
   10. HESITANT WOMEN
============================================================ */
#hesitant {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--cream) 0%, #fff0f7 100%);
}

.hesitant-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hesitant-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hesitant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hesitant-thought {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px;
}

.hesitant-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
  margin-bottom: 16px;
}

.hesitant-answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hesitant-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hesitant-answer p {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ============================================================
   11. FINAL CTA
============================================================ */
#final-cta {
  padding: 120px 0;
  background: linear-gradient(155deg, #2D1B69 0%, #1a0a3d 100%);
  text-align: center;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184,169,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner   { position: relative; z-index: 1; }
.final-cta-inner h2 { color: var(--white); margin: 12px 0 14px; }

.final-sub {
  color: rgba(255,255,255,.7);
  margin-bottom: 44px;
  font-size: 1rem;
}

.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.final-stars {
  margin-top: 48px;
  color: rgba(255,224,102,.5);
  font-size: 1.1rem;
  letter-spacing: 10px;
}

/* ============================================================
   STICKY MOBILE CTA
============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px 16px;
  background: rgba(255,253,247,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  z-index: 1000;
  gap: 10px;
  transition: transform .3s ease, opacity .3s ease;
}
.sticky-cta.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 100px;
  font-family: 'Rubik', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s ease;
}
.sticky-btn--main {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,111,175,.4);
}
.sticky-btn--main:hover { background: var(--pink-dark); }
.sticky-btn--wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.sticky-btn--wa:hover { background: #1da851; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  body { padding-bottom: 76px; }

  .sticky-cta { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-wrapper { max-width: 260px; margin: 0 auto; }

  .pain-grid         { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .adv-grid          { grid-template-columns: repeat(2,1fr); }
  .hesitant-grid     { grid-template-columns: 1fr; }

  .wyg-item { gap: 16px; }
  .wyg-num  { font-size: 1.6rem; width: 36px; }

  .carousel-item { width: 168px; height: 252px; }

  #final-cta { padding: 80px 0; }
  #hero { padding-top: 90px; }
}

@media (max-width: 480px) {
  .adv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-card:last-child { grid-column: 1 / -1; max-width: 220px; margin: 0 auto; }

  .hero-nail-strip { gap: 8px; }
  .nail-thumb { width: 56px; height: 88px; }

  .why-grid  { gap: 14px; }
  .pain-grid { gap: 14px; }
}
