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

:root {
  --primary: #FA9FAA;
  --primary-light: #fce8eb;
  --accent: #E91E63;
  --bg: #FAF5F0;
  --card-bg: #FAFAFA;
  --text: #242423;
  --text-secondary: #5F6368;
  --border: #E0E0E0;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
}
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.btn-primary { background: var(--primary); color: var(--text); }
.btn-secondary { background: var(--card-bg); color: var(--text); border: 1px solid var(--border); }
.btn svg { width: 20px; height: 20px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--text);
  border-radius: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
}
.phone-notch {
  width: 80px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-bottom: 20px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  width: 100%;
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.phone-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.phone-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.phone-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.phone-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}
.phone-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  width: 65%;
}
.phone-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.phone-chip {
  background: var(--primary-light);
  color: var(--accent);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

/* ── FEATURES ── */
.features {
  background: var(--card-bg);
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.section-header p { color: var(--text-secondary); font-size: 1rem; }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }

/* ── PREMIUM ── */
.premium {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.premium-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.premium-content p { color: var(--text-secondary); margin-bottom: 28px; }
.premium-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.premium-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.premium-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23242423'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.premium-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  text-align: center;
}
.premium-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.premium-card .price-sub { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 28px; margin-top: 4px; }
.premium-card .btn { width: 100%; justify-content: center; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--primary);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  margin-bottom: 12px;
}
.cta-banner p { color: var(--text); opacity: 0.75; margin-bottom: 32px; }
.cta-banner .cta-group { justify-content: center; }
.cta-banner .btn-primary { background: var(--text); color: #fff; }
.cta-banner .btn-secondary { background: transparent; border-color: var(--text); color: var(--text); }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand .nav-logo { color: #fff; font-size: 1.3rem; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; max-width: 260px; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* ── LEGAL PAGES ── */
.legal-hero {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 48px;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}
.legal-hero p { color: var(--text-secondary); font-size: 0.9rem; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul {
  margin: 0 0 16px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content a { color: var(--accent); }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.legal-content th, .legal-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.legal-content th { background: var(--primary-light); font-weight: 600; color: var(--text); }
.legal-content td { color: var(--text-secondary); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero, .premium { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .nav-links { display: none; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 24px; }
}
