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

:root {
  --bg-primary: #08080a;
  --bg-secondary: #111113;
  --bg-tertiary: #18191e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #efefef;
  --text-secondary: rgba(255, 255, 255, 0.62);
  --text-tertiary: rgba(255, 255, 255, 0.38);
  --accent: #7c5cfc;
  --accent-light: #9b82fc;
  --accent-glow: rgba(124, 92, 252, 0.15);
  --accent-gradient: linear-gradient(135deg, #7c5cfc 0%, #5b8af5 100%);
  --green: #3ecf8e;
  --red: #f75b5b;
  --orange: #f5a623;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1140px;
  --nav-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle dot grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 16px;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 450;
  color: var(--text-secondary);
  text-decoration: none;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

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

.btn-nav-secondary {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid var(--border);
  background: transparent;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  cursor: pointer;
}
.btn-nav-secondary:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-nav-primary {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: none;
  background: var(--accent-gradient);
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-nav-primary:hover {
  opacity: 0.88;
}

/* hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 4px 0;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-mobile {
  display: none;
}

/* ===== SECTIONS ===== */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
}

.divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.divider hr {
  border: none;
  height: 1px;
  background: var(--border);
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 60px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero .section-title {
  font-size: clamp(38px, 5.8vw, 62px);
  max-width: 880px;
}
.hero .section-title .accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .section-subtitle {
  max-width: 640px;
  margin-top: 18px;
  margin-bottom: 36px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.hero-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 260px;
  line-height: 1.5;
}
.hero-check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(62, 207, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hero-check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(124, 92, 252, 0.25);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
}

/* ===== PROBLEM ===== */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.problem-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.problem-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(247, 91, 91, 0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.problem-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.problem-conclusion {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 92, 252, 0.2);
  background: rgba(124, 92, 252, 0.04);
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== PRODUCT ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.product-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.product-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.product-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.product-formula {
  grid-column: 1/-1;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 92, 252, 0.2);
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.06) 0%,
    rgba(91, 138, 245, 0.04) 100%
  );
  text-align: center;
}
.product-formula p {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

/* ===== AUDIENCE ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.audience-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}
.audience-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.audience-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.audience-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ===== CASES (NEW) ===== */
.cases-scroll-wrap {
  position: relative;
  margin-top: 40px;
}
.cases-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cases-grid::-webkit-scrollbar {
  height: 6px;
}
.cases-grid::-webkit-scrollbar-track {
  background: transparent;
}
.cases-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.case-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition:
    border-color 0.3s,
    background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.case-icon.red {
  background: rgba(247, 91, 91, 0.1);
}
.case-icon.orange {
  background: rgba(245, 166, 35, 0.1);
}
.case-icon.yellow {
  background: rgba(250, 204, 21, 0.1);
}

.case-card h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}
.case-pain {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.case-fix {
  font-size: 13px;
  color: var(--green);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.case-fix svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

/* ===== ROLES ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.role-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.role-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.role-badge {
  display: inline-flex;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}
.role-badge.cto {
  background: rgba(91, 138, 245, 0.12);
  color: #5b8af5;
}
.role-badge.cfo {
  background: rgba(62, 207, 142, 0.12);
  color: var(--green);
}
.role-badge.buh {
  background: rgba(245, 166, 35, 0.12);
  color: var(--orange);
}
.role-goal {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.role-result {
  font-size: 13.5px;
  color: var(--text-tertiary);
  line-height: 1.55;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ===== VALUE ===== */
.value-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.value-item {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}
.value-num {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.value-item p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.value-conclusion {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 92, 252, 0.2);
  background: rgba(124, 92, 252, 0.04);
  text-align: center;
}
.value-conclusion p {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== CALCULATOR (NEW) ===== */
.calc-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-label-value {
  color: var(--accent-light);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* range slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 12px var(--accent-glow);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 12px var(--accent-glow);
  cursor: pointer;
}

/* toggle */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.toggle-row-label {
  font-size: 13.5px;
  color: var(--text-secondary);
}
.toggle-row-extra {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-left: auto;
  margin-right: 12px;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.toggle-slider::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-tertiary);
  transition:
    transform 0.2s,
    background 0.2s;
}
.toggle input:checked + .toggle-slider {
  background: var(--accent);
  border-color: var(--accent);
}
.toggle input:checked + .toggle-slider::after {
  transform: translateX(20px);
  background: #fff;
}

/* radio pills */
.radio-pills {
  display: flex;
  gap: 6px;
}
.radio-pill {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.radio-pill:hover {
  border-color: var(--border-hover);
}
.radio-pill input {
  display: none;
}
.radio-pill.active {
  border-color: var(--accent);
  background: rgba(124, 92, 252, 0.08);
}
.radio-pill-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
}
.radio-pill-fee {
  font-size: 11px;
  color: var(--text-tertiary);
  display: block;
  margin-top: 2px;
}

/* stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.stepper button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.stepper button:hover {
  background: var(--bg-card-hover);
}
.stepper-val {
  width: 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 36px;
  line-height: 36px;
  font-variant-numeric: tabular-nums;
  font-family: inherit;
}

/* result panel */
.calc-result {
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 92, 252, 0.25);
  background: linear-gradient(
    160deg,
    rgba(124, 92, 252, 0.08) 0%,
    rgba(91, 138, 245, 0.04) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.calc-result-label {
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.calc-result-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-result-big {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.calc-result-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.calc-result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-result-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.calc-result-line span:first-child {
  color: var(--text-tertiary);
}
.calc-result-line span:last-child {
  color: var(--text-secondary);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.calc-disclaimer {
  font-size: 11.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== PROCESS ===== */
.process-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.process-card {
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.process-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.process-card svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.process-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  text-transform: uppercase;
}
.process-card-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== DIFFERENTIATOR ===== */
.diff-content {
  margin-top: 40px;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.diff-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  margin-top: 2px;
}

.diff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.diff-box {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.diff-box.old {
  background: rgba(247, 91, 91, 0.04);
  border-color: rgba(247, 91, 91, 0.15);
}
.diff-box.new {
  background: rgba(62, 207, 142, 0.04);
  border-color: rgba(62, 207, 142, 0.15);
}
.diff-box-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.diff-box.old .diff-box-label {
  color: var(--red);
}
.diff-box.new .diff-box-label {
  color: var(--green);
}
.diff-box-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== ECONOMICS ===== */
.econ-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.econ-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.econ-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.econ-point p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.econ-insight {
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 92, 252, 0.2);
  background: rgba(124, 92, 252, 0.04);
  text-align: center;
}
.econ-insight p {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

/* ===== PARTNERS ===== */
.partners-section {
  text-align: center;
}
.partners-section .section-subtitle {
  margin: 0 auto 36px;
  max-width: 560px;
}
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 36px;
}
.partner-benefit {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-benefit-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.blog-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.blog-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-light);
}
.blog-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}
.blog-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-more {
  margin-top: 28px;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-q {
  padding: 18px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-q svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== CONTACTS (NEW) ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}
.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item-label {
  font-size: 12px;
  color: var(--text-tertiary);
}
.contact-item-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--text-primary);
  text-decoration: none;
}
.contact-item-value a:hover {
  color: var(--accent-light);
}
.contacts-response {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.contact-form h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-field select {
  cursor: pointer;
}
.form-field select option {
  background: var(--bg-tertiary);
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
}
.final-cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.final-cta > * {
  position: relative;
  z-index: 1;
}
.final-cta .section-title {
  max-width: 700px;
  margin: 0 auto 14px;
}
.final-cta .section-subtitle {
  max-width: 580px;
  margin: 0 auto 36px;
}
.final-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}
.footer-brand span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  transform: translateY(24px);
}
.anim.vis {
  animation: fadeUp 0.55s ease forwards;
}
.d1 {
  animation-delay: 0.1s !important;
}
.d2 {
  animation-delay: 0.2s !important;
}
.d3 {
  animation-delay: 0.3s !important;
}
.d4 {
  animation-delay: 0.4s !important;
}

/* ===== ICON GLOW SYSTEM ===== */
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes iconPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(124, 92, 252, 0.12);
  }
  50% {
    box-shadow:
      0 0 32px rgba(124, 92, 252, 0.25),
      0 0 60px rgba(124, 92, 252, 0.08);
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.icon-glow {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  animation: iconFloat 4s ease-in-out infinite;
}
.icon-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: inherit;
  opacity: 0.4;
  filter: blur(12px);
  z-index: 0;
  transition:
    opacity 0.3s,
    filter 0.3s;
}
.icon-glow:hover::before {
  opacity: 0.6;
  filter: blur(18px);
}
.icon-glow svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  transition: transform 0.3s;
}
.icon-glow:hover svg {
  transform: scale(1.12);
}

.icon-glow.purple {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.18),
    rgba(91, 138, 245, 0.1)
  );
}
.icon-glow.purple svg {
  color: #a78bfa;
  filter: drop-shadow(0 0 8px rgba(124, 92, 252, 0.5));
}
.icon-glow.green {
  background: linear-gradient(
    135deg,
    rgba(62, 207, 142, 0.15),
    rgba(52, 211, 153, 0.08)
  );
}
.icon-glow.green svg {
  color: #4ade80;
  filter: drop-shadow(0 0 8px rgba(62, 207, 142, 0.5));
}
.icon-glow.blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(96, 165, 250, 0.1)
  );
}
.icon-glow.blue svg {
  color: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}
.icon-glow.red {
  background: linear-gradient(
    135deg,
    rgba(248, 113, 113, 0.15),
    rgba(239, 68, 68, 0.08)
  );
}
.icon-glow.red svg {
  color: #f87171;
  filter: drop-shadow(0 0 8px rgba(248, 113, 113, 0.5));
}
.icon-glow.orange {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.15),
    rgba(245, 158, 11, 0.08)
  );
}
.icon-glow.orange svg {
  color: #fbbf24;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}
.icon-glow.cyan {
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.15),
    rgba(6, 182, 212, 0.08)
  );
}
.icon-glow.cyan svg {
  color: #22d3ee;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}
.icon-glow.pink {
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.15),
    rgba(236, 72, 153, 0.08)
  );
}
.icon-glow.pink svg {
  color: #f472b6;
  filter: drop-shadow(0 0 8px rgba(244, 114, 182, 0.5));
}

/* stagger float */
.product-card:nth-child(2) .icon-glow {
  animation-delay: 0.5s;
}
.product-card:nth-child(3) .icon-glow {
  animation-delay: 1s;
}
.product-card:nth-child(4) .icon-glow {
  animation-delay: 1.5s;
}
.case-card:nth-child(odd) .icon-glow {
  animation-delay: 0.3s;
}
.case-card:nth-child(even) .icon-glow {
  animation-delay: 0.8s;
}

/* enhanced hover on cards */
.product-card {
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124, 92, 252, 0.08);
}
.case-card {
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.process-card {
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 92, 252, 0.1);
}
.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 92, 252, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.process-card:hover::after {
  opacity: 1;
}
.process-card svg {
  transition: transform 0.4s;
}
.process-card:hover svg {
  transform: scale(1.08);
}

/* shimmer labels */
.section-label {
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    rgba(124, 92, 252, 0.06) 50%,
    var(--bg-card) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
}

/* value nums glow */
.value-num {
  animation: iconPulse 3s ease-in-out infinite;
}
.value-item:nth-child(2) .value-num {
  animation-delay: 0.5s;
}
.value-item:nth-child(3) .value-num {
  animation-delay: 1s;
}

/* enhanced hovers */
.audience-card {
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124, 92, 252, 0.08);
}
.role-card {
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.blog-card {
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 92, 252, 0.08);
}

.problem-item {
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.problem-item:hover {
  transform: translateX(4px);
}
.problem-num {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.problem-item:hover .problem-num {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(247, 91, 91, 0.25);
}

.econ-point-icon {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.econ-point:hover .econ-point-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 40px;
}
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.blog-list .blog-card {
  background: var(--bg-card);
}

/* article page */
.article-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 20px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 12px;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  position: relative;
  z-index: 1;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}
.article-body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(124, 92, 252, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p {
  color: var(--text-primary);
  margin-bottom: 0;
}
.article-cta-box {
  margin: 40px 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 92, 252, 0.2);
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.06),
    rgba(91, 138, 245, 0.04)
  );
  text-align: center;
}
.article-cta-box p {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .calc-wrap {
    grid-template-columns: 1fr;
  }
  .calc-result {
    position: static;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 8px;
    z-index: 99;
  }
  .nav-mobile a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border);
  }
  .nav-mobile a:hover {
    color: var(--text-primary);
    background: var(--bg-card);
  }
  .nav-actions .btn-nav-secondary {
    display: none;
  }

  .problem {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .audience-grid,
  .roles-grid,
  .value-items {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .diff-compare,
  .partner-benefits,
  .blog-preview-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  section {
    padding: 70px 18px;
  }
  .hero {
    padding-top: calc(var(--nav-h) + 56px);
    padding-bottom: 48px;
  }
  .hero-checks {
    flex-direction: column;
    gap: 14px;
  }
  .hero-check {
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-cards {
    grid-template-columns: 1fr;
  }
  .case-card {
    flex: 0 0 300px;
  }
  .radio-pills {
    flex-direction: column;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    min-width: 600px;
  }
  .tg-float-text {
    display: none;
  }
}

/* ===== HERO PRICE BADGE ===== */
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(62, 207, 142, 0.1);
  border: 1px solid rgba(62, 207, 142, 0.25);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(62, 207, 142, 0);
  }
  50% {
    box-shadow: 0 0 20px 0 rgba(62, 207, 142, 0.1);
  }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 48px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== SERVICES LOGOS MARQUEE ===== */
.services-logos {
  padding: 32px 0 48px;
  max-width: 100%;
  overflow: hidden;
}
.services-logos-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.services-logos-track {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.services-logos-scroll {
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.svc-logo {
  flex-shrink: 0;
  padding: 10px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.svc-logo:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== COMPARISON TABLE ===== */
.compare-table-wrap {
  margin-top: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--bg-tertiary);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody td {
  color: var(--text-secondary);
}
.compare-table .compare-us {
  background: rgba(124, 92, 252, 0.04);
  color: var(--text-primary);
}
.compare-table thead .compare-us {
  background: rgba(124, 92, 252, 0.12);
  color: var(--accent-light);
}
.compare-table .compare-label {
  font-weight: 500;
  color: var(--text-primary);
}
.compare-table strong {
  color: var(--green);
  font-weight: 700;
}

/* ===== TELEGRAM FLOATING BUTTON ===== */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  background: #2aabee;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(42, 171, 238, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.tg-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(42, 171, 238, 0.4);
}
.tg-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 12px 18px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.mobile-sticky-cta .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}
@media (max-width: 640px) {
  .mobile-sticky-cta {
    display: block;
  }
  .tg-float {
    bottom: 80px;
  }
}

/* ===== FORM CONSENT ===== */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.form-consent label {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent a {
  color: var(--accent-light);
  text-decoration: none;
}
.form-consent a:hover {
  text-decoration: underline;
}

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  min-height: 300px;
}
.form-success.show {
  display: flex;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(62, 207, 142, 0.12);
  border: 1px solid rgba(62, 207, 142, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.form-success-icon svg {
  width: 28px;
  height: 28px;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
}
.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 280px;
}

/* ===== CALCULATOR SAVINGS ===== */
.calc-savings {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(62, 207, 142, 0.06);
  border: 1px solid rgba(62, 207, 142, 0.2);
}
.calc-savings-label {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.calc-savings-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.calc-savings-sub {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ===== EXPANDED FOOTER ===== */
.footer-expanded {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--text-primary);
}
.footer-col p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--text-secondary);
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 24px;
  background: rgba(17, 17, 19, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner a {
  color: var(--accent-light);
  text-decoration: none;
}
.cookie-banner a:hover {
  text-decoration: underline;
}
.cookie-banner button {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-banner button:hover {
  background: var(--accent-light);
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px 18px;
  }
}

/* ===== BOOK CALL BUTTON ===== */
.btn-book-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.12));
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-book-call::after {
  content: "→";
  margin-left: 4px;
  font-size: 18px;
  transition: transform 0.25s;
}
.btn-book-call:hover {
  border-color: rgba(99, 102, 241, 0.8);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.28), rgba(139, 92, 246, 0.22));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.28);
}
.btn-book-call:hover::after {
  transform: translateX(4px);
}
.btn-book-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #a5b4fc;
}
