/* ═══════════════════════════════════════════
   ESCUELAS CARBONO CERO — Landing Page CSS
   ═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy: #052449;
  --green: #a2d02d;
  --blue: #3580b1;
  --gray-light: #d7d7d7;
  --white: #ffffff;
  --off-white: #f5f6f4;
  --dark: #0a1628;
  --green-dark: #8ab825;
  --green-glow: rgba(162, 208, 45, 0.25);
  --blue-glow: rgba(53, 128, 177, 0.15);
  --font-title: 'Outfit', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 4px 24px rgba(5, 36, 73, 0.08);
  --shadow-card: 0 8px 32px rgba(5, 36, 73, 0.10);
  --shadow-hero: 0 20px 60px rgba(5, 36, 73, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 12px;
}
.section-tag::before {
  content: ''; width: 32px; height: 3px;
  background: var(--green); border-radius: 2px;
}
.section-title {
  font-family: var(--font-title); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15; color: var(--navy); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem; color: #4a5e7a; max-width: 640px;
  line-height: 1.7; font-weight: 400;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 1rem; padding: 15px 32px;
  border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--green); color: var(--navy);
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--green);
  color: var(--green);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
}
.btn svg { width: 18px; height: 18px; }

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 36, 73, 0.95); backdrop-filter: blur(16px);
  padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo img { height: 44px; width: auto; }
.navbar__links { display: flex; gap: 32px; align-items: center; }
.navbar__links a {
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  transition: var(--transition); position: relative;
}
.navbar__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green);
  transition: var(--transition);
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after { width: 100%; }
.navbar__cta .btn { padding: 10px 24px; font-size: 0.9rem; }
.navbar__toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.navbar__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 6px 0;
  transition: var(--transition);
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(165deg, var(--navy) 0%, #0a3566 50%, var(--blue) 100%);
  overflow: hidden; padding-top: 80px;
}
.hero__bg-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 80%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--blue) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero__content { color: var(--white); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(162,208,45,0.15); border: 1px solid rgba(162,208,45,0.3);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--green); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}
.hero__badge svg { width: 16px; height: 16px; }
.hero__title {
  font-family: var(--font-title); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero__title .highlight {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(162,208,45,0.4);
  text-underline-offset: 6px;
}
.hero__text {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 32px; max-width: 520px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero__stats {
  display: flex; gap: 40px; margin-top: 48px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero__stat { text-align: left; }
.hero__stat-number {
  font-family: var(--font-title); font-weight: 800;
  font-size: 2rem; color: var(--green); display: block;
}
.hero__stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.hero__image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}
.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hero);
  width: 100%;
}
.hero__image::before {
  content: ''; position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px solid rgba(162,208,45,0.3);
  border-radius: var(--radius); z-index: -1;
}
.hero__float-card {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px;
  animation: float 3s ease-in-out infinite;
}
.hero__float-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
}
.hero__float-card .info strong {
  display: block; font-family: var(--font-title);
  font-size: 1.1rem; color: var(--navy);
}
.hero__float-card .info span {
  font-size: 0.8rem; color: #7a8a9e;
}

/* ══════════════ PROBLEMA · AGITACIÓN ══════════════ */
.problem {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.problem .container { text-align: center; }
.problem__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.problem__card {
  background: var(--white); padding: 36px 28px;
  border-radius: var(--radius); border: 1px solid #e8ecf1;
  transition: var(--transition); position: relative; overflow: hidden;
}
.problem__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--gray-light);
  transition: var(--transition);
}
.problem__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.problem__card:hover::before { background: var(--green); }
.problem__card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(5,36,73,0.06), rgba(53,128,177,0.08));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.problem__card h3 {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 12px; color: var(--navy);
}
.problem__card p {
  font-size: 0.95rem; color: #5a6d85; line-height: 1.7;
}

/* ══════════════ SOLUCIÓN ══════════════ */
.solution {
  padding: 100px 0;
  background: var(--white);
}
.solution .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.solution__image { position: relative; }
.solution__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.solution__image::after {
  content: ''; position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  background: var(--green); opacity: 0.1;
  border-radius: var(--radius);
}
.solution__list { margin-top: 28px; }
.solution__item {
  display: flex; gap: 16px; margin-bottom: 22px;
  padding: 16px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.solution__item:hover { background: rgba(162,208,45,0.06); }
.solution__item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; font-weight: 700;
}
.solution__item h4 {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 4px;
}
.solution__item p { font-size: 0.92rem; color: #5a6d85; }

/* ══════════════ CÓMO FUNCIONA ══════════════ */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--navy), #0c3260);
  color: var(--white);
  position: relative; overflow: hidden;
}
.how-it-works::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, var(--green) 1px, transparent 1px);
  background-size: 40px 40px;
}
.how-it-works .container { position: relative; z-index: 2; text-align: center; }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.65); margin: 0 auto 56px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 28px; border-radius: var(--radius);
  backdrop-filter: blur(8px); transition: var(--transition);
  position: relative;
}
.step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: var(--green);
}
.step__number {
  font-family: var(--font-title); font-weight: 900;
  font-size: 3rem; color: var(--green); opacity: 0.3;
  position: absolute; top: 16px; right: 24px;
}
.step__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.2rem; margin-bottom: 12px;
}
.step p {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ══════════════ BENEFICIOS ══════════════ */
.benefits {
  padding: 100px 0;
  background: var(--white);
}
.benefits .container { text-align: center; }
.benefits__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; margin-top: 48px; text-align: left;
}
.benefit-card {
  display: flex; gap: 20px; padding: 28px;
  border-radius: var(--radius);
  border: 1px solid #e8ecf1;
  transition: var(--transition);
}
.benefit-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px var(--green-glow);
  transform: translateY(-3px);
}
.benefit-card__icon {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(162,208,45,0.12), rgba(162,208,45,0.04));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.benefit-card h3 {
  font-family: var(--font-title); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 6px;
}
.benefit-card p { font-size: 0.92rem; color: #5a6d85; line-height: 1.65; }

/* ══════════════ SOCIAL PROOF ══════════════ */
.social-proof {
  padding: 80px 0;
  background: var(--off-white);
}
.social-proof .container { text-align: center; }
.proof-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-top: 36px;
}
.proof-logo-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.proof-logo-item img { height: 48px; width: auto; opacity: 0.7; transition: var(--transition); }
.proof-logo-item img:hover { opacity: 1; }
.proof-logo-item span { font-size: 0.78rem; color: #7a8a9e; font-weight: 500; }

/* ══════════════ IMPACTO (DATOS) ══════════════ */
.impact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.impact .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.impact__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.impact__numbers {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 32px;
}
.impact__number {
  padding: 24px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(5,36,73,0.03), rgba(53,128,177,0.04));
  border: 1px solid rgba(5,36,73,0.06);
}
.impact__number strong {
  font-family: var(--font-title); font-weight: 800;
  font-size: 1.8rem; color: var(--blue);
  display: block;
}
.impact__number span {
  font-size: 0.85rem; color: #5a6d85;
  font-weight: 500;
}

/* ══════════════ CTA FINAL ══════════════ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(165deg, var(--navy) 0%, #0a3566 60%, var(--blue) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, var(--green) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section .section-title { color: var(--white); max-width: 700px; margin: 0 auto 16px; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.cta-section .btn-primary { font-size: 1.1rem; padding: 18px 40px; }

/* ══════════════ FOOTER ══════════════ */
.gg-footer {
  background-color: #f5f6f4;
  border-top: 3px solid #a2c737;
  padding: 22px 40px;
  display: flex; align-items: center;
  justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
}
.gg-footer__brand {
  display: flex; align-items: center; gap: 14px;
}
.gg-footer__logo {
  display: block; height: 40px; width: auto; flex-shrink: 0;
}
.gg-footer__caption {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; color: #7a8a72;
  line-height: 1.5; text-align: right; white-space: nowrap;
}
.gg-footer__divider {
  width: 1px; height: 36px;
  background-color: #d7d7d7; flex-shrink: 0;
}

/* ── Footer legal bar ── */
.gg-footer__legal {
  background: #edeee9;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  flex-wrap: wrap;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 0.78rem;
  color: #7a8a72;
  text-align: center;
}
.gg-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 6px 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.gg-footer__legal-links a {
  color: #5a7050;
  text-decoration: none;
  transition: color 0.2s;
}
.gg-footer__legal-links a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* ══════════════ COOKIE CONSENT BANNER ══════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__content {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}
.cookie-banner__text {
  flex: 1 1 400px;
  min-width: 280px;
}
.cookie-banner__text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}
.cookie-banner__text p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept {
  background: var(--green);
  color: var(--navy);
}
.cookie-btn--accept:hover { background: #b5e030; }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cookie-btn--config {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn--config:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Cookie config panel */
.cookie-config {
  background: #071e3a;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-config__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-config__header strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--white);
}
.cookie-config__close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem; cursor: pointer;
  padding: 4px 8px;
}
.cookie-config__close:hover { color: var(--white); }
.cookie-config__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-option:hover { background: rgba(255,255,255,0.07); }
.cookie-option input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--green);
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.cookie-option div strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.cookie-option div span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.cookie-config__actions {
  display: flex;
  justify-content: flex-end;
}

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__text { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__image { max-width: 500px; margin: 0 auto; }
  .hero__float-card { left: auto; right: -10px; }
  .hero__image::before { display: none; }
  .solution .container { grid-template-columns: 1fr; }
  .solution__image { order: -1; max-width: 500px; margin: 0 auto; }
  .impact .container { grid-template-columns: 1fr; }
  .impact__image { max-width: 500px; margin: 0 auto; }
  .problem__grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .benefits__grid { grid-template-columns: 1fr; max-width: 540px; margin: 48px auto 0; }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: block; }
  .navbar__links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,36,73,0.98); padding: 24px;
    gap: 20px; backdrop-filter: blur(16px);
  }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__float-card { display: none; }
}
@media (max-width: 600px) {
  .gg-footer {
    flex-direction: column; align-items: flex-start;
    padding: 20px; gap: 20px;
  }
  .gg-footer__caption { text-align: left; }
  .gg-footer__divider { width: 32px; height: 1px; }
  .gg-footer__legal { padding: 14px 20px; flex-direction: column; gap: 6px; }
  .gg-footer__legal-links { justify-content: center; }
  .cookie-banner__content { padding: 20px; flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .cookie-btn { flex: 1; text-align: center; }
  .cookie-config { padding: 20px; }
  .impact__numbers { grid-template-columns: 1fr; }
}
