/* Svas marketing site — brand: curry-leaf green, turmeric accent, rice-white,
   Fraunces headings + Plus Jakarta Sans body. Matches the app + legal pages. */
:root {
  --green: #2D6A2F; --green-dark: #1F4D21; --green-soft: #EEF5EE;
  --turmeric: #E8A020; --turmeric-deep: #C9871A; --accent-soft: #FBEFD6; --accent-line: #F0D79B;
  --bg: #FAFAF5; --canvas: #F2EFE6; --card: #FFFFFF;
  --text: #3D2B1F; --muted: #6B5A4D; --border: #EAE3D5;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.5px; line-height: 1.1; margin: 0; }
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15.5px; padding: 13px 22px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(45,106,47,.22); }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--green); border-color: rgba(45,106,47,.35); }
.btn-ghost:hover { background: var(--green-soft); }
.btn-light { background: #fff; color: var(--green-dark); box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* Brand mark */
.mark { width: 30px; height: 30px; border-radius: 8px; background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif; font-weight: 600; font-size: 16px; flex: none; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
  padding: 14px 24px; background: rgba(250,250,245,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); }
.brand { display: flex; align-items: center; gap: 9px; color: var(--text); }
.brand b { font-family: "Fraunces", serif; font-size: 20px; }
.nav .links { margin-left: auto; display: flex; gap: 22px; }
.nav .links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav .links a:hover { color: var(--text); }

/* Hero */
.hero { max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 40px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12.5px;
  font-weight: 700; color: var(--turmeric-deep); background: var(--accent-soft);
  border: 1px solid var(--accent-line); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: 50px; font-weight: 600; }
.hero .lede { font-size: 18.5px; color: var(--muted); margin: 18px 0 26px; max-width: 33ch; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.micro { font-size: 13px; color: var(--muted); margin-top: 14px; }
.micro.center { text-align: center; }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art img { width: 300px; border-radius: 30px; box-shadow: 0 30px 70px rgba(61,43,31,.22); }
.glow { position: absolute; inset: -10% 0 0 0; margin: auto; width: 360px; height: 360px;
  background: radial-gradient(circle at 50% 40%, rgba(232,160,32,.30), transparent 62%),
              radial-gradient(circle at 60% 70%, rgba(45,106,47,.22), transparent 60%);
  filter: blur(20px); z-index: 0; }
.hero-art img { position: relative; z-index: 1; }

/* Trust strip */
.trust { max-width: var(--maxw); margin: 8px auto 10px; padding: 22px 24px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  background: var(--green-soft); border: 1px solid rgba(45,106,47,.15); border-radius: 18px; }
.stat { text-align: center; }
.stat b { display: block; font-family: "Fraunces", serif; font-size: 26px; color: var(--green-dark); }
.stat span { font-size: 13px; color: var(--muted); }

/* Sections */
.section { max-width: var(--maxw); margin: 0 auto; padding: 70px 24px; }
.section.alt { max-width: none; background: var(--canvas); }
.section.alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.sec-title { font-size: 34px; font-weight: 600; text-align: center; }
.sec-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 52ch; margin: 14px auto 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 38px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 22px; }
.card .ico { font-size: 28px; }
.card b { display: block; font-family: "Fraunces", serif; font-size: 19px; margin: 12px 0 6px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.step { text-align: left; }
.step .num { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--green); color: #fff; font-family: "Fraunces", serif; font-weight: 600; font-size: 18px; }
.step b { display: block; font-family: "Fraunces", serif; font-size: 19px; margin: 14px 0 6px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,360px)); gap: 20px;
  justify-content: center; margin-top: 40px; align-items: start; }
.plan { position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 26px; }
.plan.featured { border-color: var(--green); box-shadow: 0 16px 40px rgba(45,106,47,.14); }
.badge { position: absolute; top: -12px; left: 26px; background: var(--turmeric); color: #3D2B1F;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.plan-name { font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.price { font-family: "Fraunces", serif; font-size: 42px; font-weight: 600; margin: 8px 0 0; }
.price span { font-size: 17px; color: var(--muted); font-family: "Plus Jakarta Sans", sans-serif; font-weight: 500; }
.price-alt { color: var(--turmeric-deep); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.plan li { padding-left: 26px; position: relative; margin: 9px 0; font-size: 15px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* CTA band */
.cta-band { background: var(--green-dark); color: #fff; text-align: center; padding: 70px 24px; margin-top: 10px; }
.cta-band h2 { font-size: 36px; font-weight: 600; color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 18px; margin: 12px 0 26px; }

/* Footer */
.foot { background: #15321A; color: rgba(255,255,255,.72); padding: 54px 24px 30px; }
.foot-top { max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.foot-brand .mark { background: var(--turmeric); color: #15321A; }
.foot-brand { display: block; }
.foot-brand b { font-family: "Fraunces", serif; font-size: 20px; color: #fff; margin-left: 8px; }
.foot-brand p { margin: 14px 0 0; font-size: 14px; line-height: 1.7; }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col span:first-child { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.foot-col a { color: rgba(255,255,255,.72); font-size: 14px; }
.foot-col a:hover { color: #fff; }
.foot-col .addr { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.foot-bot { max-width: var(--maxw); margin: 36px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; text-align: center; }
  .hero .lede { max-width: none; }
  .cta-row { justify-content: center; }
  .hero-art { order: -1; }
  .hero h1 { font-size: 38px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .plans { grid-template-columns: 1fr; }
  .nav .links { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .foot-top { grid-template-columns: 1fr; }
}
