:root{
  --green:#22c55e;
  --green-dark:#16a34a;
  --green-soft:#dcfce7;
  --text:#111827;
  --muted:#4b5563;
  --muted-2:#6b7280;
  --border:#e5e7eb;
  --bg:#ffffff;
  --bg-soft:#f9fafb;
  --bg-dark:#111827;
  --shadow:0 10px 30px rgba(17,24,39,.08);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Sora',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.65;
}
h1,h2,h3,h4,h5,h6{
  margin:0 0 .75rem;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.15;
}
p{margin:0 0 1rem}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{
  width:min(1200px,calc(100% - 2rem));
  margin:0 auto;
}
.nav{
  position:sticky; top:0; z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1rem 0;
}
.brand{display:flex;align-items:center;gap:.75rem;font-weight:700}

.brand-logo{display:flex;align-items:center;gap:.85rem;font-weight:700}
.brand-logo img{height:42px;width:auto;display:block}
.brand-logo span{font-weight:700}
.brand.compact img{height:38px}
.brand-badge{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#fff;font-weight:800;
}
.nav-links{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap}
.nav-links a{color:var(--muted);font-weight:600}
.nav-links a:hover{color:var(--green-dark)}
.nav-links a.btn-primary{color:#fff}
.nav-links a.btn-primary:hover{color:#fff}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border-radius:16px; padding:.95rem 1.25rem; font-weight:700;
  border:2px solid transparent; transition:.2s ease; cursor:pointer;
}
.btn-primary{background:var(--green-dark); color:#fff}
.btn-primary:hover{filter:brightness(.96)}
.btn-outline{background:#fff; color:var(--green-dark); border-color:var(--green-dark)}
.btn-outline:hover{background:#f0fdf4}
.hero{
  position:relative;
  background:linear-gradient(135deg,#f0fdf4 0%,#ffffff 60%);
  padding:5rem 0 5.5rem;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:3rem; align-items:center;
}
.badge{
  display:inline-block;
  padding:.5rem .9rem;
  border-radius:999px;
  background:var(--green-soft);
  color:#166534;
  font-size:.92rem;
  font-weight:700;
  margin-bottom:1rem;
}
.hero h1{font-size:clamp(2.5rem,6vw,4.25rem);margin-bottom:1rem}
.hero p.lead{font-size:1.18rem;color:var(--muted);max-width:62ch}
.hero-visual{
  min-height:420px; border-radius:32px; display:grid; place-items:center;
  background:linear-gradient(135deg,#dcfce7,#f0fdf4);
}
.hero-circle{
  width:210px;height:210px;border-radius:999px;background:#fff;display:grid;place-items:center;
  box-shadow:var(--shadow);
}
.hero-circle-inner{
  width:130px;height:130px;border-radius:999px;background:linear-gradient(135deg,#4ade80,#16a34a);
  display:grid;place-items:center;color:#fff;font-size:4rem;
}
.section{padding:5rem 0}
.section-soft{background:var(--bg-soft)}
.section-dark{
  background:linear-gradient(90deg,#16a34a,#15803d);
  color:#fff;
}
.center{text-align:center}
.section h2{font-size:clamp(2rem,4vw,3.2rem)}
.subhead{
  color:var(--muted);
  font-size:1.1rem;
  max-width:760px;
  margin:0 auto 0;
}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.75rem}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1.25rem}
.card{
  background:#fff; border:1px solid rgba(17,24,39,.04);
  border-radius:var(--radius); padding:2rem; box-shadow:var(--shadow);
}
.card.soft{background:#fff}
.card.feature:hover,.card.product:hover,.card.price:hover{transform:translateY(-2px)}
.card.product{border:2px solid transparent; transition:.2s ease}
.card.product:hover,.card.price:hover{border-color:var(--green)}
.card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem}
.icon-box{
  width:48px;height:48px;border-radius:14px;background:var(--green-soft);display:grid;place-items:center;
  font-size:1.5rem;flex:0 0 auto;
}
.checks,.footer-links,.plain-list{list-style:none;padding:0;margin:0}
.checks li{
  display:flex;align-items:flex-start;gap:.75rem;margin:.7rem 0;color:#374151;
}
.check{color:var(--green-dark);font-weight:900}
.arrow-link{color:var(--green-dark);font-weight:700}
.back-link{
  display:inline-flex;align-items:center;gap:.5rem;color:var(--green-dark);font-weight:700;margin-bottom:1.5rem;
}
.highlight-box{
  background:#f0fdf4; border:2px solid #bbf7d0; border-radius:var(--radius); padding:2rem;
}
.price{display:flex;align-items:flex-end;gap:.25rem;margin-bottom:1rem}
.price .value{font:700 clamp(2.2rem,5vw,3rem) 'Poppins',sans-serif;line-height:1}
.price .period{color:var(--muted-2)}
.step-card{position:relative;padding-top:2.5rem}
.step-badge{
  position:absolute;left:1rem;top:-.85rem;width:42px;height:42px;border-radius:999px;
  background:var(--green-dark); color:#fff; display:grid; place-items:center; font-weight:700;
}
.docs-wrap{max-width:900px}
.docs-wrap h1{font-size:clamp(2.4rem,5vw,3.5rem)}
.eyebrow{font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted-2);font-weight:700}
.policy h2{font-size:2rem;margin-top:2.25rem}
.policy p{color:#374151}
.cta-copy{max-width:760px;margin:0 auto 2rem;color:#dcfce7;font-size:1.1rem}
.footer{
  background:var(--bg-dark); color:#d1d5db; padding:3.5rem 0 2rem;
}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr;gap:2rem}
.footer h4{color:#fff;margin-bottom:1rem;font-size:1rem}
.footer a:hover{color:#86efac}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:2rem;padding-top:1.5rem;text-align:center;font-size:.92rem;color:#9ca3af;
}
.muted{color:var(--muted)}
.actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.5rem}
.spacer-xxl{margin-bottom:3rem}
.details{
  background:#f9fafb;border:1px solid var(--border);border-radius:18px;padding:1.25rem 1.35rem;
}
.details summary{cursor:pointer;font-weight:700;color:var(--green-dark)}
.details[open]{background:#fff}
.meta{color:var(--muted-2);font-size:.95rem}
@media (max-width: 960px){
  .hero-grid,.grid-2,.grid-3,.grid-4,.footer-grid{grid-template-columns:1fr}
  .hero-visual{min-height:300px}
  .nav-links{display:none}
}

/* MIA-style pricing cards for product pages */
.pricing-section-wrap .section-header { text-align: center; }
.pricing-section-wrap .highlight-text { color: var(--green-dark); }
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.75rem;
  margin-top:3rem;
}
.pricing-card{
  background:#f9fafb;
  border:1px solid #d1d5db;
  border-radius:18px;
  padding:2rem 1.5rem 1.6rem;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
  transition:all .25s ease;
  display:flex;
  flex-direction:column;
  min-height:330px;
}
.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  border-color:var(--green);
}
.pricing-card.featured{
  border:2px solid var(--green-dark);
}
.pricing-card h3{
  font-size:1.95rem;
  font-weight:700;
  color:#1f2937;
  margin-bottom:1.25rem;
}
.pricing-card .price{
  display:block;
  font-size:3.4rem;
  font-weight:700;
  color:var(--green-dark);
  line-height:1;
  margin-bottom:2rem;
}
.pricing-card .price span{
  font-size:1.1rem;
  font-weight:600;
  color:#6b7280;
  margin-left:.15rem;
}
.pricing-card ul{
  list-style:none;
  padding:0;
  margin:0 0 2rem;
  text-align:left;
  flex:1;
}
.pricing-card ul li{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  margin-bottom:1rem;
  color:#4b5563;
  font-size:1rem;
  line-height:1.45;
}
.pricing-card ul li::before{
  content:"\2713";
  color:var(--green-dark);
  font-weight:700;
  font-size:1rem;
  line-height:1.4;
  flex:0 0 auto;
}
.pricing-card .btn{
  width:100%;
  justify-content:center;
  margin-top:auto;
}
.pricing-features{
  margin-top:2rem;
  text-align:center;
}
.pricing-features h3{
  font-size:1.5rem;
  font-weight:600;
  color:#1f2937;
  margin-bottom:1rem;
}
.pricing-features-list{
  list-style:none;
  padding:0;
  margin:0 auto;
  max-width:25rem;
  text-align:left;
}
.pricing-features-list li{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.75rem;
  color:#4b5563;
  font-size:.95rem;
}
.pricing-features-list li::before{
  content:"\2713";
  color:var(--green-dark);
  font-weight:700;
}
@media (max-width: 1024px){
  .pricing-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 960px){
  .pricing-grid{grid-template-columns:1fr;}
}

.product-thumb{
  margin:1.25rem 0 1.1rem;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#f0fdf4,#dcfce7);
  border:1px solid #d1fae5;
  padding:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:180px;
}
.product-thumb img{
  display:block;
  width:100%;
  max-width:170px;
  height:auto;
  border-radius:18px;
  box-shadow:0 18px 34px rgba(17,24,39,.12);
}
.hero-device{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  padding:2rem;
}
.hero-device img{
  display:block;
  width:min(100%,320px);
  height:auto;
  border-radius:28px;
  box-shadow:0 24px 40px rgba(17,24,39,.16);
}
@media (max-width: 960px){
  .product-thumb{min-height:150px}
  .product-thumb img{max-width:140px}
  .hero-device img{width:min(100%,240px)}
}
