
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate-950: #0A0F1C;
  --slate-900: #111827;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --slate-100: #F1F5F9;
  --white: #FFFFFF;
  --teal-600: #0D9488;
  --teal-400: #2DD4BF;
  --teal-100: #CCFBF1;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
  --max-w: 1200px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-100);
  background: var(--slate-950);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-400); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--slate-300); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }
.section-intro { font-size: 1.1rem; color: var(--slate-300); max-width: 620px; }
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10, 15, 28, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 15, 28, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--slate-800);
}
.brand-logo-placeholder {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-600), var(--slate-700));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--teal-400); }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover, .site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--teal-600) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--teal-400) !important; color: var(--slate-950) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate-950);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--slate-300);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav a.active { color: var(--teal-400); }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,15,28,0.7) 0%, rgba(10,15,28,0.95) 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--teal-400);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--teal-400); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--slate-300);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal-600);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-400);
  color: var(--slate-950);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--slate-300);
  border: 1px solid var(--slate-700);
}
.btn-outline:hover {
  border-color: var(--teal-400);
  color: var(--teal-400);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-400);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--white); }
.stats-bar {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--teal-400); }
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  border-color: rgba(45, 212, 191, 0.2);
}
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 28px; }
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 10px;
  display: block;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.9rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-400);
  margin-top: 18px;
}
.card-link:hover { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-visual { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.feature-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.feature-text .section-label { display: block; }
.feature-text h2 { margin-bottom: 16px; }
.feature-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--slate-300);
}
.feature-list li .icon {
  color: var(--teal-400);
  flex-shrink: 0;
  margin-top: 2px;
}
.icon-box {
  width: 48px; height: 48px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  flex-shrink: 0;
  margin-bottom: 18px;
}
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
  border: none;
}
.cta-band {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 500px; margin: 0 auto 36px; }
.cta-band .btn { margin: 0 8px; }
.site-footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-brand .site-brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--slate-400, #94a3b8);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.8rem;
  color: var(--slate-500);
}
.footer-bottom a:hover { color: var(--teal-400); }
.footer-legal { display: flex; gap: 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .icon-box { margin-bottom: 0; }
.contact-item-text h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: var(--slate-300); margin: 0; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-300);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.form-control::placeholder { color: var(--slate-500); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-notice { font-size: 0.78rem; color: var(--slate-500); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--teal-400);
  margin-top: 20px;
}
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-content h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; color: var(--white); margin: 24px 0 10px; }
.legal-content p { color: var(--slate-300); margin-bottom: 14px; }
.legal-content ul { list-style: none; margin: 0 0 14px; padding: 0; }
.legal-content ul li {
  padding: 6px 0 6px 20px;
  color: var(--slate-300);
  font-size: 0.95rem;
  position: relative;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  background: var(--teal-600);
  border-radius: 50%;
}
.legal-date {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 40px;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(45, 212, 191, 0.2); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--slate-800);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(45, 212, 191, 0.3);
  color: var(--teal-400);
}
.team-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--slate-500); margin: 0; }

.value-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate-500);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--slate-500); }
.breadcrumb a:hover { color: var(--teal-400); }
.breadcrumb span { color: var(--white); }
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 840px;
  background: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(16px);
}
.cookie-text { flex: 1; }
.cookie-text p { font-size: 0.875rem; color: var(--slate-300); margin: 0; }
.cookie-text a { color: var(--teal-400); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.8rem; }
.img-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-strip-main { aspect-ratio: 4/3; }
.img-strip-side { display: flex; flex-direction: column; gap: 16px; }
.img-strip-side .img-item { flex: 1; overflow: hidden; border-radius: var(--radius); }
.img-strip img { width: 100%; height: 100%; object-fit: cover; }
.img-strip-main img { height: 100%; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-teal { background: rgba(45, 212, 191, 0.12); color: var(--teal-400); border: 1px solid rgba(45, 212, 191, 0.25); }
.badge-slate { background: rgba(100, 116, 139, 0.15); color: var(--slate-300); border: 1px solid rgba(100, 116, 139, 0.25); }
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }
.topic-card {
  background: var(--slate-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.topic-card:hover { transform: translateY(-3px); border-color: rgba(45, 212, 191, 0.2); }
.topic-card h3 { margin-bottom: 12px; }
.topic-card p { font-size: 0.9rem; }

.callout {
  background: rgba(13, 148, 136, 0.08);
  border-left: 3px solid var(--teal-600);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout p { font-size: 0.9rem; color: var(--slate-300); margin: 0; }
.callout strong { color: var(--white); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-block { gap: 40px; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(2), .stat-item:last-child { border-bottom: none; }
  .feature-block, .feature-block.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .feature-block.reverse .feature-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .img-strip { grid-template-columns: 1fr; }
  .img-strip-side { flex-direction: row; }
}

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

  .site-nav { display: none; }
  .hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
  }
  .cookie-banner.hidden {
    transform: translateY(16px);
  }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }

  .img-strip { grid-template-columns: 1fr; }
  .img-strip-side { flex-direction: column; }
  .img-strip-side .img-item { height: 200px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-band .btn { display: block; margin: 8px auto; max-width: 300px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
