/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
  --teal:        #2E8B9A;
  --teal-dark:   #1d6b78;
  --teal-deeper: #164f5a;
  --teal-light:  #e0f4f7;
  --teal-mid:    #4A8C9A;
  --accent:      #F5A623;
  --accent-dark: #d4891a;
  --mint:        #6DBEA3;
  --white:       #ffffff;
  --bg:          #f6fafb;
  --text:        #1a2e35;
  --text-mid:    #3d5a63;
  --text-muted:  #6b8a93;
  --border:      #d4e8ed;
  --shadow:      0 8px 32px rgba(46,139,154,.14);
  --shadow-lg:   0 16px 56px rgba(46,139,154,.2);
  --r:           16px;
  --r-lg:        28px;
  --font-h:      'Nunito', sans-serif;
  --font-b:      'Inter', sans-serif;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(46,139,154,.12); }
.nav {
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo img {
  height: 44px; width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  padding: .45rem .85rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .82rem;
  color: var(--text-mid);
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--teal-light); color: var(--teal-dark); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: .5rem 1.2rem !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.45) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--teal-deeper) 0%, var(--teal) 55%, #3aa8b8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  top: -150px; left: -150px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}
/* Floating particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float linear infinite;
  pointer-events: none;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .78rem;
  color: rgba(255,255,255,.95);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeDown .7s ease .1s both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,166,35,.3); }
  50%       { box-shadow: 0 0 0 6px rgba(245,166,35,.1); }
}

.hero-logo {
  margin: 0 auto 1.8rem;
  max-width: 440px;
  width: 90%;
  animation: fadeDown .7s ease .2s both;
}
.hero-logo img {
  width: 100%; height: auto;
  opacity: .97;
  display: block;
}

.hero-tagline {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
  line-height: 1.5;
  animation: fadeDown .7s ease .35s both;
}
.hero-tagline strong { color: var(--accent); font-weight: 900; }

.hero-desc {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeDown .7s ease .45s both;
}

/* Email form */
.hero-form {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  animation: fadeDown .7s ease .55s both;
}
.hero-form input {
  flex: 1;
  min-width: 230px;
  max-width: 320px;
  padding: .85rem 1.4rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .95rem;
  font-family: var(--font-b);
  outline: none;
  transition: all .25s;
}
.hero-form input::placeholder { color: rgba(255,255,255,.6); }
.hero-form input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.22);
}
.btn-subscribe {
  padding: .85rem 2rem;
  border-radius: 50px;
  background: var(--accent);
  color: white;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(245,166,35,.5);
  transition: all .25s;
  white-space: nowrap;
}
.btn-subscribe:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(245,166,35,.6);
}
.hero-form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 2.5rem;
  animation: fadeDown .7s ease .6s both;
}

/* Scroll arrow */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.scroll-arrow {
  width: 30px; height: 30px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

@keyframes fadeDown {
  from { opacity:0; transform: translateY(-16px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 24px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  font-family: var(--font-h);
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
section { padding: 5rem 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   MISJA
═══════════════════════════════════════════════ */
.mission { background: var(--white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-visual {
  background: linear-gradient(135deg, var(--teal-light), #c2e8ef);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(46,139,154,.08);
  top: -50px; right: -50px;
}
.mission-logo-wrap {
  background: var(--white);
  border-radius: var(--r);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: inline-block;
  max-width: 300px;
  position: relative;
}
.mission-logo-wrap img {
  width: 100%; height: auto;
}
.mission-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.mission-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .2rem;
}
.feature-text p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   AGE CATEGORIES
═══════════════════════════════════════════════ */
.categories { background: var(--bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.cat-card {
  border-radius: var(--r-lg);
  padding: 2rem 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.cat-0 { background: linear-gradient(145deg,#e8f6fd,#c8e8f5); border-color:#bde2f2; }
.cat-1 { background: linear-gradient(145deg,#fefce8,#fde68a); border-color:#fcd34d; }
.cat-2 { background: linear-gradient(145deg,#e8fdf5,#a7f3d0); border-color:#6ee7b7; }
.cat-3 { background: linear-gradient(145deg,#f5f0ff,#ddd6fe); border-color:#c4b5fd; }
.cat-emoji { font-size: 3rem; margin-bottom: .8rem; display: block; }
.cat-age {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: .2rem;
}
.cat-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .6rem;
}
.cat-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  justify-content: center;
}
.cat-tag {
  background: rgba(255,255,255,.75);
  border-radius: 50px;
  padding: .2rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-h);
}
.cat-soon {
  margin-top: 1rem;
  display: inline-block;
  background: var(--teal);
  color: white;
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 800;
  font-family: var(--font-h);
  cursor: pointer;
  transition: background .2s;
}
.cat-soon:hover { background: var(--teal-dark); }

/* ═══════════════════════════════════════════════
   WERDYKT SECTION
═══════════════════════════════════════════════ */
.werdykt-section {
  background: linear-gradient(160deg, var(--teal-deeper) 0%, var(--teal) 100%);
  color: white;
}
.werdykt-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.werdykt-label { background: rgba(255,255,255,.2); color: white; }
.werdykt-title { color: white; }
.werdykt-sub { color: rgba(255,255,255,.75); max-width: 400px; }
.werdykt-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.werdykt-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,166,35,.45);
}
.step-text h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  color: white;
  margin-bottom: .2rem;
}
.step-text p {
  font-size: .83rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.werdykt-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.werdykt-card::before {
  content: '"';
  position: absolute;
  top: .5rem; left: 1.2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
}
.sample-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 1rem;
  margin-bottom: 1.2rem;
}
.sample-icon { font-size: 2.5rem; }
.sample-info h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .9rem;
  color: white;
  margin-bottom: .2rem;
}
.sample-info .age-tag {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
}
.sample-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.sample-badge {
  background: rgba(255,255,255,.18);
  color: white;
  border-radius: 50px;
  padding: .2rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-h);
}
.sample-badge.accent { background: var(--accent); }
.sample-verdict-text {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}
.sample-expert {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.expert-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.expert-info .name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .82rem;
  color: white;
}
.expert-info .role {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}

/* ═══════════════════════════════════════════════
   EKSPERCI
═══════════════════════════════════════════════ */
.experts { background: var(--white); }
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.expert-card {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  padding: 2rem 1.5rem;
  transition: all .3s;
  background: var(--white);
}
.expert-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.expert-card-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), #b8e4ed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border: 3px solid var(--teal-light);
}
.expert-card-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .15rem;
}
.expert-card-role {
  font-size: .78rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: .9rem;
  font-family: var(--font-h);
}
.expert-card-quote {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 3px solid var(--teal-light);
  padding-left: .9rem;
}

/* ═══════════════════════════════════════════════
   NEWSLETTER FINAL
═══════════════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-top: 3px solid var(--accent);
  text-align: center;
  padding: 5rem 24px;
}
.newsletter-box {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-box .section-title { color: var(--text); }
.newsletter-box .section-sub {
  margin: .5rem auto 2rem;
  text-align: center;
}
.nl-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-form input {
  flex: 1;
  min-width: 230px;
  padding: .8rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  font-size: .95rem;
  outline: none;
  background: white;
  color: var(--text);
  transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--accent-dark); }
.btn-nl {
  padding: .8rem 2rem;
  border-radius: 50px;
  background: var(--accent);
  color: white;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
  transition: all .25s;
}
.btn-nl:hover { background: var(--accent-dark); transform: translateY(-2px); }
.nl-note { font-size: .75rem; color: var(--text-muted); margin-top: .9rem; }

/* Success message */
.success-msg {
  display: none;
  background: var(--mint);
  color: white;
  border-radius: 50px;
  padding: .8rem 1.5rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--teal-deeper);
  color: rgba(255,255,255,.7);
  padding: 3rem 24px 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-brand {}
.footer-brand img {
  height: 40px; width: auto;
  opacity: .9;
  margin-bottom: .8rem;
}
.footer-brand p {
  font-size: .82rem;
  max-width: 240px;
  line-height: 1.65;
}
.footer-col h5 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .8rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .9rem;
}
.footer-col ul li {
  margin-bottom: .5rem;
  font-size: .82rem;
  cursor: pointer;
  transition: color .2s;
}
.footer-col ul li:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .77rem;
}
.footer-socials { display: flex; gap: .6rem; }
.social-ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}
.social-ic:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; }
  .mission-visual { padding: 2rem 1.5rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .werdykt-inner { grid-template-columns: 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    z-index: 998;
    gap: .5rem;
  }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { max-width: 300px; }
  .footer-inner { gap: 1.5rem; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
}