/* ═══════════════════════════════════════════
   ROOT & RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* exact Finovate palette */
  --green:      #1C4B42;
  --green-dark: #163d35;
  --lime:       #B4E717;
  --lime-dark:  #92C200;
  --cream:      #F6F5F2;
  --cream-2:    #F3EDE3;
  --white:      #FFFFFF;
  --black:      #000000;
  --text:       rgba(0,0,0,0.8);
  --text-muted: rgba(0,0,0,0.5);
  --border:     rgba(0,0,0,0.1);
  --border-2:   rgba(0,0,0,0.06);

  --font:       'Work Sans', system-ui, sans-serif;
  --radius-pill:100px;
  --radius:     16px;
  --radius-sm:  9px;
  --transition: 0.25s ease;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --max-w:      1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
}

.section { padding: 96px 0; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1 { font-size: 52px; font-weight: 400; line-height: 1.1em; color: var(--green); }
h2 { font-size: 48px; font-weight: 400; line-height: 1.2em; letter-spacing: -0.5px; color: var(--green); }
h3 { font-size: 22px; font-weight: 500; line-height: 1.3em; color: var(--green); }

.highlight {
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 10px;
  background: var(--lime);
  z-index: -1;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--lime);
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid rgba(28,75,66,0.25);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(28,75,66,0.04);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}

.btn-ghost-nav {
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
}
.btn-ghost-nav:hover { color: var(--green); }

.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.play-wrap {
  width: 30px; height: 30px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--green);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 18px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6em;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  flex-shrink: 0;
}
.logo-mark { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,0.07);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-right: 4px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1;
}

.lang-btn.active {
  background: var(--green);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  color: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--cream);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 24px;
  font-size: clamp(40px, 4vw, 52px);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6em;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.hero-trust p {
  font-size: 14px;
  color: var(--text-muted);
}
.hero-trust strong { color: var(--green); }

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: var(--lime);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  z-index: 0;
  opacity: 0.25;
  filter: blur(60px);
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-2);
}

.main-card {
  padding: 28px;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.card-period {
  font-size: 12px;
  background: var(--cream);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}

.card-big-num {
  font-size: 36px;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.card-growth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.growth-badge {
  background: rgba(180,231,23,0.2);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.growth-label { font-size: 13px; color: var(--text-muted); }

.mini-chart {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
}
.mini-chart svg { width: 100%; height: 100%; }

.card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-val { font-size: 16px; font-weight: 600; color: var(--green); }
.metric-key { font-size: 12px; color: var(--text-muted); }

.side-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  min-width: 170px;
}
.top-side { top: -24px; right: -24px; }
.bottom-side { bottom: -24px; left: -24px; }

.side-icon { font-size: 1.5rem; }
.side-val { font-size: 17px; font-weight: 600; color: var(--green); }
.side-key { font-size: 12px; color: var(--text-muted); }

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 60px;
  text-align: center;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-arrow { font-size: 16px; color: var(--green); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════
   LOGOS BAR
═══════════════════════════════════════════ */
.logos-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logos-wrap { overflow: hidden; }
.logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll-x 22s linear infinite;
}
.logos-track span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,0.25);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dot-sep { color: var(--lime) !important; font-size: 20px !important; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(28,75,66,0.15);
}

.featured-service {
  background: var(--green);
}
.featured-service h3,
.featured-service p,
.featured-service .service-link { color: var(--white) !important; }
.featured-service .service-link span { color: var(--lime); }
.featured-service .service-icon-wrap { background: rgba(255,255,255,0.12) !important; }
.featured-service .service-icon-wrap svg path,
.featured-service .service-icon-wrap svg rect,
.featured-service .service-icon-wrap svg circle { stroke: var(--lime) !important; }
.featured-service:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.service-tag-pill {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--lime);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap.green { background: rgba(28,75,66,0.08); }
.service-icon-wrap.lime  { background: rgba(180,231,23,0.2); }

.service-card h3 { margin-bottom: 10px; font-size: 20px; }
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  transition: var(--transition);
}
.service-link span { transition: transform var(--transition); }
.service-link:hover span { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-tag { display: inline-block; text-align: left; }

.about-content h2 { margin: 16px 0; }

.about-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-checks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-badge {
  width: 28px; height: 28px;
  background: var(--lime);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item div { display: flex; flex-direction: column; gap: 3px; }
.check-item strong { font-size: 15px; color: var(--green); font-weight: 600; }
.check-item span { font-size: 14px; color: var(--text-muted); }

.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* About visual */
.about-img-box {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px 24px;
  overflow: visible;
}

.about-chart-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 180px;
  margin-bottom: 14px;
}

.a-bar {
  flex: 1;
  height: var(--h);
  background: rgba(28,75,66,0.15);
  border-radius: 6px 6px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: var(--transition);
}
.a-bar.highlight-bar { background: var(--green); }
.a-bar span {
  font-size: 10px;
  color: var(--text-muted);
  padding-bottom: 0;
  position: absolute;
  bottom: -18px;
  white-space: nowrap;
}
.a-bar.highlight-bar span { color: var(--green); font-weight: 600; }

.about-chart-footer {
  margin-top: 28px;
  display: flex;
  align-items: center;
}
.chart-up {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180,231,23,0.2);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.about-float-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.float-big {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--lime);
}
.float-small {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin-top: 4px;
}

.about-float-rating {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.rating-stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
.rating-text { font-size: 14px; font-weight: 600; color: var(--green); }
.rating-sub { font-size: 11px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  background: var(--green);
  padding: 72px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px;
}

.stat-item { text-align: center; flex: 1; }

.stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-size: 58px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-pre { font-size: 32px; color: var(--lime); }
.stat-suf { font-size: 32px; color: var(--lime); }

.stat-lbl {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(28,75,66,0.15);
}

.step-num {
  font-size: 48px;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--cream);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testi-featured {
  background: var(--green);
}
.testi-featured .quote-mark,
.testi-featured p { color: rgba(255,255,255,0.85) !important; }
.testi-featured .testi-footer strong { color: var(--white); }
.testi-featured .testi-footer span { color: rgba(255,255,255,0.6); }
.testi-featured .testi-stars { color: var(--lime); }
.testi-featured .testi-avatar { background: rgba(255,255,255,0.15); }

.quote-mark {
  font-size: 56px;
  color: var(--lime);
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
  font-family: Georgia, serif;
}

.testi-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.testi-footer strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2px;
}
.testi-footer span {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.testi-stars {
  color: #F59E0B;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section {
  background: var(--lime);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-left h2 { font-size: 36px; color: var(--green); margin-bottom: 10px; }
.cta-left p { font-size: 16px; color: rgba(28,75,66,0.7); }

.cta-right { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--cream); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-tag { display: inline-block; text-align: left; }
.contact-left h2 { margin: 16px 0; }
.contact-left > p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.contact-icon-wrap {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

.form-group input,
.form-group textarea,
.select-wrap select {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  transition: 0.2ms;
  width: 100%;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.select-wrap select:focus {
  border-color: var(--green);
}
.form-group input:hover,
.form-group textarea:hover,
.select-wrap select:hover { border-color: var(--green); }
.form-group input.error { border-color: #dc2626; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 14px;
}
.select-wrap select { cursor: pointer; }

.form-err {
  font-size: 12px;
  color: #dc2626;
  min-height: 14px;
}

.form-ok {
  background: rgba(28,75,66,0.08);
  border: 1px solid rgba(28,75,66,0.2);
  border-radius: var(--radius-sm);
  color: var(--green);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-inner a { color: var(--text-muted); transition: var(--transition); }
.footer-bottom-inner a:hover { color: var(--green); }

/* ═══════════════════════════════════════════
   LOGO TEXT
═══════════════════════════════════════════ */
.logo-text { font-size: 20px; font-weight: 600; }

/* ═══════════════════════════════════════════
   PIPELINE STEPS (hero card)
═══════════════════════════════════════════ */
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pip-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.pip-step.done { color: var(--green); font-weight: 500; }
.pip-step.active { color: var(--green); font-weight: 600; }

.pip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.done-dot { background: var(--lime); }

.active-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(28,75,66,0.15);
}

/* ═══════════════════════════════════════════
   PROBLEM BAR
═══════════════════════════════════════════ */
.problem-bar {
  background: var(--green);
  padding: 32px 0;
}

.problem-intro {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 20px;
}

.problem-intro strong { color: var(--lime); font-weight: 600; }

.problems-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.prob-icon { color: var(--lime); font-style: normal; flex-shrink: 0; }

.prob-sep {
  color: rgba(255,255,255,0.2);
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FIT SECTION (Who Is It For)
═══════════════════════════════════════════ */
.fit-section { background: var(--cream); }

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.fit-col {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border-2);
}

.fit-col.good {
  background: var(--white);
  border-left: 4px solid var(--lime);
}

.fit-col.bad {
  background: var(--white);
  border-left: 4px solid rgba(220,38,38,0.3);
}

.fit-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

.fit-icon {
  width: 26px;
  height: 26px;
  background: var(--lime);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.bad-icon {
  background: rgba(220,38,38,0.1);
  color: #dc2626;
}

.fit-col ul { display: flex; flex-direction: column; gap: 12px; }
.fit-col ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.fit-col.good ul li::before { content: '→'; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.fit-col.bad  ul li::before { content: '→'; position: absolute; left: 0; color: rgba(220,38,38,0.5); font-weight: 700; }

/* ═══════════════════════════════════════════
   COUNTER STATIC (stats — no animation)
═══════════════════════════════════════════ */
.counter-static {
  font-size: 58px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

/* ═══════════════════════════════════════════
   CASE BADGE (testimonials)
═══════════════════════════════════════════ */
.case-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.testi-featured .case-badge {
  background: rgba(180,231,23,0.25);
  color: var(--lime);
}

/* ═══════════════════════════════════════════
   FORM SECTION TITLE & CONTACT NOTE
═══════════════════════════════════════════ */
.form-section-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: -4px;
}

.req { color: #dc2626; font-size: 13px; }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-group.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.cb-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  line-height: 1.4;
}

.cb-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
  margin-top: -4px;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(28,75,66,0.05);
  border: 1px solid rgba(28,75,66,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: -8px;
}

.note-icon { font-size: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   ABOUT VISUAL
═══════════════════════════════════════════ */
.about-visual { position: relative; }
.about-img-inner { /* container inside the cream box */ }

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--lime); color: var(--green); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  h1 { font-size: 38px; }
  h2 { font-size: 34px; }

  .hero-inner { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .process-connector { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; line-height: 1.2em; }
  h2 { font-size: 28px; line-height: 1.3em; }

  .section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { display: flex; margin-right: 0; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 20px;
    z-index: 999;
  }

  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; }
  .cta-left { text-align: center; }
  .cta-right { justify-content: center; width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .stats-inner { flex-direction: column; text-align: center; gap: 32px; }
  .about-float-badge { right: 0; }
  .about-float-rating { left: 0; }

  /* New sections */
  .fit-grid { grid-template-columns: 1fr; }
  .checkbox-group.two-col { grid-template-columns: 1fr; }
  .problems-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .prob-sep { display: none; }
  .counter-static { font-size: 40px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .about-ctas { flex-direction: column; }
}
