/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --white: #fafaf8;
  --cream: #f5f0e8;
  --pink: #e8415a;
  --pink-light: #fce8eb;
  --pink-dark: #c02d44;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(0,0,0,0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  position: sticky;
  top: 0;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
}

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 13px;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta:hover {
  background: var(--pink) !important;
  transform: scale(1.02);
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.hero h1 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}

.hero > .hero-text > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--pink);
  color: white;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: scale(1.02);
}

.btn-ghost {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

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

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  background: var(--black);
  border-radius: 36px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.08);
  animation: float 4s ease-in-out infinite;
}

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

.phone-screen {
  background: #111;
  border-radius: 24px;
  padding: 1.25rem;
  min-height: 340px;
}

.match-card {
  background: #1e1e1e;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 12px;
}

.match-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.match-avatar {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.match-name {
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.match-sub {
  font-size: 11px;
  color: #888;
}

.match-stats { display: flex; flex-direction: column; gap: 8px; }

.stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888;
}

.bar-wrap {
  flex: 1;
  background: #333;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}

.bar {
  height: 100%;
  border-radius: 2px;
  animation: grow 1.5s ease-out forwards;
}

.bar-before { background: #555; width: 18%; }
.bar-after { background: var(--pink); width: 80%; animation-delay: 0.3s; }

@keyframes grow {
  from { width: 0; }
}

.stat-val { font-size: 10px; color: #aaa; white-space: nowrap; }

.notification-cards { display: flex; flex-direction: column; gap: 8px; }

.notif {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: #ccc;
  animation: slideIn 0.5s ease-out both;
}

.notif strong { color: white; }
.notif-1 { animation-delay: 0.8s; }
.notif-2 { animation-delay: 1.2s; }
.notif-3 { animation-delay: 1.6s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: var(--cream);
  padding: 5rem 3rem;
}

.strip-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-featured {
  border: 2px solid var(--pink);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.service-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.service-link {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.service-link:hover { color: var(--pink); }

/* ===== BLOG STRIP ===== */
.blog-strip {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.see-all {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.see-all:hover { color: var(--pink); }

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

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.blog-card-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.blog-card-body {
  padding: 1.25rem;
  background: white;
}

.blog-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.blog-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  background: var(--black);
  padding: 5rem 3rem;
}

.testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--pink);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 13px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover { color: var(--text); }

.footer-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

/* ===== SERVICES PAGE ===== */
.page-hero {
  padding: 5rem 3rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
}

.services-full {
  padding: 2rem 3rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: box-shadow 0.2s;
}

.service-full-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.service-full-card.featured {
  border: 2px solid var(--pink);
  background: var(--pink-light);
}

.sfcard-left h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.sfcard-left p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sfcard-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sfcard-includes li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sfcard-includes li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  font-size: 12px;
}

.sfcard-right {
  text-align: center;
  min-width: 140px;
}

.sfcard-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sfcard-timeframe {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn-book {
  display: block;
  background: var(--pink);
  color: white;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}

.btn-book:hover {
  background: var(--pink-dark);
  transform: scale(1.02);
}

/* ===== BLOG PAGE ===== */
.blog-page {
  padding: 3rem 3rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ===== ARTICLE ===== */
.article-hero {
  padding: 4rem 3rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.article-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: block;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}

.article-body p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 2.5rem 0 1rem;
  color: var(--black);
}

.article-body h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.article-cta-box {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-cta-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.affiliate-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
    gap: 2.5rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-strip, .blog-strip, .testimonial-section { padding: 3rem 1.25rem; }

  .service-full-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sfcard-includes { align-items: center; }

  .page-hero, .services-full, .blog-page, .article-hero, .article-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer { flex-direction: column; text-align: center; }
}
