*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1C3D2E;
  --forest-mid: #254D3A;
  --cream: #FDF8F0;
  --amber: #E8A830;
  --amber-dark: #C48A18;
  --sage: #7BAE8E;
  --sage-light: #D4EAD9;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --white: #FFFFFF;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(28, 61, 46, 0.92);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--amber); color: var(--forest) !important;
  padding: 9px 20px; border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; }

/* ── HERO ── */
.hero {
  background: var(--forest);
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
#paw-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.12;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,174,142,0.2);
  border: 1px solid rgba(123,174,142,0.4);
  color: var(--sage);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700; line-height: 1.05;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--amber); font-weight: 300; }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.6;
  margin-bottom: 44px;
}
.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 64px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber); color: var(--forest);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 700; font-size: 16px;
  text-decoration: none; transition: transform 0.15s, background 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 15px 32px; border-radius: 10px;
  font-weight: 600; font-size: 16px;
  text-decoration: none; transition: background 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── PHONE MOCKUP ── */
.hero-mockup { position: relative; width: 100%; max-width: 340px; }
.phone-frame {
  background: #0A0A0A; border-radius: 44px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-screen {
  background: var(--cream); border-radius: 34px;
  overflow: hidden; aspect-ratio: 9/19;
  display: flex; flex-direction: column;
}
.phone-status {
  background: var(--forest); padding: 14px 20px 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-status-text { color: var(--white); font-size: 11px; font-weight: 600; }
.phone-notch { width: 80px; height: 6px; background: #0A0A0A; border-radius: 3px; margin: 0 auto; }
.phone-body { flex: 1; padding: 16px; background: #FFFBF5; }
.phone-greeting { font-size: 13px; color: #5A5A5A; margin-bottom: 4px; }
.phone-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.phone-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.phone-stat { background: white; border-radius: 10px; padding: 10px 12px; border: 1.5px solid #EEE; }
.phone-stat-num { font-size: 20px; font-weight: 800; color: var(--forest); }
.phone-stat-label { font-size: 10px; color: #888; margin-top: 2px; }
.phone-card { background: white; border-radius: 10px; padding: 12px; border: 1.5px solid #EEE; margin-bottom: 8px; }
.phone-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.phone-card-name { font-size: 13px; font-weight: 700; color: var(--text); }
.phone-card-sub { font-size: 11px; color: #888; margin-top: 2px; }
.phone-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; background: #FFF3D4; color: #C48A18; }
.phone-badge.sage { background: #D4EAD9; color: #2D6B4A; }
.phone-tabs { display: flex; border-top: 1px solid #EEE; padding: 10px 0 4px; }
.phone-tab { flex: 1; text-align: center; font-size: 9px; color: #AAA; font-weight: 600; }
.phone-tab.active { color: var(--forest); }

/* ── SHARED SECTION ── */
section { padding: 96px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; line-height: 1.1;
  color: var(--text); margin-bottom: 16px;
}
.section-sub { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 560px; }

/* ── FEATURES ── */
.features { background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 56px;
}
.feature-card {
  background: var(--cream); border: 1.5px solid #E8E0D4;
  border-radius: var(--radius); padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(28,61,46,0.08); }
.feature-icon {
  width: 48px; height: 48px; background: var(--forest);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
}
.feature-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.feature-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how { background: var(--cream); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-top: 56px;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: var(--forest); color: var(--amber);
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-title { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── DUAL ROLE ── */
.dual { background: var(--forest); color: var(--white); }
.dual .section-title { color: var(--white); }
.dual .section-sub { color: rgba(255,255,255,0.65); }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.dual-card { border-radius: var(--radius); padding: 36px; border: 1.5px solid rgba(255,255,255,0.12); }
.dual-card.provider { background: var(--forest-mid); }
.dual-card.client { background: rgba(123,174,142,0.15); }
.dual-card-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.dual-card.provider .dual-card-label { color: var(--amber); }
.dual-card.client .dual-card-label { color: var(--sage); }
.dual-card h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.dual-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dual-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.dual-list li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.dual-card.client .dual-list li::before { color: var(--sage); }

/* ── PRICING ── */
.pricing { background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 56px; align-items: start;
}
.pricing-card { border-radius: var(--radius); padding: 36px; border: 1.5px solid #E8E0D4; background: var(--cream); position: relative; }
.pricing-card.featured { background: var(--forest); border-color: var(--forest); color: var(--white); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--forest);
  font-size: 12px; font-weight: 700; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.pricing-price { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.pricing-card.featured .pricing-price { color: var(--amber); }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--text-muted); }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.8); }
.pricing-list li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pricing-btn { display: block; text-align: center; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none; transition: 0.15s; }
.pricing-btn.outline { border: 2px solid var(--forest); color: var(--forest); }
.pricing-btn.outline:hover { background: var(--forest); color: var(--white); }
.pricing-btn.solid { background: var(--amber); color: var(--forest); }
.pricing-btn.solid:hover { background: var(--amber-dark); }
.pricing-btn.ghost { border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.pricing-btn.ghost:hover { background: rgba(255,255,255,0.1); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--amber); padding: 80px 24px; text-align: center; }
.cta-banner h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--forest); margin-bottom: 12px; }
.cta-banner p { font-size: 18px; color: rgba(28,61,46,0.75); margin-bottom: 36px; }
.cta-banner .btn-primary { background: var(--forest); color: var(--white); }
.cta-banner .btn-primary:hover { background: #142D21; }

/* ── FOOTER ── */
footer { background: var(--forest); padding: 56px 24px 32px; color: rgba(255,255,255,0.6); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 240px; }
.footer-links h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-buttons { animation: fadeUp 0.6s 0.3s ease both; }
.hero-mockup { animation: fadeUp 0.8s 0.4s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .dual-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; }
  section { padding: 72px 20px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}