/* Aman Care — professional marketing site */
:root {
  --teal: #0B4F4A;
  --teal-deep: #083B37;
  --cream: #FAF6EE;
  --cream-dark: #F1EAD9;
  --gold: #F5B942;
  --gold-deep: #C98A1B;
  --ink: #1E2A28;
  --muted: #5C6B68;
  --card: #FFFFFF;
  --radius: 18px;
  --shadow: 0 12px 32px rgba(11, 79, 74, 0.10);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

sup { font-size: 0.55em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 79, 74, 0.10);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 14px 22px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--teal); }
@media (max-width: 640px) { .nav-links { display: none; } .nav-inner .btn { margin-left: auto; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 999px; border: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(11, 79, 74, 0.25); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-ghost:hover { background: rgba(11, 79, 74, 0.07); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ---------- Layout ---------- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 720px; }
.section { padding: 84px 0; }
.section.alt { background: var(--card); border-top: 1px solid rgba(11, 79, 74, 0.08); border-bottom: 1px solid rgba(11, 79, 74, 0.08); }
.center { text-align: center; }
.sub { color: var(--muted); font-size: 1.08rem; margin-top: 10px; }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.015em; line-height: 1.18; }
h2 { font-size: 2.1rem; margin-bottom: 18px; }
.section p + p { margin-top: 14px; }
.section .wrap > p { font-size: 1.08rem; color: #33403d; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -60px, rgba(245, 185, 66, 0.22), transparent 60%),
    radial-gradient(760px 460px at 8% 10%, rgba(11, 79, 74, 0.12), transparent 60%),
    var(--cream);
  padding: 96px 0 88px;
}
.hero-inner { max-width: 780px; margin: 0 auto; padding: 0 22px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: rgba(11, 79, 74, 0.08);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 600; margin-bottom: 22px; }
.lede { font-size: 1.22rem; color: #33403d; max-width: 620px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.langs { color: var(--muted); font-size: 0.98rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--cream); border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(11, 79, 74, 0.08);
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Voice cards ---------- */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 760px) { .voice-grid { grid-template-columns: 1fr; } }
.voice-card {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(11, 79, 74, 0.08);
  display: flex; flex-direction: column; gap: 16px;
}
.voice-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.voice-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.voice-card h3 { font-size: 1.45rem; }
.transcript { color: #33403d; font-size: 1.02rem; font-style: italic; }
.play-btn {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 50%;
  background: var(--teal); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 79, 74, 0.28);
  transition: transform 0.12s ease, background 0.12s ease;
}
.play-btn:hover { background: var(--teal-deep); transform: scale(1.05); }
.play-btn .icon-pause { display: none; }
.play-btn.playing .icon-play { display: none; }
.play-btn.playing .icon-pause { display: block; }
.play-btn.playing { background: var(--gold-deep); }
.voice-card.coming-soon { opacity: 0.92; background: var(--cream); }
.soon-badge {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 700; color: var(--teal-deep);
  background: rgba(245, 185, 66, 0.35); border: 1px solid rgba(201, 138, 27, 0.4);
  padding: 8px 14px; border-radius: 999px; white-space: nowrap;
}
.soon-note { font-size: 0.88rem; color: var(--muted); }

/* ---------- Form ---------- */
.early-form { margin-top: 40px; background: var(--card); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 1px solid rgba(11, 79, 74, 0.08); }
@media (max-width: 560px) { .early-form { padding: 26px 20px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.early-form label { display: block; font-weight: 600; font-size: 0.92rem; }
.early-form label .opt { font-weight: 400; color: var(--muted); }
.early-form input {
  display: block; width: 100%; margin-top: 8px;
  padding: 13px 16px; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid rgba(11, 79, 74, 0.22); border-radius: 12px; background: #fff; color: var(--ink);
}
.early-form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11, 79, 74, 0.12); }
.early-form .btn-block { margin-top: 8px; }
.form-note { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-deep); color: #EDE6D4; padding: 56px 0; }
.footer-inner { text-align: center; }
.footer-brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.footer-tag { color: var(--gold); font-size: 1.02rem; margin-bottom: 18px; }
.footer-copy { font-size: 0.86rem; color: rgba(237, 230, 212, 0.65); }
