/* ===== ROOT VARS ===== */
:root {
  --bg: #080808;
  --bg-card: #0f0f0f;
  --bg-card2: #141414;
  --text: #f0f0f0;
  --muted: #888;
  --dim: #444;
  --accent: #22c55e;
  --accent-d: #16a34a;
  --accent-glow: rgba(34, 197, 94, .15);
  --teal: #14b8a6;
  --border: rgba(255, 255, 255, .07);
  --border-a: rgba(34, 197, 94, .22);
  --r: 10px;
  --r-lg: 16px;
  --tr: .25s ease;
  --red: #ef4444;
  --yellow: #f59e0b;
  --blue: #3b82f6;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-d); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 56px; font-weight: 900; line-height: 1.1; }
h2 { font-size: 40px; font-weight: 800; line-height: 1.15; }
h3 { font-size: 24px; font-weight: 800; line-height: 1.3; }
h4 { font-size: 18px; font-weight: 700; }
p { line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, .35);
}
.btn-outline {
  border: 1px solid var(--border-a);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: rgba(34, 197, 94, .08); }
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--border-a); color: var(--text); }
.btn-lg { padding: 18px 36px; font-size: 17px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 8, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: background var(--tr);
}
.site-header.scrolled { background: rgba(8, 8, 8, .97); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  flex-wrap: wrap;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .06em;
}
.nav__logo-badge {
  background: rgba(34, 197, 94, .12);
  border: 1px solid var(--border-a);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--tr);
  cursor: pointer;
  display: block;
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}
.nav__link--sub {
  padding-left: 24px;
  font-size: 13px;
}
.nav__mobile-section {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--tr);
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted);
  transition: all var(--tr);
}
.nav__dropdown-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
}

/* Nav right */
.nav__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr);
  display: block;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 8, .98);
  width: 100%;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  padding: 16px 24px 24px;
  z-index: 99;
}
.nav__mobile-menu.mobile-open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(34, 197, 94, .08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(20, 184, 166, .06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid var(--border-a);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__video {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero__video-placeholder {
  text-align: center;
  color: var(--muted);
  padding: 24px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.hero__stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  background: rgba(34, 197, 94, .08);
  border: 1px solid var(--border-a);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BENEFIT CARDS ===== */
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color var(--tr);
}
.benefit-card:hover { border-color: var(--border-a); }
.benefit-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(34, 197, 94, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.benefit-card__title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.benefit-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--tr);
}
.service-card:hover {
  border-color: var(--border-a);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}
.service-card__icon { font-size: 36px; }
.service-card__title { font-size: 20px; font-weight: 800; }
.service-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.service-card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

/* ===== CASE CARDS ===== */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--tr);
}
.case-card:hover {
  border-color: var(--border-a);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}
.case-card__img {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-card2), rgba(34, 197, 94, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.case-card__body { padding: 28px; }
.case-card__tag {
  display: inline-block;
  background: rgba(34, 197, 94, .1);
  border: 1px solid var(--border-a);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}
.case-card__title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.case-card__task { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.case-card__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.case-result {
  background: var(--bg-card2);
  border-radius: 10px;
  padding: 12px;
}
.case-result__num { font-size: 22px; font-weight: 900; }
.case-result__label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num { font-size: 40px; font-weight: 900; line-height: 1; }
.stat-item__label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ===== WHY LIST ===== */
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color var(--tr);
}
.why-item:hover { border-color: var(--border-a); }
.why-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(34, 197, 94, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.why-item__title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.why-item__text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  user-select: none;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--tr);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; color: var(--muted); line-height: 1.7; font-size: 15px; }

.faq-category { margin-bottom: 8px; }
.faq-category-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0;
  padding: 16px 0 8px;
  color: var(--text);
}

/* ===== LEAD FORM SECTION ===== */
.lead-section {
  background: var(--bg-card);
  border: 1px solid var(--border-a);
  border-radius: 24px;
  padding: 56px 64px;
}
.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.lead-form--single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--tr);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); }
.form-field select { cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field--full { grid-column: 1 / -1; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.form-success.show { display: block; }

/* ===== LEAD MODAL ===== */
.lead-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.lead-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lead-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-a);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}
.lead-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.lead-modal__title { font-size: 22px; font-weight: 900; }
.lead-modal__sub { font-size: 14px; color: var(--muted); margin-top: 6px; }
.lead-modal__close {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 18px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--tr);
}
.lead-modal__close:hover { border-color: var(--border-a); color: var(--text); }
.modal-form { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

/* ===== CLIENT LOGOS ===== */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.logo-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 13px;
  font-weight: 700;
  transition: border-color var(--tr), color var(--tr);
  text-align: center;
  padding: 8px;
}
.logo-item:hover { border-color: var(--border-a); color: var(--muted); }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--border-a); transform: translateY(-4px); }
.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-card2), rgba(20, 184, 166, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__tag {
  display: inline-block;
  background: rgba(20, 184, 166, .1);
  border: 1px solid rgba(20, 184, 166, .2);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}
.blog-card__title { font-size: 16px; font-weight: 800; margin-bottom: 8px; line-height: 1.4; }
.blog-card__sub { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; font-size: 12px; color: var(--dim); }
.blog-card__read { margin-top: 16px; }

/* ===== FOOTER ===== */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand__logo { font-size: 22px; font-weight: 900; letter-spacing: .06em; }
.footer-brand__badge {
  display: inline-block;
  background: rgba(34, 197, 94, .12);
  border: 1px solid var(--border-a);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-left: 8px;
}
.footer-brand__mission { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-brand__contacts { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-brand__contact { font-size: 14px; color: var(--muted); transition: color var(--tr); }
.footer-brand__contact:hover { color: var(--text); }
.footer-col__title { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col__link { display: block; font-size: 14px; color: var(--muted); padding: 4px 0; transition: color var(--tr); }
.footer-col__link:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 14px; color: var(--dim); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--tr);
  text-decoration: none;
}
.footer-social:hover { border-color: var(--border-a); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 197, 94, .06) 0%, transparent 70%);
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid var(--border-a);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== CTA BANNER ===== */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, .1), rgba(20, 184, 166, .06));
  border: 1px solid var(--border-a);
  border-radius: 20px;
  padding: 40px 48px;
  flex-wrap: wrap;
}
.cta-banner__title { font-size: 24px; font-weight: 900; margin-bottom: 8px; }
.cta-banner__sub { font-size: 15px; color: var(--muted); }

/* ===== WHAT INCLUDED ===== */
.what-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color var(--tr);
}
.included-item:hover { border-color: var(--border-a); }
.included-item__icon { color: var(--accent); font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.included-item__text { font-size: 14px; line-height: 1.6; }

/* ===== PRICE / RESULT CARD ===== */
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-a);
  border-radius: 20px;
  padding: 36px;
}
.result-card__label { font-size: 12px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.result-card__metric { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.result-card__sub { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.result-card__items { display: flex; flex-direction: column; gap: 10px; }
.result-card__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.result-card__item::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color var(--tr);
}
.testimonial-card:hover { border-color: var(--border-a); }
.testimonial-card__stars { font-size: 18px; margin-bottom: 16px; color: var(--yellow); }
.testimonial-card__text { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 15px; font-weight: 800; }
.testimonial-card__company { font-size: 13px; color: var(--muted); }

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color var(--tr);
}
.contact-card:hover { border-color: var(--border-a); }
.contact-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(34, 197, 94, .1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-card__label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-card__value { font-size: 16px; font-weight: 700; }
.contact-card__link { color: var(--accent); transition: color var(--tr); }
.contact-card__link:hover { color: var(--teal); }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 16px;
  font-weight: 700;
  margin-top: 32px;
  flex-direction: column;
  gap: 12px;
}

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--tr);
  font-family: 'Nunito', sans-serif;
}
.filter-tab:hover, .filter-tab.active {
  border-color: var(--border-a);
  color: var(--accent);
  background: rgba(34, 197, 94, .08);
}

/* ===== SERVICES OVERVIEW (our-services.html) ===== */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all var(--tr);
}
.feature-card:hover { border-color: var(--border-a); transform: translateY(-4px); }
.feature-card__icon { font-size: 48px; margin-bottom: 20px; }
.feature-card__title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.feature-card__text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.coming-soon-badge {
  display: inline-block;
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .25);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
}

/* ===== LOADING STATE ===== */
.btn-loading { opacity: .7; pointer-events: none; }
.btn-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin-left: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .what-included { grid-template-columns: 1fr; }
  .lead-section { padding: 36px 24px; }
  .lead-form { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 24px; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero__stats { gap: 24px; }
}

@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .case-card__results { grid-template-columns: 1fr 1fr; }
  .lead-modal { padding: 24px 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .section--sm { padding: 48px 0; }
  .page-hero { padding: 110px 0 60px; }
}
