/* ===== V2 REDESIGN — Trust & Authority + Conversion-Optimized ===== */
/* Fonts loaded via <link> in HTML — no @import to avoid render-blocking */

/* ===== VARIABLES ===== */
:root {
  /* Color Palette: CRM & Client Management + B2B Service */
  --primary: #2563EB;
  --primary-dark: #1E40AF;
  --primary-light: #F1F5FD;
  --secondary: #0F172A;
  --accent: #059669;
  --accent-dark: #047857;
  --background: #F8FAFC;
  --foreground: #0F172A;
  --card: #FFFFFF;
  --card-foreground: #0F172A;
  --muted: #F1F5FD;
  --muted-foreground: #64748B;
  --border: #E4ECFC;
  --destructive: #DC2626;
  --ring: #2563EB;
  --trust-color: #1E40AF;
  --security-green: #059669;
  --metric-highlight: #F59E0B;

  /* Aliases */
  --text: var(--foreground);
  --text-light: var(--muted-foreground);
  --text-white: #FFFFFF;

  /* Shadows */
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.08), 0 8px 10px rgba(0,0,0,.03);
  --card-shadow: 0 4px 6px rgba(0,0,0,0.1);

  /* Radii */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: .3s ease;

  /* Layout */
  --max-w: 1200px;

  /* Typography */
  --font-heading: 'Poppins', 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font: var(--font-body);

  /* Type scale (~1.25 ratio from 17px base) */
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;

  /* On-dark text (hero, CTA, footer, page-header — always on --secondary bg) */
  --on-dark: #CBD5E1;
  --on-dark-muted: #94A3B8;

  /* Trust & Authority Design Tokens */
  --badge-height: 48px;
  --avatar-size: 64px;
  --logo-height: 40px;
  --star-color: #FBBF24;
  --metric-font-size: 3rem;
  --testimonial-bg: #F9FAFB;
  --blockquote-border: 4px solid var(--accent);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-section: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; border: none; }

/* Focus indicators — WCAG 2.4.7 */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none; /* handled by box-shadow in .form-input:focus */
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero__title,
.cta__title,
.page-header__title,
.card__title,
.price-card__name,
.product-card__title,
.case-card__title,
.team-card__name,
.footer__heading,
.step__title,
.accordion__header,
.contact-info-card__title {
  font-family: var(--font-heading);
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--muted); }
.section--dark { background: var(--secondary); color: var(--text-white); }
.section-label {
  display: inline-block; font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--primary);
  margin-bottom: 12px; font-family: var(--font-heading);
}
.section--dark .section-label { color: var(--metric-highlight); }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 20px; color: var(--foreground);
}
.section--dark .section-title { color: var(--text-white); }
.section-subtitle { font-size: var(--text-lg); color: var(--muted-foreground); max-width: 700px; line-height: 1.7; margin-bottom: 32px; }
.section--dark .section-subtitle { color: var(--on-dark-muted); }
.section--dark .card { background: var(--card); color: var(--foreground); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-48 { margin-bottom: 48px; }
.card--centered { text-align: center; }
.card--centered .card__icon { margin-left: auto; margin-right: auto; }
.hero-cta-wrap { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta-wrap--wide { gap: 20px; }
.info-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  text-align: center;
}
.info-badge-wrap { text-align: center; margin-bottom: 40px; }
.info-badge--sm { padding: 8px 20px; font-size: var(--text-sm); }
.hero-promo-wrap { margin-top: 16px; }

/* Comparison cards */
.compare-card--pro { border-left: 4px solid var(--primary); }
.compare-card--pro .card__title { color: var(--primary); }
.compare-card--con { border-left: 4px solid var(--muted-foreground); }
.compare-card--con .card__title { color: var(--muted-foreground); }
.compare-list { display: flex; flex-direction: column; gap: 12px; }
.compare-list__item { display: flex; align-items: center; gap: 10px; }
.compare-list__icon--yes { color: var(--security-green); font-weight: 700; }
.compare-list__icon--no { color: var(--destructive); font-weight: 700; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: .9; }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,.4); }
  50% { box-shadow: 0 0 0 8px rgba(5,150,105,0); }
}

@keyframes stat-reveal {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes badge-shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: var(--text-sm); font-weight: 600; border-radius: var(--radius-sm);
  cursor: pointer; transition: all .3s cubic-bezier(.4,0,.2,1); white-space: nowrap;
  font-family: var(--font-heading); letter-spacing: .01em;
}
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.btn--primary:hover {
  background: var(--primary-dark); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(5,150,105,.25); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,150,105,.35); }
.btn--outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn--outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--secondary); box-shadow: var(--shadow); }
.btn--white:hover { background: var(--muted); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--sm { padding: 10px 20px; font-size: var(--text-xs); }
.btn--lg { padding: 18px 36px; font-size: var(--text-base); }
.btn--block { width: 100%; }

/* Single primary CTA focus — conversion-optimized glow */
.btn--cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; font-size: 1rem; padding: 16px 32px;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
  position: relative;
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
.header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,.08); }
.header:has(.burger.active) { border-bottom-color: transparent; box-shadow: none; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--secondary); font-family: var(--font-heading); }
.logo__icon {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1rem;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; font-size: var(--text-sm); font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm); transition: var(--transition);
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-light); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__phone { font-weight: 700; font-size: .95rem; color: var(--secondary); font-family: var(--font-heading); }

/* Sticky CTA in nav */
.header__cta .btn--primary,
.header__cta .btn--cta {
  box-shadow: 0 2px 10px rgba(37,99,235,.3);
  animation: none;
}
.header.scrolled .header__cta .btn--primary,
.header.scrolled .header__cta .btn--cta {
  animation: pulse 1s ease-out 1;
}

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 44px; height: 44px; padding: 10px 8px; background: none;
  align-items: center; justify-content: center; border-radius: var(--radius-sm);
}
.burger span { display: block; width: 24px; height: 2px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; height: 100dvh;
  background: var(--background); padding: 80px 32px 32px;
  flex-direction: column; gap: 4px;
  overflow-y: auto; z-index: 1001;
  display: none;
}
.mobile-nav.active { display: flex; }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  width: 48px; height: 48px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; color: var(--foreground);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-nav__close:hover { background: var(--muted); }
.mobile-nav a {
  padding: 16px 20px; font-size: var(--text-lg); font-weight: 600; border-radius: var(--radius-sm);
  transition: var(--transition); color: var(--foreground);
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav .btn { margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #162544 40%, var(--primary-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(37,99,235,.25) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(5,150,105,.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(245,158,11,.08) 0%, transparent 40%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1);
  padding: 8px 16px; border-radius: 50px; font-size: .85rem; margin-bottom: 20px;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.12);
}
.hero__badge::before {
  content: ''; width: 8px; height: 8px; background: var(--security-green);
  border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.hero__title span { color: var(--metric-highlight); }
.hero__text { font-size: 1.25rem; color: var(--on-dark); margin-bottom: 36px; max-width: 560px; line-height: 1.8; }
.hero__subtitle { font-size: 1.2rem; color: var(--on-dark); margin-bottom: 36px; max-width: 600px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__visual { display: flex; align-items: center; justify-content: center; }
.hero__card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 440px;
}
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero__stat-num {
  font-size: 2.5rem; font-weight: 900; color: var(--metric-highlight);
  font-family: var(--font-heading);
}
.hero__stat-num.visible { animation: stat-reveal .8s ease-out forwards; }
.hero__stat-label { font-size: .85rem; color: var(--on-dark-muted); margin-top: 4px; }

/* ===== TRUST BAR (NEW — partner/certification badges) ===== */
.trust-bar {
  padding: 24px 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-bar__label {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted-foreground);
  font-family: var(--font-heading); white-space: nowrap;
}
.trust-bar__badges {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  justify-content: center;
}
.trust-bar__badge {
  height: var(--badge-height); display: flex; align-items: center;
  gap: 8px; padding: 8px 16px; border-radius: var(--radius-sm);
  background: var(--muted); border: 1px solid var(--border);
  font-size: .85rem; font-weight: 600; color: var(--trust-color);
  transition: var(--transition);
}
.trust-bar__badge:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--primary); background: var(--primary-light);
}
.trust-bar__badge img {
  height: 24px; width: auto;
}

/* ===== CARDS ===== */
.card {
  background: var(--card); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--card-shadow);
}
.card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: rgba(37,99,235,.2);
}
.card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 20px;
}
.card__icon--blue { background: var(--primary-light); color: var(--primary); }
.card__icon--amber { background: #fef3c7; color: #d97706; }
.card__icon--green { background: #d1fae5; color: var(--security-green); }
.card__icon--purple { background: #ede9fe; color: #7c3aed; }
.card__icon--rose { background: #ffe4e6; color: #e11d48; }
.card__icon--cyan { background: #cffafe; color: #0891b2; }
.card__title { font-size: var(--text-lg); font-weight: 700; margin-bottom: 12px; color: var(--foreground); }
.card__text { color: var(--muted-foreground); font-size: var(--text-base); line-height: 1.7; margin-bottom: 20px; }
.card__text:last-child { margin-bottom: 0; }
.card__tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: var(--text-xs); font-weight: 600; margin-bottom: 16px;
}
.card__tag--blue { background: var(--primary-light); color: var(--primary); }
.card__tag--amber { background: #fef3c7; color: #d97706; }
.card__tag--green { background: #d1fae5; color: var(--security-green); }

/* Product cards */
.product-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--card-shadow);
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
  border-color: rgba(37,99,235,.25);
}
.product-card__header { padding: 32px 32px 0; }
.product-card__badge {
  display: inline-block; padding: 6px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font-heading);
}
.product-card__badge--blue { background: var(--primary); color: #fff; }
.product-card__badge--amber { background: var(--metric-highlight); color: var(--secondary); }
.product-card__badge--green { background: var(--security-green); color: #fff; }
.product-card__title { font-size: var(--text-xl); font-weight: 800; margin: 16px 0 8px; }
.product-card__subtitle { color: var(--muted-foreground); font-size: var(--text-sm); margin-bottom: 20px; }
.product-card__body { padding: 24px 32px 32px; }
.product-card__body .btn { margin-top: 8px; }
.product-card__features { margin-bottom: 24px; }
.product-card__feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: .9rem;
}
.product-card__feature::before {
  content: '\2713'; color: var(--security-green); font-weight: 700; flex-shrink: 0;
  width: 22px; height: 22px; background: #d1fae5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
}

/* ===== PRICING ===== */
.price-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 36px;
  border: 2px solid var(--border); transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative; box-shadow: var(--card-shadow);
}
.price-card:hover { border-color: var(--primary); box-shadow: 0 12px 30px rgba(37,99,235,.12); }
.price-card--featured { border-color: var(--primary); box-shadow: 0 8px 25px rgba(37,99,235,.15); }
.price-card--featured::before {
  content: '\041F\043E\043F\0443\043B\044F\0440\043D\044B\0439'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff;
  padding: 4px 20px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  font-family: var(--font-heading);
}
.price-card__name { font-size: var(--text-md); font-weight: 700; margin-bottom: 8px; }
.price-card__price {
  font-size: 2.5rem; font-weight: 900; color: var(--secondary); margin-bottom: 4px;
  font-family: var(--font-heading);
}
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--muted-foreground); }
.price-card__desc { font-size: var(--text-base); color: var(--muted-foreground); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.6; }
.price-card__features { margin-bottom: 28px; }
.price-card__feature {
  display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: var(--text-sm);
}
.price-card__feature::before {
  content: '\2713'; color: var(--security-green); font-weight: 700; font-size: var(--text-xs);
}
.price-card__feature--no::before { content: '\2014'; color: var(--muted-foreground); }

/* ===== CTA ===== */
.cta {
  padding: 80px 0; color: #fff; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #3B82F6 100%);
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(5,150,105,.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta__title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.cta__text { font-size: var(--text-md); color: var(--on-dark); margin-bottom: 32px; max-width: 560px; }
.cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.cta__trust {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 24px; font-size: var(--text-sm); color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.cta__trust-item { display: flex; align-items: center; gap: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--testimonial-bg); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); border-left: var(--blockquote-border);
  position: relative; transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.2); border-left: var(--blockquote-border); }
.testimonial__stars { color: var(--star-color); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__text {
  font-size: .95rem; line-height: 1.7; color: var(--foreground); margin-bottom: 20px;
  font-style: italic; position: relative;
}
.testimonial__text::before {
  content: '\201C'; position: absolute; top: -10px; left: -4px;
  font-size: 2rem; color: var(--primary); opacity: .2; font-style: normal;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: var(--avatar-size); height: var(--avatar-size); border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #DBEAFE);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 1rem;
  font-family: var(--font-heading);
  border: 2px solid var(--primary-light);
  overflow: hidden;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name { font-weight: 700; font-size: var(--text-sm); }
.testimonial__role { font-size: var(--text-xs); color: var(--muted-foreground); }

/* ===== LOGO GRID (NEW — client logos) ===== */
.logo-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; padding: 40px 0;
}
.logo-grid__item {
  height: var(--logo-height); display: flex; align-items: center;
  filter: grayscale(100%); opacity: .5;
  transition: all .4s ease;
}
.logo-grid__item:hover {
  filter: grayscale(0%); opacity: 1; transform: scale(1.08);
}
.logo-grid__item img { height: 100%; width: auto; object-fit: contain; }

/* ===== CERTIFICATION BADGES (NEW) ===== */
.cert-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 50px; font-size: .85rem;
  font-weight: 700; font-family: var(--font-heading);
  border: 2px solid transparent; transition: var(--transition);
}
.cert-badge--gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E; border-color: #F59E0B;
  background-size: 200% auto;
}
.cert-badge--gold:hover { animation: badge-shine 1.5s ease-in-out; }
.cert-badge--silver {
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  color: #475569; border-color: #94A3B8;
}
.cert-badge--silver:hover { animation: badge-shine 1.5s ease-in-out; }
.cert-badge--blue {
  background: linear-gradient(135deg, var(--primary-light), #DBEAFE);
  color: var(--trust-color); border-color: var(--primary);
}
.cert-badge__icon { font-size: 1.2rem; }

/* ===== METRIC / STAT COUNTER (NEW — enhanced) ===== */
.metric {
  text-align: center; padding: 24px;
}
.metric__number {
  font-size: var(--metric-font-size); font-weight: 900;
  color: var(--primary); font-family: var(--font-heading);
  line-height: 1.1;
}
.metric__number.visible { animation: stat-reveal .8s ease-out forwards; }
.metric__number.pulse { animation: pulse 2s ease-in-out infinite; }
.metric__label {
  font-size: var(--text-sm); color: var(--muted-foreground); margin-top: 8px;
  font-weight: 500;
}
.metric--highlight .metric__number { color: var(--metric-highlight); }
.metric--accent .metric__number { color: var(--accent); }

/* ===== CASE CARD ===== */
.case-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--card-shadow);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,.25); }
.case-card__img {
  height: 200px; background: linear-gradient(135deg, var(--primary-light), #c7d2fe);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary);
}
.case-card__body { padding: 24px; }
.case-card__tag {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: .75rem; font-weight: 600; background: var(--primary-light);
  color: var(--primary); margin-bottom: 12px;
}
.case-card__title { font-size: var(--text-md); font-weight: 700; margin-bottom: 8px; }
.case-card__text { font-size: var(--text-sm); color: var(--muted-foreground); margin-bottom: 16px; }
.case-card__results { display: flex; gap: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.case-card__result-num { font-size: 1.2rem; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.case-card__result-label { font-size: var(--text-xs); color: var(--muted-foreground); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: 8px;
  color: var(--foreground);
}
.form-label--required::after {
  content: ' *'; color: var(--destructive); font-weight: 700;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; height: 48px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; transition: all .25s ease; background: var(--card);
  color: var(--foreground);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--muted-foreground); opacity: .6;
}
.form-textarea { resize: vertical; min-height: 120px; height: auto; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  min-height: 44px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.form-radio:has(input:checked) { border-color: var(--ring); background: var(--primary-light); }
.form-radio input { accent-color: var(--primary); }
.form-hint { font-size: var(--text-xs); color: var(--muted-foreground); margin-top: 6px; }
.form-error { font-size: var(--text-xs); color: var(--destructive); margin-top: 6px; }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.step__title { font-weight: 700; margin-bottom: 6px; }
.step__text { font-size: var(--text-sm); color: var(--muted-foreground); line-height: 1.6; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }
.tab {
  padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: .9rem; cursor: pointer; transition: var(--transition);
  background: var(--muted); color: var(--muted-foreground); border: none;
  font-family: var(--font-heading);
}
.tab:hover { color: var(--primary); background: var(--primary-light); }
.tab.active { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.25); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== ACCORDION ===== */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion + .accordion { margin-top: 8px; }
.accordion__header {
  width: 100%; padding: 20px 24px; background: var(--card); display: flex;
  align-items: center; justify-content: space-between; cursor: pointer;
  font-weight: 600; font-size: .95rem; transition: var(--transition);
}
.accordion__header:hover { background: var(--muted); }
.accordion__icon { font-size: 1.2rem; transition: var(--transition); color: var(--muted-foreground); }
.accordion.active .accordion__icon { transform: rotate(45deg); color: var(--primary); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion__content { padding: 0 24px 20px; color: var(--muted-foreground); font-size: .9rem; line-height: 1.7; }

/* ===== MAP ===== */
.map-container { border-radius: var(--radius); overflow: hidden; height: 400px; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: var(--on-dark-muted); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand { }
.footer__logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 1.1rem; color: #fff; margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer__desc { font-size: var(--text-sm); line-height: 1.7; margin-bottom: 20px; }
.footer__heading { font-weight: 700; color: #fff; font-size: var(--text-sm); margin-bottom: 16px; }
.footer__links a { display: block; padding: 6px 0; font-size: var(--text-sm); transition: var(--transition); }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: .9rem; }
.footer__bottom {
  border-top: 1px solid rgba(148,163,184,.15); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--text-sm);
}

/* ===== BADGE/TAG ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
  border-radius: 50px; font-size: .8rem; font-weight: 600;
  font-family: var(--font-heading);
}
.badge--gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #fff; box-shadow: 0 2px 8px rgba(245,158,11,.3);
}
.badge--silver {
  background: linear-gradient(135deg, #94A3B8, #64748B);
  color: #fff; box-shadow: 0 2px 8px rgba(100,116,139,.3);
}
.badge--blue { background: var(--primary); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,.25); }
.badge--green { background: var(--security-green); color: #fff; }
.badge--trust {
  background: var(--primary-light); color: var(--trust-color);
  border: 1px solid rgba(37,99,235,.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, #162544 100%);
  color: #fff; position: relative;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(37,99,235,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header__breadcrumb { font-size: var(--text-sm); color: var(--on-dark-muted); margin-bottom: 16px; }
.page-header__breadcrumb a { color: var(--on-dark-muted); transition: var(--transition); }
.page-header__breadcrumb a:hover { color: #fff; }
.page-header__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -.02em; }
.page-header__text { font-size: var(--text-md); color: var(--on-dark-muted); max-width: 640px; line-height: 1.7; }

/* ===== TEAM ===== */
.team-card { text-align: center; }
.team-card__photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-light), #c7d2fe);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary); font-weight: 700;
  border: 3px solid var(--primary-light);
  overflow: hidden; transition: var(--transition);
}
.team-card:hover .team-card__photo {
  border-color: var(--primary); box-shadow: 0 4px 16px rgba(37,99,235,.2);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.team-card__role { font-size: .85rem; color: var(--muted-foreground); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 32px; }
.timeline__item::before {
  content: ''; position: absolute; left: -29px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--primary);
  border: 3px solid var(--primary-light);
}
.timeline__year { font-weight: 800; color: var(--primary); font-size: 1.1rem; margin-bottom: 4px; font-family: var(--font-heading); }
.timeline__text { color: var(--muted-foreground); font-size: .9rem; }

/* ===== CONTACT INFO ===== */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: var(--card); border-radius: var(--radius); border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(37,99,235,.25); box-shadow: var(--shadow-md); }
.contact-info-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: var(--primary-light); color: var(--primary);
}
.contact-info-card__title { font-weight: 700; margin-bottom: 4px; }
.contact-info-card__text { font-size: .9rem; color: var(--muted-foreground); }
.contact-info-card__text a { color: var(--primary); font-weight: 600; transition: var(--transition); }
.contact-info-card__text a:hover { color: var(--primary-dark); }

/* ===== SECURITY / TRUST INDICATORS (NEW) ===== */
.trust-indicators {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trust-indicator {
  display: flex; align-items: center; gap: 8px; font-size: .85rem;
  color: var(--muted-foreground); font-weight: 500;
}
.trust-indicator__icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #D1FAE5; color: var(--security-green); font-size: .75rem;
}

/* ===== WIN-WIN SECTION (1:1 concept) ===== */
.winwin { padding: 100px 0; }
.winwin__grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: stretch;
}
.winwin__col {
  background: var(--card); border-radius: var(--radius-lg); padding: 40px;
  border: 2px solid var(--border);
}
.winwin__col:hover { border-color: rgba(37,99,235,.25); box-shadow: var(--shadow-lg); }
.winwin__col-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.winwin__col-title .icon {
  width: 48px; height: 48px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.winwin__col--you .winwin__col-title .icon { background: var(--primary-light); color: var(--primary); }
.winwin__col--clients .winwin__col-title .icon { background: #D1FAE5; color: var(--accent); }
.winwin__item {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  font-size: 1.1rem; line-height: 1.6;
}
.winwin__col--you .winwin__item::before { background: var(--primary-light); color: var(--primary); }
.winwin__col--clients .winwin__item::before { background: #D1FAE5; color: var(--accent); }
.winwin__center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
}
.winwin__logo {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: #fff;
  box-shadow: 0 8px 30px rgba(37,99,235,.3);
}
.winwin__tagline {
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--muted-foreground); text-align: center;
}

/* ===== PAIN POINTS SECTION ===== */
.pain-card {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  border: 2px solid #FEE2E2; transition: var(--transition);
}
.pain-card:hover { border-color: #FECACA; box-shadow: var(--shadow-md); }
.pain-card__icon { font-size: 2rem; margin-bottom: 12px; }
.pain-card__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--destructive); }
.pain-card__text { font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; }

/* ===== CTA FORM INLINE ===== */
.cta-form {
  display: flex; gap: 12px; max-width: 560px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.cta-form .form-input {
  flex: 1; min-width: 180px; background: rgba(255,255,255,.95);
  border: 2px solid rgba(255,255,255,.3); color: var(--foreground);
}
.cta-form .form-input::placeholder { color: var(--muted-foreground); }
.cta-form .form-input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); }
.cta-form .btn { flex-shrink: 0; }

/* ===== FEATURE TABS SECTION (Bitrix24) ===== */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-block__content { }
.feature-block__title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.feature-block__text { font-size: 1.1rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 24px; }
.feature-block__list { list-style: none; }
.feature-block__list li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 1.05rem;
}
.feature-block__list li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: #D1FAE5; color: var(--accent); font-weight: 700; font-size: .7rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-block__visual {
  background: var(--muted); border-radius: var(--radius-lg); padding: 32px;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  min-height: 320px; overflow: hidden;
}
.feature-block__visual svg { width: 100%; height: auto; border-radius: var(--radius); }
.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin: 0 auto 32px; }
  .hero__buttons { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__card { max-width: 360px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { gap: 24px; }
  .logo-grid { gap: 28px; }
  .winwin__grid { grid-template-columns: 1fr; }
  .winwin__center { flex-direction: row; padding: 20px 0; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block--reverse { direction: ltr; }
  .feature-showcase__visual { flex: 0 0 260px; max-width: 260px; }
  .page-header__title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
}

@media (max-width: 768px) {
  .section { padding: calc(var(--space-section) * .7) 0; }
  .nav { display: none; }
  .header__cta .btn { display: none; }
  .header__phone { display: none; }
  .header__inner { gap: 8px; }
  .burger { display: flex; order: 4; }
  .lang-switcher { margin-left: auto; margin-right: 0; order: 2; }
  .lang-switcher__current { padding: 5px 10px; font-size: .75rem; }
  .lang-switcher__dropdown { min-width: 110px; left: auto; right: 0; }
  .theme-toggle { order: 3; }
  .theme-toggle { width: 44px; height: 24px; }
  .theme-toggle__thumb { width: 18px; height: 18px; top: 3px; left: 3px; }
  [data-theme="dark"] .theme-toggle__thumb { transform: translateX(20px); }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__stat-num { font-size: 2rem; }
  .cta__buttons { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .steps { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .price-card { padding: 28px; }
  .winwin__col { padding: 28px; }
  .cta-form { flex-direction: column; }
  .cta-form .form-input { min-width: 100%; }
  .trust-bar__badges { gap: 16px; }
  .trust-bar__badge { padding: 6px 12px; font-size: .8rem; }
  .logo-grid { gap: 20px; }
  .logo-grid__item { height: 30px; }
  .testimonial__avatar { width: 48px; height: 48px; }
  .metric__number { font-size: 2.2rem; }
  .page-header { padding: 120px 0 48px; }
  .page-header__text { font-size: var(--text-base); }
  .crm-hero-badge { padding: 10px 16px; }
  .crm-hero-badge__text { font-size: .9rem; }
  .pipeline { max-width: 100%; }
  .pipeline__num { width: 40px; height: 40px; font-size: .9rem; }
  .pipeline__title { font-size: 1rem; }
  .pipeline__text { font-size: .85rem; }
  .nav__dropdown-menu { min-width: 200px; }
  .price-card__price { font-size: 2rem; }
  .faq__question { font-size: var(--text-sm); padding: 16px 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .container { padding: 0 16px; }
  .trust-bar__inner { flex-direction: column; gap: 12px; }
  .cert-badge { font-size: .8rem; padding: 8px 14px; }
  .page-header { padding: 110px 0 40px; }
  .page-header__title { font-size: 1.6rem; }
  .crm-hero-badge { width: 100%; justify-content: center; }
  .cta__trust { gap: 12px; flex-direction: column; }
  .price-card__price { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; }
  .feature-showcase__item { padding: var(--space-md); }
  .feature-showcase__placeholder { min-height: 150px; padding: 32px 16px; }
  .pipeline__item { gap: 14px; }
  .pipeline__num { width: 36px; height: 36px; font-size: .85rem; }
  .pipeline::before { left: 17px; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* Stat reveal for counters */
.stat-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.stat-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== BRIEF PROGRESS ===== */
.brief-progress { display: flex; gap: 8px; margin-bottom: 40px; }
.brief-progress__step {
  flex: 1; height: 4px; border-radius: 2px; background: var(--border);
  transition: var(--transition);
}
.brief-progress__step.active { background: var(--primary); }
.brief-step { display: none; }
.brief-step.active { display: block; }

/* Reduced motion — WCAG 2.3.3 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --primary: #3B82F6;
  --primary-dark: #2563EB;
  --primary-light: rgba(59,130,246,.12);
  --secondary: #0F172A;
  --accent: #10B981;
  --accent-dark: #059669;
  --background: #0F172A;
  --foreground: #F1F5F9;
  --card: #1E293B;
  --card-foreground: #F1F5F9;
  --muted: #1E293B;
  --muted-foreground: #94A3B8;
  --border: #334155;
  --destructive: #EF4444;
  --ring: #3B82F6;
  --trust-color: #60A5FA;
  --security-green: #10B981;
  --metric-highlight: #FBBF24;
  --text: var(--foreground);
  --text-light: #94A3B8;
  --text-white: #F1F5F9;
  --shadow: 0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow-md: 0 4px 6px rgba(0,0,0,.3), 0 2px 4px rgba(0,0,0,.2);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.3), 0 4px 6px rgba(0,0,0,.2);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.3), 0 8px 10px rgba(0,0,0,.15);
  --card-shadow: 0 4px 6px rgba(0,0,0,.25);
  --testimonial-bg: #1E293B;
  --star-color: #FBBF24;
}
[data-theme="dark"] body {
  background: var(--background);
  color: var(--foreground);
}
[data-theme="dark"] .header {
  background: rgba(15,23,42,.92);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .logo { color: #fff; }
[data-theme="dark"] .nav a { color: var(--foreground); }
[data-theme="dark"] .nav a:hover,
[data-theme="dark"] .nav a.active { color: var(--primary); background: var(--primary-light); }
[data-theme="dark"] .burger span { background: #F1F5F9; }
[data-theme="dark"] .mobile-nav { background: var(--background); border-top: none; }
[data-theme="dark"] .mobile-nav a:hover { background: var(--muted); }
[data-theme="dark"] .nav__dropdown-menu { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .nav__dropdown-menu a { color: var(--foreground); }
[data-theme="dark"] .nav__dropdown-menu a:hover { background: var(--muted); }
[data-theme="dark"] .mobile-nav__sub { border-left-color: var(--border); }
[data-theme="dark"] .card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .card:hover { border-color: rgba(59,130,246,.35); }
[data-theme="dark"] .price-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .price-card__price { color: #F1F5F9; }
[data-theme="dark"] .price-card--featured { border-color: var(--primary); }
[data-theme="dark"] .accordion__header { background: var(--card); color: var(--foreground); }
[data-theme="dark"] .accordion__header:hover { background: var(--muted); }
[data-theme="dark"] .accordion { border-color: var(--border); }
[data-theme="dark"] .contact-info-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .contact-info-card__icon { background: var(--primary-light); }
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
  background: var(--card); border-color: var(--border); color: var(--foreground);
}
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus,
[data-theme="dark"] .form-select:focus {
  border-color: var(--ring); box-shadow: 0 0 0 3px rgba(59,130,246,.2);
}
[data-theme="dark"] .form-radio { border-color: var(--border); color: var(--foreground); }
[data-theme="dark"] .form-radio:has(input:checked) { border-color: var(--ring); background: var(--primary-light); }
[data-theme="dark"] .section--alt { background: var(--muted); }
[data-theme="dark"] .product-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .testimonial { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .case-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .trust-bar { background: var(--card); border-bottom-color: var(--border); }
[data-theme="dark"] .trust-bar__badge { background: var(--muted); border-color: var(--border); color: var(--trust-color); }
[data-theme="dark"] .tab { background: var(--muted); color: var(--muted-foreground); }
[data-theme="dark"] .tab:hover { color: var(--primary); background: var(--primary-light); }
[data-theme="dark"] .btn--outline { border-color: var(--primary); color: var(--primary); }
[data-theme="dark"] .btn--outline:hover { background: var(--primary); color: #fff; }
[data-theme="dark"] .map-container { border-color: var(--border); }
[data-theme="dark"] .team-card__photo { background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(99,102,241,.15)); border-color: rgba(59,130,246,.2); }
[data-theme="dark"] .timeline::before { background: var(--border); }
[data-theme="dark"] .pain-card { border-color: rgba(239,68,68,.25); }
[data-theme="dark"] .pain-card:hover { border-color: rgba(239,68,68,.4); }
[data-theme="dark"] .product-card__feature::before { background: rgba(16,185,129,.15); }
[data-theme="dark"] .price-card__feature::before { color: var(--security-green); }
[data-theme="dark"] .card__icon--blue { background: rgba(59,130,246,.12); }
[data-theme="dark"] .card__icon--amber { background: rgba(217,119,6,.12); }
[data-theme="dark"] .card__icon--green { background: rgba(5,150,105,.12); }
[data-theme="dark"] .card__icon--purple { background: rgba(124,58,237,.12); }
[data-theme="dark"] .card__icon--rose { background: rgba(225,29,72,.12); }
[data-theme="dark"] .card__icon--cyan { background: rgba(8,145,178,.12); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: #CBD5E1;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  transition: background .3s ease;
}
.theme-toggle::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 44px;
}
.theme-toggle:hover { background: #94A3B8; }
[data-theme="dark"] .theme-toggle { background: #475569; }
[data-theme="dark"] .theme-toggle:hover { background: #64748B; }
.theme-toggle__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}
.theme-toggle__sun,
.theme-toggle__moon {
  font-size: .7rem;
  line-height: 1;
  z-index: 1;
  transition: opacity .3s ease;
}
.theme-toggle__sun { opacity: 1; }
.theme-toggle__moon { opacity: .5; }
[data-theme="dark"] .theme-toggle__sun { opacity: .5; }
[data-theme="dark"] .theme-toggle__moon { opacity: 1; }
.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(24px);
  background: #1E293B;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

/* ===== LANGUAGE SWITCHER (dropdown) ===== */
.lang-switcher {
  position: relative; margin-right: 12px; flex-shrink: 0;
}
.lang-switcher__current {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; font-size: .8rem; font-weight: 600;
  color: var(--text); background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; letter-spacing: .5px; transition: var(--transition);
  font-family: inherit;
}
.lang-switcher__current::after {
  content: ''; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; transition: var(--transition);
}
.lang-switcher:hover .lang-switcher__current,
.lang-switcher.open .lang-switcher__current {
  background: var(--muted); border-color: var(--primary); color: var(--primary);
}
.lang-switcher:hover .lang-switcher__current::after,
.lang-switcher.open .lang-switcher__current::after { transform: rotate(180deg); }
.lang-switcher__dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 4px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  min-width: 120px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: var(--transition); z-index: 100;
}
.lang-switcher:hover .lang-switcher__dropdown,
.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-switcher__dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-size: .8rem; font-weight: 500;
  color: var(--text); transition: var(--transition); white-space: nowrap;
}
.lang-switcher__dropdown a:hover {
  background: var(--muted); color: var(--primary);
}
.lang-switcher__dropdown a.active {
  color: var(--primary); font-weight: 700;
}
/* Dark theme */
[data-theme="dark"] .lang-switcher__current {
  color: var(--on-dark); border-color: rgba(255,255,255,.15);
}
[data-theme="dark"] .lang-switcher:hover .lang-switcher__current,
[data-theme="dark"] .lang-switcher.open .lang-switcher__current {
  background: rgba(37,99,235,.15); border-color: var(--primary); color: #fff;
}
[data-theme="dark"] .lang-switcher__dropdown {
  background: #1E293B; border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .lang-switcher__dropdown a { color: #CBD5E1; }
[data-theme="dark"] .lang-switcher__dropdown a:hover {
  background: rgba(37,99,235,.15); color: #fff;
}
[data-theme="dark"] .lang-switcher__dropdown a.active { color: #93C5FD; }

/* ===== PIPELINE (vertical numbered list) ===== */
.pipeline {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.pipeline::before {
  content: ''; position: absolute; left: 23px; top: 24px; bottom: 24px;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: .2;
}
.pipeline__item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 16px 0; position: relative;
}
.pipeline__num {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-light); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  color: var(--primary); position: relative; z-index: 1;
}
.pipeline__body { padding-top: 10px; }
.pipeline__title {
  font-family: var(--font-heading); font-weight: 700; font-size: var(--text-md);
  color: var(--foreground); margin-bottom: 4px;
}
.pipeline__text { font-size: var(--text-sm); color: var(--muted-foreground); line-height: 1.6; }
[data-theme="dark"] .pipeline__num { background: var(--primary-light); }

/* ===== NAV DROPDOWN ===== */
.logo__text { font-family: var(--font-heading); font-weight: 700; font-size: .95rem; }
.nav__dropdown { position: relative; }
.nav__dropdown > a { cursor: pointer; }
.nav__dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0; min-width: 220px; z-index: 100;
  flex-direction: column;
}
.nav__dropdown:hover .nav__dropdown-menu { display: flex; }
.nav__dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: var(--text-sm); color: var(--foreground);
  transition: background .2s; white-space: nowrap;
}
.nav__dropdown-menu a:hover { background: var(--muted); }
.nav__dropdown-menu a.active { color: var(--primary); font-weight: 600; }
.nav__dropdown-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 2px 8px; border-radius: 4px; font-size: .7rem; font-weight: 700;
  font-family: var(--font-heading); color: #fff; letter-spacing: .5px;
}
.nav__dropdown-badge--crm { background: var(--primary); }
.nav__dropdown-badge--erp { background: var(--accent); }
.nav__dropdown-badge--dz { background: #8B5CF6; }

/* Mobile nav sub-menu */
.mobile-nav__sub {
  display: flex; flex-direction: column; padding-left: 20px;
  border-left: 2px solid var(--border); margin: 4px 0 4px 12px;
}
.mobile-nav__sub a { font-size: var(--text-sm); padding: 6px 0; }
.mobile-nav__sub a.active { color: var(--primary); font-weight: 600; }
.mobile-nav__phone { color: var(--primary); font-weight: 600; margin-top: 8px; }
.mobile-nav .lang-switcher {
  display: flex;
  gap: 4px;
  margin: 16px 0 16px 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  position: static;
}
.mobile-nav .lang-switcher a {
  flex: 1;
  padding: 8px 12px;
  font-size: .85rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav .lang-switcher a:hover,
.mobile-nav .lang-switcher a.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}
[data-theme="dark"] .mobile-nav .lang-switcher {
  border-top-color: rgba(255,255,255,.1);
}

/* ===== LANDING PAGE ===== */
.landing-body { font-size: 1.125rem; line-height: 1.7; }
.hero--landing {
  padding: 130px 0 120px;
  background:
    linear-gradient(to right, #000000 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 55%, transparent 70%),
    url('../img/mascots-hero.webp') right center / 55% auto no-repeat,
    #000000;
  color: var(--text-white); overflow: hidden; position: relative;
}
@media (max-width: 900px) {
  .hero--landing {
    background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 50%, var(--secondary) 100%);
  }
}
.hero--landing::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero--landing::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,150,105,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.hero__stats-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 20px 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero__stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.hero__stats-row .hero__stat-number {
  font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800; color: rgba(255,255,255,0.4);
}
.hero__stats-row .hero__stat-desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px;
}
@media (max-width: 768px) {
  .hero__stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.hero__badge--gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(245,158,11,.2), rgba(245,158,11,.08));
  border: 1px solid rgba(245,158,11,.35); color: var(--star-color);
  font-size: .85rem; font-weight: 600; padding: 8px 20px;
  border-radius: 50px; margin-bottom: 28px;
  font-family: var(--font-heading); letter-spacing: .02em;
}
.hero__badge--gold::before { content: '\2605'; font-size: 1rem; }
.hero__title--landing {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 24px; color: var(--text-white);
}
.hero__title--landing .highlight { color: #93C5FD; }
/* Georgian: longer words need smaller hero title + extra padding for stats */
html[lang="ka"] .hero--landing { padding-bottom: 160px; }
html[lang="ka"] .hero__title--landing { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; }
.hero__subtitle--landing {
  font-size: 1.2rem; line-height: 1.7; color: var(--on-dark-muted);
  margin-bottom: 40px; max-width: 540px;
}
.hero__actions--landing { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions--landing .btn--ghost { border-color: rgba(255,255,255,.25); }
.hero__stats-card {
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.hero__stat-block { text-align: center; }
.hero__stat-number {
  font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800;
  color: var(--text-white); line-height: 1; margin-bottom: 6px;
}
.hero__stat-number .suffix { font-size: 1.8rem; color: var(--trust-color); }
.hero__stat-desc { font-size: .95rem; color: var(--on-dark-muted); }

/* Trust bar */
.trust-bar--landing { background: var(--card); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-bar__label--landing {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--muted-foreground); margin-bottom: 20px; text-align: center;
}
.trust-bar__marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trust-bar__track {
  display: flex; align-items: center; gap: 48px; white-space: nowrap; width: max-content;
  animation: marquee 40s linear infinite;
}
.trust-bar__track:hover { animation-play-state: paused; }
.trust-bar__item {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  color: var(--muted-foreground); opacity: .55; transition: opacity var(--transition);
  flex-shrink: 0;
}
.trust-bar__item:hover { opacity: .85; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Win-Win */
.winwin { padding: 100px 0; background: var(--background); }
.winwin__header { text-align: center; margin-bottom: 64px; }
.winwin__layout {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start;
}
.winwin__column {
  background: var(--card); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.winwin__column-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.winwin__column--you .winwin__column-title { color: var(--primary); }
.winwin__column--clients .winwin__column-title { color: var(--accent); }
.winwin__list { display: flex; flex-direction: column; gap: 20px; }
.winwin__item { display: flex; align-items: flex-start; gap: 14px; font-size: 1.1rem; line-height: 1.5; }
.winwin__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.winwin__column--you .winwin__icon { background: var(--primary-light); color: var(--primary); }
.winwin__column--clients .winwin__icon { background: rgba(5,150,105,.1); color: var(--accent); }
.winwin__center {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding-top: 80px;
}
.winwin__logo {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-white); font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800;
  box-shadow: 0 8px 30px rgba(37,99,235,.25); position: relative;
}
.winwin__logo::before, .winwin__logo::after {
  content: ''; position: absolute; top: 50%; width: 48px; height: 2px; background: var(--border);
}
.winwin__logo::before { right: 100%; margin-right: 16px; }
.winwin__logo::after { left: 100%; margin-left: 16px; }
.winwin__tagline {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  color: var(--muted-foreground); margin-top: 16px; text-align: center;
}
.winwin__emoji { font-size: 1.4rem; }
.winwin__mascot {
  width: 64px; height: 64px; object-fit: contain; vertical-align: middle; margin-right: 8px;
}

/* Problems */
.problems { padding: 100px 0; background: var(--muted); }
.problems__header { text-align: center; margin-bottom: 56px; }
.problems__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problems__grid .problem-card:nth-child(-n+2) { padding: 36px; }
.problems__grid .problem-card:nth-child(-n+2) .problem-card__icon { font-size: 2.2rem; }
.problems__grid .problem-card:nth-child(-n+2) .problem-card__title { font-size: 1.25rem; }
.problem-card {
  background: var(--card); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--destructive);
  opacity: .6; border-radius: 4px 0 0 4px;
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.problem-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.problem-card__title {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 8px; color: var(--foreground);
}
.problem-card__text { font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; }

/* Fixes */
.fixes { padding: 100px 0; background: var(--background); }
.fixes__header { text-align: center; margin-bottom: 56px; }
.fixes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fix-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 28px 32px;
  border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.fix-card:nth-child(odd) { border-right: 1px solid var(--border); }
.fix-card:nth-last-child(-n+2) { border-bottom: none; }
.fix-card:hover { background: var(--muted); }
.fix-card__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(5,150,105,.1); color: var(--accent);
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.fix-card__content { flex: 1; }
.fix-card__title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 4px; color: var(--foreground);
}
.fix-card__text { font-size: .95rem; color: var(--muted-foreground); line-height: 1.6; }

/* RPK Products */
.rpk-products { padding: 100px 0; background: var(--muted); }
.rpk-products__header { text-align: center; margin-bottom: 56px; }
.rpk-products__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:first-child {
  grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 40px; padding: 48px 40px;
}
.product-card:first-child .product-card__badge { width: 72px; height: 72px; font-size: 1.3rem; border-radius: 18px; flex-shrink: 0; }
.product-card:first-child .product-card__title { font-size: 1.6rem; }
.product-card:first-child .product-card__text { margin-bottom: 16px; }
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.product-card__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  margin-bottom: 20px; color: var(--text-white);
}
.product-card__badge--crm { background: linear-gradient(135deg, var(--primary), #3B82F6); }
.product-card__badge--erp { background: linear-gradient(135deg, var(--accent), #10B981); }
.product-card__badge--dz { background: linear-gradient(135deg, #8B5CF6, #A78BFA); }
.product-card__title {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 12px; color: var(--foreground);
}
.product-card__text {
  font-size: 1.05rem; color: var(--muted-foreground); line-height: 1.6;
  margin-bottom: 24px; flex-grow: 1;
}
.product-card__link {
  font-family: var(--font-heading); font-weight: 600; color: var(--primary);
  font-size: 1rem; transition: color var(--transition);
}
.product-card__link:hover { color: var(--primary-dark); }

/* How we work */
.howwork { padding: 100px 0; background: var(--background); }
.howwork__header { text-align: center; margin-bottom: 64px; }
.howwork__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative;
}
.howwork__steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .25; z-index: 0;
}
.howwork__steps--3 { grid-template-columns: repeat(3, 1fr); }
.howwork__step { text-align: center; position: relative; z-index: 1; }
.howwork__step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #EEF2FF);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--primary); margin: 0 auto 20px;
}
.howwork__step-title {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px; color: var(--foreground);
}
.howwork__step-text { font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; }

/* Cases */
.cases-section { padding: 100px 0; background: var(--muted); }
.cases-section__header { text-align: center; margin-bottom: 56px; }
.cases-section__grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto; gap: 24px;
}
.case-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: all var(--transition);
}
.cases-section__grid .case-card:first-child {
  grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; padding: 48px;
}
.cases-section__grid .case-card:first-child .case-card__company { font-size: .9rem; }
.cases-section__grid .case-card:first-child .case-card__title { font-size: 1.4rem; margin-bottom: 24px; }
.cases-section__grid .case-card:first-child .case-card__metric-value { font-size: 2rem; }
.case-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.case-card__company {
  font-family: var(--font-heading); font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px;
}
.case-card__title {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 16px; color: var(--foreground); line-height: 1.3;
}
.case-card__metrics { display: flex; gap: 24px; flex-wrap: wrap; }
.case-card__metric { display: flex; flex-direction: column; }
.case-card__metric-value {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.case-card__metric-label { font-size: .85rem; color: var(--muted-foreground); margin-top: 4px; }

/* Reviews */
.reviews { padding: 100px 0; background: var(--background); }
.reviews__header { text-align: center; margin-bottom: 56px; }
.reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.review-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow); position: relative;
}
.review-card:last-child { grid-column: 1 / -1; max-width: 680px; margin: 0 auto; }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--star-color); font-size: 1.1rem; }
.review-card__text {
  font-size: 1.1rem; line-height: 1.7; color: var(--foreground);
  margin-bottom: 24px; font-style: italic;
}
.review-card__author { display: flex; flex-direction: column; }
.review-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--foreground); }
.review-card__role { font-size: .9rem; color: var(--muted-foreground); }

/* CTA Form */
.cta--form { padding: 100px 0; background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%); color: var(--text-white); }
.cta--form__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cta--form__title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
}
.cta--form__text { font-size: 1.15rem; line-height: 1.7; color: var(--on-dark-muted); margin-bottom: 32px; }
.cta--form__perks { display: flex; flex-direction: column; gap: 14px; }
.cta--form__perk { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; color: var(--on-dark); }
.cta--form__perk-icon { color: var(--accent); font-size: 1.2rem; }
.cta--form__form {
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 40px;
}
.cta--form__form-title {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
  margin-bottom: 28px; color: var(--text-white);
}
.cta--form__field { margin-bottom: 20px; }
.cta--form__label { display: block; font-size: .9rem; font-weight: 600; color: var(--on-dark-muted); margin-bottom: 8px; }
.cta--form__input {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm);
  color: var(--text-white); font-size: 1rem; transition: border-color var(--transition);
}
.cta--form__input::placeholder { color: var(--muted-foreground); }
.cta--form__input:focus { border-color: var(--primary); outline: none; }
.cta--form__submit { margin-top: 8px; }
.cta--form__consent { font-size: .8rem; color: var(--muted-foreground); margin-top: 12px; text-align: center; }
.cta--form__consent-link { color: var(--on-dark-muted); text-decoration: underline; }

/* Dark mode overrides for landing */
[data-theme="dark"] .trust-bar--landing { background: var(--card); border-bottom-color: var(--border); }
[data-theme="dark"] .trust-bar__item { color: var(--muted-foreground); }
[data-theme="dark"] .winwin__column { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .problem-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .problem-card::before { opacity: .8; }
[data-theme="dark"] .fix-card { border-color: var(--border); }
[data-theme="dark"] .fix-card:hover { background: var(--muted); }
[data-theme="dark"] .problems { background: var(--muted); }
[data-theme="dark"] .rpk-products { background: var(--muted); }
[data-theme="dark"] .cases-section { background: var(--muted); }
[data-theme="dark"] .case-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .review-card { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .cta--form__input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: var(--text-white); }
[data-theme="dark"] .product-card { background: var(--card); border-color: var(--border); }

/* Landing responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__stats-card { max-width: 500px; }
  .winwin__layout { grid-template-columns: 1fr; gap: 32px; }
  .winwin__center { padding-top: 0; order: -1; }
  .winwin__logo::before, .winwin__logo::after { display: none; }
  .howwork__steps { grid-template-columns: repeat(2, 1fr); }
  .howwork__steps::before { display: none; }
  .cta--form__inner { grid-template-columns: 1fr; gap: 48px; }
  .cases-section__grid { grid-template-columns: 1fr 1fr; }
  .cases-section__grid .case-card:first-child { grid-row: auto; padding: 36px; }
  .cases-section__grid .case-card:first-child .case-card__title { font-size: 1.2rem; }
  .cases-section__grid .case-card:first-child .case-card__metric-value { font-size: 1.6rem; }
  .product-card:first-child { flex-direction: column; gap: 0; padding: 40px 32px; }
}
@media (max-width: 768px) {
  .hero--landing { padding: 90px 0 20px; }
  .hero__title--landing { font-size: 2rem; }
  .hero__subtitle--landing { font-size: 1.05rem; }
  .hero__stats-bottom {
    position: static; background: rgba(0,0,0,0.5);
    margin-top: 32px; border-radius: 12px; padding: 20px 16px;
  }
  .hero__stats-card { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px; }
  .hero__stat-number { font-size: 2.2rem; }
  .problems__grid, .rpk-products__grid, .cases-section__grid, .reviews__grid { grid-template-columns: 1fr; }
  .fixes__grid { grid-template-columns: 1fr; }
  .fix-card:nth-child(odd) { border-right: none; }
  .case-card:first-child { grid-row: auto; padding: 36px; }
  .product-card:first-child { grid-column: auto; }
  .review-card:last-child { max-width: none; }
  .howwork__steps { grid-template-columns: 1fr; }
  .trust-bar__track { gap: 28px; animation-duration: 25s; }
  .winwin__column { padding: 28px; }
  .hero__actions--landing { flex-direction: column; }
  .hero__actions--landing .btn { width: 100%; }
  .cta--form__inner { gap: 32px; }
  .cta--form__form { padding: 28px; }
}

/* ===== FEATURE SHOWCASE ===== */
.feature-showcase { display: flex; flex-direction: column; gap: 48px; }
.feature-showcase__item {
  display: flex; align-items: center; gap: 48px;
  padding: var(--space-xl);
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.feature-showcase__item:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: rgba(37,99,235,.2);
}
.feature-showcase__item--reverse { flex-direction: row-reverse; }
.feature-showcase__content { flex: 1; min-width: 0; }
.feature-showcase__title {
  font-size: var(--text-lg); font-weight: 800; margin: 12px 0;
  color: var(--foreground);
}
.feature-showcase__text {
  color: var(--muted-foreground); font-size: var(--text-base);
  line-height: 1.7; max-width: 55ch;
}
.feature-showcase__visual { flex: 0 0 340px; max-width: 340px; }
.feature-showcase__placeholder {
  background: var(--muted); border-radius: var(--radius);
  border: 2px dashed var(--border); padding: 48px 24px;
  text-align: center; color: var(--muted-foreground);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-height: 200px; justify-content: center;
}
.feature-showcase__placeholder span { font-size: var(--text-3xl); }
.feature-showcase__placeholder p { font-size: var(--text-xs); margin: 0; }
.feature-showcase__visual img {
  width: 100%; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
}

@media (max-width: 768px) {
  .feature-showcase__item,
  .feature-showcase__item--reverse { flex-direction: column; gap: 24px; }
  .feature-showcase__visual { flex: none; max-width: 100%; width: 100%; }
}

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-size: var(--text-base); font-weight: 600; color: var(--foreground);
  list-style: none; user-select: none; transition: color .2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; content: ''; }
.faq__question::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--muted-foreground); flex-shrink: 0; margin-left: 16px;
  transition: transform .3s;
}
.faq__item[open] .faq__question::after { content: '\2212'; transform: rotate(180deg); }
.faq__question:hover { color: var(--primary); }
.faq__answer {
  padding: 0 0 20px;
  color: var(--muted-foreground); font-size: var(--text-sm);
  line-height: 1.7; max-width: 65ch;
}

/* ===== LEGAL / PRIVACY ===== */
.legal { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.legal__section {
  background: var(--card); border-radius: var(--radius-lg); padding: 32px 36px;
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  transition: border-color .3s;
}
.legal__section:hover { border-color: rgba(37,99,235,.15); }
.legal__heading {
  font-family: var(--font-heading); font-size: var(--text-lg); font-weight: 700;
  color: var(--foreground); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light); display: flex; align-items: center; gap: 12px;
}
.legal__heading::before {
  content: ''; width: 4px; height: 24px; border-radius: 2px;
  background: var(--primary); flex-shrink: 0;
}
.legal__text {
  font-size: var(--text-base); color: var(--muted-foreground); line-height: 1.8;
  margin-bottom: 12px; max-width: 72ch;
}
.legal__text:last-child { margin-bottom: 0; }
.legal__text strong { color: var(--foreground); font-weight: 600; }
.legal__list {
  margin: 8px 0 16px; padding-left: 0; display: flex; flex-direction: column; gap: 8px;
}
.legal__list li {
  font-size: var(--text-sm); color: var(--muted-foreground); line-height: 1.7;
  padding-left: 24px; position: relative;
}
.legal__list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-light); border: 2px solid var(--primary);
}
.legal__link { color: var(--primary); font-weight: 600; transition: color .2s; }
.legal__link:hover { color: var(--primary-dark); text-decoration: underline; }

[data-theme="dark"] .legal__section { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .legal__section:hover { border-color: rgba(59,130,246,.25); }
[data-theme="dark"] .legal__heading { border-bottom-color: var(--primary-light); }
[data-theme="dark"] .legal__list li::before { background: var(--primary-light); border-color: var(--primary); }

@media (max-width: 768px) {
  .legal__section { padding: 24px 20px; }
  .legal__heading { font-size: var(--text-md); }
}

/* ===== CRM HERO BADGES ===== */
.crm-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 20px;
  box-shadow: var(--card-shadow); transition: all .3s;
}
.crm-hero-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.crm-hero-badge__icon { font-size: 1.4rem; }
.crm-hero-badge__text { font-size: var(--text-sm); font-weight: 600; color: var(--foreground); }
