/* ============================================================
   STRABO GEO — WEBSITE STYLESHEET
   Enterprise SaaS Marketing Site
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy:        #1A375E;
  --navy-dark:   #08122e;
  --navy-light:  #1E4A7A;
  --blue:        #1E6FBF;
  --sky:         #2EAADC;
  --sky-light:   #E8F5FB;
  --white:       #FFFFFF;
  --bg:          #F8FAFC;
  --bg-alt:      #F1F5F9;
  --border:      #E2E8F0;
  --text:        #0F172A;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;
  --success:     #10B981;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:      0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --transition:  0.18s ease;
  --max-width:   1140px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 18, 46, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a:active { color: #fff; background: rgba(255,255,255,0.12); transform: scale(0.97); }
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 -2px 0 var(--sky);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta a {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav-cta a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta a:active { color: #fff; background: rgba(255,255,255,0.12); transform: scale(0.97); }
.nav-cta a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 -2px 0 var(--sky);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
  padding: 10px 22px;
}
.btn-primary:hover {
  background: #25a0d4;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(46,170,220,0.35);
}
.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  padding: 10px 22px;
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,55,94,0.3);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(46,170,220,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,170,220,0.15);
  border: 1px solid rgba(46,170,220,0.3);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--sky) 0%, #7DD8F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--sky); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.map-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.map-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.map-card-dots { display: flex; gap: 6px; }
.map-card-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.map-card-dot:nth-child(1) { background: #FF5F57; }
.map-card-dot:nth-child(2) { background: #FEBC2E; }
.map-card-dot:nth-child(3) { background: #28C840; }
.map-card-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.map-placeholder {
  height: 280px;
  background: linear-gradient(135deg, rgba(30,111,191,0.2) 0%, rgba(46,170,220,0.1) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,170,220,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,170,220,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(46,170,220,0.25);
}
.map-pin-1 { top: 35%; left: 40%; }
.map-pin-2 { top: 55%; left: 62%; }
.map-pin-3 { top: 28%; left: 70%; }
.map-region {
  position: absolute;
  border: 1.5px solid rgba(46,170,220,0.4);
  background: rgba(46,170,220,0.06);
  border-radius: 4px;
}
.map-region-1 { top: 20%; left: 25%; width: 35%; height: 45%; }
.map-region-2 { top: 45%; left: 55%; width: 30%; height: 30%; }
.map-label {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'SF Mono', monospace;
}
.map-label-1 { top: 22%; left: 27%; }
.map-label-2 { top: 47%; left: 57%; }
.map-stat-bar {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}
.map-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.map-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sky);
}
.map-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
section { padding: 88px 0; }
section.alt { background: var(--bg); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.problem-icon {
  width: 44px; height: 44px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid var(--border);
}
.feature-cell {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}
.feature-cell:hover { background: var(--bg); }
.feature-icon {
  width: 40px; height: 40px;
  color: var(--sky);
  margin-bottom: 18px;
}
.feature-cell h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-cell p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
  margin-top: 56px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.compare-table th {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
}
.compare-table th.highlight {
  background: var(--navy);
  color: var(--sky);
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}
.compare-table td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.compare-table td.highlight {
  background: rgba(26,55,94,0.03);
  font-weight: 600;
  color: var(--navy);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg); }
.compare-table tr:hover td.highlight { background: rgba(26,55,94,0.06); }
.check { color: var(--success); font-size: 1.1rem; }
.cross { color: var(--text-light); font-size: 1.1rem; }
.partial { color: #F59E0B; font-size: 0.8rem; font-weight: 600; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-2px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); margin-top: 6px; }
.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.pricing-period { font-size: 0.875rem; color: var(--text-muted); }
.pricing-users {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing-feature svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}
.annual-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 8px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-val span { color: var(--sky); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   MARKET VERTICALS
   ============================================================ */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.vertical-card:hover {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px var(--sky-light), var(--shadow);
  transform: translateY(-2px);
}
.vertical-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}
.vertical-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.vertical-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
.footer-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-tag span { color: var(--sky); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT / RFI FORM
   ============================================================ */
.rfi-section {
  /* grid layout is handled by .rfi-layout inside .container */
}
.rfi-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.rfi-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.rfi-points { display: flex; flex-direction: column; gap: 16px; }
.rfi-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.rfi-point-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.rfi-point-text strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 2px; }
.rfi-point-text span { font-size: 0.83rem; color: var(--text-muted); }
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,111,191,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-privacy a { color: var(--blue); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.875rem; }

/* ============================================================
   PRICING PAGE — FEATURE TABLE
   ============================================================ */
.feature-table-wrap {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.feature-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 20px;
  text-align: center;
  border-bottom: none;
}
.feature-table th:first-child { text-align: left; }
.feature-table th.col-highlight { color: var(--sky); }
.feature-table .group-header td {
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 10px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-table td {
  padding: 13px 20px;
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.feature-table td:first-child { text-align: left; color: var(--text); }
.feature-table td.col-highlight {
  background: rgba(26,55,94,0.03);
  font-weight: 600;
  color: var(--navy);
}
.feature-table tr:last-child td { border-bottom: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  background: linear-gradient(135deg, var(--bg) 0%, var(--sky-light) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.82rem;
}
.feature-text .section-label { display: block; }
.feature-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.feature-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; padding: 16px 0; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .rfi-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.78rem; }
  .hero { padding: 72px 0 60px; }
}

/* ============================================================
   HERO ADDITIONS
   ============================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,170,220,0.12);
  border: 1px solid rgba(46,170,220,0.3);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.proof-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
}

/* ============================================================
   HERO MAP CARD
   ============================================================ */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.map-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.map-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.map-status { font-size: 0.72rem; color: var(--success); font-weight: 600; }
.map-body {
  position: relative;
  height: 200px;
  background: var(--sky-light);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,111,191,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,191,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-region {
  position: absolute;
  border-radius: 8px;
  opacity: 0.18;
}
.map-region.r1 { background: var(--navy); width: 120px; height: 80px; top: 30px; left: 40px; }
.map-region.r2 { background: var(--blue); width: 90px; height: 60px; top: 60px; left: 180px; }
.map-region.r3 { background: var(--sky); width: 70px; height: 50px; top: 110px; left: 280px; }
.map-pin {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.map-pin.p1 { top: 48px; left: 82px; }
.map-pin.p2 { top: 88px; left: 218px; }
.map-pin.p3 { top: 128px; left: 310px; }
.pin-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.map-footer {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}
.map-stat {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.map-stat:last-child { border-right: none; }

/* ============================================================
   STATS BAR (additions)
   ============================================================ */
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--bg);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   PROBLEM GRID
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.problem-icon { font-size: 1.5rem; margin-bottom: 14px; }
.problem-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.problem-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.feature-item {
  background: var(--white);
  padding: 28px 24px;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--bg); }
.feature-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   VERTICALS (additions)
   ============================================================ */
.vertical-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.vertical-link:hover { color: var(--navy); }

/* ============================================================
   COMPARE TABLE (additions)
   ============================================================ */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}
.compare-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 20px;
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.compare-highlight { color: var(--sky); }
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table td.compare-highlight {
  background: rgba(26,55,94,0.03);
  font-weight: 600;
  color: var(--navy);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg); }
.compare-table tr:hover td.compare-highlight { background: rgba(26,55,94,0.06); }

/* Pricing page table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.875rem;
}
.pricing-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 20px;
  text-align: center;
}
.pricing-table th:first-child { text-align: left; }
.pricing-table th.compare-highlight { color: var(--sky); }
.pricing-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}
.pricing-table td:first-child { text-align: left; color: var(--text); }
.pricing-table td.compare-highlight {
  background: rgba(26,55,94,0.03);
  font-weight: 600;
  color: var(--navy);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.table-group-header td {
  background: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding: 10px 20px;
  text-align: left;
}
.pricing-table tr.table-group-header td.compare-highlight {
  background: var(--bg);
  color: var(--text-muted);
  font-weight: 700;
}

/* ============================================================
   PRICING CARDS (additions)
   ============================================================ */
.pricing-featured {
  border-color: var(--navy) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-2px) !important; }
.pricing-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feat-yes, .feat-no {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  line-height: 1.45;
  padding: 4px 0;
}
.feat-yes { color: var(--text); }
.feat-no { color: var(--text-light); }
.feat-yes::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-no::before {
  content: '—';
  color: var(--text-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.btn-block { width: 100%; justify-content: center; margin: 16px 0 24px; }

/* ============================================================
   BILLING TOGGLE
   ============================================================ */
.billing-toggle {
  display: inline-flex;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px;
  margin-top: 32px;
  gap: 4px;
}
.billing-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.billing-btn.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.billing-save {
  background: rgba(16,185,129,0.2);
  color: #6EE7B7;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER (additions)
   ============================================================ */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 32px; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-col { padding-top: 4px; }

/* ============================================================
   PAGE HERO (additions)
   ============================================================ */
.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.page-hero-sm { padding: 56px 0 48px; }

/* ============================================================
   BUTTONS (additions)
   ============================================================ */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(30,111,191,0.04); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.06); }
.btn-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}
.btn-dark:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ============================================================
   FEATURES PAGE — FEATURE ROWS
   ============================================================ */
.feature-section { border-bottom: 1px solid var(--border); }
.feature-section:last-of-type { border-bottom: none; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 48px 0;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-row-content {}
.feature-row-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  margin-top: 8px;
}
.feature-row-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.feature-row-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.feature-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.45;
}
.feature-row-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  margin-top: 7px;
}
.feature-row-visual { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   FEATURE VISUAL CARDS (mock UI)
   ============================================================ */
.feature-visual-card {
  width: 100%;
  max-width: 380px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0.82rem;
}
.fvc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.fvc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.fvc-dot.red { background: #FF5F57; }
.fvc-dot.amber { background: #FFBD2E; }
.fvc-dot.green { background: #28CA41; }
.fvc-title { margin-left: 4px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.fvc-body { padding: 12px 0; }
.fvc-layer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: background var(--transition);
}
.fvc-layer.active { color: var(--text); }
.fvc-layer:hover { background: var(--bg); }
.fvc-layer-icon { font-size: 0.9rem; }
.fvc-layer span:nth-child(2) { flex: 1; }
.fvc-layer-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.fvc-layer-add {
  padding: 8px 16px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* Analysis tool list */
.fvc-analysis { display: flex; flex-direction: column; gap: 0; }
.fvc-tool {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.fvc-tool:last-child { border-bottom: none; }
.fvc-tool-icon { font-size: 1.1rem; flex-shrink: 0; }
.fvc-tool > div { flex: 1; }
.fvc-tool-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.fvc-tool-desc { font-size: 0.75rem; color: var(--text-muted); }
.fvc-tool-run {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}
.fvc-tool-active { background: rgba(46,170,220,0.05); }
.fvc-tool-status { font-size: 0.72rem; color: var(--success); font-weight: 600; }

/* Connection list */
.fvc-connection {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.fvc-connection:last-of-type { border-bottom: none; }
.fvc-conn-status {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.fvc-conn-status.idle {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-light);
}
.fvc-conn-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.fvc-conn-meta { font-size: 0.72rem; color: var(--text-muted); }
.fvc-connection-add {
  padding: 10px 16px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* Field collection card */
.fvc-mobile .fvc-body { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.fvc-field-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,189,46,0.1);
  border: 1px solid rgba(255,189,46,0.25);
  color: #92600A;
}
.fvc-field-obs {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fvc-obs-header {
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
}
.fvc-obs-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
}
.fvc-obs-row:last-of-type { border-bottom: none; }
.fvc-obs-label { color: var(--text-muted); }
.fvc-obs-val { color: var(--text); font-weight: 500; }
.fvc-obs-photo {
  padding: 7px 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  border-top: 1px solid var(--border);
}
.fvc-sync-queue {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding: 4px 0;
}

/* Team member list */
.fvc-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.fvc-member:last-of-type { border-bottom: none; }
.fvc-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fvc-member > div { flex: 1; }
.fvc-member-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.fvc-member-role { font-size: 0.72rem; color: var(--text-muted); }
.fvc-role-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.fvc-role-badge.owner { background: rgba(26,55,94,0.1); color: var(--navy); }
.fvc-role-badge.editor { background: rgba(30,111,191,0.1); color: var(--blue); }
.fvc-role-badge.viewer { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }
.fvc-share-link {
  padding: 10px 16px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* ============================================================
   CONTACT / RFI PAGE
   ============================================================ */
.rfi-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-intro {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--blue); width: 15px; height: 15px; cursor: pointer; }
.btn-submit { margin-top: 8px; }
.btn-text, .btn-loading { pointer-events: none; }
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid var(--success);
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.success-contact { font-size: 0.875rem; color: var(--text-muted); }
.success-contact a { color: var(--blue); }
#rfi-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
}
.form-card-body {}

/* RFI Sidebar */
.rfi-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-card-sm h3 { margin-bottom: 12px; }
.contact-step {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-step:last-child { margin-bottom: 0; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-step strong { display: block; font-size: 0.875rem; color: var(--navy); margin-bottom: 4px; }
.contact-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.contact-direct { margin-bottom: 10px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}
.contact-link:hover { color: var(--navy); }
.contact-link-icon { font-size: 0.9rem; }
.contact-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.contact-card-body { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.contact-card-note { font-size: 0.75rem; color: var(--text-light); }

/* Plans note */
.plans-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.plans-note a { color: var(--blue); font-weight: 600; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.animate-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.animate-ready.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 56px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-sub { margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .rfi-layout { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row-reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .hero-headline { font-size: 2.25rem; }
  .page-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .cta-title { font-size: 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .compare-table, .pricing-table { font-size: 0.78rem; }
  .compare-table td, .pricing-table td,
  .compare-table th, .pricing-table th { padding: 10px 12px; }
  .cta-actions { justify-content: center; }
}
