:root{
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #f0f3ff;
  --text: #0f172a;
  --muted: #475569;
  --muted-2:#64748b;

  --brand: #16a34a;     /* green */
  --brand-2:#f97316;    /* orange */
  --brand-3:#2563eb;    /* blue */

  --border: rgba(15,23,42,.10);
  --shadow: 0 14px 35px rgba(15,23,42,.10);
  --shadow-soft: 0 10px 24px rgba(15,23,42,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(37,99,235,.14), transparent 55%),
    radial-gradient(900px 520px at 90% 10%, rgba(249,115,22,.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff 70%);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900;
}
.logo{
  width:38px; height:38px;
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(22,163,74,.18), rgba(249,115,22,.20)),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
}
.nav-links{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color:var(--muted);
  font-weight:750;
  font-size:14px;
}
.nav-links a{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav-links a:hover{
  background: rgba(37,99,235,.07);
  border-color: rgba(37,99,235,.15);
  color: var(--text);
}
.cta{display:flex; gap:10px; align-items:center}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-weight:850;
  font-size:14px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-primary{
  border-color: rgba(22,163,74,.25);
  background: linear-gradient(135deg, rgba(22,163,74,.14), rgba(249,115,22,.14));
}
.btn-primary:hover{
  background: linear-gradient(135deg, rgba(22,163,74,.18), rgba(249,115,22,.18));
}

/* HERO */
.hero{padding:56px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid rgba(22,163,74,.22);
  background: rgba(22,163,74,.07);
  border-radius:999px;
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(22,163,74,.14);
}

h1{
  font-size: clamp(32px, 4vw, 50px);
  line-height:1.08;
  margin:14px 0 10px;
  letter-spacing:-.9px;
}
p{color: var(--muted); margin:0 0 14px}

/* CARDS / SECTIONS */
.card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: var(--shadow);
}
.hero-card{padding:26px}
.section{padding:26px 0}
.section h2{
  font-size: clamp(22px, 3vw, 32px);
  margin:0 0 10px;
  letter-spacing:-.5px;
}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 900px){ .grid-3{grid-template-columns:1fr} }

.tile{padding:20px}
.tile h3{margin:0 0 6px; font-size:18px}
.small{font-size:13px; color: var(--muted-2)}
.hr{height:1px; background: var(--border); border:0; margin:18px 0}

.ul{margin:14px 0 0; padding:0 0 0 18px; color: var(--muted)}
.ul li{margin:7px 0}

/* PRICING */
.pricing{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:12px}
@media (max-width: 900px){ .pricing{grid-template-columns:1fr} }
.price-card{padding:20px; position:relative}
.badge{
  font-size:12px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.20);
  background: rgba(37,99,235,.07);
  color: var(--text);
  display:inline-flex;
}
.price{
  font-size:34px;
  font-weight:950;
  letter-spacing:-.8px;
}
.price small{font-size:14px; color: var(--muted-2); font-weight:750}

/* FORMS */
.form{display:grid; gap:10px; margin-top:12px}
.input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
textarea.input{min-height:140px; resize:vertical}
.notice{margin-top:10px; font-size:13px; color: var(--muted-2)}

/* FOOTER */
.footer{
  padding:26px 0 42px;
  border-top:1px solid var(--border);
  margin-top:26px;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.05));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 900px){ .footer-grid{grid-template-columns:1fr} }
.footer a{color: var(--muted-2)}
.footer a:hover{color: var(--text)}
.pill-row{display:flex; flex-wrap:wrap; gap:10px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-size:13px;
}

/* PAGE TITLE */
.page-title{padding:34px 0 6px}
.page-title h1{margin:0 0 8px}

/* CALLOUTS */
.callout{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(249,115,22,.25);
  background: rgba(249,115,22,.08);
  color: var(--muted);
}

/* MEDIA */
.media{
  border-radius:16px;
  border:1px solid var(--border);
  background: var(--surface-2);
  overflow:hidden;
}
.media img{display:block; width:100%; height:auto}

/* SPLIT + QUOTES */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:center;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

.quote{
  padding:20px;
  border-radius:16px;
  border:1px dashed rgba(37,99,235,.25);
  background: rgba(37,99,235,.06);
}
.quote b{display:block; margin-bottom:6px}
.stars{letter-spacing:2px; opacity:.9; margin-bottom:10px}

/* Subtle hover */
.card:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}
