/* =============================================
   SteefMade — core.css (bundled: tokens + typography + components + animations + mobile)
   Generated by concatenation, exact original order preserved — do not hand-edit, edit sources and rebuild
   ============================================= */

/* ===== SOURCE: tokens.css ===== */
/* =============================================
   SteefMade — Design Tokens (v2 · Editorial Terminal)
   ============================================= */

:root {

  /* === ЦВЕТА === */
  --olive:        #7a8c3c;   /* fills, buttons */
  --olive-bright: #a8c24f;   /* text/labels on dark — crisper, AA on #0b0b0a */
  --olive-dim:    rgba(122, 140, 60, 0.14);
  --olive-hover:  #8aa044;

  --bg:           #0b0b0a;   /* a hair warm — intentional, not "default dark" */
  --surface:      #131311;
  --surface2:     #1b1b18;
  --border:       rgba(255, 255, 255, 0.09);
  --border-strong:rgba(255, 255, 255, 0.16);
  --border-olive: rgba(168, 194, 79, 0.38);

  --text:         #f4f3ee;   /* warm off-white, not pure #fff */
  --text-dim:     rgba(244, 243, 238, 0.62);
  --text-muted:   rgba(244, 243, 238, 0.42);

  --success:      #6fb380;
  --error:        #e07a6a;

  /* === SPACING === */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-6:  24px;
  --s-8:  32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;

  /* Секции */
  --section-py: clamp(72px, 9vw, 144px);

  /* === РАДИУСЫ === */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 28px;

  /* === ТЕНИ (structural, no glow) === */
  --shadow-card: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-lift: 0 24px 60px -24px rgba(0,0,0,0.7);

  /* === ПЕРЕХОДЫ === */
  --transition:     all 180ms cubic-bezier(0.22,1,0.36,1);
  --transition-md:  all 280ms cubic-bezier(0.22,1,0.36,1);
  --transition-lg:  all 420ms cubic-bezier(0.22,1,0.36,1);

  /* === НАВИГАЦИЯ === */
  --nav-height:     72px;
  --nav-height-mob: 60px;

  /* Editorial gutter */
  --rule: 1px solid var(--border);
}

/* ===== SOURCE: typography.css ===== */
/* =============================================
   SteefMade — Typography
   ============================================= */

/* --- Шрифты подключаются через <link> в <head> каждой страницы --- */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Golos Text', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Ultra-subtle neutral film grain — texture, not glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.018;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* --- Типографическая шкала --- */
.t-hero {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(52px, 8.5vw, 132px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.t-display {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.t-h1 {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.t-h2 {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-family: 'Golos Text', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.t-body {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.t-small {
  font-family: 'Golos Text', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.t-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.t-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* --- Фирменный приём: em = оливковый курсив --- */
em, .em-olive {
  font-style: italic;
  color: var(--olive-bright);
}

/* --- Цветовые утилиты --- */
.text-dim    { color: var(--text-dim); }
.text-muted  { color: var(--text-muted); }
.text-olive  { color: var(--olive-bright); }
.text-white  { color: var(--text); }

/* --- Prose (длинный текст) --- */
.prose {
  max-width: 65ch;
}

.prose p + p {
  margin-top: 1em;
}

.prose ul, .prose ol {
  padding-left: 1.5em;
  margin: 0.75em 0;
}

.prose li + li {
  margin-top: 0.4em;
}

/* --- Утилиты --- */
.text-wrap-pretty {
  text-wrap: pretty;
}

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

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SOURCE: components.css ===== */
/* =============================================
   SteefMade — Components
   ============================================= */

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--s-12); }
}

.section {
  padding: var(--section-py) 0;
}

.section-header {
  margin-bottom: var(--s-12);
}

.section-header .t-h2 + p {
  margin-top: var(--s-4);
  color: var(--text-dim);
  font-size: 18px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  padding: 14px 28px;
}

.btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}

/* Primary */
.btn-primary {
  background: var(--olive);
  color: #fff;
  border-color: var(--olive);
}

.btn-primary:hover {
  background: var(--olive-hover);
  border-color: var(--olive-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.97) translateY(0);
  box-shadow: none;
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--border);
}

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

.btn-secondary:active {
  transform: scale(0.97);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--olive);
  text-underline-offset: 3px;
}

/* Icon button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-dim);
  border-radius: var(--radius-sm);
}

.btn-icon:hover {
  color: var(--text);
  border-color: var(--border-olive);
}

/* Size variants */
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}



.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo .logo-prompt {
  font-family: 'JetBrains Mono', monospace;
  color: var(--olive-bright);
  font-size: 16px;
}

.nav.scrolled {
  background: rgba(11, 11, 10, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--border);
}

/* Desktop inline nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-link {
  font-family: 'Golos Text', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--olive-bright); }
.nav-cta { display: none; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* Drawer overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(4px);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-6);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  padding: var(--s-6);
  gap: var(--s-1);
  flex: 1;
}

.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.nav-drawer-link:hover {
  color: var(--text);
  background: var(--surface2);
}

.nav-drawer-link.active {
  color: var(--olive);
}

.nav-drawer-footer {
  padding: var(--s-6);
  border-top: 1px solid var(--border);
}

.nav-drawer-footer .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav { height: var(--nav-height-mob); }
  .nav-drawer { width: 100%; }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.footer-logo {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.footer-logo .logo-prompt {
  font-family: 'JetBrains Mono', monospace;
  color: var(--olive);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover { color: var(--olive); }

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-6);
  margin-top: var(--s-6);
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { flex-direction: column; gap: var(--s-2); align-items: flex-start; }
  .footer { padding: 32px 0; }
}

/* ==========================================
   CARDS
   ========================================== */

/* Base card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-6);
  box-shadow: var(--shadow-card);
}

/* Tariff card */
.tariff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  transition: var(--transition-md);
  position: relative;
}

.tariff-card:hover {
  border-color: var(--border-olive);
  transform: translateY(-2px);
}

.tariff-card.popular {
  border-color: var(--olive);
  background: var(--surface);
}

.tariff-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.tariff-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
}

.tariff-card-amount {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.tariff-card-period {
  font-size: 14px;
  color: var(--text-dim);
}

.tariff-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.tariff-card-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 14px;
  color: var(--text-dim);
}

.tariff-card-features li svg {
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
}

.tariff-card-features li.dim {
  color: var(--text-muted);
}

.tariff-card-features li.dim svg {
  color: var(--text-muted);
}

/* Portfolio card */
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-md);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: var(--border-olive);
  transform: translateY(-2px);
}

.portfolio-card-image {
  aspect-ratio: 16/10;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.04);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 200ms ease;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-body {
  padding: var(--s-4) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.portfolio-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* Checkbox card (wizard blocks) */
.check-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-4);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  min-height: 64px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.check-card:hover {
  border-color: var(--border-olive);
}

.check-card.checked {
  border-color: var(--olive);
  background: var(--olive-dim);
}

.check-card input[type="checkbox"],
.check-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-card-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.check-card-content {
  flex: 1;
}

.check-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.check-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

/* Advantage card */
.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: var(--transition-md);
}

.advantage-card:hover {
  border-color: var(--border-olive);
}

.advantage-card-icon {
  width: 48px;
  height: 48px;
  background: var(--olive-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
}

/* ==========================================
   FORMS / INPUTS
   ========================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.form-label {
  font-family: 'Golos Text', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
}

.form-label .required {
  color: var(--olive);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 2px var(--olive-dim);
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

.form-help {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.form-error {
  font-size: 13px;
  color: var(--error);
}

/* ==========================================
   BADGES / PILLS
   ========================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.badge-olive {
  background: var(--olive-dim);
  border: 1px solid var(--border-olive);
  color: var(--olive-bright);
}

.badge-neutral {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.badge-dark {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.progress-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
}

.progress-track {
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================
   ACCORDION
   ========================================== */

.accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-6) 0;
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--s-4);
  transition: color 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

.accordion-trigger:hover {
  color: var(--olive);
}

.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--olive);
  transition: transform 300ms ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-body-inner {
  padding-bottom: var(--s-6);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================
   TOOLTIP
   ========================================== */

.tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.tooltip-trigger {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--olive-dim);
  border: 1px solid var(--border-olive);
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
}

.tooltip-box {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease;
}

.tooltip-wrap:hover .tooltip-box,
.tooltip-wrap:focus-within .tooltip-box {
  opacity: 1;
}

/* ==========================================
   FILTER TABS
   ========================================== */

.filter-tabs {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}

.filter-tab {
  font-family: 'Golos Text', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-dim);
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
}

.filter-tab:hover {
  color: var(--text);
  border-color: var(--border-olive);
}

.filter-tab.active {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

/* ==========================================
   TIMELINE (Process)
   ========================================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8) var(--s-6);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-item {
  position: relative;
  z-index: 1;
}

.timeline-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
  background: var(--surface);
  border: 1px solid var(--border-olive);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-4);
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.timeline-time {
  margin-top: var(--s-3);
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .timeline::before {
    top: 0;
    left: 24px;
    width: 1px;
    height: 100%;
    right: auto;
  }
  .timeline-item {
    display: flex;
    gap: var(--s-4);
    align-items: flex-start;
  }
  .timeline-number {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */

.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
}

.page-hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--olive-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

/* ==========================================
   TABLE
   ========================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--s-3) var(--s-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: var(--s-4);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-dim);
}

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

.data-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.data-table td:last-child {
  color: var(--olive);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  text-align: right;
}

/* ==========================================
   SUCCESS SCREEN
   ========================================== */

.success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-6);
  padding: var(--s-12) var(--s-6);
}

.success-check {
  width: 80px;
  height: 80px;
}

.success-check circle {
  fill: none;
  stroke: var(--olive);
  stroke-width: 3;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
  animation: drawCircle 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.success-check polyline {
  fill: none;
  stroke: var(--olive);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 400ms ease forwards 600ms;
  opacity: 0;
}

/* ==========================================
   DIVIDER
   ========================================== */

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ==========================================
   HERO PLACEHOLDER (before images provided)
   ========================================== */

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(122, 140, 60, 0.03) 40px,
      rgba(122, 140, 60, 0.03) 41px
    ),
    var(--bg);
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(122,140,60,0.08) 0%, transparent 70%);
}

/* ==========================================
   GRID UTILITIES
   ========================================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}

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

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* CTA Section */
.cta-section {
  background: var(--surface);
  border: 1px solid var(--border-olive);
  border-radius: var(--radius-xl);
  padding: var(--s-16) var(--s-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

@media (max-width: 768px) {
  .cta-section { padding: var(--s-12) var(--s-6); border-radius: var(--radius-lg); }
}


/* ==========================================
   MOBILE ADAPTATION — 390px
   ========================================== */

/* Base mobile resets */
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
    --section-py: clamp(48px, 8vw, 80px);
  }

  /* Container */
  .container { padding: 0 20px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-height) + 40px) 0 40px; }

  /* Buttons */
  .btn-lg { padding: 14px 28px; font-size: 16px; }

  /* CTA terminal */
  .cta-terminal { grid-template-columns: 1fr !important; gap: 40px; }
  .cta-terminal-right { display: none; }
  .cta-terminal-title { font-size: clamp(32px, 8vw, 48px); }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-copy { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Tariff cards grid → 1 col */
  .tariff-cards-grid { grid-template-columns: 1fr; }
  .tariff-card { padding: var(--s-6); }

  /* Advantages editorial rows */
  .adv-row {
    grid-template-columns: 40px 1fr !important;
    gap: 16px !important;
    padding: 24px 0;
  }
  .adv-metric { font-size: clamp(32px, 8vw, 56px) !important; }
  .adv-tag { display: none; }

  /* Tariff manifest rows */
  .tariff-row {
    grid-template-columns: 1fr auto !important;
    gap: 16px !important;
    padding: 24px 0;
  }
  .tariff-row-features {
    grid-column: 1 / -1;
    order: 3;
  }
  .tariff-row .btn { opacity: 1 !important; transform: none !important; }
  .tariff-row-amount { font-size: clamp(28px, 7vw, 40px); }
  .tariff-row::before { left: -16px; }

  /* Flagship grid → stack */
  .flagship-grid,
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Timeline → vertical */
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }

  /* Process steps */
  .step-row {
    grid-template-columns: 44px 1fr !important;
    gap: 16px !important;
  }
  .step-aside { display: none; }
  .total-bar { margin-left: 0 !important; padding: 20px; flex-wrap: wrap; gap: 16px; }

  /* Terms layout */
  .terms-block { grid-template-columns: 1fr !important; gap: 28px; }
  .terms-block-label { position: static !important; }
  .terms-block-num { font-size: 28px !important; }
  .payment-step { gap: 16px; }
  .payment-step-num { font-size: 24px !important; min-width: 36px; }

  /* Contact split */
  .contact-split { grid-template-columns: 1fr !important; gap: 40px; }
  .contact-headline { font-size: clamp(40px, 10vw, 64px); }

  /* Tariff tabs → scroll */
  .tariff-tabs,
  .tariff-tabs > div[style] {
    flex-direction: column !important;
    overflow-x: auto;
  }
  .tariff-tab { border-right: none !important; border-bottom: 1px solid var(--border); }
  .tariff-panel.active { grid-template-columns: 1fr !important; gap: 32px; }

  /* Custom grid → 1 col */
  .custom-grid { grid-template-columns: 1fr !important; }
  .addons-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Works grid */
  .works-grid { grid-template-columns: 1fr !important; }

  /* FAQ */
  .faq-q { grid-template-columns: 32px 1fr; gap: 12px; }
  .faq-a-inner { padding-left: 16px; margin-left: 16px; }
  .glossary-row { grid-template-columns: 1fr; gap: 4px; }
  .glossary-term { font-size: 12px; }

  /* Filter tabs */
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 7px 14px; font-size: 13px; }

  /* Nav drawer — full width on mobile */
  .nav-drawer { width: 100%; }

  /* Brief tariff strip */
  .tariff-strip-inner { grid-template-columns: 1fr !important; }
  .ts-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .ts-item:last-child { border-bottom: none; }
}

/* ---- Extra small ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .t-h1 { font-size: clamp(24px, 7vw, 36px); }
  .t-h2 { font-size: clamp(20px, 6vw, 28px); }
  .addons-grid { grid-template-columns: 1fr !important; }
  .hero-content { max-width: 100%; }
  .hero-metrics { gap: 24px !important; flex-wrap: wrap; }
  .section-header .t-h2 + p { font-size: 15px; }

  /* Terms */
  .terms-rule { grid-template-columns: 14px 1fr; gap: 10px; }

  /* Brief block cards */
  .blocks-grid { grid-template-columns: 1fr !important; }
  .tariff-cards { grid-template-columns: 1fr !important; }
}

/* ---- Brief wizard mobile fixes ---- */
@media (max-width: 768px) {
  .brief-hero { height: 180px; }
  .brief-hero-content { padding: 0 20px; }
  .brief-hero-title { font-size: clamp(24px, 6vw, 36px); }

  .wizard-wrap { padding: 0 16px 120px; }
  .wiz-step-title { font-size: clamp(24px, 6vw, 36px); }

  .wiz-nav { padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .btn-next, .btn-submit { padding: 14px 28px; font-size: 15px; }
  .btn-back { font-size: 14px; }

  /* Block cards 1 col on mobile */
  .blocks-grid { grid-template-columns: 1fr !important; }
  .tariff-cards { grid-template-columns: 1fr !important; }

  /* Goals list */
  .goals-list { gap: 6px; }
  .goal-row { padding: 12px 14px; }

  /* Radio list */
  .radio-row { padding: 11px 14px; }

  /* Step section headers */
  .step-section { font-size: 10px; }
}

/* ---- Safe area support (iPhone notch) ---- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wiz-nav {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
  .wizard-wrap {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
}

/* ---- Touch hover improvements ---- */
@media (hover: none) {
  .tariff-row .btn { opacity: 1 !important; transform: none !important; }
  .contact-link-row:hover { transform: none; }
  .card-hover:hover { transform: none; box-shadow: none; }
  .portfolio-card:hover { transform: none; }
  .tariff-card:hover { transform: none; }
  .tariff-row:hover .tariff-row-amount { color: var(--text); }
}

/* ===== SOURCE: animations.css ===== */
/* =============================================
   SteefMade — Animations & Transitions
   ============================================= */

/* --- Keyframes --- */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-40px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes clipReveal {
  from {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBounce {
  0%   { opacity: 0; transform: scale(0.85); }
  60%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes drawCircle {
  from { stroke-dashoffset: 628; }
  to   { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  from { stroke-dashoffset: 100; opacity: 0; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Animation utility classes --- */

.anim-fadeIn {
  animation: fadeIn 400ms ease both;
}

.anim-slideInUp {
  animation: slideInUp 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-clipReveal {
  animation: clipReveal 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-scaleIn {
  animation: scaleIn 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-scaleInBounce {
  animation: scaleInBounce 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* --- Stagger delays --- */
.stagger-1 { animation-delay: 0ms; }
.stagger-2 { animation-delay: 100ms; }
.stagger-3 { animation-delay: 200ms; }
.stagger-4 { animation-delay: 300ms; }
.stagger-5 { animation-delay: 400ms; }
.stagger-6 { animation-delay: 500ms; }

/* --- Intersection observer: reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 500ms; }

/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--olive);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 800ms step-end infinite;
}

/* Scroll indicator */
.scroll-indicator {
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* Wizard step transitions */
.wizard-step {
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

.wizard-step.exit-left {
  transform: translateX(-100%);
  opacity: 0;
}

.wizard-step.enter-right {
  transform: translateX(100%);
  opacity: 0;
}

.wizard-step.exit-right {
  transform: translateX(100%);
  opacity: 0;
}

.wizard-step.enter-left {
  transform: translateX(-100%);
  opacity: 0;
}

/* Progress bar transition */
.progress-fill {
  transition: width 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card hover */
.card-hover {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== SOURCE: mobile.css ===== */
/* =============================================
   SteefMade — Mobile Adaptations (≤768px)
   ============================================= */

/* ==========================================
   BASE RESET FOR MOBILE
   ========================================== */

@media (max-width: 768px) {
  :root {
    --section-py: clamp(48px, 10vw, 80px);
    --nav-height: 56px;
  }

  /* ==========================================
     NAVIGATION
     ========================================== */
  .nav {
    height: 56px;
  }

  .nav-logo {
    font-size: 16px;
  }

  /* ==========================================
     TYPOGRAPHY
     ========================================== */
  .t-h1 { font-size: clamp(24px, 7vw, 36px); }
  .t-h2 { font-size: clamp(20px, 5.5vw, 28px); }
  .t-h3 { font-size: 18px; }

  .page-hero {
    padding: calc(56px + 40px) 0 40px;
  }

  /* ==========================================
     HERO SECTION
     ========================================== */
  .hero-content {
    padding: 0 20px !important;
    padding-top: 56px !important;
    max-width: 100% !important;
  }

  .hero-title-line {
    font-size: clamp(40px, 12vw, 64px) !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    gap: 24px !important;
    margin-top: 24px !important;
  }

  .hero-dots { display: none !important; }

  .scroll-indicator-wrap { bottom: 20px; }

  /* ==========================================
     ADVANTAGES (editorial rows)
     ========================================== */
  .adv-row {
    grid-template-columns: 36px 1fr !important;
    gap: 0 16px !important;
    padding: 24px 0 !important;
  }
  .adv-metric {
    font-size: clamp(28px, 10vw, 48px) !important;
  }
  .adv-row::before { left: -20px; }
  .adv-tag { display: none; }

  /* ==========================================
     TARIFF MANIFEST ROWS
     ========================================== */
  .tariff-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 24px 0 !important;
  }

  .tariff-row-label {
    font-size: 20px !important;
  }

  .tariff-row-amount {
    font-size: 32px !important;
  }

  .tariff-row-price {
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .tariff-row .btn {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Flagship grid */
  .flagship-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ==========================================
     CTA TERMINAL
     ========================================== */
  .cta-terminal {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    border-top: 1px solid var(--border) !important;
  }
  .cta-terminal-right { display: none !important; }

  .cta-terminal-title {
    font-size: clamp(28px, 8vw, 48px) !important;
  }

  /* ==========================================
     FOOTER
     ========================================== */
  .footer-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .footer-links {
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
  }
  .footer-copy {
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* ==========================================
     SECTION COMMON
     ========================================== */
  .section-header { margin-bottom: 32px !important; }
  .container { padding: 0 20px !important; }

  /* ==========================================
     WORKS PAGE
     ========================================== */
  .works-grid {
    grid-template-columns: 1fr !important;
  }

  /* ==========================================
     TARIFFS PAGE tabs
     ========================================== */
  .tariff-tabs > div {
    flex-direction: column !important;
  }

  .tariff-tab {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }

  .tariff-tab-price {
    font-size: clamp(24px, 6vw, 36px) !important;
  }

  .tariff-panel.active {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .tariff-panel-headline {
    font-size: clamp(28px, 7vw, 48px) !important;
  }

  .custom-grid {
    grid-template-columns: 1fr !important;
  }

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

  /* ==========================================
     PROCESS PAGE
     ========================================== */
  .step-row {
    grid-template-columns: 48px 1fr !important;
    gap: 0 16px !important;
  }

  .step-aside { display: none; }

  .total-bar {
    margin-left: 0 !important;
    padding: 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .total-bar .btn {
    width: 100%;
    justify-content: center;
  }

  /* ==========================================
     FAQ PAGE
     ========================================== */
  .faq-q {
    grid-template-columns: 36px 1fr !important;
    gap: 12px !important;
    padding: 20px 0 !important;
  }
  .faq-q-text {
    font-size: clamp(15px, 4vw, 18px) !important;
  }
  .faq-a-inner {
    padding: 0 0 20px 16px !important;
  }
  .glossary-row {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
  }

  /* ==========================================
     TERMS PAGE
     ========================================== */
  .terms-block {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px 0 !important;
  }
  .terms-block-label { position: static !important; }
  .terms-block-num { font-size: 28px !important; }

  /* ==========================================
     CONTACT PAGE
     ========================================== */
  .contact-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-right { display: none !important; }
  .contact-headline {
    font-size: clamp(36px, 10vw, 56px) !important;
  }

  /* ==========================================
     BUTTONS
     ========================================== */
  .btn-lg {
    padding: 14px 24px !important;
    font-size: 16px !important;
  }
}

/* ==========================================
   SMALL PHONES (≤400px)
   ========================================== */
@media (max-width: 400px) {
  .hero-title-line {
    font-size: clamp(36px, 11vw, 52px) !important;
  }
  .container { padding: 0 16px !important; }
  .adv-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .adv-num { display: none; }
}

/* ==========================================
   TABLET (769px–1024px)
   ========================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .tariff-row {
    grid-template-columns: 160px 1fr auto !important;
    gap: 24px !important;
  }

  .adv-row {
    grid-template-columns: 48px 1fr 1fr auto !important;
    gap: 0 24px !important;
  }

  .adv-metric {
    font-size: clamp(32px, 4vw, 52px) !important;
  }

  .flagship-grid {
    grid-template-columns: 1fr !important;
  }
}

