/* ─────────────────────────────────────────── */
/*  SCROLL STACK (blocks 3–5)                  */
/* ─────────────────────────────────────────── */
.scroll-stack {
  position: relative;
}
.scroll-stack-card {
  position: sticky;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
}
.scroll-stack-card:nth-child(1) { top: 0px;  z-index: 1; }
.scroll-stack-card:nth-child(2) { top: 16px; z-index: 2; }
.scroll-stack-card:nth-child(3) { top: 32px; z-index: 3; }
.scroll-stack-card + .scroll-stack-card {
  margin-top: -24px;
}
.scroll-stack-card .section {
  padding-top: clamp(20px, 2.5vw, 32px);
  padding-bottom: clamp(20px, 2.5vw, 32px);
}
.scroll-stack-end {
  width: 100%;
  height: 1px;
}

/* ─────────────────────────────────────────── */
/*  DEADLINE BANNER                            */
/* ─────────────────────────────────────────── */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(42,63,119,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(42,63,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,63,119,0); }
}

/* ─────────────────────────────────────────── */
/*  BLOCK 2 — PAIN CARDS                       */
/* ─────────────────────────────────────────── */
#pain .section-eyebrow {
  justify-content: center;
}
#pain .section-title {
  text-align: center;
}
#pain .section-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #374151;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.spotlight-card {
  --base: 224;
  --spread: 15;
  --radius: 14;
  --border: 2;
  --backdrop: #ffffff;
  --backup-border: rgba(0, 0, 0, 0.05);
  --size: 300;
  --outer: 1;
  --border-size: calc(var(--border) * 1px);
  --spotlight-size: calc(var(--size) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));

  position: relative;
  border-radius: calc(var(--radius) * 1px);
  border: var(--border-size) solid var(--backup-border);
  background-color: var(--backdrop);
  padding: 24px 20px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  touch-action: none;
  
  /* The background glow */
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 224) 50% 75% / 0.2), transparent
  );
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-position: 50% 50%;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.spotlight-card::before,
.spotlight-card::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  border: var(--border-size) solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-attachment: fixed;
  background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
  background-repeat: no-repeat;
  background-position: 50% 50%;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.spotlight-card::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 224) 48% 50% / 0.6), transparent 100%
  );
  filter: brightness(1.5);
}

.spotlight-card::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(0 100% 100% / 0.8), transparent 100%
  );
}

.spotlight-card-glow {
  position: absolute;
  inset: 0;
  will-change: filter;
  opacity: var(--outer, 1);
  border-radius: calc(var(--radius) * 1px);
  border-width: calc(var(--border-size) * 20);
  filter: blur(calc(var(--border-size) * 10));
  background: none;
  pointer-events: none;
  border: none;
}
.spotlight-card-glow::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-width: 10px;
  border: 10px solid transparent;
  border-radius: calc(var(--radius) * 1px);
  background-attachment: fixed;
  background-image: radial-gradient(
    calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
    calc(var(--x, 0) * 1px)
    calc(var(--y, 0) * 1px),
    hsl(var(--hue, 224) 48% 50% / 0.3), transparent 100%
  );
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.spotlight-card__icon,
.spotlight-card__title,
.spotlight-card__text {
  position: relative;
  z-index: 2;
}
.spotlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.spotlight-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.spotlight-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--text);
}
.spotlight-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.pain-conclusion {
  margin-top: 40px;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid rgba(42,63,119,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.pain-conclusion__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.pain-conclusion__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.pain-conclusion__text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: #2A3F77;
  letter-spacing: 0.02em;
}

/* ─────────────────────────────────────────── */
/*  BLOCK 2.5 — COUNTDOWN                      */
/* ─────────────────────────────────────────── */
.countdown-section {
  background: #1B284B; /* Darker blue */
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.countdown-wrapper {
  max-width: 640px; /* Narrower wrapper */
  margin: 0 auto;
  text-align: center;
}
.countdown-header {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.countdown-header strong {
  color: #fff;
}
.countdown-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.countdown-days-box,
.countdown-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: baseline;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.countdown-days-box {
  padding: 24px;
  gap: 12px;
}
.countdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.countdown-box {
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  gap: 6px;
}
.countdown-sep {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 16px;
}
.countdown-days-box .cd-val {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.03em;
}
.countdown-days-box .cd-lbl {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.countdown-box .cd-val {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.countdown-box .cd-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.countdown-footer {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.countdown-footer strong {
  color: #fff;
}
@media (max-width: 600px) {
  .countdown-days-box { padding: 24px; gap: 12px; }
  .countdown-box { padding: 16px 12px; }
  .countdown-sep { display: none; }
  .countdown-row { gap: 8px; }
  .countdown-days-box .cd-lbl { font-size: 16px; }
}

/* ─────────────────────────────────────────── */
/*  BLOCK 3 — DELAY TIMELINE (LINE GRAPH)      */
/* ─────────────────────────────────────────── */
.risk-graph-container {
  margin-top: 60px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  overflow: hidden;
}
.risk-graph-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.risk-graph-scroll::-webkit-scrollbar {
  display: none;
}
.risk-graph {
  min-width: 800px;
  display: flex;
  flex-direction: column;
}
.risk-graph__chart {
  height: 200px;
  width: 100%;
  position: relative;
}
.risk-graph__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.risk-graph__labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.risk-graph__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.risk-graph__time {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.risk-graph__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  background: rgba(42,63,119,0.18);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin: 0;
  line-height: 1.3;
  display: inline-block;
}
.risk-graph__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  margin-top: 4px;
}
.risk-graph__list li {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  line-height: 1.5;
  padding-left: 16px;
}
.risk-graph__list li::before {
  content: '— ';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

.risk-graph__col--danger .risk-graph__time {
  color: var(--red);
}
.risk-graph__col--danger .risk-graph__title {
  color: var(--red);
  background: rgba(107,26,26,0.18);
}

@keyframes pulse-point {
  0% { r: 8; stroke-width: 6; opacity: 1; }
  50% { r: 12; stroke-width: 3; opacity: 0.7; }
  100% { r: 8; stroke-width: 6; opacity: 1; }
}

.risk-graph__pulse {
  animation: pulse-point 2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .risk-graph-container {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    margin-top: 32px;
  }
  .risk-graph-scroll { overflow: visible; }
  .risk-graph { min-width: 0; }
  .risk-graph__chart { display: none; }
  .risk-graph__labels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }
  .risk-graph__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    border-left: 4px solid var(--blue);
    box-shadow: var(--shadow-sm);
  }
  .risk-graph__col:nth-child(2) { border-left-color: #3d5a9e; }
  .risk-graph__col:nth-child(3) { border-left-color: rgba(107,26,26,0.5); }
  .risk-graph__col--danger { border-left-color: var(--red); }
  .risk-graph__time { font-size: 10px; }
  .risk-graph__title {
    font-size: 13px;
    padding: 4px 10px;
    display: inline-block;
    width: fit-content;
    margin: 0;
  }
  .risk-graph__list { margin-top: 4px; }
  .risk-graph__list li { font-size: 12px; }
}

/* ─────────────────────────────────────────── */
/*  BLOCK 4 — DIY DISASTER (COMPARISON)        */
/* ─────────────────────────────────────────── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.comparison-col {
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.comparison-col--bad {
  background: var(--bg);
}
.comparison-col--ugly {
  background: rgba(42,63,119,0.04);
  border-color: rgba(42,63,119,0.12);
}
.comparison-col__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.comparison-col--bad .comparison-col__badge {
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.comparison-col--ugly .comparison-col__badge {
  background: rgba(42,63,119,0.08);
  color: var(--blue);
  border: 1px solid rgba(42,63,119,0.18);
}
.comparison-col__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--text);
}
.comparison-list { display: flex; flex-direction: column; gap: 12px; }
.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
}
.comparison-list li::before {
  content: '—';
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.comparison-col--bad .comparison-list li::before { color: var(--text-light); }
.comparison-col--ugly .comparison-list li::before { color: var(--blue); }
.comparison-verdict {
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  background: rgba(42,63,119,0.15);
  border: 1px solid rgba(42,63,119,0.3);
  text-align: center;
}
.comparison-verdict__text {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: #1E2F5C;
  line-height: 1.4;
}

/* ─────────────────────────────────────────── */
/*  BLOCK 5 — COST CARDS                       */
/* ─────────────────────────────────────────── */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.cost-card {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s, box-shadow 0.3s;
}
.cost-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42,63,119,0.2);
  box-shadow: var(--shadow-md);
}
.cost-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.3s;
}
.cost-card:hover::after { opacity: 1; }
.cost-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cost-card__num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  text-align: center;
}
.cost-card__label {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cost-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  text-align: center;
}
.cost-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cost-card__icon svg { width: 22px; height: 22px; display: block; }

.cost-verdict {
  margin-top: 20px;
  padding: 18px 32px;
  border-radius: var(--radius-md);
  background: var(--blue-dim);
  border: 1px solid var(--blue-light);
  text-align: center;
}
.cost-verdict p {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
}

/* ─────────────────────────────────────────── */
/*  COMPARE TABLE (block 5)                    */
/* ─────────────────────────────────────────── */
.compare-table {
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: clamp(14px, 1.5vw, 16px);
  background: var(--bg);
}
.compare-table thead tr {
  border-bottom: 2px solid var(--border-strong);
}
.compare-table th {
  padding: 10px 18px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.compare-table__col-label {
  color: var(--text-muted);
  width: 40%;
}
.compare-table__col-bad {
  color: var(--red);
  width: 30%;
  background: var(--red-dim);
}
.compare-table__col-good {
  color: var(--blue);
  width: 30%;
  background: var(--blue-dim);
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: var(--bg-alt);
}
.compare-table td {
  padding: 10px 18px;
  color: var(--text-body);
  text-align: center;
  text-transform: capitalize;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.compare-table__val-bad {
  color: var(--red);
  font-weight: 600;
  background: var(--red-dim);
}
.compare-table__val-good {
  color: var(--blue);
  font-weight: 600;
  background: var(--blue-dim);
}

/* ─────────────────────────────────────────── */
/*  BLOCK 6 — PROCESS FLOW (DARK BLUE)           */
/* ─────────────────────────────────────────── */
#process.section--dark {
  background: linear-gradient(180deg, #0F1A33 0%, #1B284B 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}
#process.section--dark .section-eyebrow {
  color: rgba(255,255,255,0.7);
  justify-content: center;
}
#process.section--dark .section-eyebrow .eyebrow-dot {
  background: rgba(255,255,255,0.5);
}
#process.section--dark .section-title {
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}
#process.section--dark .section-title em {
  color: rgba(255,255,255,0.85);
}
.process-flow {
  margin-top: 80px;
  position: relative;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.1) 100%
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  cursor: pointer;
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-spring);
  position: relative;
}
.process-step.active .process-step__num,
.process-step:hover .process-step__num {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.process-step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #fff;
}
.process-step__text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.process-step.active .process-step__title { color: #fff; font-weight: 800; }
.process-flow__sub {
  margin-top: 80px;
  padding-bottom: 60px;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.process-flow__sub strong { color: #fff; }

/* ─────────────────────────────────────────── */
/*  BLOCK 7 — EARLY ADOPTER CONTRAST           */
/* ─────────────────────────────────────────── */
#contrast .section-eyebrow {
  justify-content: center;
}
#contrast .section-title {
  text-align: center;
}
#contrast.section--surface {
  background: transparent;
  margin-top: -70px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}
#contrast.section--surface::before {
  content: '';
  position: absolute;
  top: 69px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #1B284B 0%, #1B284B 25%, rgba(27,40,75,0.15) 60%, var(--bg) 100%);
  z-index: -1;
  pointer-events: none;
}
#contrast.section--surface .container {
  background: #FFFFFF;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.08);
  padding-top: calc(var(--section-gap) * 0.7);
  padding-bottom: calc(var(--section-gap) * 0.7);
  max-width: 100%;
  width: calc(100% - clamp(24px, 4vw, 64px));
  margin: 0 auto;
}
@media (max-width: 700px) {
  #contrast.section--surface { margin-top: -48px; }
  #contrast.section--surface::before { top: 47px; }
  #contrast.section--surface .container { border-radius: 28px 28px 0 0; width: calc(100% - 16px); }
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.contrast-panel {
  padding: 52px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contrast-panel--win {
  background: rgba(42,63,119,0.04);
  border: 1px solid rgba(42,63,119,0.18);
}
.contrast-panel--lose {
  background: rgba(42,63,119,0.08);
  border: 1px solid rgba(42,63,119,0.25);
}
.contrast-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contrast-panel--win .contrast-panel__badge {
  background: rgba(42,63,119,0.1);
  color: var(--blue);
  border: 1px solid rgba(42,63,119,0.2);
}
.contrast-panel--lose .contrast-panel__badge {
  background: rgba(30,47,92,0.12);
  color: #1E2F5C;
  border: 1px solid rgba(30,47,92,0.25);
}
.contrast-panel__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.25;
}
.contrast-panel--win .contrast-panel__title { color: #1E2F5C; }
.contrast-panel--lose .contrast-panel__title { color: #0F1A33; }
.contrast-list { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.contrast-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.contrast-list li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.contrast-panel--win .check { background: rgba(42,63,119,0.1); color: var(--blue); }
.contrast-panel--lose .check { background: rgba(30,47,92,0.12); color: #1E2F5C; }

.trust-award {
  margin-top: 40px;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.trust-award:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,63,119,0.15);
}
.trust-award__icon {
  font-size: 40px;
  line-height: 1;
}
.trust-award__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.trust-award__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.trust-award__text {
  font-size: 24px;
  font-weight: 800;
  color: #1E2F5C;
}
@media (max-width: 600px) {
  .trust-award {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
  }
  .trust-award__content {
    text-align: center;
  }
  .trust-award__text {
    font-size: 20px;
  }
}

/* ─────────────────────────────────────────── */
/*  BLOCK 8 — RESULTS METRICS                  */
/* ─────────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.metric-card {
  background: var(--bg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.metric-card:hover { background: var(--bg-alt); }
.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.metric-card:nth-child(1)::before { background: #0F1A33; }
.metric-card:nth-child(2)::before { background: rgba(15,26,51,0.8); }
.metric-card:nth-child(3)::before { background: rgba(15,26,51,0.6); }
.metric-card:nth-child(4)::before { background: rgba(15,26,51,0.4); }
.metric-card__value {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-card:nth-child(1) .metric-card__value { color: #0F1A33; }
.metric-card:nth-child(2) .metric-card__value { color: #0F1A33; }
.metric-card:nth-child(3) .metric-card__value { color: #0F1A33; }
.metric-card:nth-child(4) .metric-card__value { color: #0F1A33; }
.metric-card__label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.metric-card__sub { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─────────────────────────────────────────── */
/*  BLOCK 9 — TRUST                            */
/* ─────────────────────────────────────────── */
.section--surface#trust {
  background: var(--bg);
  padding: 80px 0;
}
.trust-grid {
  display: block;
}
.trust-bullets {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 60px;
}
.trust-bullet {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
  border-radius: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  margin-left: -1px;
  transition: all 0.3s;
  flex: 1;
  min-width: 0;
  position: relative;
}
.trust-bullet:first-child {
  margin-left: 0;
}
.trust-bullet:hover {
  border-color: rgba(42,63,119,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.trust-bullet__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bullet__icon svg { width: 24px; height: 24px; display: block; }
.trust-bullet__text { font-size: 15px; line-height: 1.6; color: var(--text); }
.trust-bullet__text strong { color: var(--text); display: block; margin-bottom: 8px; font-size: 17px; font-weight: 700; }
/* ─────────────────────────────────────────── */
/*  BLOCK 8.5 — LOGO CLOUD                     */
/* ─────────────────────────────────────────── */
.logo-cloud-section {
  background: #0F1A33;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.logo-cloud-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.trust-clients__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.trust-clients__logos {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scroll-logos 30s linear infinite;
  align-items: center;
}
.trust-clients__logos:hover {
  animation-play-state: paused;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 30px)); }
}
.client-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.client-logo:hover { 
  opacity: 1; 
  color: #ffffff; 
  transform: scale(1.08);
}
.award-badge {
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.award-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(42,63,119,0.15);
}
.award-badge__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #1E2F5C 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(42,63,119,0.25);
}
.award-badge__icon svg { width: 26px; height: 26px; display: block; }
.award-badge__label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.award-badge__text { font-size: 17px; font-weight: 800; color: var(--blue); }
.award-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* ─────────────────────────────────────────── */
/*  BLOCK 10 — FORM CTA                        */
/* ─────────────────────────────────────────── */
.form-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.form-left .section-title { margin-bottom: 20px; }
.form-what {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-what li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.form-what li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.form-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.form-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42,63,119,0.1);
}
.form-field input::placeholder { color: var(--text-light); }
.form-privacy {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}
.form-privacy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
}
.form-privacy a:hover { opacity: 1; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-dim);
  border: 2px solid var(--blue-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.form-success__icon svg { width: 28px; height: 28px; }
.form-success__title { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.form-success__text { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ─────────────────────────────────────────── */
/*  FINAL CTA                                  */
/* ─────────────────────────────────────────── */
.final-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta__inner { position: relative; }
.final-cta__title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}
.final-cta__sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}
.final-cta__sub p {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--text-muted);
}
.final-cta__sub p strong { color: var(--blue); }
.final-cta__sub p.bad strong { color: var(--red); }

/* ─────────────────────────────────────────── */
/*  FOOTER                                     */
/* ─────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__contacts a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__contacts a:hover { color: var(--blue); }
.footer__copy { font-size: 13px; color: var(--text-light); }

/* ─────────────────────────────────────────── */
/*  SCROLLBAR                                  */
/* ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ─────────────────────────────────────────── */
/*  STICKY NAV (п.7)                           */
/* ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 960;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.site-nav__brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.site-nav.scrolled .site-nav__brand { opacity: 1; }
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.site-nav__link:hover { color: var(--text); background: var(--bg-alt); }
.site-nav__cta {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(42,63,119,0.2);
}
.site-nav__cta:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(42,63,119,0.28); }
.site-nav__pill {
  padding: 8px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.site-nav__pill:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .site-nav__links { display: flex; }
  .site-nav__brand { display: none; }
}

/* ─────────────────────────────────────────── */
/*  NAV BURGER + FULLSCREEN MENU               */
/* ─────────────────────────────────────────── */
.nav-burger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font);
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.nav-burger:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.site-nav.scrolled .nav-burger {
  background: rgba(255,255,255,0.9);
}
.nav-burger__lines {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 12px;
  flex-shrink: 0;
}
.nav-burger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s, top 0.3s var(--ease-out-expo);
}
.nav-burger__lines span:nth-child(1) { top: 0; }
.nav-burger__lines span:nth-child(2) { top: 5px; }
.nav-burger__lines span:nth-child(3) { top: 10px; }
body.nav-open .nav-burger__lines span:nth-child(1) {
  top: 5px; transform: rotate(45deg);
}
body.nav-open .nav-burger__lines span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-burger__lines span:nth-child(3) {
  top: 5px; transform: rotate(-45deg);
}
@media (max-width: 540px) {
  .nav-burger { padding: 10px; }
}

/* Compact dropdown menu under burger */
.nav-menu {
  position: fixed;
  top: 56px;
  left: clamp(20px, 5vw, 60px);
  z-index: 955;
  width: 280px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 80px);
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out-expo), transform 0.22s var(--ease-out-expo);
  overflow-y: auto;
}
body.nav-open .nav-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav-menu__inner {
  padding: 14px 10px 16px;
}
.nav-menu__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 12px 10px;
}
.nav-menu__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0 0 12px;
  border-top: none;
  list-style: none;
  padding: 0;
}
.nav-menu__list li {
  border-bottom: none;
}
.nav-menu__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  opacity: 0;
  transform: translateY(4px);
}
body.nav-open .nav-menu__list a {
  opacity: 1;
  transform: none;
  transition: background 0.18s, color 0.18s,
              opacity 0.25s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
}
body.nav-open .nav-menu__list li:nth-child(1) a { transition-delay: 0.03s; }
body.nav-open .nav-menu__list li:nth-child(2) a { transition-delay: 0.05s; }
body.nav-open .nav-menu__list li:nth-child(3) a { transition-delay: 0.07s; }
body.nav-open .nav-menu__list li:nth-child(4) a { transition-delay: 0.09s; }
body.nav-open .nav-menu__list li:nth-child(5) a { transition-delay: 0.11s; }
body.nav-open .nav-menu__list li:nth-child(6) a { transition-delay: 0.13s; }
body.nav-open .nav-menu__list li:nth-child(7) a { transition-delay: 0.15s; }
.nav-menu__list a:hover {
  background: var(--bg-alt);
  color: var(--blue);
  padding-left: 12px;
}
.nav-menu__title { flex: 1; }
.nav-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 12px 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.nav-menu__contacts a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-menu__contacts a:hover { color: var(--blue); }
@media (max-width: 600px) {
  .nav-menu { left: 16px; right: 16px; width: auto; max-width: none; }
}

/* ─────────────────────────────────────────── */
/*  COUNTDOWN TIMER (п.1)                      */
/* ─────────────────────────────────────────── */

/* ─────────────────────────────────────────── */
/*  FAQ (п.3)                                  */
/* ─────────────────────────────────────────── */
.faq-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.faq-item {
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(42,63,119,0.22); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--blue); }
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out-expo), background 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-dim);
  border-color: rgba(42,63,119,0.25);
  color: var(--blue);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
}
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a-inner strong { color: var(--text); }
.faq-a-inner ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.faq-a-inner ul li { display: flex; gap: 10px; color: var(--text-muted); }
.faq-a-inner ul li::before { content: '—'; color: var(--blue); flex-shrink: 0; }

/* ─────────────────────────────────────────── */
/*  FLOATING CONTACT FAN (chat FAB)            */
/* ─────────────────────────────────────────── */
.fab-contact {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
}
.fab-contact__main {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 6px 22px rgba(42,63,119,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.25s, background 0.25s;
  border: none;
  z-index: 2;
}
.fab-contact__main:hover {
  background: var(--blue-hover);
  box-shadow: 0 10px 30px rgba(42,63,119,0.55);
  transform: scale(1.06);
}
.fab-contact__main svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}
.fab-contact__main .icon-chat { opacity: 1; }
.fab-contact__main .icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}
.fab-contact.is-open .fab-contact__main .icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}
.fab-contact.is-open .fab-contact__main .icon-close {
  opacity: 1;
  transform: rotate(0deg);
}
.fab-contact__items {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
}
.fab-contact__item {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  margin: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translate(0, 0) scale(0.4);
  transition: transform 0.35s var(--ease-spring), opacity 0.25s ease;
  pointer-events: none;
}
.fab-contact__item svg { width: 22px; height: 22px; }
.fab-contact__item:hover {
  filter: brightness(1.08);
  transform: translate(var(--x), var(--y)) scale(1.08);
}
.fab-contact__item::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 24, 40, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.fab-contact__item:hover::after { opacity: 1; }

.fab-contact__item--tg { background: var(--blue); --x: 0px; --y: -72px; }
.fab-contact__item--wa { background: #1E2F5C; --x: -50px; --y: -52px; }
.fab-contact__item--tel { background: #2A3F77; --x: -72px; --y: 0px; }
.fab-contact__item--mail { background: rgba(42,63,119,0.85); --x: -50px; --y: 52px; }

.fab-contact.is-open .fab-contact__item {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--x), var(--y)) scale(1);
}
.fab-contact.is-open .fab-contact__item--tg  { transition-delay: 0.02s; }
.fab-contact.is-open .fab-contact__item--wa  { transition-delay: 0.06s; }
.fab-contact.is-open .fab-contact__item--tel { transition-delay: 0.10s; }
.fab-contact.is-open .fab-contact__item--mail{ transition-delay: 0.14s; }

/* Subtle pulse on main FAB when idle */
.fab-contact__main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.35;
  animation: fabPulse 2.2s ease-out infinite;
  z-index: -1;
}
.fab-contact.is-open .fab-contact__main::before { animation: none; opacity: 0; }
@keyframes fabPulse {
  0%   { transform: scale(1);    opacity: 0.35; }
  70%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}

@media (max-width: 768px) {
  .fab-contact { bottom: 110px; right: 16px; }
}

/* ─────────────────────────────────────────── */
/*  STICKY MOBILE CTA                          */
/* ─────────────────────────────────────────── */
.mobile-sticky {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-strong);
    gap: 10px;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
  }
  .mobile-sticky.visible {
    transform: translateY(0);
  }
  .mobile-sticky__text {
    flex: 1;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.3;
  }
  .mobile-sticky__text strong {
    display: block;
    color: var(--blue);
    font-size: 14px;
  }
  .mobile-sticky .btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ─────────────────────────────────────────── */
/*  RESPONSIVE — TABLET (≤900px)               */
/* ─────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-gap: clamp(60px, 8vw, 100px); }

  .section-body { max-width: 100%; }

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

  /* Hero */
  .hero { padding-bottom: 120px; }
  .hero__inner { padding: 100px 0 100px; }

  /* Deadline banner */

  /* Timeline */
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .timeline::before { display: none; }

  /* Comparison */
  .comparison { grid-template-columns: 1fr; }

  /* Contrast */
  .contrast-grid { grid-template-columns: 1fr; gap: 3px; }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-steps::before { display: none; }

  /* Trust */
  .trust-bullets { flex-wrap: wrap; }
  .trust-bullet { flex: 1 1 50%; margin-top: -1px; }
  .trust-bullet:nth-child(2n+1) { margin-left: 0; }
  .trust-bullet:nth-child(1), .trust-bullet:nth-child(2) { margin-top: 0; }
  .section--surface#trust { padding: 60px 0; }

  /* Form */
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }

  /* Metrics */
  .metrics-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────── */
/*  RESPONSIVE — MOBILE (≤600px)               */
/* ─────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-gap: 56px; }

  /* Scroll-stack — отключаем sticky на мобильном */
  .scroll-stack-card {
    position: relative !important;
    top: auto !important;
  }
  .scroll-stack-card + .scroll-stack-card {
    margin-top: 0;
  }

  /* Remove br tags from titles visually */
  .hero__title br,
  .section-title br,
  .final-cta__title br { display: none; }

  /* Hero */
  .hero__inner { padding: 80px 0 80px; }
  .hero__title { font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.025em; }
  .hero__sub { font-size: 15px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 16px; }
  /* Extra bottom space so sticky bar doesn't cover hero CTA */
  .hero__inner { padding-bottom: 100px; }

  /* Hero — reduce bottom padding to match smaller overlap */
  .hero { padding-bottom: 80px; }

  /* Deadline banner */

  /* Section titles */
  .section-title { font-size: clamp(22px, 6.5vw, 34px); }

  /* Pain grid — 1 column on small phones */
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .spotlight-card { padding: 24px 20px; }
  .pain-conclusion { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }

  /* Timeline — 1 column */
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .timeline-step__dot { margin-bottom: 0; flex-shrink: 0; }

  /* Comparison */
  .comparison-col { padding: 24px 20px; }
  .comparison-verdict { padding: 20px; }

  /* Cost grid — 2x2 on tablet/mobile */
  .cost-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cost-card { padding: 16px 12px; }
  .cost-card__header { flex-direction: column; align-items: center; text-align: center; gap: 8px; margin-bottom: 8px; }
  .cost-card__label { font-size: 12px; letter-spacing: 0.04em; }
  .cost-card__text { font-size: 13px; }
  .cost-card__icon { width: 38px; height: 38px; }
  /* Compare table — smaller padding, allow header wrap */
  .compare-table th { white-space: normal; padding: 8px 8px; font-size: 12px; }
  .compare-table td { padding: 8px 8px; font-size: 13px; }

  /* Process — single column with left-aligned layout */
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step__num { width: 48px; height: 48px; font-size: 18px; flex-shrink: 0; margin-bottom: 0; }

  /* Contrast panels */
  .contrast-panel { padding: 28px 20px; }
  .contrast-list li { font-size: 15px; }

  /* Metrics — 2x2 grid */
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .metric-card { padding: 32px 20px; }
  .metric-card__value { font-size: clamp(36px, 10vw, 56px); }

  /* Trust */
  .trust-bullets { flex-direction: column; gap: 0; }
  .trust-bullet { flex: 1 1 auto; margin-left: 0 !important; margin-top: -1px !important; padding: 20px; }
  .trust-bullet:first-child { margin-top: 0 !important; }
  .trust-clients__logos { gap: 8px; }
  .client-logo { font-size: 18px; }

  /* Form */
  .form-card { padding: 28px 20px; }
  .form-field input,
  .form-field select {
    padding: 16px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }

  /* Final CTA */
  .final-cta { padding: 80px 0 120px; } /* space for sticky bar */
  .final-cta__title { font-size: clamp(24px, 7.5vw, 40px); }
  .final-cta__sub p { font-size: 15px; }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__contacts { flex-direction: column; gap: 10px; }
}

/* ─────────────────────────────────────────── */
/*  RESPONSIVE — SMALL PHONES (≤380px)         */
/* ─────────────────────────────────────────── */
@media (max-width: 380px) {
  .cost-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
}
