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

:root {
  --bg: #FAF9F6;
  --surface: #FDFCFB;
  --ink: #211F1C;
  --ink-soft: #3A3530;
  --secondary: #5C5752;
  --tertiary: #8A847E;
  --border: rgba(33, 31, 28, 0.1);
  --peach: #E8956E;
  --peach-deep: #D17A4F;
  --peach-bg: #FBEEE2;
  --sage: #7BAE6B;
  --sage-bg: #E8F1E2;
  --lavender: #A387C9;
  --lavender-bg: #ECE4F4;
  --blue: #5BA4C9;
  --blue-bg: #E0EEF5;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(12px) saturate(180%);
}

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

.brand {
  align-items: center;
  display: flex;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  gap: 10px;
}

.brand img {
  border-radius: 8px;
  height: 32px;
  width: 32px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--secondary);
}

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

.button {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--surface);
  display: inline-flex;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  transition: transform 0.15s ease, background 0.2s ease;
}

.button:hover {
  background: #000;
  transform: translateY(-1px);
}

.hero,
.section,
.footer {
  padding-left: 28px;
  padding-right: 28px;
}

.hero {
  padding-bottom: 84px;
  padding-top: 92px;
}

.hero-inner,
.section-inner,
.footer-inner {
  margin: 0 auto;
  max-width: 1160px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: 1.1fr 0.9fr;
}

.eyebrow {
  background: var(--peach-bg);
  border-radius: 999px;
  color: var(--peach-deep);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  padding: 6px 13px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 6vw, 72px);
  margin-bottom: 24px;
}

h1 em,
h2 em {
  color: var(--peach-deep);
  font-style: italic;
}

.lead {
  color: var(--secondary);
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 34px;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.app-note {
  color: var(--tertiary);
  font-size: 14px;
}

.phone {
  background: linear-gradient(150deg, #3a3a3d 0%, #161618 45%, #343437 100%);
  border-radius: 52px;
  box-shadow: 0 30px 80px -24px rgba(33, 31, 28, 0.36);
  margin: 0 auto;
  max-width: 320px;
  padding: 8px;
}

.phone img {
  border-radius: 44px;
  height: auto;
  width: 100%;
}

.section {
  padding-bottom: 88px;
  padding-top: 88px;
}

.section.alt { background: var(--surface); }

.section h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  margin-bottom: 20px;
  max-width: 760px;
}

.section-intro {
  color: var(--secondary);
  font-size: 19px;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card p,
.answer p {
  color: var(--secondary);
  font-size: 16px;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.step {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-template-columns: 42px 1fr;
}

.step span {
  align-items: center;
  background: var(--sage-bg);
  border-radius: 999px;
  color: #4f7e43;
  display: inline-flex;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.step h3 {
  font-size: 25px;
  margin-bottom: 5px;
}

.answer-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.answer {
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.answer h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.related a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
}

.related a:hover { border-color: rgba(33, 31, 28, 0.22); }

.footer {
  border-top: 1px solid var(--border);
  color: var(--tertiary);
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a { color: var(--secondary); }
.footer a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
