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

:root {
  --primary: #D4849A;
  --primary-light: #F9E8EE;
  --primary-dark: #C06B83;
  --secondary: #89B9A4;
  --secondary-light: #E4F0EA;
  --accent: #F0C27A;
  --accent-light: #FDF3E1;
  --bg: #FDF8F5;
  --surface: #FFFFFF;
  --text: #3D3231;
  --text-secondary: #8A7E7C;
  --text-muted: #BEB5B3;
  --radius: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61, 50, 49, 0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}

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

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--surface);
}

.btn-primary:hover {
  background: #2a2120;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 50, 49, 0.2);
}

.apple-icon {
  width: 20px;
  height: 20px;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

.hero-cta {
  margin-top: 40px;
}

.hero-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Phone Mockup ─────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  background: var(--surface);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 2px 8px rgba(61, 50, 49, 0.06),
    0 12px 40px rgba(61, 50, 49, 0.1),
    inset 0 0 0 1px rgba(61, 50, 49, 0.04);
}

.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  padding: 28px 18px;
  min-height: 460px;
}

.mock-header {
  margin-bottom: 24px;
}

.mock-greeting {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.mock-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-top: 2px;
}

.mock-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(61, 50, 49, 0.05);
}

.mock-photo {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-photo-icon {
  font-size: 36px;
  opacity: 0.7;
}

.mock-caption {
  padding: 14px 16px;
}

.mock-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.mock-badge-alt {
  background: var(--secondary-light);
  color: #5a8e76;
}

.mock-text {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}

/* ── Features ─────────────────────────────────── */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}

.features h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(61, 50, 49, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 50, 49, 0.08);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── CTA Section ──────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(61, 50, 49, 0.08);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 40px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features h2,
  .cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .phone-mockup {
    width: 260px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ── Legal Pages ──────────────────────────────── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page p,
.legal-page ul {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.legal-page a:hover {
  text-decoration: underline;
}
