@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand: #16a34a;
  --brand-dark: #15803d;
  --brand-mid: #4ade80;
  --brand-light: #f0fdf4;
  --brand-xlight: #f7fef9;
  --accent: #f59e0b;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --text: #0f172a;
  --text2: #334155;
  --text3: #64748b;
  --border: rgba(22,163,74,0.12);
  --border2: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  height: 68px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 0;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: 40px; }
.logo-mark {
  width: 38px; height: 38px; background: var(--brand); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(22,163,74,0.35);
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-text span { color: var(--brand); }
.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  padding: 8px 14px; border-radius: 8px; transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: var(--brand-light); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-login {
  font-size: 13.5px; font-weight: 600; color: var(--text2);
  padding: 8px 18px; border-radius: 8px;
  border: 1.5px solid var(--border2); background: transparent; cursor: pointer;
  transition: all 0.15s;
}
.btn-login:hover { border-color: var(--brand); color: var(--brand); }
.btn-nav-cta {
  font-size: 13.5px; font-weight: 700; color: white;
  padding: 9px 20px; border-radius: 8px;
  background: var(--brand); border: none; cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 2px 8px rgba(22,163,74,0.30);
}
.btn-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ─── ANNOUNCEMENT BAR ───────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
  color: white; text-align: center;
  padding: 10px 16px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announce-bar a { color: white; text-decoration: underline; opacity: 0.9; }
.announce-bar a:hover { opacity: 1; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: 96px 32px 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a2f 50%, #052e16 100%);
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(22,163,74,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(74,222,128,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 80px; position: relative; z-index: 1; }
.hero-content { flex: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,0.15); color: #4ade80;
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px;
  border: 1px solid rgba(74,222,128,0.25); margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.hero-badge-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

h1.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 800; line-height: 1.08;
  letter-spacing: -2px; margin-bottom: 24px; color: white;
}
h1.hero-title em { color: #4ade80; font-style: normal; }
h1.hero-title strong { color: #4ade80; }

.hero-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 520px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.btn-hero-primary {
  font-size: 15px; font-weight: 700; color: white;
  padding: 15px 32px; border-radius: 10px;
  background: var(--brand); border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(22,163,74,0.40);
}
.btn-hero-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,0.45); }
.btn-hero-secondary {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85);
  padding: 15px 28px; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); cursor: pointer;
  transition: all 0.2s; backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

.hero-trust { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 800; color: white; line-height: 1; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Hero Visual */
.hero-visual { flex: 0 0 460px; position: relative; }
.hero-card-main {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hc-header {
  background: rgba(22,163,74,0.9); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.hc-title { font-size: 13px; font-weight: 700; color: white; }
.hc-dots { display: flex; gap: 5px; }
.hc-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.hc-dots span:first-child { background: rgba(255,255,255,0.8); }
.hc-body { padding: 18px; }
.hc-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.hc-metric {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 12px 10px; text-align: center;
}
.hc-metric-val { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: #4ade80; }
.hc-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hc-section-lbl { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.hc-pipe { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hc-pipe-name { font-size: 11px; color: rgba(255,255,255,0.6); width: 80px; flex-shrink: 0; }
.hc-pipe-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.hc-pipe-fill { height: 100%; background: linear-gradient(90deg, #16a34a, #4ade80); border-radius: 3px; }
.hc-pipe-num { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); width: 24px; text-align: right; }

.hero-float-card {
  position: absolute; bottom: -20px; left: -30px;
  background: white; border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.hfc-icon { width: 36px; height: 36px; background: #f0fdf4; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hfc-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.hfc-text span { font-size: 11px; color: var(--text3); }

.hero-float-card2 {
  position: absolute; top: 20px; right: -20px;
  background: white; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: float 3.5s ease-in-out infinite 0.5s;
}
.hfc2-label { font-size: 10px; color: var(--text3); margin-bottom: 4px; }
.hfc2-val { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; color: var(--brand); }
.hfc2-sub { font-size: 11px; color: var(--text3); }

/* ─── LOGOS BAR ────────────────────────────────────── */
.logos-bar {
  padding: 32px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border2);
  border-top: 1px solid var(--border2);
}
.logos-bar-inner { max-width: 1200px; margin: 0 auto; }
.logos-label { font-size: 11px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 20px; }
.logos-row { display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-chip { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: #94a3b8; letter-spacing: -0.3px; transition: color 0.2s; }
.logo-chip:hover { color: var(--brand); }

/* ─── SECTION GENERIC ─────────────────────────────── */
.section { padding: 88px 32px; }
.section.bg-light { background: var(--bg); }
.section.bg-dark { background: #0f172a; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-label.white { color: #4ade80; }
.section-title { font-family: 'Outfit', sans-serif; font-size: 38px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
.section-title.white { color: white; }
.section-desc { font-size: 16px; color: var(--text3); line-height: 1.75; max-width: 560px; margin-bottom: 52px; }
.section-desc.white { color: rgba(255,255,255,0.6); }

/* ─── CARDS GRIDS ─────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg);
  padding: 28px; transition: all 0.2s;
}
.card:hover { border-color: rgba(22,163,74,0.4); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 50px; height: 50px; background: var(--brand-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--brand); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-desc { font-size: 13.5px; color: var(--text3); line-height: 1.65; }

/* ─── FEATURES TEASER ────────────────────────────── */
.features-teaser { display: grid; grid-template-columns: repeat(2,1fr); gap: 64px; align-items: center; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border2); }
.feature-list li:last-child { border-bottom: none; }
.fl-icon { width: 40px; height: 40px; background: var(--brand-light); border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.fl-icon svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fl-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.fl-text span { font-size: 13px; color: var(--text3); line-height: 1.55; }

.feature-screenshot {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(22,163,74,0.15);
  border-radius: var(--radius-xl); padding: 28px; min-height: 400px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-md);
}
.fs-header { font-size: 11px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.fs-row {
  background: white; border: 1px solid var(--border2); border-radius: 12px;
  padding: 14px; display: flex; align-items: center; gap: 12px;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.fs-row:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.fs-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.fs-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.fs-info span { font-size: 11px; color: var(--text3); }
.fs-badge { margin-left: auto; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.badge-green { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.badge-orange { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.badge-blue { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.badge-gray { background: var(--bg2); color: var(--text3); border: 1px solid var(--border2); }

/* ─── PIPELINE STEPS ──────────────────────────────── */
.steps-row { display: flex; align-items: flex-start; position: relative; margin-top: 48px; }
.steps-row::before {
  content: ''; position: absolute; top: 21px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(90deg, var(--brand-light), var(--brand), var(--brand-light));
}
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--brand); background: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 800; color: var(--brand);
  margin-bottom: 14px; box-shadow: 0 0 0 4px var(--brand-light);
}
.step-num.done { background: var(--brand); color: white; box-shadow: 0 0 0 4px rgba(22,163,74,0.15); }
.step-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.step-hint { font-size: 12px; color: var(--text3); line-height: 1.5; padding: 0 8px; }

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg);
  padding: 28px; transition: all 0.2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(22,163,74,0.25); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--accent); font-size: 15px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--brand); }
.testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text3); }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card {
  background: white; border: 1.5px solid var(--border2);
  border-radius: var(--radius-xl); padding: 34px; position: relative;
  transition: all 0.2s;
}
.p-card:hover { box-shadow: var(--shadow-md); }
.p-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.08), var(--shadow-lg);
}
.p-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: white; font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap;
  text-transform: uppercase;
}
.p-tier { font-size: 12px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.p-price { font-family: 'Outfit', sans-serif; font-size: 46px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.p-price sup { font-size: 22px; vertical-align: super; font-weight: 700; }
.p-period { font-size: 13px; color: var(--text3); margin-bottom: 24px; }
.p-divider { height: 1px; background: var(--border2); margin-bottom: 20px; }
.p-features { list-style: none; margin-bottom: 28px; }
.p-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.p-features li:last-child { border-bottom: none; }
.pf-check { flex-shrink: 0; margin-top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--brand-light); display: flex; align-items: center; justify-content: center; }
.pf-check svg { width: 10px; height: 10px; stroke: var(--brand); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.pf-x { flex-shrink: 0; margin-top: 1px; width: 18px; height: 18px; border-radius: 50%; background: #fef2f2; display: flex; align-items: center; justify-content: center; }
.pf-x svg { width: 10px; height: 10px; stroke: #ef4444; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.p-btn {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border: 1.5px solid var(--brand); color: var(--brand); background: transparent;
  transition: all 0.2s;
}
.p-btn:hover { background: var(--brand-light); }
.p-btn.featured-btn { background: var(--brand); color: white; border-color: var(--brand); box-shadow: 0 4px 14px rgba(22,163,74,0.30); }
.p-btn.featured-btn:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0f172a 0%, #052e16 100%);
  padding: 88px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.15) 0%, transparent 70%);
}
.cta-band h2 { font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; position: relative; }
.btn-white { font-size: 15px; font-weight: 700; color: var(--brand); padding: 15px 36px; border-radius: 10px; background: white; border: none; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.2s; position: relative; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-white-outline { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); padding: 15px 30px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; cursor: pointer; transition: all 0.2s; margin-left: 14px; position: relative; }
.btn-white-outline:hover { background: rgba(255,255,255,0.08); }

/* ─── FOOTER ─────────────────────────────────────── */
footer { background: #0a0f1a; color: #64748b; padding: 64px 32px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-text { color: white; }
.footer-tagline { font-size: 13.5px; color: #475569; line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: #475569; transition: color 0.15s; }
.footer-col ul li a:hover { color: #4ade80; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: #334155; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: #334155; transition: color 0.15s; }
.footer-legal a:hover { color: #4ade80; }

/* ─── MISC UTILITIES ─────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 7px; background: var(--brand-light); color: var(--brand); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(22,163,74,0.2); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.8px; }
.badge-dot { width: 7px; height: 7px; background: var(--brand); border-radius: 50%; animation: pulse 2s infinite; }
.tag { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.tag-gray { background: var(--bg2); color: var(--text3); }
.btn-primary { font-size: 15px; font-weight: 700; color: white; padding: 14px 30px; border-radius: 10px; background: var(--brand); border: none; cursor: pointer; transition: all 0.2s; box-shadow: 0 4px 14px rgba(22,163,74,0.30); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-secondary { font-size: 15px; font-weight: 600; color: var(--brand); padding: 14px 28px; border-radius: 10px; border: 1.5px solid rgba(22,163,74,0.35); background: transparent; cursor: pointer; transition: all 0.2s; }
.btn-secondary:hover { background: var(--brand-light); }
.highlight-row { display: flex; align-items: center; gap: 64px; }
.highlight-row .hl-text { flex: 1; }
.highlight-row .hl-visual { flex: 0 0 440px; }
.hl-img-mock { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid rgba(22,163,74,0.12); border-radius: var(--radius-xl); min-height: 300px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.hl-reverse { flex-direction: row-reverse; }
.faq-item { border-bottom: 1px solid var(--border2); padding: 20px 0; }
.faq-q { font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; gap: 12px; }
.faq-a { font-size: 14px; color: var(--text3); margin-top: 12px; line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-arrow { transition: transform 0.2s; font-size: 16px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form { background: white; border: 1px solid var(--border2); border-radius: var(--radius-xl); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border2); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--text); transition: border-color 0.15s; background: white; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.page-tabs { display: flex; gap: 4px; background: var(--bg); padding: 6px; border-radius: 12px; width: fit-content; margin-bottom: 40px; }
.page-tab { font-size: 13.5px; font-weight: 600; color: var(--text3); padding: 9px 20px; border-radius: 9px; cursor: pointer; transition: all 0.15s; }
.page-tab.active { background: white; color: var(--text); box-shadow: var(--shadow-sm); }
.page-hero { padding: 72px 32px 60px; background: linear-gradient(145deg, #f0fdf4 0%, #fafffe 100%); border-bottom: 1px solid var(--border2); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--text3); margin-bottom: 20px; }
.breadcrumb a { color: var(--brand); }
.page-hero h1 { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text3); max-width: 560px; line-height: 1.7; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.stat-val { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand); }
.stat-lbl { font-size: 13px; color: var(--text3); margin-top: 4px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; text-align: center; transition: all 0.2s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-avatar { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; }
.team-name { font-size: 15px; font-weight: 700; color: var(--text); padding: 12px 12px 2px; }
.team-role { font-size: 12px; color: var(--text3); padding: 0 12px 14px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { text-align: left; padding: 14px 16px; border-bottom: 2px solid var(--border2); font-size: 12px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; }
.compare-table th.featured { color: var(--brand); }
.compare-table td { padding: 13px 16px; border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--text2); vertical-align: middle; }
.compare-table tr:hover td { background: var(--brand-xlight); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.chk { color: var(--brand); font-weight: 700; }
.no { color: #c9d0d0; }
.int-card { background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; transition: all 0.2s; }
.int-card:hover { border-color: rgba(22,163,74,0.35); box-shadow: var(--shadow-sm); }
.int-logo { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: -0.3px; }
.int-name { font-size: 13px; font-weight: 600; color: var(--text2); }
.int-category { font-size: 11px; color: var(--text3); }
.save-badge { background: #fffbeb; color: #d97706; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #fde68a; }
.mt-4{margin-top:16px} .mt-6{margin-top:24px} .mt-8{margin-top:32px} .mb-6{margin-bottom:24px}
.text-center{text-align:center} .text-center .section-desc{margin:0 auto 52px}

/* ═══ RESPONSIVE ═══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-visual { flex: unset; width: 100%; max-width: 500px; }
  .hero-float-card, .hero-float-card2 { display: none; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .highlight-row { flex-direction: column !important; gap: 32px; }
  .highlight-row .hl-visual { flex: unset; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { flex-wrap: wrap; gap: 20px; }
  .steps-row::before { display: none; }
  .step { flex: 0 0 calc(33% - 14px); }
  .features-teaser { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .navbar { height: 58px; }
  .nav-inner { padding: 0 16px; }
  .logo-text { font-size: 17px; }
  .btn-login { display: none; }
  .btn-nav-cta { font-size: 12px; padding: 7px 14px; }
  .hero { padding: 48px 16px 40px; }
  h1.hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .trust-num { font-size: 24px; }
  .section { padding: 56px 16px; }
  .section-title { font-size: 28px; }
  .section-desc { font-size: 14px; margin-bottom: 32px; }
  .logos-bar { padding: 20px 16px; }
  .logos-row { gap: 24px; }
  .cards-3, .cards-4, .cards-2 { grid-template-columns: 1fr; gap: 14px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 28px; }
  .btn-white, .btn-white-outline { width: 100%; display: block; margin: 0 0 10px 0 !important; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 40px 16px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 16px 32px; }
  .page-hero h1 { font-size: 30px; }
  .steps-row { flex-direction: column; gap: 14px; align-items: flex-start; padding-left: 16px; }
  .step { flex-direction: row; text-align: left; gap: 14px; align-items: flex-start; width: 100%; }
  .step-num { margin: 0; flex-shrink: 0; }
  .int-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: 8px; border: none; background: transparent; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) { .hamburger { display: flex; } }
.mobile-nav { display: none; position: fixed; top: 58px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border2); z-index: 998; padding: 16px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 600; color: var(--text2); padding: 12px 16px; border-radius: 10px; display: block; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--brand-light); color: var(--brand); }
.mobile-nav .mobile-nav-cta { margin-top: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-nav .mobile-nav-cta a button { width: 100%; padding: 11px; font-size: 14px; font-weight: 700; border-radius: 8px; cursor: pointer; }
