/* ============================================================
   IBGPP - Design System Global
   Instituto Brasileiro de Gestão de Políticas Públicas
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
  --orange: #E85D10;
  --orange-dark: #C24A08;
  --orange-light: #FF7A35;
  --orange-pale: #FFF0E8;
  --blue-dark: #1A3C5E;
  --blue-mid: #2D6A9F;
  --blue-light: #2D9CDB;
  --green: #27AE60;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #2C3A47;
  --dark: #111827;
  --white: #FFFFFF;

  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --shadow-orange: 0 8px 32px rgba(232,93,16,.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::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(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* === TOPBAR === */
.topbar {
  background: var(--dark);
  color: var(--gray-400);
  font-size: .8rem;
  font-family: var(--font-body);
  padding: .5rem 0;
  position: relative;
  z-index: 100;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: var(--gray-400); transition: var(--transition); }
.topbar a:hover { color: var(--orange-light); }
.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar-item svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .8rem;
  padding-bottom: .8rem;
  gap: 2rem;
}
.navbar-logo img {
  height: 52px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar-links a {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .01em;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--orange);
  background: var(--orange-pale);
}
.btn-donate-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: .55rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-orange);
  transition: var(--transition) !important;
}
.btn-donate-nav:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(232,93,16,.4) !important;
  color: var(--white) !important;
  background: var(--orange-dark) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: .02em;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,93,16,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-title span { color: var(--orange); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 50%, #0D2137 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,.9) 0%, rgba(26,60,94,.75) 60%, rgba(17,24,39,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,93,16,.2);
  border: 1px solid rgba(232,93,16,.4);
  color: var(--orange-light);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-title .highlight { color: var(--orange-light); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-light);
  display: block;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* === SECTION SPACING === */
section { padding: 5rem 0; }
section.sm { padding: 3rem 0; }
section.lg { padding: 7rem 0; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-body { padding: 1.5rem; }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* === AREA CARDS (Home) === */
.area-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  color: var(--white);
  text-align: left;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}
.area-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.5) 60%, rgba(17, 24, 39, 0.15) 100%);
  z-index: 1;
  transition: var(--transition);
}
.area-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.area-card:hover .area-card-bg {
  transform: scale(1.08);
}
.area-card-content {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.area-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .4rem;
}
.area-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s ease, max-height .3s ease, margin-top .3s ease;
}
.area-card:hover .area-desc {
  opacity: 1;
  max-height: 80px;
  margin-top: .4rem;
}

/* === BLOG CARD === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap { overflow: hidden; position: relative; }
.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .78rem; color: var(--gray-400); margin-bottom: .6rem; }
.blog-card-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: .6rem;
  flex: 1;
}
.blog-card-excerpt {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.blog-card-link:hover { gap: .7rem; }
.blog-card-link svg { width: 16px; height: 16px; transition: var(--transition); }

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  text-align: center;
}
.about-img-badge .num {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.about-img-badge .label { font-size: .8rem; opacity: .9; }
.about-content { }
.about-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}
.social-link:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: .75rem;
}
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange-light); padding-left: .35rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: .2rem; }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--orange-light); }

/* === GRIDS === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }

/* === PAGE HERO === */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,16,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero-subtitle { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,.4); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,16,.4); }
  50% { box-shadow: 0 0 0 12px rgba(232,93,16,0); }
}

.animate-fadeInUp { animation: fadeInUp .7s ease forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }
.animate-delay-4 { animation-delay: .4s; opacity: 0; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.bg-gray { background: var(--gray-100); }
.bg-dark { background: var(--dark); }
.bg-orange { background: var(--orange); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.d-flex { display: flex; } .align-center { align-items: center; } .justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }

/* === DIVIDER === */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}
.divider-left { margin: 0 0 1.5rem; }

/* === BADGE === */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}
.badge-orange { background: var(--orange-pale); color: var(--orange); }
.badge-blue { background: rgba(45,156,219,.1); color: var(--blue-mid); }
.badge-green { background: rgba(39,174,96,.1); color: var(--green); }

/* === ALERT === */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.alert-success { background: rgba(39,174,96,.1); border-color: var(--green); color: #1a7a40; }
.alert-error { background: rgba(231,76,60,.1); border-color: #e74c3c; color: #c0392b; }
.alert-info { background: rgba(45,156,219,.1); border-color: var(--blue-light); color: #1a6a9f; }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,93,16,.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === PARTNER LOGOS === */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: transparent;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease, opacity 0.3s ease;
  filter: grayscale(100%) opacity(0.6);
}
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08) translateY(-2px);
}
.partner-logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap img { height: 360px; }
  .about-img-badge { right: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right .35s cubic-bezier(.4,0,.2,1);
    z-index: 998;
    gap: .5rem;
  }
  .navbar-links.open { right: 0; }
  .navbar-links a { font-size: 1rem; width: 100%; padding: .75rem 1rem; }
  .hamburger { display: flex; z-index: 999; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.25rem; }
  section { padding: 3.5rem 0; }
  .topbar .container { flex-direction: column; gap: .25rem; font-size: .72rem; }
}

@media (max-width: 480px) {
  .grid-6 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-lg { padding: .9rem 2rem; }
}
