/* ===== STYLE B: CLEAN BUSINESS WHITE ===== */
:root {
  --white:    #ffffff;
  --bg:       #f8fafc;
  --bg-alt:   #f1f5f9;
  --surface:  #ffffff;
  --green:    #16a34a;
  --green-2:  #22c55e;
  --green-3:  #4ade80;
  --green-bg: #f0fdf4;
  --green-bd: #bbf7d0;
  --txt-1:    #0f172a;
  --txt-2:    #334155;
  --txt-3:    #64748b;
  --txt-4:    #94a3b8;
  --bdr:      #e2e8f0;
  --bdr-2:    #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06),0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 16px rgba(15,23,42,0.08),0 2px 6px rgba(15,23,42,0.05);
  --shadow-lg: 0 16px 48px rgba(15,23,42,0.12),0 4px 16px rgba(15,23,42,0.08);
  --shadow-green: 0 4px 20px rgba(22,163,74,0.2);
  --radius:   12px;
  --radius-lg:18px;
  --radius-xl:24px;
}

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

body {
  background: var(--bg);
  color: var(--txt-1);
  font-family: 'Noto Sans SC','PingFang SC','Helvetica Neue',Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── NAV ── */
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-2);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-link:hover  { color: var(--green); background: var(--green-bg); }
.nav-link.active { color: var(--green); background: var(--green-bg); font-weight: 600; }

.mobile-nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-2);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.mobile-nav-link:hover { color: var(--green); background: var(--green-bg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #15803d;
  box-shadow: var(--shadow-green);
  transform: translateY(-1px);
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s;
  letter-spacing: -.01em;
}
.btn-primary-lg:hover {
  background: #15803d;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--white);
  color: var(--txt-1);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--bdr);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-bg);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--txt-1);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--bdr);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}
.btn-outline-lg:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-bg);
  box-shadow: var(--shadow-sm);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: var(--green-bg);
  color: var(--green);
  border: 1.5px solid var(--green-bd);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── SECTION TEXT ── */
.section-title {
  font-size: clamp(28px,4vw,44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--txt-1);
}
.section-subtitle {
  font-size: 17px;
  color: var(--txt-3);
  max-width: 540px;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg,#16a34a,#22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-bd);
  transform: translateY(-3px);
}

.card-feature {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.card-feature:hover {
  box-shadow: var(--shadow);
  border-color: var(--green);
  transform: translateY(-4px);
}

/* ── STAT CARD ── */
.stat-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.stat-card:hover {
  border-color: var(--green-bd);
  box-shadow: var(--shadow);
}

/* ── FEATURE ICON ── */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: var(--green-bg);
  color: var(--green);
  border: 1.5px solid var(--green-bd);
  transition: all .2s;
}
.card-feature:hover .feature-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

/* ── BLOG CARD ── */
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-bd);
  transform: translateY(-5px);
}

/* ── PRICING CARD ── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.pricing-card:not(.featured):hover {
  border-color: var(--green-bd);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.1), var(--shadow);
  transform: scale(1.03);
}

/* ── FOOTER LINKS ── */
.footer-link {
  color: var(--txt-3);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s;
}
.footer-link:hover { color: var(--green); }

/* ── FORM ── */
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius);
  color: var(--txt-1);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input::placeholder { color: var(--txt-4); }
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-2);
  margin-bottom: 6px;
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius);
  color: var(--txt-1);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  resize: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-textarea::placeholder { color: var(--txt-4); }
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

/* ── COUNTRY TAG ── */
.country-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  font-size: 13px;
  color: var(--txt-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: all .15s;
}
.country-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-bg);
}

/* ── TAG PILL ── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  border: 1.5px solid var(--green-bd);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── CHECK ITEM ── */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--green-bg);
  border: 1.5px solid var(--green-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 10px;
  color: var(--green);
}
.check-item span { color: var(--txt-2); font-size: 14px; line-height: 1.6; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 1px;
  background: var(--bdr);
  margin: 0;
}

/* ── HERO SECTION SPECIFIC ── */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-2);
  box-shadow: var(--shadow-sm);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-2);
  flex-shrink: 0;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(34,197,94,0.4); }
  50%      { opacity:.85; box-shadow:0 0 0 5px rgba(34,197,94,0); }
}

/* ── STEP NUMBER ── */
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.03em;
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

/* ── PROSE BLOG ── */
.prose-blog h2 { font-size: 24px; font-weight: 700; color: var(--txt-1); margin: 36px 0 14px; letter-spacing: -.02em; }
.prose-blog h3 { font-size: 19px; font-weight: 600; color: var(--txt-1); margin: 28px 0 10px; }
.prose-blog p  { color: var(--txt-2); line-height: 1.85; margin-bottom: 18px; font-size: 16px; }
.prose-blog ul { list-style: none; padding: 0; margin-bottom: 18px; }
.prose-blog ul li { color: var(--txt-2); line-height: 1.8; padding: 5px 0 5px 22px; position: relative; font-size: 15px; }
.prose-blog ul li::before { content:''; position:absolute; left:0; top:13px; width:7px; height:7px; border-radius:50%; background:var(--green); }
.prose-blog ol { list-style: decimal; padding-left: 22px; margin-bottom: 18px; }
.prose-blog ol li { color: var(--txt-2); line-height: 1.8; font-size: 15px; margin-bottom: 5px; }
.prose-blog strong { color: var(--txt-1); font-weight: 600; }
.prose-blog pre { background: #0f172a; border-radius: var(--radius); padding: 20px; overflow-x: auto; margin: 24px 0; }
.prose-blog code { font-family: 'JetBrains Mono','Fira Code',monospace; font-size: 13px; color: #4ade80; line-height: 1.7; }
.prose-blog em { font-style:normal; display:block; background:var(--green-bg); border-left:3px solid var(--green); border-radius:0 var(--radius) var(--radius) 0; padding:14px 18px; margin:20px 0; color:var(--txt-2); font-size:15px; }

/* ── CTA SECTION ── */
.cta-box {
  background: linear-gradient(135deg,#14532d 0%,#166534 40%,#16a34a 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(255,255,255,0.08),transparent);
  pointer-events:none;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .15s;
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all .15s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bdr-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ── MISC ── */
.sep { width: 40px; height: 3px; background: var(--green); border-radius: 2px; }
