:root{
  --green:#12b76a;
  --green2:#0ea35d;
  --text:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --alt:#f6faf8;
  --card:#ffffff;
  --border:rgba(15,23,42,.10);
  --shadow:0 18px 50px rgba(2,6,23,.08);
  --radius:18px;
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

.container{
  width:min(var(--container), calc(100% - 36px));
  margin-inline:auto;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand-logo{height:68px; width:auto}

.nav{display:flex; align-items:center; gap:18px}
.nav a{font-weight:600; color:var(--muted)}
.nav a:hover{color:var(--text)}
.nav .btn{color:#fff}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}

.hero{
  padding:52px 0 18px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(18,183,106,.18), transparent 60%),
    radial-gradient(900px 420px at 85% 25%, rgba(18,183,106,.12), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:#fff;
  box-shadow:0 10px 30px rgba(2,6,23,.05);
  font-weight:600;
  font-size:14px;
}
h1{
  margin:16px 0 10px;
  line-height:1.05;
  font-size:48px;
  letter-spacing:-1px;
}
.grad{
  background:linear-gradient(90deg, var(--green), #16a34a);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.brand-green{color:var(--green)}
.sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  margin:0 0 18px;
}
.hero-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:16px 0 18px;
}
.point{
  display:flex; gap:10px; align-items:center;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  font-weight:600;
  box-shadow:0 10px 26px rgba(2,6,23,.05);
}
.point i{color:var(--green)}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:13px 16px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}
.btn-sm{padding:10px 14px; border-radius:14px; font-weight:800}
.btn-primary{
  background:linear-gradient(180deg, var(--green), var(--green2));
  color:#fff;
  box-shadow:0 18px 45px rgba(18,183,106,.22);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-ghost{
  background:#fff;
  border:1px solid var(--border);
  color:var(--text);
}
.btn-ghost:hover{border-color:rgba(18,183,106,.35); transform:translateY(-1px)}
.btn-block{width:100%}

.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.trust-item{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.mock{
  background:linear-gradient(180deg, #ffffff, #f2fbf6);
  border:1px solid rgba(18,183,106,.18);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.mock:after{
  content:"";
  position:absolute; inset:-40% -30%;
  background: radial-gradient(circle at 40% 50%, rgba(18,183,106,.18), transparent 55%);
  transform:rotate(12deg);
}
.mock > *{position:relative; z-index:1}
.mock-top{
  display:flex; align-items:center; gap:12px;
  border-bottom:1px solid var(--border);
  padding-bottom:12px;
}
.mock-icon{height:34px; width:34px}
.mock-title{font-weight:900}
.mock-sub{color:var(--muted); font-size:13px; margin-top:2px}
.live{
  margin-left:auto;
  color:var(--green);
  font-weight:900;
}
.mock-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}
.stat{padding:14px}
.stat-emoji{font-size:22px}
.stat-num{font-weight:900; margin-top:8px}
.stat-label{color:var(--muted); font-weight:600; font-size:13px; margin-top:4px}

.mock-foot{
  margin-top:12px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  color:var(--muted);
  font-size:13px;
}
.chip i{color:var(--green)}

.section{padding:64px 0}
.section.alt{background:var(--alt)}
.section-head{text-align:center; max-width:840px; margin:0 auto 26px}
.section-head h2{margin:0 0 10px; font-size:34px; letter-spacing:-.6px}
.section-head p{margin:0; color:var(--muted); line-height:1.7}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.feature{padding:18px}
.feature .icon{
  height:46px; width:46px;
  border-radius:16px;
  display:grid; place-items:center;
  background:rgba(18,183,106,.10);
  border:1px solid rgba(18,183,106,.18);
  color:var(--green);
  margin-bottom:12px;
  font-size:18px;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0; color:var(--muted); line-height:1.7}

.banner{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(18,183,106,.18);
  background:linear-gradient(90deg, rgba(18,183,106,.10), rgba(255,255,255,.9));
}
.banner h3{margin:0 0 6px}
.banner p{margin:0; color:var(--muted)}

.list{padding:18px}
.list h3{margin:0 0 8px}
.list ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.list li{margin:4px 0}

.steps{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.step{
  padding:16px;
  border-radius:22px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:0 12px 26px rgba(2,6,23,.05);
}
.step-no{
  height:34px; width:34px;
  border-radius:12px;
  background:rgba(18,183,106,.12);
  border:1px solid rgba(18,183,106,.20);
  color:var(--green);
  display:grid; place-items:center;
  font-weight:900;
}
.step h4{margin:10px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.6}

.pricing{display:grid; place-items:center}
.price-card{
  width:min(520px, 100%);
  padding:22px;
  border-radius:26px;
  border:1px solid rgba(18,183,106,.22);
  background:linear-gradient(180deg, #fff, #f3fbf7);
  box-shadow:0 24px 70px rgba(2,6,23,.10);
  position:relative;
}
.price-badge{
  position:absolute; top:14px; right:14px;
  background:rgba(18,183,106,.12);
  color:var(--green);
  border:1px solid rgba(18,183,106,.22);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}
.price{
  display:flex; align-items:baseline; gap:8px;
  margin:10px 0 6px;
}
.currency{font-size:18px; font-weight:900}
.amount{font-size:46px; font-weight:900; letter-spacing:-1px}
.period{color:var(--muted); font-weight:800}
.trial{
  color:var(--text);
  font-weight:800;
  margin:10px 0 14px;
}
.price-list{list-style:none; padding:0; margin:0; color:var(--muted); line-height:2}
.price-list i{color:var(--green); margin-right:8px}
.price-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.small-note{margin-top:14px; color:var(--muted); font-weight:700}

.faq{max-width:860px; margin:0 auto}
details{
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px 16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(2,6,23,.04);
  margin-bottom:12px;
}
summary{cursor:pointer; font-weight:900}
details p{color:var(--muted); line-height:1.7; margin:10px 0 0}

.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:16px;
  align-items:start;
}
.contact-card{padding:18px}
.contact-line{margin:10px 0; color:var(--muted); font-weight:800}
.contact-line i{color:var(--green); margin-right:8px}
.mini{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.mini-item{
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
.form-card{padding:18px}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:12px}
label{font-weight:900; font-size:13px}
input, select, textarea{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 12px;
  font:inherit;
  outline:none;
  background:#fff;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(18,183,106,.55);
  box-shadow:0 0 0 4px rgba(18,183,106,.12);
}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.tiny{margin:10px 0 0; color:var(--muted); font-size:12px; line-height:1.5}

.footer{
  padding:22px 0;
  border-top:1px solid var(--border);
  background:#fff;
}
.foot{
  display:flex; justify-content:space-between; gap:12px;
  color:var(--muted); font-weight:700;
}
.foot a{color:var(--green); font-weight:900}

/* Responsive */
@media (max-width: 980px){
  h1{font-size:40px}
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  h1{font-size:34px}
  .hero-points{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    left:0; right:0;
    top:62px;
    display:none;
    flex-direction:column;
    background:#fff;
    border-bottom:1px solid var(--border);
    padding:14px 18px;
    gap:12px;
  }
  .nav.show{display:flex}
}
