@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;600;700&family=Playfair+Display:wght@400;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --accent: #f4a261;
  --accent2: #e76f51;
  --bg: #0f1f17;
  --bg2: #162b1e;
  --bg3: #1e3a28;
  --text: #e8f5e9;
  --text-muted: #8fbc8f;
  --white: #ffffff;
  --card-bg: #1a3020;
  --border: #2d5a3d;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--green-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-ring {
  width: 56px;
  height: 56px;
  border: 4px solid var(--border);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 31, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav.main-nav a {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-light);
  transition: width 0.3s;
}
nav.main-nav a:hover { color: var(--white); }
nav.main-nav a:hover::after { width: 100%; }
nav.main-nav a.active { color: var(--green-light); }
nav.main-nav a.active::after { width: 100%; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(15, 31, 23, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green-light); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.12);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--green-light);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--green-light); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(82, 183, 136, 0.35);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SECTIONS */
section { padding: 100px 0; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--green-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.8;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.card-img {
  height: 200px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.card-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.card-link:hover { gap: 10px; color: var(--accent); }
.card-link::after { content: '→'; }

/* FEATURES SECTION */
.features-section { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}
.features-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.features-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.features-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg2));
  z-index: 1;
}
.features-list { display: flex; flex-direction: column; gap: 28px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: rgba(82, 183, 136, 0.2);
  line-height: 1;
  min-width: 52px;
}
.feature-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* HIGHLIGHT BAND */
.highlight-band {
  background: linear-gradient(135deg, var(--green-dark), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.highlight-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.highlight-item {}
.highlight-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--green-light);
  line-height: 1;
}
.highlight-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* ARTICLE PAGE */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.05;
  max-width: 800px;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}
.page-meta {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.meta-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.meta-item span { color: var(--green-light); }

/* ARTICLE CONTENT */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding: 60px 0;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin: 28px 0 12px;
}
.article-content p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.article-content li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 6px;
}
.article-content strong { color: var(--text); }
.article-img {
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0;
}
.article-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.article-img figcaption {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--card-bg);
  font-style: italic;
}
.info-box {
  background: rgba(82, 183, 136, 0.08);
  border-left: 3px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { margin: 0; color: var(--text); }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.widget-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 90, 61, 0.4);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--green-light); }
.sidebar-links a::before { content: '›'; color: var(--green-light); }
.ext-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 90, 61, 0.4);
  transition: color 0.3s;
}
.ext-links a:last-child { border-bottom: none; }
.ext-links a:hover { color: var(--green-light); }
.ext-links a::before { content: '↗'; font-size: 0.8rem; color: var(--accent); }

/* TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--bg3);
  color: var(--green-light);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.comparison-table tr:hover td { background: rgba(82, 183, 136, 0.04); }
.comparison-table td:first-child { color: var(--text); font-weight: 600; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(82, 183, 136, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-detail a:hover { color: var(--green-light); }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* POLICY PAGE */
.policy-content { padding: 60px 0; max-width: 820px; }
.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin: 36px 0 14px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.policy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--green-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--green-light); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(22, 43, 30, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner.visible { display: flex; }
.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.6;
}
.cookie-text a { color: var(--green-light); }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--green-mid);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-accept:hover { background: var(--green-light); }
.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-reject:hover { border-color: var(--text-muted); color: var(--text); }

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { color: var(--border); }

/* TRAINING PLAN TABLE */
.plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
}
.plan-table th {
  background: var(--bg3);
  color: var(--green-light);
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.plan-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.plan-table tr:nth-child(even) td { background: rgba(45, 90, 61, 0.08); }
.plan-table td:first-child { color: var(--green-light); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .features-image { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlight-band .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .burger-btn { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .highlight-band .container { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .page-hero { padding: 110px 0 40px; }
}

@media (max-width: 480px) {
  .highlight-band .container { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}
