/* =========================================
   UNEECO UGANDA — style.css
   Aesthetic: Industrial-Refined / East African Warmth
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --ink:      #1a1208;
  --cream:    #f5f0e8;
  --sand:     #e8dcc8;
  --rust:     #c4541a;
  --rust-d:   #9e3f10;
  --gold:     #d4a843;
  --muted:    #7a6e60;
  --white:    #ffffff;
  --radius:   4px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  border: 1px solid var(--rust);
  padding: 0.3em 0.9em;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,84,26,0.35);
}
.btn-primary:hover {
  background: var(--rust-d);
  box-shadow: 0 8px 28px rgba(196,84,26,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ── Noise Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}
#navbar.scrolled {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 24px rgba(26,18,8,0.09);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo .brand span { color: var(--rust); }
.nav-logo .tagline-nav {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--rust);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.3s;
  border-radius: 2px;
}

/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(212,168,67,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(196,84,26,0.08) 0%, transparent 55%),
    var(--cream);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,18,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,18,8,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .line {
  width: 40px; height: 1.5px;
  background: var(--rust);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--rust);
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26,18,8,0.1);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero-stat .num span { color: var(--rust); }
.hero-stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 420px;
}
.hero-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,18,8,0.18);
}
.card-main {
  width: 300px; height: 360px;
  top: 30px; left: 40px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}
.card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), transparent 60%);
}
.card-main .card-icon {
  position: absolute;
  top: 2rem; left: 2rem;
  width: 56px; height: 56px;
  background: rgba(196,84,26,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.card-main h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.card-main p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  position: relative;
}
.card-accent {
  width: 200px; height: 140px;
  bottom: 0; right: 0;
  background: var(--rust);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}
.card-accent .ca-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.card-accent .ca-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.card-back {
  width: 260px; height: 300px;
  top: 0; left: 0;
  background: var(--gold);
  opacity: 0.25;
  z-index: 1;
  transform: rotate(-3deg);
}

/* =========================================
   ABOUT STRIP
   ========================================= */
#about-strip {
  background: var(--ink);
  padding: 1.5rem 0;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 3rem;
  animation: scroll-left 22s linear infinite;
  width: max-content;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.strip-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   SERVICES
   ========================================= */
#services {
  padding: 100px 0;
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.2rem;
  border: 1px solid rgba(26,18,8,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,18,8,0.1);
  border-color: rgba(196,84,26,0.2);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(196,84,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(196,84,26,0.18);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}
.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rust);
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.service-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* =========================================
   WHY US
   ========================================= */
#why {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08), transparent 70%);
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-title { color: var(--cream); }
.why-text .section-sub { color: rgba(245,240,232,0.55); }
.why-text .tag { color: var(--gold); border-color: var(--gold); }
.why-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  min-width: 36px;
}
.why-item-text h4 {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.why-item-text p {
  color: rgba(245,240,232,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.why-box:hover { background: rgba(255,255,255,0.08); }
.why-box:first-child {
  grid-column: span 2;
  background: rgba(196,84,26,0.12);
  border-color: rgba(196,84,26,0.25);
}
.why-box .bnum {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.why-box .bnum span { color: var(--rust); }
.why-box .blabel {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-top: 6px;
}

/* =========================================
   PRODUCTS
   ========================================= */
#products {
  padding: 100px 0;
}
.products-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.products-header .section-sub { margin-inline: auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.product-tile {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(26,18,8,0.07);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.product-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(26,18,8,0.08);
}
.product-tile .emoji { font-size: 2.4rem; margin-bottom: 1rem; }
.product-tile h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.product-tile p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
#testimonials {
  padding: 100px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -40px; left: 5%;
  font-family: 'Playfair Display', serif;
  font-size: 28rem;
  color: rgba(196,84,26,0.05);
  line-height: 1;
  pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-sub { margin-inline: auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.2rem;
  border: 1px solid rgba(26,18,8,0.07);
  position: relative;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tc-author { display: flex; align-items: center; gap: 0.9rem; }
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.tc-meta .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.tc-meta .role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =========================================
   CTA
   ========================================= */
#cta {
  padding: 100px 0;
}
.cta-box {
  background: var(--rust);
  border-radius: 16px;
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  pointer-events: none;
}
.cta-text .section-title { color: var(--white); }
.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; position: relative; }
.btn-white {
  background: var(--white);
  color: var(--rust);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--ink);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
}
.footer-brand .brand span { color: var(--rust); }
.footer-brand p {
  color: rgba(245,240,232,0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.8rem;
  max-width: 280px;
}
.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact a:hover { color: var(--rust); }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--rust); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
}
.footer-bottom a { color: rgba(245,240,232,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--rust); }

/* =========================================
   ANIMATIONS (JS triggered)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--cream);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(26,18,8,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26,18,8,0.07);
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--rust); }
.menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,0.35);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-card-stack { width: 300px; height: 340px; }
  .card-main { width: 240px; height: 290px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 1.5rem; }

  .services-header { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .why-inner { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-box:first-child { grid-column: span 2; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-box { flex-direction: column; padding: 3rem 2rem; }
  .cta-text .section-title { font-size: 1.8rem; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
  .why-box:first-child { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}