/* ────────────────────────────────────────────────────────────────
   ЭксФикс — Light theme
   ──────────────────────────────────────────────────────────────── */

:root {
  /* Backgrounds */
  --bg:           #f4f6fa;
  --bg-alt:       #eef1f7;
  --bg-elevated:  #ffffff;
  --surface:      rgba(15, 23, 42, 0.04);
  --surface-hover:rgba(15, 23, 42, 0.08);
  --surface-card: #ffffff;

  /* Borders */
  --border:       rgba(15, 23, 42, 0.09);
  --border-hover: rgba(12, 157, 97, 0.35);
  --border-accent:rgba(12, 157, 97, 0.45);

  /* Text */
  --text:         #0f172a;
  --text-muted:   #5c6578;
  --text-dim:     #8c96a8;

  /* Accent */
  --accent:       #0c9d61;
  --accent-hover: #10b570;
  --accent-dim:   #0a7a4c;
  --accent-bg:    rgba(12, 157, 97, 0.1);
  --accent-soft:  rgba(12, 157, 97, 0.14);
  --accent-glow:  rgba(12, 157, 97, 0.2);

  /* Blue accent */
  --blue:         #2563eb;
  --blue-glow:    rgba(37, 99, 235, 0.14);

  /* System */
  --danger:       #dc2626;
  --success:      var(--accent);

  /* Geometry */
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-btn:   10px;

  /* Shadow */
  --shadow:       0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-hover: 0 4px 20px rgba(15, 23, 42, 0.08), 0 0 32px rgba(12, 157, 97, 0.1);

  /* Surfaces on light background */
  --fill-ghost:       rgba(15, 23, 42, 0.05);
  --fill-ghost-hover: rgba(15, 23, 42, 0.09);
  --fill-chip:        rgba(15, 23, 42, 0.04);
  --section-tint:     rgba(15, 23, 42, 0.025);
  /* Полоса за контентом (статистика, заявка, CTA) — лёгкий зелёный тон */
  --strip-bg:         rgba(12, 157, 97, 0.07);
  --input-bg:         rgba(15, 23, 42, 0.04);
  --input-bg-focus:   rgba(15, 23, 42, 0.06);
  --btn-on-accent:    #ffffff;

  --font:         'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h:     72px;
  --anchor-offset:calc(var(--header-h) + 12px);
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ─── Animations ─────────────────────────────────────────────────── */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes main-spa-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Фон: переливающаяся «волна» (зелёный + синий) */
@keyframes brand-wave {
  0% {
    transform: translate3d(-8%, -6%, 0) scale(1.02);
    background-position: 0% 35%, 80% 20%, 20% 90%;
  }
  50% {
    transform: translate3d(6%, 8%, 0) scale(1.06);
    background-position: 100% 55%, 20% 80%, 85% 15%;
  }
  100% {
    transform: translate3d(-5%, 4%, 0) scale(1.03);
    background-position: 40% 70%, 100% 40%, 10% 60%;
  }
}

main.page-enter     { animation: page-enter    0.65s cubic-bezier(0.22,1,0.36,1) both; }
main.main-spa-enter { animation: main-spa-enter 0.42s cubic-bezier(0.22,1,0.36,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  main.page-enter, main.main-spa-enter { animation: none; }
}

/* ─── Reveal ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible    { opacity: 1; transform: none; }
.reveal--delay-1      { transition-delay: 0.1s; }
.reveal--delay-2      { transition-delay: 0.2s; }
.reveal--delay-3      { transition-delay: 0.32s; }

/* ─── Base ───────────────────────────────────────────────────────── */
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  position: relative;
  z-index: 2;
}

/* Переливающийся градиент под сеткой */
body::after {
  content: '';
  position: fixed;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      transparent 0%,
      rgba(12, 157, 97, 0.07) 22%,
      rgba(56, 189, 248, 0.06) 42%,
      rgba(37, 99, 235, 0.09) 58%,
      rgba(12, 157, 97, 0.06) 78%,
      transparent 100%
    ),
    radial-gradient(ellipse 85% 65% at 12% 88%, rgba(12, 157, 97, 0.14), transparent 58%),
    radial-gradient(ellipse 80% 60% at 92% 12%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(12, 157, 97, 0.05), transparent 62%);
  background-size: 240% 240%, 100% 100%, 100% 100%, 120% 120%;
  background-repeat: no-repeat;
  animation: brand-wave 26s ease-in-out infinite alternate;
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
    transform: none;
    background-position: 35% 45%, 0% 0%, 100% 0%, 50% 50%;
    opacity: 0.88;
  }
}

/* Subtle grid поверх градиента */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ─── Header ─────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 246, 250, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  position: relative;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.04em;
  transition: opacity 0.2s;
  z-index: 1;
}
.logo:hover { opacity: 0.8; }
.logo span { color: var(--accent); }

/* Nav */
.nav { display: flex; gap: 4px 12px; align-items: center; flex-wrap: wrap; }

.nav > a:not(.btn-primary) {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.nav > a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.28s cubic-bezier(0.22,1,0.36,1);
}
.nav > a:not(.btn-primary):hover                          { color: var(--text); }
.nav > a:not(.btn-primary):hover::after                   { width: 100%; }
.nav a[aria-current="page"]:not(.btn-primary)             { color: var(--text); font-weight: 700; }
.nav a[aria-current="page"]:not(.btn-primary)::after      { width: 100%; }

/* Nav CTA pill */
.nav a.btn-primary {
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--btn-on-accent);
  background: var(--accent);
  border: none;
  border-radius: var(--radius-btn);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 0 20px var(--accent-glow);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
}
.nav a.btn-primary::after { display: none; }
.nav a.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(12, 157, 97, 0.28);
  transform: translateY(-1px);
  color: var(--btn-on-accent);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  justify-content: center;
  z-index: 1;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
  position: relative;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

.btn-primary {
  background: var(--accent);
  color: var(--btn-on-accent);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 0 24px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(12, 157, 97, 0.3);
  transform: translateY(-2px);
  color: var(--btn-on-accent);
}

.btn-ghost {
  background: var(--fill-ghost);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--fill-ghost-hover);
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(12, 157, 97, 0.08);
  transform: translateY(-1px);
}

/* ─── Hero ───────────────────────────────────────────────────────── */
section.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
  background: transparent;
}

/* Large glow blob behind headline */
section.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 130vw);
  height: min(700px, 90vw);
  background: radial-gradient(ellipse at center,
    rgba(12, 157, 97, 0.12) 0%,
    rgba(37, 99, 235, 0.08) 38%,
    transparent 68%);
  pointer-events: none;
  animation: glow-pulse 9s ease-in-out infinite;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Status badge */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px;
  background: var(--accent-bg);
  border: 1px solid rgba(12, 157, 97, 0.22);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: dot-blink 2.2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.038em;
  color: var(--text);
  margin: 0 0 28px;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(125deg, var(--accent) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 0 44px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--fill-chip);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.22s;
}
.hero-chip svg { color: var(--accent); flex-shrink: 0; }
.hero-chip:hover { border-color: rgba(12, 157, 97, 0.25); color: var(--text); }

/* Compact hero for inner pages */
section.hero--compact {
  min-height: auto;
  padding: 80px 0 72px;
}
section.hero--compact::before { opacity: 0.5; }
.hero--compact h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.hero__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__breadcrumb a:hover { color: var(--accent); }
.hero__bc-sep { color: var(--text-dim); }

/* ─── Section commons ────────────────────────────────────────────── */
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: transparent;
}
main section[id] { scroll-margin-top: var(--anchor-offset); }

.section-head { margin-bottom: 56px; max-width: 640px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }
.section-head--center .section-kicker { margin-left: auto; margin-right: auto; }
.section-head--center .section-prose { margin-left: auto; margin-right: auto; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-kicker::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 16px;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.03rem;
  max-width: 580px;
  line-height: 1.72;
  margin: 0;
}
.section-prose { max-width: 660px; margin-bottom: 36px; }
.section-cta { text-align: center; margin-top: 32px; }

/* ─── Stats strip ────────────────────────────────────────────────── */
section.stats-strip,
section#contact,
section.cta-strip {
  background: var(--strip-bg);
}
section.stats-strip {
  padding: 0;
  border-top: none;
  border-bottom: none;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip__item {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: none;
  transition: background 0.25s;
}
.stats-strip__item:hover { background: rgba(12, 157, 97, 0.06); }
.stats-strip__value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 24px var(--accent-glow);
}
.stats-strip__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Cards ──────────────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.cards--two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.32s, box-shadow 0.32s, transform 0.32s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 180% 70% at 50% -10%, rgba(12, 157, 97, 0.06), transparent 65%);
  opacity: 0;
  transition: opacity 0.32s;
  pointer-events: none;
}
.card:hover {
  border-color: rgba(12, 157, 97, 0.22);
  box-shadow: 0 0 28px rgba(12, 157, 97, 0.08), 0 16px 48px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* Equal-height row: keep CTA strip pinned to card bottom */
.card:has(.panel-actions) {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:has(.panel-actions) .panel-features {
  flex: 1 1 auto;
  min-height: 0;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--accent-bg);
  border: 1px solid rgba(12, 157, 97, 0.18);
  border-radius: 11px;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: box-shadow 0.28s;
}
.card:hover .card-icon {
  box-shadow: 0 0 16px rgba(12, 157, 97, 0.18);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.card > p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}

/* Panel features list */
.panel-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.panel-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.panel-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.panel-actions {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.855rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}
.panel-cta:hover { gap: 8px; }
.panel-cta--muted { color: var(--text-muted); }
.panel-cta--muted:hover { color: var(--text); gap: 8px; }

/* ─── Why grid ───────────────────────────────────────────────────── */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.32s, box-shadow 0.32s, transform 0.32s;
}
.why-item:hover {
  border-color: rgba(12, 157, 97, 0.2);
  box-shadow: 0 0 24px rgba(12, 157, 97, 0.08);
  transform: translateX(6px);
}
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-bg);
  border: 1px solid rgba(12, 157, 97, 0.18);
  border-radius: 12px;
  color: var(--accent);
  transition: box-shadow 0.28s;
}
.why-item:hover .icon-wrap { box-shadow: 0 0 16px rgba(12, 157, 97, 0.18); }
.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ─── Timeline ───────────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 10%,
    var(--border) 90%,
    transparent 100%);
  z-index: 0;
}
.timeline-item {
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-item:last-child { padding-right: 0; }
.timeline-item__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.timeline-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  margin: 0;
  margin-top: 0.35em;
  flex-shrink: 0;
  position: relative;
}
.timeline-item .dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(12, 157, 97, 0.22);
}
.timeline-item h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  padding-left: calc(12px + 14px);
}

/* ─── CTA strip ──────────────────────────────────────────────────── */
section.cta-strip {
  border-top: none;
  border-bottom: none;
  padding: 72px 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 10px;
}
.cta-strip__text {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* ─── Lead form ──────────────────────────────────────────────────── */
#contact .container {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-intro { color: var(--text-muted); }

#contact .lead-form {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
#contact .form-group label,
#contact .field-hint {
  text-align: center;
}
#contact .form-group input,
#contact .form-group textarea {
  text-align: left;
}

.lead-form {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 157, 97, 0.35), transparent);
  pointer-events: none;
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field-wrap { position: relative; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  background: var(--input-bg-focus);
  border-color: rgba(12, 157, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(12, 157, 97, 0.1), 0 0 18px rgba(12, 157, 97, 0.06);
}
.form-group textarea {
  resize: none;
  overflow-y: hidden;
  min-height: 110px;
  max-height: min(320px, 70vh);
  transition: height 0.12s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-group textarea { transition: none; }
}
.form-group textarea[data-autogrow-overflow="1"] {
  overflow-y: auto;
}

.form-group--error input,
.form-group--error textarea {
  border-color: rgba(220, 38, 38, 0.5);
}
.form-group--error input:focus,
.form-group--error textarea:focus {
  border-color: rgba(220, 38, 38, 0.65);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 5px;
}

.lead-form__actions { margin-top: 8px; }
.lead-form__actions .btn { width: 100%; }

.form-status {
  font-size: 0.875rem;
  margin-top: 14px;
  min-height: 20px;
  text-align: center;
}
.form-status--success { color: var(--accent); }
.form-status--error   { color: var(--danger); }
.form-status--info    { color: var(--text-muted); }

/* ─── Admin panel ─────────────────────────────────────────────────── */

.admin-hidden {
  display: none !important;
}

.text-muted {
  color: var(--text-dim);
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 48px;
  position: relative;
  z-index: 10;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.admin-login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 157, 97, 0.35), transparent);
  pointer-events: none;
}

.admin-login-brand {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-brand .logo {
  font-size: 1.45rem;
  display: inline-block;
}
.admin-login-tagline {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.admin-login-form .form-group { margin-bottom: 22px; }
.admin-login-form .btn-submit {
  width: 100%;
  margin-top: 4px;
}

.admin-dashboard {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-dashboard .container {
  max-width: min(1680px, 96vw);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 250, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}
.admin-header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.admin-total {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.admin-main {
  flex: 1;
  padding: 40px 0 80px;
}

.admin-page-head {
  margin-bottom: 32px;
  max-width: 640px;
}
.admin-page-head .section-kicker { margin-bottom: 12px; }
.admin-page-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.admin-stat-card:hover {
  border-color: rgba(12, 157, 97, 0.22);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.admin-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.admin-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.admin-search {
  margin-bottom: 22px;
}
.admin-search input {
  width: 100%;
  max-width: 520px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.94rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
.admin-search input::placeholder {
  color: var(--text-dim);
}
.admin-search input:focus {
  background: var(--input-bg-focus);
  border-color: rgba(12, 157, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(12, 157, 97, 0.1);
}

.admin-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-card);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table thead {
  background: var(--strip-bg);
}
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text);
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table tbody tr:hover td {
  background: rgba(12, 157, 97, 0.04);
}

.admin-task-cell {
  max-width: min(420px, 36vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-date-cell {
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.admin-actions-cell {
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.admin-status-select {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 32px 8px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  cursor: pointer;
  min-width: 128px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c6578' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-status-select:hover {
  border-color: rgba(12, 157, 97, 0.35);
}
.admin-status-select:focus {
  outline: none;
  border-color: rgba(12, 157, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(12, 157, 97, 0.1);
}

.admin-action-btn {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--fill-ghost);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.admin-action-btn:hover {
  border-color: var(--border-hover);
  background: var(--fill-ghost-hover);
  color: var(--accent);
}
.admin-action-btn.admin-has-note {
  border-color: rgba(12, 157, 97, 0.35);
  color: var(--accent);
}
.admin-action-btn--danger:hover {
  border-color: rgba(220, 38, 38, 0.45);
  color: var(--danger);
  background: rgba(220, 38, 38, 0.06);
}

.admin-no-data {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.admin-page-btn {
  min-width: 40px;
  height: 40px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.admin-page-btn:hover {
  border-color: rgba(12, 157, 97, 0.4);
  color: var(--accent);
}
.admin-page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--btn-on-accent);
}
.admin-ellipsis {
  padding: 0 6px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.admin-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(640px, 92vw);
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-hover);
}
.admin-modal-card h3 {
  font-size: 1.05rem;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.admin-modal-card textarea {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  resize: vertical;
  margin-bottom: 20px;
  background: var(--input-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-modal-card textarea:focus {
  outline: none;
  background: var(--input-bg-focus);
  border-color: rgba(12, 157, 97, 0.45);
  box-shadow: 0 0 0 3px rgba(12, 157, 97, 0.1);
}
.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .admin-main { padding: 28px 0 64px; }
  .admin-page-head { margin-bottom: 24px; }
  .admin-header-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .admin-header-inner .logo { align-self: center; }
  .admin-header-actions {
    justify-content: center;
  }
  .admin-search input { max-width: none; }
}

@media (max-width: 480px) {
  .admin-stats { grid-template-columns: 1fr; }
  .admin-login-card { padding: 36px 24px 32px; }
}

/* ─── Product page ───────────────────────────────────────────────── */
.product-section { padding: 80px 0; }

.product-pentest__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.product-pentest__lead {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}
.product-pentest__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-pentest__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.product-pentest__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.82rem;
}
.product-pentest__note {
  background: rgba(12, 157, 97, 0.06);
  border: 1px solid rgba(12, 157, 97, 0.14);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.product-pentest__intro { max-width: 680px; }

.product-section--pentest .product-pentest__note {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}
.site-footer__main { padding: 64px 0 56px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.site-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.site-footer__desc {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.72;
  margin: 14px 0 0;
  max-width: 290px;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.site-footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--accent); }
.site-footer__bar {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy { font-size: 0.8rem; color: var(--text-dim); }
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__legal a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__legal a:hover { color: var(--accent); }
.site-footer__sep { color: var(--text-dim); }

.logo--footer { font-size: 1.2rem; }
.logo--footer span { color: var(--accent); }

/* ─── Legal pages ────────────────────────────────────────────────── */
.legal-simple {
  padding: 72px 0 96px;
  text-align: center;
}
.legal-simple .container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.legal-simple h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  color: var(--text);
  margin: 0 0 8px;
  text-align: center;
}
.legal-simple .legal-updated {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0 auto 48px;
  max-width: 640px;
}
.legal-simple h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px auto 12px;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 640px;
}
.legal-simple p,
.legal-simple li {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.legal-simple p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}
.legal-simple .legal-simple__back {
  display: inline-block;
  margin-top: 8px;
}
.legal-simple ul,
.legal-simple ol {
  padding-left: 20px;
  margin: 12px auto;
  max-width: 640px;
  text-align: left;
}
.legal-simple li { margin-bottom: 6px; }
.legal-simple a { color: var(--accent); text-decoration: none; }
.legal-simple a:hover { text-decoration: underline; }

/* Accessibility utility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Screenshot slider ──────────────────────────────────────────── */
.screenshots-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin: 0;
}

.slider {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Placeholder image area */
.slide-img {
  aspect-ratio: 16 / 7;
  background:
    linear-gradient(135deg,
      rgba(12, 157, 97, 0.06) 0%,
      rgba(37, 99, 235, 0.07) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.slide-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.slide-img-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--fill-chip);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.slide-img-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.slide-caption {
  padding: 24px 32px 28px;
}
.slide-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.slide-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Controls row */
.slider-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 8px var(--accent-glow);
}
.slider-dot:hover:not(.active) { background: var(--text-dim); }

.slider-btns {
  display: flex;
  gap: 8px;
}
.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--fill-chip);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
  flex-shrink: 0;
}
.slider-btn:hover {
  border-color: var(--border-hover);
  background: var(--fill-ghost-hover);
  color: var(--accent);
}
.slider-btn:active { transform: scale(0.95); }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0; right: 0;
    background: rgba(244, 246, 250, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 16px;
    gap: 0;
    display: none;
    z-index: 199;
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn-primary) { padding: 7px 0; font-size: 1rem; }
  .nav a.btn-primary { margin-top: 6px; text-align: center; padding: 12px 14px; }

  section.hero { padding: 72px 0 56px; min-height: auto; }
  .hero h1 { font-size: 2.1rem; }
  .hero .subtitle { font-size: 1rem; }

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

  .cards, .cards--two { grid-template-columns: 1fr; }
  .product-pentest__grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .why-item { flex-direction: column; gap: 16px; }
  .cta-strip__inner { flex-direction: column; align-items: center; }
  .lead-form { padding: 32px 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__col--brand { grid-column: auto; }
  .site-footer__bar-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  section.hero:not(.hero--compact) .hero__actions {
    align-self: stretch;
  }
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .slide-caption { padding: 20px 20px 24px; }
  .slider-footer { padding: 14px 20px 20px; }
}