@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: #0A7C6E;
  --brand-dark: #065f55;
  --brand-mid: #0e9e8d;
  --brand-light: #e8f7f5;
  --brand-xlight: #f3fbfa;
  --accent: #f0a500;
  --white: #ffffff;
  --bg: #f8fafb;
  --bg2: #f1f5f4;
  --text: #0d1b1a;
  --text2: #374748;
  --text3: #6b8080;
  --border: rgba(10,124,110,0.12);
  --border2: #e2e8e8;
  --shadow-sm: 0 1px 3px rgba(10,124,110,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(10,124,110,0.10), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(10,124,110,0.15), 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.96);
  backdrop-filter: blur(12px);
  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(10,124,110,0.30);
  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(10,124,110,0.25);
}
.btn-nav-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding: 88px 32px 72px;
  background: linear-gradient(145deg, #f0faf8 0%, #fafffe 50%, #ffffff 100%);
  border-bottom: 1px solid var(--border2);
  overflow: hidden; position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,124,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 64px; }
.hero-content { flex: 1; }
.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(10,124,110,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; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.2)} }

h1.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 52px; font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text);
}
h1.hero-title em { color: var(--brand); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--text3); line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.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(10,124,110,0.30);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,124,110,0.35); }
.btn-secondary {
  font-size: 15px; font-weight: 600; color: var(--brand);
  padding: 14px 28px; border-radius: 10px;
  border: 1.5px solid rgba(10,124,110,0.35); background: transparent; cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--brand-light); }
.hero-trust { margin-top: 36px; display: flex; gap: 28px; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; color: var(--brand); line-height: 1; }
.trust-label { font-size: 12px; color: var(--text3); margin-top: 3px; }

/* Dashboard preview */
.hero-visual { flex: 0 0 400px; }
.dash-card {
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--border2); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dash-header {
  background: var(--brand); padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-header-title { font-size: 13px; font-weight: 700; color: white; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.dash-dots span:first-child { background: rgba(255,255,255,0.8); }
.dash-body { padding: 16px; }
.dash-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.dm { background: var(--brand-xlight); border: 1px solid rgba(10,124,110,0.10); border-radius: 10px; padding: 11px 10px; }
.dm-val { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--brand); }
.dm-label { font-size: 10px; color: var(--text3); margin-top: 2px; }
.dash-section-title { font-size: 11px; font-weight: 700; color: var(--text2); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.pipe-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pipe-name { font-size: 11px; color: var(--text3); width: 68px; flex-shrink: 0; }
.pipe-track { flex: 1; height: 7px; background: var(--border2); border-radius: 4px; overflow: hidden; }
.pipe-fill { height: 100%; background: var(--brand); border-radius: 4px; }
.pipe-num { font-size: 11px; font-weight: 600; color: var(--text2); width: 22px; text-align: right; }

/* ─── SECTION GENERIC ─────────────────────────────── */
.section { padding: 80px 32px; }
.section.bg-light { background: var(--bg); }
.section.bg-brand { background: var(--brand); }
.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: 10px; }
.section-label.white { color: rgba(255,255,255,0.7); }
.section-title { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 800; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 14px; }
.section-title.white { color: white; }
.section-desc { font-size: 16px; color: var(--text3); line-height: 1.7; max-width: 560px; margin-bottom: 52px; }
.section-desc.white { color: rgba(255,255,255,0.75); }

/* ─── LOGOS BAR ────────────────────────────────────── */
.logos-bar { padding: 28px 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: 1.5px; text-align: center; margin-bottom: 18px; }
.logos-row { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-chip { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #b8c4c4; letter-spacing: -0.3px; }

/* ─── CARDS GRIDS ─────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.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: 26px; transition: all 0.2s;
}
.card:hover { border-color: rgba(10,124,110,0.35); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; background: var(--brand-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.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; }

/* Integration card */
.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(10,124,110,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); }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-toggle { display: flex; align-items: center; gap: 12px; margin-bottom: 44px; }
.toggle-label { font-size: 14px; font-weight: 600; color: var(--text2); }
.toggle-switch {
  width: 44px; height: 24px; background: var(--brand); border-radius: 12px;
  position: relative; cursor: pointer;
}
.toggle-thumb {
  position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: white; border-radius: 50%; transition: left 0.2s;
}
.save-badge {
  background: rgba(240,165,0,0.12); color: #c47f00;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
  border: 1px solid rgba(240,165,0,0.25);
}

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.p-card {
  background: white; border: 1.5px solid var(--border2);
  border-radius: var(--radius-xl); padding: 32px; position: relative;
}
.p-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10,124,110,0.06), var(--shadow-md);
}
.p-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: white; font-size: 11px; font-weight: 800;
  padding: 5px 16px; 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: 44px; 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-features li.muted { color: var(--text3); }
.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 12px rgba(10,124,110,0.25); }
.p-btn.featured-btn:hover { background: var(--brand-dark); }

/* ─── PIPELINE STEPS ──────────────────────────────── */
.steps-row { display: flex; align-items: flex-start; position: relative; margin-top: 40px; }
.steps-row::before {
  content: ''; position: absolute; top: 21px; left: 10%; right: 10%;
  height: 2px; background: var(--border2);
}
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 42px; height: 42px; 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;
}
.step-num.done { background: var(--brand); color: white; }
.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 10px; }

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero { padding: 72px 32px 60px; background: linear-gradient(145deg, #f0faf8 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); }
.breadcrumb span { color: var(--border2); }
.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; }

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: white; border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 26px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--accent); font-size: 14px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 38px; height: 38px; 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); }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band { background: var(--brand); padding: 72px 32px; text-align: center; }
.cta-band h2 { font-family: 'Outfit', sans-serif; font-size: 38px; font-weight: 800; color: white; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.btn-white { font-size: 15px; font-weight: 700; color: var(--brand); padding: 14px 34px; border-radius: 10px; background: white; border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,0.15); transition: all 0.2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-white-outline { font-size: 15px; font-weight: 600; color: white; padding: 14px 30px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: all 0.2s; margin-left: 12px; }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─────────────────────────────────────── */
footer { background: #0a1a18; color: #a0b4b2; padding: 60px 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-mark { background: var(--brand); }
.footer-brand .logo-text { color: white; }
.footer-tagline { font-size: 13.5px; color: #6b8080; line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; 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: #6b8080; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--brand-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: #4a6462; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: #4a6462; }
.footer-legal a:hover { color: var(--brand-mid); }

/* ─── TABLES ─────────────────────────────────────── */
.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; }

/* ─── MISC ────────────────────────────────────────── */
.tag { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.3px; }
.tag-gray { background: var(--bg2); color: var(--text3); }

.highlight-row { display: flex; align-items: center; gap: 48px; }
.highlight-row .hl-text { flex: 1; }
.highlight-row .hl-visual { flex: 0 0 420px; }
.hl-img-mock { background: var(--brand-xlight); border: 1px solid rgba(10,124,110,0.12); border-radius: var(--radius-xl); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.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 */
.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); }

.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; }

.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; }

/* about team */
.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; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 768px (tablet), 480px (mobile)
═══════════════════════════════════════════════════ */

/* ── TABLET (≤ 900px) ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero-inner { flex-direction: column; gap: 36px; padding: 0; }
  .hero-visual { flex: unset; width: 100%; max-width: 480px; }

  .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-left: auto; margin-right: auto; }

  .highlight-row { flex-direction: column !important; gap: 32px; }
  .highlight-row .hl-visual { flex: unset; width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  .contact-grid { grid-template-columns: 1fr; }

  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .int-grid { grid-template-columns: repeat(3, 1fr) !important; }

  .steps-row { flex-wrap: wrap; gap: 20px; }
  .steps-row::before { display: none; }
  .step { flex: 0 0 calc(33% - 14px); }

  .addons-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── MOBILE (≤ 640px) ─────────────────────────────── */
@media (max-width: 640px) {

  /* NAV */
  .navbar { height: 58px; }
  .nav-inner { padding: 0 16px; }
  .logo-text { font-size: 17px; }
  .logo-mark { width: 32px; height: 32px; border-radius: 8px; }
  .logo-mark svg { width: 20px; height: 20px; }
  .logo { margin-right: 0; }
  .btn-login { display: none; }
  .btn-nav-cta { font-size: 12px; padding: 7px 14px; }

  /* HERO */
  .hero { padding: 40px 16px 36px; }
  .hero-inner { gap: 28px; }
  h1.hero-title { font-size: 34px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 13px 20px; font-size: 14px; }
  .hero-trust { gap: 16px; flex-wrap: wrap; }
  .trust-num { font-size: 22px; }
  .hero-visual { max-width: 100%; }

  /* DASHBOARD PREVIEW */
  .dash-card { font-size: 12px; }
  .dm-val { font-size: 16px; }

  /* SECTIONS */
  .section { padding: 48px 16px; }
  .page-hero { padding: 40px 16px 32px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 15px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; margin-bottom: 32px; }

  /* LOGOS BAR */
  .logos-bar { padding: 20px 16px; }
  .logos-row { gap: 20px; }
  .logo-chip { font-size: 13px; }

  /* CARDS */
  .cards-3 { grid-template-columns: 1fr; gap: 14px; }
  .cards-4 { grid-template-columns: 1fr; gap: 14px; }
  .cards-2 { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 20px; }
  .card-icon { width: 40px; height: 40px; }
  .card-title { font-size: 15px; }
  .card-desc { font-size: 13px; }

  /* PRICING */
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .p-card { padding: 24px 20px; }
  .p-price { font-size: 36px; }
  .billing-toggle { gap: 10px; }

  /* COMPARE TABLE */
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 560px; }

  /* PIPELINE STEPS */
  .steps-row { flex-direction: column; gap: 14px; align-items: flex-start; padding-left: 16px; }
  .steps-row::before { display: none; }
  .step { flex-direction: row; text-align: left; gap: 14px; align-items: flex-start; width: 100%; }
  .step-num { margin: 0; flex-shrink: 0; }
  .step-hint { padding: 0; }

  /* INTEGRATIONS */
  .int-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .int-logo { width: 42px; height: 42px; }
  .int-name { font-size: 12px; }
  .int-category { font-size: 10px; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4 { margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  footer { padding: 40px 16px 24px; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-card { padding: 20px; }
  .testi-text { font-size: 13px; }

  /* CTA */
  .cta-band { padding: 48px 20px; }
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 14px; }
  .btn-white, .btn-white-outline { width: 100%; text-align: center; margin: 0; display: block; }
  .btn-white-outline { margin-top: 10px; margin-left: 0 !important; }
  .cta-band > * + * { margin-top: 10px; }

  /* HIGHLIGHT ROW */
  .highlight-row { gap: 24px; }
  .hl-img-mock { min-height: 200px; padding: 16px !important; }

  /* ABOUT */
  .stat-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-val { font-size: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* CONTACT */
  .contact-form { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-options { grid-template-columns: 1fr !important; gap: 10px; }
  .offices-grid { grid-template-columns: 1fr !important; gap: 14px; }

  /* ADDONS & FAQ */
  .addons-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .faq-q { font-size: 14px; }

  /* BREADCRUMB */
  .breadcrumb { font-size: 12px; }

  /* PAGE HERO BTNS */
  .page-hero-inner > div { flex-direction: column; align-items: flex-start; gap: 10px; }
  .page-hero-inner .btn-primary,
  .page-hero-inner .btn-secondary { width: 100%; text-align: center; }

  /* PRODUCTS PAGE */
  .highlight-row .hl-text ul li { font-size: 13px; }

  /* PRICING TABLE */
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* ── HAMBURGER MENU ────────────────────────────────── */
.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 drawer */
.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;
}
