/* ============================================================
   CUTIE NAILS — Landing Page Styles
   ============================================================ */

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

:root {
  --petal-pink:    #FFB6C1;
  --lavender-mist: #C8A2C8;
  --rose-gold:     #B76E79;
  --deep-rose:     #8B4A6B;
  --blush-white:   #FFF8F9;
  --warm-gray:     #9E9095;
  --deep-plum:     #2D1B2E;
  --white:         #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-sm: 0 2px 8px rgba(45, 27, 46, 0.08);
  --shadow-md: 0 8px 32px rgba(45, 27, 46, 0.12);
  --shadow-lg: 0 24px 64px rgba(45, 27, 46, 0.18);

  --nav-height: 68px;
  --section-pad: 96px;
  --section-pad-mobile: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--deep-plum);
  background: var(--blush-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--petal-pink), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--petal-pink);
  color: var(--deep-plum);
  box-shadow: 0 4px 16px rgba(255, 182, 193, 0.45);
}
.btn--primary:hover { box-shadow: 0 8px 24px rgba(255, 182, 193, 0.6); }

.btn--ghost {
  background: transparent;
  color: var(--deep-plum);
  border: 1.5px solid rgba(45, 27, 46, 0.25);
}
.btn--ghost:hover { border-color: var(--petal-pink); background: rgba(255,182,193,0.06); }

.btn--lg  { padding: 15px 28px; font-size: 1rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(183, 110, 121, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ---------- Section shared ---------- */
.section-header {
  text-align: center;
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 460px;
  line-height: 1.65;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 249, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.18);
  transition: box-shadow 0.2s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--deep-plum);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-right: auto;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--deep-plum); }

.nav__cta { margin-left: auto; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--deep-plum);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255, 182, 193, 0.18);
  background: var(--blush-white);
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep-plum);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,182,193,0.12);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile .btn { margin-top: 12px; width: 100%; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* hero.jpeg as the background — subtle, right-side heavy */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/icons/hero.jpeg') center center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--blush-white) 45%, transparent 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero__sub {
  font-size: 1.075rem;
  color: var(--warm-gray);
  line-height: 1.65;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.hero__footnote {
  font-size: 0.8rem;
  color: var(--warm-gray);
}

/* ---- Phone mockup ---- */
.hero__phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__phone {
  width: 270px;
  height: 540px;
  background: var(--deep-plum);
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
}

.hero__phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 10px;
  background: var(--deep-plum);
  border-radius: 10px;
  z-index: 10;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #140c18;
}

/* Use hero.jpeg inside the phone as the camera feed */
.mockup-camera {
  flex: 1;
  background: url('assets/icons/hero.jpeg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.mockup-color-overlay {
  position: absolute;
  inset: 0;
  background: var(--petal-pink);
  opacity: 0.22;
  mix-blend-mode: multiply;
  transition: background 0.5s ease;
}

.mockup-scan-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 24px;
  height: 2px;
  background: rgba(255, 182, 193, 0.7);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 182, 193, 0.6);
  animation: scan 2s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50% { opacity: 0.4; transform: scaleX(0.7); }
}

.mockup-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
}

.mockup-picker {
  padding: 10px 14px;
  background: rgba(20, 12, 24, 0.96);
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.mockup-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  cursor: pointer;
}
.mockup-swatch--active {
  transform: scale(1.25);
  box-shadow: 0 0 0 2.5px white, 0 2px 8px rgba(0,0,0,0.4);
}

/* Floating badges */
.hero__float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 9px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--deep-plum);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero__float--top    { top: 48px; right: -16px; animation-delay: 0s; }
.hero__float--bottom { bottom: 72px; left: -16px; animation-delay: 2s; }
.hero__float-icon    { font-size: 1rem; }
.hero__float-logo    { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid rgba(255, 182, 193, 0.18);
  border-bottom: 1px solid rgba(255, 182, 193, 0.18);
}
.proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-align: center;
  padding: 12px 16px;
}
.proof__number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}
.proof__label {
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 182, 193, 0.3);
  flex-shrink: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: var(--section-pad) 0;
  background: var(--blush-white);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255, 182, 193, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255,182,193,0.1), rgba(200,162,200,0.06));
}
.feature-card--premium {
  background: linear-gradient(135deg, rgba(183,110,121,0.06), rgba(139,74,107,0.03));
  border-color: rgba(183, 110, 121, 0.2);
}
.feature-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon-wrap svg { width: 26px; height: 26px; }
.feature-card__icon-wrap--pink     { background: rgba(255,182,193,0.2); color: var(--rose-gold); }
.feature-card__icon-wrap--lavender { background: rgba(200,162,200,0.2); color: #8B6FA0; }
.feature-card__icon-wrap--rose     { background: rgba(183,110,121,0.15); color: var(--rose-gold); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.feature-card__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rose-gold);
  background: rgba(183,110,121,0.1);
  padding: 4px 12px;
  border-radius: 100px;
}
.feature-card__premium-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
/* Use a background image tile */
.how__bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/icons/0001_1_a-soft-abstract-gradient-background-feat_WvjG_tgKQ9aEyEUWJqatNw_Gl570gAhS2OcbGP7I2gm6w_cover.jpeg') center center / cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}
.how .container { position: relative; z-index: 1; }
.how .section-header { margin-bottom: 56px; }

.steps {
  display: flex;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 14px;
}
.step__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--petal-pink), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.step__content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.step__content p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--petal-pink), var(--lavender-mist));
  margin-top: 28px;
  border-radius: 2px;
}

/* ============================================================
   STYLES
   ============================================================ */
.styles-section {
  padding: var(--section-pad) 0;
  background: var(--blush-white);
}
.styles__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  background: var(--white);
  border: 1px solid rgba(255,182,193,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { color: var(--deep-plum); border-color: var(--petal-pink); }
.filter-btn--active { color: var(--deep-plum); background: var(--petal-pink); border-color: var(--petal-pink); }

.styles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.style-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,182,193,0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.25s;
  position: relative;
}
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.style-card__preview { height: 148px; width: 100%; }
.style-card__info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.style-card__name  { font-weight: 600; font-size: 0.875rem; }
.style-card__finish { font-size: 0.78rem; color: var(--warm-gray); }
.style-card__pro {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
  padding: 3px 9px;
  border-radius: 100px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testimonial {
  background: var(--blush-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,182,193,0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial--featured {
  background: linear-gradient(135deg, rgba(255,182,193,0.14), rgba(200,162,200,0.08));
  border-color: rgba(255,182,193,0.4);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.testimonial__stars { color: var(--petal-pink); letter-spacing: 2px; font-size: 0.875rem; }
.testimonial p { font-size: 0.9rem; color: var(--deep-plum); line-height: 1.7; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  color: var(--deep-plum);
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 0.875rem; }
.testimonial__author span  { font-size: 0.78rem; color: var(--warm-gray); }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.download {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--deep-plum);
}
.download__bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/icons/hero.jpeg') center center / cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.download__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,46,0.95) 50%, rgba(45,27,46,0.75));
  z-index: 1;
}
.download__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.download__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.download__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.download__sub {
  font-size: 1rem;
  color: rgba(255,248,249,0.6);
  line-height: 1.65;
  max-width: 420px;
}
.download__footnote { font-size: 0.78rem; color: rgba(255,248,249,0.35); }

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--deep-plum);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  max-width: fit-content;
}
.appstore-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.35); }
.appstore-btn__icon  { width: 26px; height: 26px; flex-shrink: 0; }
.appstore-btn__label { display: block; font-size: 0.68rem; color: var(--warm-gray); font-weight: 400; }
.appstore-btn__store { display: block; font-size: 1rem; }

/* Download visual: app icon + name */
.download__visual { display: flex; justify-content: center; align-items: center; }
.download__phone {
  width: 180px;
  height: 180px;
  background: rgba(255,248,249,0.06);
  border-radius: 40px;
  border: 1px solid rgba(255,248,249,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.download__phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.download__app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.download__app-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,248,249,0.9);
  text-align: center;
}
.download__app-sub {
  font-size: 0.68rem;
  color: rgba(255,248,249,0.4);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep-plum);
  border-top: 1px solid rgba(255,248,249,0.07);
  padding-top: 56px;
  padding-bottom: 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,248,249,0.07);
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}
.footer__logo span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blush-white);
}
.footer__brand p { font-size: 0.85rem; color: rgba(255,248,249,0.35); font-style: italic; }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,248,249,0.35);
  margin-bottom: 2px;
}
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,248,249,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--blush-white); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,248,249,0.25); }
.footer__social { display: flex; gap: 18px; }
.footer__social a { color: rgba(255,248,249,0.35); display: flex; transition: color 0.15s; }
.footer__social a:hover { color: var(--petal-pink); }
.footer__social svg { width: 18px; height: 18px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding-top: var(--nav-height);
  min-height: 100svh;
}
.legal-hero {
  padding: 56px 0 40px;
  background: linear-gradient(135deg, rgba(255,182,193,0.12), rgba(200,162,200,0.06));
  border-bottom: 1px solid rgba(255,182,193,0.18);
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-top: 12px;
}
.legal-hero .legal-meta {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 8px;
}
.legal-body {
  padding: 56px 0 80px;
  max-width: 760px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 40px 0 12px;
  color: var(--deep-plum);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 0.9375rem;
  color: #4a3550;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-body li {
  font-size: 0.9375rem;
  color: #4a3550;
  line-height: 1.65;
}
.legal-body a { color: var(--rose-gold); text-decoration: underline; }
.legal-body strong { color: var(--deep-plum); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .styles__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonial--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .download__inner { grid-template-columns: 1fr; gap: 40px; }
  .download__visual { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: var(--section-pad-mobile); }
  .container { padding: 0 20px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 48px;
    gap: 40px;
  }
  .hero__bg-overlay {
    background: linear-gradient(180deg, rgba(255,248,249,0.5) 0%, rgba(255,248,249,0.2) 100%);
  }
  .hero__copy { align-items: center; }
  .hero__sub  { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__phone-wrap { order: -1; }
  .hero__phone { width: 220px; height: 440px; }
  .hero__float--top    { right: 0; top: 20px; }
  .hero__float--bottom { left: 0; bottom: 44px; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .steps { flex-direction: column; align-items: center; }
  .step { padding: 0; max-width: 320px; }
  .step__connector {
    width: 2px; height: 32px;
    background: linear-gradient(180deg, var(--petal-pink), var(--lavender-mist));
    margin: 4px 0;
  }

  .styles__grid { grid-template-columns: 1fr 1fr; }

  .proof__inner { flex-wrap: wrap; }
  .proof__stat  { min-width: 45%; }
  .proof__divider { display: none; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .legal-body { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
  .styles__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__float { display: none; }
}
