/* =============================================
   NANNVO — Main Stylesheet
   Colors: Navy #1B3A5C | Green #4A8C6F | Orange #F97316 | Off-white #FAF7F2
   ============================================= */

/* ── Variables ── */
:root {
  --navy:        #1B3A5C;
  --navy-dark:   #122844;
  --navy-light:  #2a5480;
  --green:       #4A8C6F;
  --green-light: #5fa882;
  --orange:      #F97316;
  --orange-dark: #e06510;
  --off-white:   #FAF7F2;
  --light-bg:    #F0EDE8;
  --border:      #E4E0DA;
  --text-dark:   #1A1816;
  --text-mid:    #4A4642;
  --text-light:  #7A7672;
  --shadow-sm:   0 2px 8px  rgba(27,58,92,0.07);
  --shadow-md:   0 8px 28px rgba(27,58,92,0.11);
  --shadow-lg:   0 20px 60px rgba(27,58,92,0.15);
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 100px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  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; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.18; letter-spacing: -0.3px; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-mid); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.flex       { display: flex; align-items: center; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-size: 0.93rem; font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.22s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(249,115,22,0.32);
}
.btn-primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.38);
}
.btn-outline-navy {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--green); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p  { font-size: 1rem; color: var(--text-light); max-width: 480px; margin: 0 auto; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(27,58,92,0.06);
  padding: 13px 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo {
  display: flex; align-items: center; flex-shrink: 0; margin-right: 8px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; flex: 1; padding: 0;
}
.nav-links a {
  padding: 7px 14px; border-radius: var(--r-pill);
  font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--light-bg); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-login {
  font-size: 0.88rem; font-weight: 600; color: var(--navy); padding: 8px 16px;
  border-radius: var(--r-pill); transition: background 0.2s;
}
.nav-login:hover { background: var(--light-bg); }
.nav-hamburger {
  display: none; background: none; border: none; padding: 6px;
  flex-direction: column; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: 0.3s;
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 950;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none; color: #fff; font-size: 1.6rem; padding: 8px;
}
.mobile-nav a {
  display: block; padding: 18px 40px; font-size: 1.3rem; font-weight: 600;
  color: rgba(255,255,255,0.8); transition: color 0.2s; text-align: center;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn { margin-top: 24px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--off-white);
  padding: 160px 0 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,111,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 0.9fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.hero-eyebrow-line { width: 30px; height: 2px; background: var(--green); border-radius: 2px; }
.hero-eyebrow span {
  font-size: 0.76rem; font-weight: 700; color: var(--green);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.hero h1 { color: var(--navy); margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.08rem; line-height: 1.78; color: var(--text-mid);
  margin-bottom: 38px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
}
.trust-item .check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.6rem; font-weight: 700; flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center; height: 460px;
}
.hero-visual-bg {
  width: 320px; height: 320px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,58,92,0.07) 0%, rgba(74,140,111,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-n-mark {
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.hero-float {
  position: absolute;
  background: #fff; border-radius: var(--r-md); padding: 13px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy); white-space: nowrap;
}
.hero-float-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.hero-float .sub { font-size: 0.73rem; font-weight: 400; color: var(--text-light); }
.hero-float .stars { color: #F59E0B; font-size: 0.8rem; }
.float-1 { top: 24px;  right: -10px; animation: floatY 3.2s ease-in-out infinite; }
.float-2 { bottom: 80px; left: -20px; animation: floatY 3.8s ease-in-out infinite 1.2s; }
.float-3 { bottom: 20px; right: 10px; animation: floatY 2.9s ease-in-out infinite 0.6s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--navy); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: 6px; letter-spacing: -1px;
}
.stat-number em { font-style: normal; color: var(--orange); }
.stat-label {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.55); letter-spacing: 0.3px;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how { background: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; position: relative;
}
.steps-connector {
  position: absolute; top: 46px; left: calc(16.66% + 28px);
  right: calc(16.66% + 28px); height: 2px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 0;
}
.step-card {
  text-align: center; padding: 40px 28px;
  background: var(--off-white); border-radius: var(--r-xl);
  position: relative; z-index: 1;
  transition: transform 0.22s, box-shadow 0.22s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.step-card:nth-child(2) .step-num { background: var(--navy); }
.step-card:nth-child(3) .step-num { background: var(--green); }
.step-card:nth-child(4) .step-num { background: var(--orange); }
.step-card h3 { color: var(--navy); margin-bottom: 12px; }
.step-card p  { font-size: 0.9rem; line-height: 1.72; }

/* ══════════════════════════════════════
   AUDIENCES (For Families / For Carers)
══════════════════════════════════════ */
.audiences { background: var(--light-bg); }
.audience-card {
  border-radius: var(--r-xl); padding: 52px 48px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.audience-card.families { background: var(--navy); }
.audience-card.carers   { background: var(--green); }
.audience-tag {
  display: inline-block; padding: 5px 16px; border-radius: var(--r-pill);
  font-size: 0.73rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); margin-bottom: 22px;
}
.audience-card h3 { font-size: 1.75rem; color: #fff; margin-bottom: 14px; }
.audience-card > p { color: rgba(255,255,255,0.72); margin-bottom: 32px; font-size: 0.95rem; }
.audience-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
.audience-features li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 500; line-height: 1.5;
}
.af-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
}
.families .af-check { background: var(--orange); }
.carers   .af-check { background: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════
   TRUST & SAFETY
══════════════════════════════════════ */
.trust-safety { background: #fff; }
.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  padding: 36px 26px; border-radius: var(--r-xl);
  border: 1.5px solid var(--border); text-align: center;
  transition: all 0.22s;
}
.trust-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.trust-icon {
  width: 58px; height: 58px; border-radius: 18px;
  background: rgba(74,140,111,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem;
}
.trust-card h4 { color: var(--navy); margin-bottom: 9px; font-size: 0.98rem; }
.trust-card p  { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.testimonial-card {
  background: #fff; border-radius: var(--r-xl); padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-stars { color: #F59E0B; font-size: 0.88rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text {
  font-size: 0.92rem; line-height: 1.78; color: var(--text-mid);
  margin-bottom: 24px; font-style: italic;
}
.t-text::before { content: '\201C'; }
.t-text::after  { content: '\201D'; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
}
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.t-role { font-size: 0.77rem; color: var(--text-light); }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #234d78 100%);
  padding: 96px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(74,140,111,0.15);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -100px; left: 80px;
  width: 450px; height: 450px; border-radius: 50%;
  background: rgba(249,115,22,0.08);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner .section-eyebrow { color: var(--orange); }
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: #111410; padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-tagline {
  font-size: 0.87rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-top: 18px; max-width: 240px;
}
.footer-col h5 {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px); max-width: 680px;
  background: #1A1816; color: rgba(255,255,255,0.8);
  border-radius: var(--r-lg); padding: 22px 28px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.35);
  z-index: 1000; display: flex; align-items: center; gap: 20px;
  opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-banner p { font-size: 0.83rem; line-height: 1.6; flex: 1; }
.cookie-banner p a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal-left  { transform: translateX(-28px); }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   INNER PAGE STYLES
══════════════════════════════════════ */
.page-hero {
  background: var(--off-white); padding: 148px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero .page-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px; display: block;
}
.page-hero h1 { color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero p   { color: var(--text-mid); font-size: 1.04rem; max-width: 560px; }
.last-updated {
  display: inline-block; font-size: 0.78rem; font-weight: 500;
  color: var(--text-light); background: var(--light-bg); padding: 5px 14px;
  border-radius: var(--r-pill); margin-top: 16px;
}
.page-content { padding: 72px 0 108px; }
.page-content-inner { max-width: 740px; }
.page-content h2 { color: var(--navy); font-size: 1.35rem; margin: 48px 0 14px; padding-top: 8px; border-top: 1px solid var(--border); }
.page-content h2:first-child { border-top: none; margin-top: 0; }
.page-content h3 { color: var(--navy); font-size: 1.05rem; margin: 26px 0 10px; font-weight: 600; }
.page-content p  { color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.page-content ul, .page-content ol { color: var(--text-mid); padding-left: 22px; margin-bottom: 18px; }
.page-content ul li, .page-content ol li { line-height: 1.8; margin-bottom: 7px; }
.page-content a  { color: var(--orange); }
.page-content a:hover { text-decoration: underline; }
.page-content strong { color: var(--text-dark); }
.info-box {
  background: var(--off-white); border-left: 4px solid var(--green);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px; margin: 24px 0; font-size: 0.9rem;
}

/* About page specific */
.about-mission {
  background: linear-gradient(135deg, var(--navy) 0%, #234d78 100%);
  border-radius: var(--r-xl); padding: 56px 52px; margin: 48px 0; color: #fff;
}
.about-mission h3 { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.about-mission p  { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.8; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0;
}
.value-card {
  background: var(--off-white); border-radius: var(--r-lg); padding: 28px 24px;
}
.value-icon { font-size: 1.6rem; margin-bottom: 12px; }
.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 0.87rem; line-height: 1.65; color: var(--text-light); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0;
}
.team-card {
  text-align: center; padding: 32px 20px;
  background: var(--off-white); border-radius: var(--r-xl);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}
.team-card h4 { color: var(--navy); margin-bottom: 4px; }
.team-card .team-role { font-size: 0.83rem; color: var(--text-light); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .trust-cards   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section       { padding: 72px 0; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { padding: 20px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .steps-connector { display: none; }
  .steps-grid    { grid-template-columns: 1fr; }
  .grid-2        { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr 1fr; }
  .trust-cards   { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-login { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .audience-card { padding: 36px 28px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .page-hero     { padding: 120px 0 52px; }
  .about-mission { padding: 36px 28px; }
}
@media (max-width: 480px) {
  .hero-ctas     { flex-direction: column; }
  .trust-cards   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .stat-number   { font-size: 1.9rem; }
  .section-header{ margin-bottom: 48px; }
}
