/* ============================================
   GEO5 LANDING — Design System
   ============================================ */

:root {
  /* Brand palette */
  --green: #238030;
  --green-dark: #1a6224;
  --green-darker: #134519;
  --green-mid: #2ea03c;
  --green-light: #d8ece0;
  --green-mint: #eef6f0;
  --green-tint: #f5faf6;

  --gold: #ca9100;
  --gold-dark: #a07300;
  --gold-light: #fbf3dc;
  --gold-tint: #fdf9ec;

  --blue: #2e74ba;
  --blue-dark: #1f5a96;
  --blue-light: #e3eef9;

  /* Neutrals */
  --ink: #0e1a13;
  --ink-soft: #1f2b24;
  --gray-900: #2d3a32;
  --gray-700: #4a5a52;
  --gray-500: #7a8a82;
  --gray-400: #a3b1aa;
  --gray-300: #cdd5d0;
  --gray-200: #e5ebe7;
  --gray-100: #f1f4f2;
  --gray-50: #f8faf9;
  --white: #ffffff;
  --cream: #fafaf7;

  /* Type scale */
  --display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Radius & shadows */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 26, 19, 0.04), 0 1px 3px rgba(14, 26, 19, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(14, 26, 19, 0.06), 0 2px 4px -2px rgba(14, 26, 19, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(14, 26, 19, 0.08), 0 4px 10px -3px rgba(14, 26, 19, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(14, 26, 19, 0.15);
  --shadow-green: 0 8px 24px -8px rgba(35, 128, 48, 0.35);

  /* Layout */
  --max-w: 1280px;
  --gutter: 24px;
  --section-y: 96px;
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

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

.hero-content {
  min-width: 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(35, 128, 48, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 20px;
}

.btn-ghost:hover {
  color: var(--green);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

@media screen and (max-width: 600px) {
  .btn-lg {
    padding: 16px;

  }

  .btn {
    width: 100%;

  }
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-radius: var(--r-sm);
  transition: all 0.15s ease;
}

.nav-links a:hover {
  color: var(--green);
  background: var(--green-tint);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Mobile phone icon button (shown on mobile instead of «Запросить КП») */
.mobile-phone-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-green);
}

.mobile-phone-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.mobile-phone-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.mobile-toggle:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-toggle .icon-close {
  display: none;
}

.mobile-toggle.is-active .icon-burger {
  display: none;
}

.mobile-toggle.is-active .icon-close {
  display: block;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-phone-btn {
    display: inline-flex;
  }
}

/* ============================================
   Mobile slide-down menu
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--white);
  padding: 88px 20px 32px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.15s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--green);
}

.mobile-menu-links a::after {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8a82' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.mobile-menu-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu-contacts a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease;
}

.mobile-menu-contacts a:hover {
  background: var(--green-mint);
}

.mobile-menu-contacts svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.mobile-menu-cta {
  margin-top: 20px;
}

.mobile-menu-cta .btn {
  width: 100%;
}

/* Lock body scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(35, 128, 48, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(202, 145, 0, 0.04), transparent 60%),
    var(--white);
  overflow: hidden;
}

/* Topographic-style background lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cg fill='none' stroke='%23238030' stroke-width='0.6' opacity='0.07'%3E%3Cpath d='M-100 600 Q300 500 600 580 T1300 540'/%3E%3Cpath d='M-100 640 Q300 540 600 620 T1300 580'/%3E%3Cpath d='M-100 680 Q300 580 600 660 T1300 620'/%3E%3Cpath d='M-100 720 Q300 620 600 700 T1300 660'/%3E%3Cpath d='M-100 560 Q300 460 600 540 T1300 500'/%3E%3Cpath d='M-100 520 Q300 420 600 500 T1300 460'/%3E%3Cpath d='M-100 480 Q300 380 600 460 T1300 420'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--green-mint);
  border: 1px solid var(--green-light);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(35, 128, 48, 0.15);
  animation: pulse 2s infinite;
}

@media (max-width:600px) {
  .hero-badge .dot {
    display: none;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(35, 128, 48, 0.15);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(35, 128, 48, 0.05);
  }
}

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero h1 .accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-features .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

.hero-features svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* Hero visual card */
.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 8px;
  box-shadow: var(--shadow-xl);
}


.hero-card-inner {
  background: var(--gray-50);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.hero-card-header .dots {
  display: flex;
  gap: 6px;
}

.hero-card-header .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.hero-card-header .title {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-family: var(--mono);
  margin-left: auto;
}

/* Diagram SVG container */
.hero-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

.hero-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.hero-card-meta .stat {
  background: var(--white);
  padding: 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
}

.hero-card-meta .stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-card-meta .stat-value {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-card-meta .stat-value.ok {
  color: var(--green);
}

/* Floating accent */
.hero-floating {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-floating .check {
  width: 32px;
  height: 32px;
  background: var(--green-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.hero-floating .label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.hero-floating .sub {
  font-size: 0.6875rem;
  color: var(--gray-500);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .hero-floating {
    display: none;
  }
}

/* ============================================
   Trust bar / Stats
   ============================================ */
.trust-bar {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(35, 128, 48, 0.15), transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(202, 145, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.trust-bar-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .trust-bar-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.trust-bar h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 380px;
}

.trust-bar h3 span {
  color: var(--green-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num .plus {
  color: var(--green-mid);
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   Section structure
   ============================================ */
.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-mint {
  background: var(--green-tint);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-mint);
  color: var(--green-dark);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.eyebrow.gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.eyebrow.blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.section-head h2 {
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   Standards section — KEY USP
   ============================================ */
.standards {
  background: var(--white);
  position: relative;
}

.standards-hero {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 50%, var(--green) 100%);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

@media (max-width: 700px) {
  .standards-hero {
    padding: 40px 28px;
    margin: 0 -16px 48px -16px;
    border-radius: 0;
  }
}

.standards-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cg fill='none' stroke='white' stroke-width='1' opacity='0.08'%3E%3Cpath d='M0 350 Q200 320 400 340 T800 320'/%3E%3Cpath d='M0 320 Q200 290 400 310 T800 290'/%3E%3Cpath d='M0 290 Q200 260 400 280 T800 260'/%3E%3Cpath d='M0 260 Q200 230 400 250 T800 230'/%3E%3Cpath d='M0 230 Q200 200 400 220 T800 200'/%3E%3Ccircle cx='150' cy='100' r='40'/%3E%3Ccircle cx='150' cy='100' r='60'/%3E%3Ccircle cx='150' cy='100' r='80'/%3E%3Ccircle cx='650' cy='80' r='30'/%3E%3Ccircle cx='650' cy='80' r='50'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.standards-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .standards-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.standards-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  margin-bottom: 16px;
}

.standards-hero h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.standards-hero h2 .ru-accent {
  color: var(--gold);
  display: inline-block;
}

.standards-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.standards-ru-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ru-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.ru-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(4px);
}

.ru-card .icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--white);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.ru-card .text strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.ru-card .text span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Other standards row */
.other-standards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .other-standards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.std-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all 0.2s ease;
}

.std-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.std-card .flag {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  background: var(--gray-100);
}

.std-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.std-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-family: var(--mono);
}

/* Standards list */
.standards-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .standards-list {
    grid-template-columns: 1fr;
  }
}

.std-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  border-left: 3px solid var(--green);
}

.std-bullet .num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: var(--white);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.std-bullet strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.std-bullet p {
  font-size: 0.8125rem;
  color: var(--gray-700);
  margin: 0;
}

/* ============================================
   Programs catalogue
   ============================================ */
.programs {
  background: var(--gray-50);
}

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

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cat-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #dceede, #cde3d0);
  color: var(--green-dark);
  flex-shrink: 0;
}

.cat-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.cat-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.5;
}


.cat-card-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.cat-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.cat-card-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-200);
}

.cat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

.cat-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   Features (key advantages)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.2s ease;
}

.feature:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding: 10px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.feature h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   Industries / Solutions
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.industry-card:hover {
  background: var(--green);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.industry-card:hover .industry-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.industry-card:hover .industry-icon img {
  filter: grayscale(1) brightness(0) invert(1);
  -webkit-filter: grayscale(1) brightness(0) invert(1);
}

.industry-card:hover h4,
.industry-card:hover p {
  color: var(--white);
}

.industry-card:hover p {
  opacity: 0.85;
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: var(--green-mint);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.25s ease;
  padding: 10px;
}

.industry-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.industry-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
  transition: color 0.25s ease;
}

.industry-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  transition: color 0.25s ease;
}

/* ============================================
   Comparison table
   ============================================ */
.comparison-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comp-table thead th {
  background: var(--gray-50);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 20px;
  text-align: center;
  color: var(--gray-900);
  border-bottom: 2px solid var(--gray-200);
}

.comp-table thead th:first-child {
  text-align: left;
  color: var(--gray-500);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comp-table thead th.geo5 {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  position: relative;
}

.comp-table thead th.geo5::before {
  content: 'Лучший выбор';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.625rem;
  padding: 2px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.comp-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  color: var(--gray-700);
}

.comp-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.comp-table tbody td.geo5-col {
  background: rgba(35, 128, 48, 0.04);
  font-weight: 600;
  color: var(--green-dark);
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--green);
  font-weight: 700;
}

.partial {
  color: var(--gold);
  font-weight: 700;
}

.no {
  color: var(--gray-400);
  font-weight: 700;
}

@media (max-width: 800px) {
  .comparison-wrap {
    overflow-x: auto;
  }

  .comp-table {
    min-width: 680px;
  }
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  background: var(--green-tint);
}

@media (max-width: 700px) {
  .testimonials {
    padding-top: 0;
  }
}

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

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s ease;
}

.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-light);
  font-weight: 700;
}

.testi-quote {
  font-size: 0.9375rem;
  color: var(--gray-900);
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testi-quote.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testi-expand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color 0.15s;
}

.testi-expand:hover {
  color: var(--green-dark);
}

.testi-expand svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.testi-expand.open svg {
  transform: rotate(180deg);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.testi-role {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================
   Pricing / Licenses
   ============================================ */
.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.tabs {
  display: inline-flex;
  padding: 4px;
  background: var(--gray-100);
  border-radius: var(--r-full);
}

.tab {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-green);
  position: relative;
}

.price-card.featured::before {
  content: 'Популярный выбор';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-tier {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.price-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.price-meta {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.price-amount {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--gray-200);
}

.price-amount .label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 600;
}

.price-amount .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}

.price-amount .users {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.8125rem;
  font-weight: 600;
}

.price-features {
  flex-grow: 1;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--gray-900);
  line-height: 1.5;
}

.price-features li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-md);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 6px;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* ============================================
   Trial CTA
   ============================================ */
.trial-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-darker) 100%);
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(35, 128, 48, 0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(202, 145, 0, 0.15), transparent 50%);
}

.trial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .trial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.trial-content .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.trial-content h2 {
  color: var(--white);
  margin: 16px 0;
}

.trial-content h2 span {
  color: var(--green-mid);
}

.trial-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.trial-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.trial-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.trial-list svg {
  width: 22px;
  height: 22px;
  color: var(--green-mid);
  background: rgba(35, 128, 48, 0.2);
  border-radius: 50%;
  padding: 4px;
}

.trial-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}

.trial-form-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.trial-form-card .sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: all 0.15s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35, 128, 48, 0.12);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238030' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}

@media (max-width: 700px) {
  .faq-wrap {
    margin: 0 -16px -64px -16px;
  }

  .faq-item {
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid var(--gray-200);
    border-radius: 0;
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--gray-200);
  }

  .faq-item[open] {
    box-shadow: none;
  }

  .faq-item:hover {
    border-color: var(--gray-200);
  }
}

/* ============================================
   Support section
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.support-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.support-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.support-icon {
  width: 56px;
  height: 56px;
  background: var(--green-mint);
  color: var(--green-dark);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.support-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 14px;
}

.support-card .contact {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9375rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--gray-300);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
}

.footer-brand .logo img {
  height: 32px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 20px 0;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-300);
  transition: color 0.15s ease;
}

.footer-contacts a:hover {
  color: var(--green-mid);
}

.footer-contacts svg {
  width: 16px;
  height: 16px;
  color: var(--green-mid);
}

.footer h5 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.15s ease;
}

.footer ul a:hover {
  color: var(--green-mid);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-bottom .badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: var(--mono);
  font-size: 0.6875rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  color: var(--gray-400);
}

@media (max-width: 900px) {
  .footer-badge {
    flex-grow: 1;
  }
}

/* ============================================
   Reveal animations
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.reveal-d1 {
  animation-delay: 0.1s;
}

.reveal-d2 {
  animation-delay: 0.2s;
}

.reveal-d3 {
  animation-delay: 0.3s;
}

.reveal-d4 {
  animation-delay: 0.4s;
}

/* ============================================
   Hero consultation form
   ============================================ */
.hero-form-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero-form-sub {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 22px;
}

.hero-card .form-field {
  margin-bottom: 12px;
}

.hero-card .form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.hero-card .form-field input,
.hero-card .form-field select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: all 0.15s ease;
}

.hero-card .form-field input:focus,
.hero-card .form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35, 128, 48, 0.12);
}

/* Form disclaimer link styling (applies to all forms) */
.form-disclaimer a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form-disclaimer a:hover {
  color: var(--green-dark);
}

/* Form consent (checkbox + text) */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--gray-700);
  line-height: 1.5;
  user-select: none;
}

.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border: 1.5px solid var(--gray-400);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
}

.form-consent input[type="checkbox"]:hover {
  border-color: var(--green);
}

.form-consent input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}

.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.form-consent input[type="checkbox"]:invalid {
  border-color: var(--gray-400);
}

.form-consent span {
  flex: 1;
}

.form-consent a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--green-dark);
}

/* Honeypot — скрытое антибот-поле */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   Form validation & feedback states
   ============================================ */
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #c83232;
  margin-top: 5px;
  line-height: 1.3;
  min-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.field-error:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.field-error.consent-error {
  margin-top: 4px;
  margin-left: 26px;
}

.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid {
  border-color: #d94545;
  background: #fff8f8;
}

.form-field input.invalid:focus,
.form-field select.invalid:focus,
.form-field textarea.invalid:focus {
  border-color: #d94545;
  box-shadow: 0 0 0 3px rgba(217, 69, 69, 0.12);
}

.form-consent input[type="checkbox"].invalid {
  border-color: #d94545;
  box-shadow: 0 0 0 3px rgba(217, 69, 69, 0.15);
}

.captcha-container {
  display: none;
}

/* Submit button — loading state */
.form-submit {
  position: relative;
}

.form-submit.loading {
  pointer-events: none;
  opacity: 0.88;
}

.form-submit.loading svg {
  display: none;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -3px;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Server-error message (rare, only on actual submit failure) */
.form-server-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff5f5;
  border: 1px solid #f3c9c9;
  color: #a32525;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transition: all 0.25s ease;
}

.form-server-error.visible {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 12px;
  border-width: 1px;
}

.form-server-error svg {
  flex-shrink: 0;
  color: #d94545;
  margin-top: 1px;
}

/* Success state */
.form-success-state {
  text-align: center;
  padding: 36px 16px 28px;
  animation: successFadeIn 0.45s ease;
}

.success-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: var(--green-mint);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successScale 0.55s cubic-bezier(0.68, -0.4, 0.265, 1.4);
  position: relative;
}

.success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  opacity: 0;
  animation: successPulse 1s ease 0.3s forwards;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  animation: successCheck 0.5s ease 0.15s both;
}

.form-success-state h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.form-success-state p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.form-success-state p+p {
  margin-top: -12px;
}

.form-success-state p a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.form-success-state p a:hover {
  color: var(--green);
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes successScale {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes successCheck {
  from {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
  }

  to {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
  }
}

@keyframes successPulse {
  0% {
    opacity: 1;
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Textarea styling */
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: all 0.15s ease;
  resize: vertical;
  min-height: 80px;
}

.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35, 128, 48, 0.12);
}

/* ============================================
   Quote / КП section
   ============================================ */
.quote-section {
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(202, 145, 0, 0.05), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(35, 128, 48, 0.05), transparent 60%),
    var(--gray-50);
  position: relative;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 980px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.quote-content>p {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.quote-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-900);
  line-height: 1.5;
}

.quote-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--green-mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23238030' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px dashed var(--gray-300);
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-contact-item>svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.quote-contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 2px;
}

.quote-contact-value {
  display: block;
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: color 0.15s ease;
}

.quote-contact-value:hover {
  color: var(--green);
}

.quote-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
  .quote-form-card {
    padding: 28px 22px;
  }
}

.quote-form-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.quote-form-card .sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

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

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============================================
   Footer badge as link
   ============================================ */
.footer-badge-link {
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.footer-badge-link:hover {
  color: var(--green-mid);
  background: rgba(35, 128, 48, 0.1);
  border-color: rgba(35, 128, 48, 0.3);
}

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--white);
  padding: 20px 0;
  z-index: 200;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px -10px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
  max-width: 980px;
}

.cookie-banner p a {
  color: var(--green-mid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner p a:hover {
  color: var(--white);
}

.cookie-banner .btn {
  flex-shrink: 0;
  padding: 12px 28px;
}

/* ============================================
   Mobile padding & overflow fixes
   ============================================ */
@media (max-width: 600px) {
  :root {
    --gutter: 16px;
    --section-y: 64px;
  }

  /* Form & content cards — equal, tighter internal padding */
  .hero-card {
    padding: 6px;
  }

  .hero-card-inner {
    padding: 20px 16px;
  }

  .trial-form-card {
    padding: 24px 18px;
  }

  .quote-form-card {
    padding: 24px 18px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-card.featured::before {
    white-space: nowrap;
  }

  .support-card {
    padding: 24px 18px;
    gap: 16px;
    flex-direction: row;
  }

  .support-icon {
    width: 44px;
    height: 44px;
  }

  .support-icon svg {
    width: 22px;
    height: 22px;
  }

  .standards-hero {
    padding: 32px 20px;
  }

  .testi-card {
    padding: 24px 20px;
    display: block;
  }

  .testi-card::before {
    position: static;
    float: right;
  }

  .cat-card {
    padding: 22px 20px;
  }

  .feature {
    padding: 24px 20px;
  }

  .industry-card {
    padding: 20px 14px;
  }

  .std-card {
    padding: 18px 16px;
  }

  .std-bullet {
    padding: 16px 14px;
  }

  .ru-card {
    padding: 14px 14px;
  }

  .price-features li {
    font-size: 0.8125rem;
  }

  /* Hero card form field tweaks */
  .hero-card .form-field input,
  .hero-card .form-field select {
    padding: 11px 12px;
    font-size: 0.9375rem;
  }

  /* Section vertical rhythm */
  .hero {
    padding: 36px 0 48px;
  }

  .trust-bar {
    padding: 48px 0;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .stat-num {
    font-size: 2rem;
  }

  /* Sticky cookie banner inner gutters */
  .cookie-banner {
    padding: 16px 0;
  }
}

/* Prevent horizontal overflow at any width */
html,
body {
  overflow-x: clip;
  max-width: 100%;
}

.container {
  width: 100%;
}

.geo5-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


.geo5-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.geo5-module {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 8px 10px;

  border-radius: 10px;

  transition: .25s;
}

.geo5-module:hover {
  background: #eef7ef;
  transform: translateX(4px);
}

.geo5-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e6f1e7;

  border: 1px solid #d3e2d5;

  border-radius: 8px;

  color: #5f8065;
}

.geo5-icon svg {
  width: 18px;
  height: 18px;
}

.geo5-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo5-module span:last-child {
  font-size: 15px;
  color: #233528;
  line-height: 1.35;
}

.geo5-package-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.geo5-package {
  background: linear-gradient(180deg,
      #ffffff,
      #f3f8f3);

  border: 1px solid #d8e6d8;

  border-radius: 18px;

  padding: 24px;

  text-align: center;

  transition: .3s;

  box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

.geo5-package:hover {
  transform: translateY(-6px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.geo5-package-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(180deg,
      #dceede,
      #cde3d0);

  color: #55775c;
}

.geo5-package-icon svg {
  width: 30px;
  height: 30px;
}

.geo5-package-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.geo5-package h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #203325;
}

.geo5-package p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #647165;
}

@media(max-width:1200px) {

  .geo5-package-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:900px) {

  .geo5-modules-grid {
    grid-template-columns: 1fr;
  }

  .geo5-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {
  .geo5-modules-grid {
    gap: 0;

  }

  .geo5-package-grid {
    grid-template-columns: 1fr;
  }

}

.geo5-contacts {

  position: relative;

  padding: 90px 50px;

  background: radial-gradient(ellipse 60% 50% at 20% 10%, rgba(202, 145, 0, 0.05), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(35, 128, 48, 0.05), transparent 60%),
    var(--gray-50);

  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);

}

.geo5-contacts-container {

  max-width: 1200px;

  margin: 0 auto;

  position: relative;

  z-index: 2;
}

.geo5-contacts-title {
  text-align: center;
  margin: 0 0 70px;
}

.geo5-contacts-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  gap: 70px;
}

.geo5-contact-item {

  display: flex;

  align-items: flex-start;

  gap: 24px;
}

.geo5-contact-icon {

  width: 72px;
  height: 72px;

  min-width: 72px;

  color: #cfcfcf;
}

.geo5-contact-icon svg {

  width: 100%;
  height: 100%;
}

.geo5-contact-icon svg * {

  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.geo5-contact-label {

  color: #9a9a9a;

  font-size: 16px;

  margin-bottom: 4px;
}

.geo5-contact-text {

  color: #202020;

  font-size: 18px;

  line-height: 1.6;
}

.geo5-contact-accent {

  display: block;

  color: #111;

  font-size: 18px;

  font-weight: 700;

  text-decoration: none;

  margin-bottom: 8px;
}

.geo5-contact-small {

  color: #444;

  margin-bottom: 18px;
}

.support {

  margin-top: 18px;
}

.geo5-link {

  display: block;

  margin-top: 18px;

  color: #111;

  font-size: 18px;

  font-weight: 700;

  text-decoration: none;

  transition: .2s;
}

.geo5-link:hover {

  color: #ef7d23;
}

.pattern-left {

  left: -30px;
  bottom: -30px;
}

.pattern-right {

  top: -20px;
  right: -20px;
}

@media(max-width:1000px) {

  .geo5-contacts-grid {

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .geo5-contacts-title {

    font-size: 42px;
  }

}

@media (prefers-color-scheme: dark) {

  /* ---- Base ---- */
  body {
    background: #0e1a13;
    color: #d4e0d8;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    color: #e8f0eb;
  }

  a {
    color: #6fcf7c;
  }

  /* ---- Header ---- */
  .header {
    background: rgba(14, 26, 19, 0.9);
    border-bottom-color: #2d3a32;
  }

  .nav-links a {
    color: #a3b1aa;
  }

  .nav-links a:hover {
    color: #6fcf7c;
    background: rgba(35, 128, 48, 0.12);
  }

  .mobile-toggle {
    background: #1f2b24;
    border-color: #2d3a32;
    color: #d4e0d8;
  }

  .mobile-toggle:hover {
    background: #2d3a32;
  }

  /* ---- Mobile menu ---- */
  .mobile-menu {
    background: #0e1a13;
  }

  .mobile-menu-links a {
    color: #d4e0d8;
    border-bottom-color: #2d3a32;
  }

  .mobile-menu-contacts a {
    background: #1f2b24;
    color: #d4e0d8;
  }

  .mobile-menu-contacts a:hover {
    background: rgba(35, 128, 48, 0.15);
  }

  /* ---- Hero ---- */
  .hero {
    background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(35, 128, 48, 0.12), transparent 60%),
      radial-gradient(ellipse 60% 60% at 10% 80%, rgba(202, 145, 0, 0.06), transparent 60%),
      #0e1a13;
  }

  .hero-sub {
    color: #a3b1aa;
  }

  .hero-features .item {
    color: #a3b1aa;
  }

  .hero-badge {
    background: rgba(35, 128, 48, 0.15);
    border-color: rgba(35, 128, 48, 0.3);
    color: #6fcf7c;
  }

  .hero-card {
    background: #1a2820;
    border-color: #2d3a32;
  }

  .hero-card-inner {
    background: #162019;
  }

  .hero-card-header {
    border-bottom-color: #2d3a32;
  }

  .hero-card-header .dots span {
    background: #4a5a52;
  }

  .hero-card-header .title {
    color: #7a8a82;
  }

  .hero-card-meta .stat {
    background: #1f2b24;
    border-color: #2d3a32;
  }

  .hero-card-meta .stat-label {
    color: #7a8a82;
  }

  .hero-card-meta .stat-value {
    color: #d4e0d8;
  }

  .hero-floating {
    background: #1a2820;
    border-color: #2d3a32;
  }

  .hero-floating .label {
    color: #d4e0d8;
  }

  /* ---- Sections backgrounds ---- */
  .section-alt,
  .programs {
    background: #131f18;
  }

  .section-mint,
  .testimonials {
    background: #111c15;
  }

  .quote-section {
    background: radial-gradient(ellipse 60% 50% at 20% 10%, rgba(202, 145, 0, 0.06), transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 90%, rgba(35, 128, 48, 0.06), transparent 60%),
      #131f18;
  }

  .section-head p {
    color: #a3b1aa;
  }

  .eyebrow {
    background: rgba(35, 128, 48, 0.15);
    color: #6fcf7c;
  }

  .eyebrow.gold {
    background: rgba(202, 145, 0, 0.12);
    color: #e0b040;
  }

  /* ---- Cards ---- */
  .cat-card,
  .feature,
  .price-card,
  .support-card,
  .testi-card,
  .faq-item,
  .industry-card,
  .std-card {
    background: #1a2820;
    border-color: #2d3a32;
  }

  .cat-card:hover,
  .feature:hover,
  .support-card:hover {
    border-color: #2ea03c;
  }

  .cat-card-desc,
  .feature p,
  .support-card p {
    color: #a3b1aa;
  }

  .cat-card-count {
    background: #1f2b24;
    color: #7a8a82;
  }

  .cat-list li {
    color: #a3b1aa;
  }

  .cat-card-icon {
    background: linear-gradient(180deg, #1f3a24, #1a3020);
    color: #6fcf7c;
  }

  .cat-card-icon img {
    filter: brightness(0) invert(1);
  }

  /* ---- Industry cards hover ---- */
  .industry-card:hover h4,
  .industry-card:hover p {
    color: #fff;
  }

  .industry-icon {
    background: rgba(35, 128, 48, 0.12);
  }

  .industry-card h4,
  .industry-card p {
    color: #a3b1aa;
  }

  /* ---- Feature icons ---- */
  .feature-icon {
    background: rgba(35, 128, 48, 0.12);
  }

  .feature-icon svg,
  .feature-icon img {
    filter: grayscale(1) brightness(0) invert(1);
    -webkit-filter: grayscale(1) brightness(0) invert(1);
  }

  .industry-icon svg,
  .industry-icon img {
    filter: grayscale(1) brightness(0) invert(1);
    -webkit-filter: grayscale(1) brightness(0) invert(1);
  }

  /* ---- Standards ---- */
  .standards {
    background: #131f18;
  }

  .standards-hero {
    background: rgba(255, 255, 255, 0.08);
  }

  .standards-hero-content .eyebrow {
    background: rgba(0, 0, 0, 0.53);
  }

  .std-card .flag {
    background: #1f2b24;
  }

  .ru-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .ru-card:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .ru-card .text span {
    color: rgba(255, 255, 255, 0.6);
  }

  .std-bullet {
    background: #1f2b24;
  }

  .std-bullet .num {
    background: #162019;
  }

  .std-bullet p {
    color: #a3b1aa;
  }

  /* ---- Comparison table ---- */
  .comparison-wrap {
    background: #1a2820;
    border-color: #2d3a32;
  }

  .comp-table thead th {
    background: #1f2b24;
    color: #d4e0d8;
    border-bottom-color: #2d3a32;
  }

  .comp-table thead th:first-child {
    color: #7a8a82;
  }

  .comp-table tbody td {
    color: #a3b1aa;
    border-bottom-color: #1f2b24;
  }

  .comp-table tbody td:first-child {
    color: #d4e0d8;
  }

  .comp-table tbody td.geo5-col {
    background: rgba(35, 128, 48, 0.08);
  }

  /* ---- Testimonials ---- */
  .testi-card::before {
    color: rgba(35, 128, 48, 0.15);
  }

  .testi-quote {
    color: #d4e0d8;
  }

  .testi-author {
    border-top-color: #2d3a32;
  }

  .testi-name {
    color: #e8f0eb;
  }

  .testi-role {
    color: #7a8a82;
  }

  .testi-avatar {
    background: linear-gradient(135deg, #2ea03c 0%, #1a6224 100%);
  }

  /* ---- Pricing ---- */
  .pricing-tabs .tabs {
    background: #1f2b24;
  }

  .tab {
    color: #a3b1aa;
  }

  .tab.active {
    background: #1a2820;
    color: #e8f0eb;
  }

  .price-card.featured {
    border-color: #2ea03c;
  }

  .price-meta,
  .price-features li {
    color: #a3b1aa;
  }

  .price-amount .value {
    color: #e8f0eb;
  }

  .price-amount .label {
    color: #7a8a82;
  }

  .pricing-note {
    background: rgba(202, 145, 0, 0.08);
    border-color: rgba(202, 145, 0, 0.2);
  }

  .pricing-note strong {
    color: #e0b040;
  }

  .pricing-note p {
    color: #a3b1aa;
  }

  /* ---- Forms ---- */
  .form-field label {
    color: #a3b1aa;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: #1f2b24;
    border-color: #2d3a32;
    color: #d4e0d8;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: #2ea03c;
    box-shadow: 0 0 0 3px rgba(46, 160, 60, 0.15);
  }

  .hero-card .form-field input,
  .hero-card .form-field select {
    background: #1f2b24;
    border-color: #2d3a32;
    color: #d4e0d8;
  }

  .hero-form-title {
    color: #e8f0eb;
  }

  .hero-form-sub {
    color: #a3b1aa;
  }

  .trial-form-card,
  .quote-form-card {
    background: #1a2820;
    border-color: #2d3a32;
  }

  .trial-form-card .sub,
  .quote-form-card .sub {
    color: #7a8a82;
  }

  .form-consent {
    color: #a3b1aa;
  }

  .form-consent input[type="checkbox"] {
    background: #1f2b24;
    border-color: #4a5a52;
  }

  .form-consent input[type="checkbox"]:checked {
    background: #2ea03c;
    border-color: #2ea03c;
  }

  .form-disclaimer {
    color: #7a8a82;
  }

  /* ---- FAQ ---- */
  .faq-q {
    color: #e8f0eb;
  }

  .faq-a {
    color: #a3b1aa;
  }

  .faq-item[open] {
    border-color: #2ea03c;
  }

  /* ---- Trial section ---- */
  .trial-content p {
    color: rgba(255, 255, 255, 0.8);
  }

  .trial-form-card h3 {
    color: #e8f0eb;
  }

  /* ---- Quote section ---- */
  .quote-content>p {
    color: #a3b1aa;
  }

  .quote-form-card h3 {
    color: #e8f0eb;
  }

  .quote-list li {
    color: #d4e0d8;
  }

  .quote-contact-label {
    color: #7a8a82;
  }

  .quote-contact-small {
    color: #7a8a82;
  }

  /* ---- Trust bar ---- */
  .stat-desc {
    color: #7a8a82;
  }

  /* ---- GEO5 modules & packages ---- */
  .geo5-module:hover {
    background: rgba(35, 128, 48, 0.1);
  }

  .geo5-icon {
    background: rgba(35, 128, 48, 0.1);
    border-color: rgba(35, 128, 48, 0.2);
    color: #6fcf7c;
    opacity: 0.8;
  }

  .geo5-module span:last-child {
    color: #d4e0d8;
  }

  .geo5-package {
    background: linear-gradient(180deg, #1a2820, #162019);
    border-color: #2d3a32;
  }

  .geo5-package-icon {
    background: linear-gradient(180deg, #1f3a24, #1a3020);
    color: #6fcf7c;
  }

  .geo5-package-icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1)
  }

  .geo5-package h4 {
    color: #e8f0eb;
  }

  .geo5-package p {
    color: #a3b1aa;
  }

  /* ---- GEO5 contacts ---- */
  .geo5-contacts {
    background: radial-gradient(ellipse 60% 50% at 20% 10%, rgba(202, 145, 0, 0.06), transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 90%, rgba(35, 128, 48, 0.06), transparent 60%),
      #131f18;
    border-color: #2d3a32;
  }

  .geo5-contact-label {
    color: #7a8a82;
  }

  .geo5-contact-text {
    color: #d4e0d8;
  }

  .geo5-contact-accent {
    color: #e8f0eb;
  }

  .geo5-contact-small {
    color: #7a8a82;
  }

  .geo5-link {
    color: #d4e0d8;
  }

  .geo5-link:hover {
    color: #6fcf7c;
  }

  /* ---- Buttons ---- */
  .btn-secondary {
    background: #1f2b24;
    color: #d4e0d8;
    border-color: #2d3a32;
  }

  .btn-secondary:hover {
    border-color: #2ea03c;
    color: #6fcf7c;
  }

  .btn-ghost {
    color: #d4e0d8;
  }

  .btn-ghost:hover {
    color: #6fcf7c;
  }

  /* ---- Cookie banner ---- */
  .cookie-banner {
    background: #0e1a13;
  }

  /* ---- Success state ---- */
  .form-success-state h3 {
    color: #e8f0eb;
  }

  .form-success-state p {
    color: #a3b1aa;
  }

  /* ---- Scrollbar (optional polish) ---- */
  ::-webkit-scrollbar {
    background: #0e1a13;
  }

  ::-webkit-scrollbar-thumb {
    background: #2d3a32;
    border-radius: 4px;
  }
}