/* ====================================
   Flair & Co. — Custom Landing Styles
   Deep purple / hot pink / gold palette
   ==================================== */

:root {
  --purple-dark:    #1a0a2e;
  --purple-mid:      #2d1b69;
  --purple-light:    #4a2c9a;
  --pink:            #e91e8c;
  --pink-dark:       #c41878;
  --pink-glow:       rgba(233, 30, 140, 0.15);
  --gold:            #f4c542;
  --gold-dark:       #d4a017;
  --gold-light:      #fcebb6;
  --cream:           #fdf8ff;
  --white:           #ffffff;
  --charcoal:        #1a1a2e;
  --text-muted:      rgba(255,255,255,0.65);
  --border-subtle:   rgba(255,255,255,0.12);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ─────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(26, 10, 46, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.nav-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-name span {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--white); }

.nav-cta {
  background: var(--pink);
  color: var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  overflow: hidden;
  background: var(--purple-dark);
}

/* Decorative radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center,
    rgba(233, 30, 140, 0.22) 0%,
    rgba(74, 44, 154, 0.12) 45%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative gold accent circle */
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 197, 66, 0.12);
  border: 1px solid rgba(244, 197, 66, 0.25);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), #ff6ab5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(233, 30, 140, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.45);
}

.btn-ghost {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg,
    rgba(233, 30, 140, 0.3),
    rgba(74, 44, 154, 0.3)
  );
  border-radius: var(--r-xl);
  filter: blur(40px);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  z-index: 2;
  background: var(--gold);
  color: var(--purple-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(244, 197, 66, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Social Proof Bar ─────────────── */
.social-proof {
  background: var(--purple-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 2.5rem;
}

.soc-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.soc-proof-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.soc-proof-stat svg {
  color: var(--gold);
  flex-shrink: 0;
}

.soc-proof-divider {
  width: 1px;
  height: 20px;
  background: var(--border-subtle);
}

/* ── Services Section ─────────────── */
.services {
  padding: 6rem 2.5rem;
  background: var(--cream);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.section-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.05rem;
  color: #6b6480;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  border: 1px solid #ede8f5;
  box-shadow: 0 2px 16px rgba(45, 27, 105, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 27, 105, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple-light));
}

.service-card.vip::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.service-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}

.service-tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.service-card.vip .service-tier { color: var(--gold-dark); }

.service-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}

.service-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1;
}

.service-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  align-self: flex-start;
  margin-top: 0.3rem;
}

.service-price .per {
  font-size: 0.875rem;
  color: #8a82a0;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.25rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #5a5470;
  line-height: 1.4;
}

.service-features li svg {
  flex-shrink: 0;
  color: var(--pink);
  margin-top: 0.1rem;
}

.service-card.vip .service-features li svg { color: var(--gold-dark); }

.service-cta {
  display: block;
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

.service-cta:hover {
  background: var(--pink);
  color: var(--white);
}

.service-card.vip .service-cta {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--purple-dark);
}

.service-card.vip .service-cta:hover {
  filter: brightness(1.05);
}

/* ── How It Works ─────────────────── */
.how {
  padding: 6rem 2.5rem;
  background: linear-gradient(180deg, var(--purple-dark) 0%, #16082a 100%);
}

.how .section-heading { color: var(--white); }
.how .section-sub { color: var(--text-muted); }
.how .section-label { color: var(--gold); }
.how .section-label::before { background: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  color: var(--white);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA Banner ───────────────────── */
.cta-banner {
  padding: 5rem 2.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--pink);
  padding: 1rem 2.25rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Footer ───────────────────────── */
.footer {
  background: var(--purple-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer span { color: var(--gold); }

/* ── Responsive ────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .soc-proof-inner { gap: 1.5rem; }
  .soc-proof-divider { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .services, .how, .cta-banner { padding: 4rem 1.25rem; }
  .footer { padding: 2rem 1.25rem; }
}