/* ============================================
   SPRUT — TECH AESTHETIC / DARK THEME
   ============================================ */

:root {
  --bg: #07090f;
  --bg-2: #0c1018;
  --bg-3: #11161f;
  --surface: #141a25;
  --surface-2: #1a2230;
  --border: #1e2738;
  --border-bright: #2a3550;

  --text: #e8edf5;
  --text-2: #aab3c5;
  --text-3: #6e7990;
  --muted: #4a5468;

  --accent: #00f0ff;
  --accent-2: #0066ff;
  --accent-glow: rgba(0, 240, 255, 0.4);
  --accent-soft: rgba(0, 240, 255, 0.08);

  --danger: #ff3860;
  --success: #00d68f;

  --grad-accent: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
  --grad-line: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --maxw: 1320px;
  --header-h: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 920px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 18px 22px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(.5,1.4,.5,1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-cookie {
  background: var(--grad-accent);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.btn-cookie:hover {
  transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 12px var(--accent-glow));
  transition: transform 0.4s cubic-bezier(.5,1.4,.5,1);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all 0.2s ease;
}

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

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

.nav-link.active::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.phone-icon {
  color: var(--accent);
  font-size: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-primary {
  background: var(--grad-accent);
  color: #000;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
  color: #000;
}

.btn-primary:hover::before {
  opacity: 0.2;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   BURGER
   ============================================ */
.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs-wrap {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: none;
}

.breadcrumbs-wrap.show {
  display: block;
}

.breadcrumbs {
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs a {
  color: var(--text-3);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  color: var(--muted);
}

.breadcrumbs .current {
  color: var(--text);
}

/* ============================================
   PAGE / SECTION BASICS
   ============================================ */
main {
  position: relative;
  z-index: 2;
  animation: pageFadeIn 0.5s ease;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
}

.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
}

.hero-glow-1 {
  background: var(--accent);
  top: -100px;
  left: -100px;
  animation: glowFloat1 14s ease-in-out infinite;
}

.hero-glow-2 {
  background: var(--accent-2);
  bottom: -200px;
  right: -100px;
  animation: glowFloat2 18s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, 60px); }
}

@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-80px, -60px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
  background: var(--accent-soft);
  border: 1px solid rgba(0,240,255,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 86px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* HERO VISUAL CARD */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-line);
}

.hero-card:hover {
  transform: translateY(-6px);
}

.hero-card-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
}
.hero-card-corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.hero-card-corner.tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.hero-card-corner.bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.hero-card-corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.hero-card-image {
  aspect-ratio: 1;
  background: var(--bg-3);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }

.info-key { color: var(--text-3); }
.info-val { color: var(--text); }
.info-val-ok { color: var(--success); }

/* HERO SCROLL HINT */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 12px;
  background: var(--accent);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(28px); opacity: 0; }
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(0,240,255,0.03) 10px, rgba(0,240,255,0.03) 20px),
    var(--bg-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-3);
  font-family: var(--font-mono);
  text-align: center;
  border: 1px dashed var(--border-bright);
  padding: 16px;
  min-height: 100%;
}

.img-label {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.img-hint {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.4;
}

.img-placeholder.small .img-label { font-size: 11px; }
.img-placeholder.small .img-hint { font-size: 9px; }

.img-placeholder.tiny {
  border-radius: 50%;
}
.img-placeholder.tiny .img-label { font-size: 9px; }
.img-placeholder.tiny .img-hint { display: none; }

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: width 0.4s ease;
}

.advantage:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  background: var(--surface-2);
}

.advantage:hover::before {
  width: 100%;
}

.advantage-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

.advantage-icon {
  font-size: 36px;
  margin-bottom: 22px;
  filter: grayscale(0.2);
}

.advantage h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.advantage p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.category {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.category:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.category:hover::after { opacity: 1; }

.category-icon {
  width: 100%;
  aspect-ratio: 1.6;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.category h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.category p {
  font-size: 14px;
  color: var(--text-2);
  flex: 1;
}

.category-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  transition: transform 0.2s ease;
  align-self: flex-start;
}

.category:hover .category-link {
  transform: translateX(4px);
}

.cta-row {
  text-align: center;
}

/* ============================================
   TRUST BAR (MARQUEE)
   ============================================ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}

.trust-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.trust-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: fit-content;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-3);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--border-bright);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  color: var(--accent);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer p { margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta-content p {
  color: var(--text-2);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO (NON-HOME)
   ============================================ */
.page-hero {
  padding: 80px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 24px;
  max-width: 1100px;
}

.page-lead {
  font-size: 19px;
  color: var(--text-2);
  max-width: 780px;
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  margin: 36px 0 18px;
  letter-spacing: -0.01em;
}

.about-content h2:first-child { margin-top: 0; }

.about-content p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content strong {
  color: var(--text);
  font-weight: 600;
}

/* ============================================
   BIG STATS
   ============================================ */
.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.big-stat {
  background: var(--surface);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s ease;
}

.big-stat:hover {
  background: var(--surface-2);
}

.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.big-stat-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* ============================================
   PRINCIPLES
   ============================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.principle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.principle:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.principle-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.principle p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.team-photo {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}

.team-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.team-bio {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.team-cta {
  margin-top: 56px;
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.team-cta p {
  font-size: 16px;
  color: var(--text-2);
}

.team-cta a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   CERTIFICATES
   ============================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 64px;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.cert-image {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  position: relative;
}

.cert-info {
  padding: 18px 20px 22px;
}

.cert-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cert-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.doc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.doc-card:hover {
  border-color: var(--border-bright);
}

.doc-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-info {
  flex: 1;
}

.doc-title {
  font-weight: 600;
  font-size: 15px;
}

.doc-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.doc-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.delivery-card,
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.delivery-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.delivery-icon {
  font-size: 32px;
  margin-bottom: 18px;
}

.delivery-card h3,
.pay-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.delivery-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

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

.pay-card {
  padding: 36px;
}

.pay-list {
  list-style: none;
  margin-top: 18px;
}

.pay-list li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-2);
  font-size: 14px;
}

.pay-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pay-list li:last-child {
  border-bottom: 0;
}

.delivery-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.dt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
  gap: 18px;
}

.dt-row:last-child { border-bottom: 0; }

.dt-head {
  background: var(--bg-3);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dt-row:not(.dt-head) > div:first-child {
  font-weight: 600;
}

.dt-row:not(.dt-head) > div:not(:first-child) {
  color: var(--text-2);
  font-family: var(--font-mono);
}

.dt-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-row:first-child { padding-top: 0; }

.contact-key {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
  padding-top: 2px;
}

.contact-val {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}

.contact-val a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-bright);
}

.contact-val a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.contact-map {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--bg-3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.8);
}

.map-link {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  z-index: 5;
}

.map-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* LEGAL */
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 36px;
}

.legal-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.legal-row:last-child { border-bottom: 0; }

.legal-key {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.legal-val {
  font-size: 14px;
  color: var(--text);
}

.legal-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FORM */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.form-card > p {
  color: var(--text-2);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-3);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 4px 0;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
}

/* ============================================
   LEGAL TEXT (PRIVACY)
   ============================================ */
.legal-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
}

.legal-text h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

.legal-text h2:first-child { margin-top: 0; }

.legal-text p { margin-bottom: 12px; }

.legal-text ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.legal-text ul li {
  margin-bottom: 8px;
  list-style-type: none;
  position: relative;
  padding-left: 20px;
}

.legal-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.legal-text strong { color: var(--text); }

.legal-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 360px;
}

.logo-footer { margin-bottom: 18px; }

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

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-2);
  font-size: 14px;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-contacts li {
  font-size: 14px;
  color: var(--text-2);
}

.footer-meta {
  font-size: 12px;
  color: var(--text-3);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.2s ease;
}

.social:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-3);
}

.footer-links a:hover { color: var(--accent); }

/* ============================================
   PROCESS (КАК МЫ РАБОТАЕМ)
   ============================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  transition: all 0.3s ease;
  z-index: 1;
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  box-shadow: 0 0 20px var(--accent-soft);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 14px;
}

.process-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ============================================
   TEAM PREVIEW (на главной — 4 карточки без bio)
   ============================================ */
.team-grid-preview {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}

.team-grid-preview .team-info {
  padding: 18px 20px;
}

/* ============================================
   CONTACTS PREVIEW (на главной)
   ============================================ */
.contacts-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.contacts-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ci-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.ci-block:nth-last-child(2) {
  border-bottom: 0;
  padding-bottom: 0;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ci-key {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ci-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.ci-val a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-bright);
}

.ci-val a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.ci-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
}

.ci-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.contacts-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--bg-3);
  min-height: 480px;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.8);
  position: absolute;
  inset: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-phone { display: none; }

  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 32px 28px;
    gap: 6px;
    z-index: 49;
    border-top: 1px solid var(--border);
  }

  .nav.mobile-open .nav-link {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .advantages,
  .categories,
  .delivery-grid,
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-line { display: none; }

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

  .contacts-preview {
    grid-template-columns: 1fr;
  }

  .contacts-map { min-height: 380px; }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .certs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 480px;
    position: static;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root { --header-h: 70px; }

  .container { padding: 0 20px; }

  .section { padding: 64px 0; }

  .btn-catalog { display: none; }

  .hero {
    padding: 48px 0 80px;
    min-height: auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  .hero-scroll { display: none; }

  .advantages,
  .categories,
  .delivery-grid,
  .testimonials,
  .pay-grid,
  .principles,
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .process,
  .team-grid-preview {
    grid-template-columns: 1fr;
  }

  .contacts-info { padding: 24px; }
  .ci-actions { flex-direction: column; }
  .ci-actions .btn { justify-content: center; }

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

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

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

  .cta-card {
    padding: 48px 28px;
  }

  .form-card,
  .contact-card,
  .legal-card {
    padding: 28px 22px;
  }

  .legal-row,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-row .legal-key,
  .contact-row .contact-key { padding-top: 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .dt-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 14px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .team-grid,
  .certs-grid {
    grid-template-columns: 1fr;
  }

  .big-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn { justify-content: center; }
}