/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Premium colour palette */
  --green-dark:  #0d3320;
  --green-mid:   #1a6636;
  --green-light: #4caf72;
  --gold:        #c8a951;
  --gold-light:  #dfc07a;
  --cream:       #faf8f4;
  --earth-dark:  #2c1810;
  --white:       #ffffff;
  --gray-100:    #f0f2ee;
  --gray-200:    #e4e8e0;
  --gray-300:    #c4cfc4;
  --gray-600:    #4e5c4e;
  --gray-900:    #131a13;

  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 28px rgba(13,51,32,.10);
  --shadow-lg:   0 12px 48px rgba(13,51,32,.16);
  --transition:  .28s ease;
  --font:        'Inter', system-ui, sans-serif;
}

/* Selection styling */
::selection {
  background: var(--green-light);
  color: var(--white);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.68;
  font-size: 1rem;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
  letter-spacing: -.015em;
}
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }

.section-tag {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 99px;
  margin-bottom: 1.75rem;
  border: 1.5px solid var(--gold);
  transition: letter-spacing var(--transition);
}
.section-tag:hover { letter-spacing: .18em; }
.section-tag.center {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.center { text-align: center; }
.sub-heading { color: var(--gray-600); max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .85rem 2.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13,51,32,.22);
}
.btn-primary  { background: var(--green-mid); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 32px rgba(13,51,32,.30); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-full { width: 100%; text-align: center; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--green-mid);
  color: var(--white) !important;
  padding: .6rem 1.3rem;
  border-radius: var(--radius);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.btn-nav:hover { background: var(--green-dark); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(13,51,32,.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  font-family: var(--font);
  letter-spacing: -.01em;
}
.logo span { color: var(--green-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-600);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover {
  color: var(--green-mid);
  border-color: var(--green-light);
}
.nav-links a.active {
  color: var(--green-mid);
  border-bottom: 2px solid var(--green-mid);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-mid) 55%, #1e7a42 100%);
  overflow: hidden;
  padding-top: 76px;
}

/* Geometric SVG dot-grid pattern */
.hero-pattern {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

/* Radial light blobs */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 75%, rgba(200,169,81,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255,255,255,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(13,51,32,.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  display: none; /* replaced by ::before */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 3.5rem 1.5rem;
}
.hero-tag {
  display: inline-block;
  background: rgba(200,169,81,.18);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,169,81,.35);
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATISTICS ===== */
.stats-section {
  background: var(--green-dark);
  padding: 5rem 0 4rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
}
.stat-number {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  margin-top: .6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section-alt { background: var(--cream); }

/* ===== SPLIT LAYOUT (Om os) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-text h2 span { color: var(--green-mid); }
.split-text p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.75; }

.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 500;
  color: var(--gray-900);
}
.check-list li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
}
.info-card-icon { font-size: 3rem; margin-bottom: 1.1rem; }
.info-card h3 { font-size: 1.5rem; color: var(--green-dark); margin-bottom: .3rem; font-family: var(--font); }
.info-card p { color: var(--gray-600); margin-bottom: .25rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green-light);
}
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { color: var(--green-dark); font-size: 1.12rem; margin-bottom: .5rem; }
.service-card p { color: var(--gray-600); font-size: .95rem; line-height: 1.65; }
.service-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green-mid);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover .service-more {
  color: var(--gold);
  transform: translateX(3px);
}

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-number {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
  opacity: .9;
}
.step-content h3 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.step-content p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.65;
}
.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  margin-top: 1.5rem;
  flex-shrink: 0;
  opacity: .6;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* Green gradient overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,51,32,.65) 0%,
    rgba(26,102,54,.15) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item .gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  color: var(--white);
  padding: 1.5rem .9rem .9rem;
  font-size: .85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: 2;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-item.placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  cursor: default;
}
.gallery-item.placeholder::after { display: none; }
.gallery-placeholder-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: .5rem;
  color: var(--gray-600);
}
.gallery-placeholder-inner span { font-size: 2rem; }
.gallery-placeholder-inner p { font-size: .85rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94);
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); }
.lightbox p { color: rgba(255,255,255,.75); margin-top: 1rem; font-size: .95rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.12); border: none;
  color: var(--white); font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.24); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font);
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: .5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--gray-900);
  font-size: .95rem;
}
.testimonial-author span {
  color: var(--gray-600);
  font-size: .85rem;
}

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--green-mid);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
label { font-weight: 600; font-size: .88rem; color: var(--gray-900); letter-spacing: .02em; }
input, select, textarea {
  padding: .82rem 1.1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
  color: var(--gray-900);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(26,102,54,.14);
  background: var(--white);
}
textarea { resize: vertical; }

.form-success { color: var(--green-mid); font-weight: 500; margin-top: .75rem; text-align: center; }
.form-error   { color: #c0392b; font-weight: 500; margin-top: .75rem; text-align: center; }

.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-left: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }

.contact-info {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(200,169,81,.08);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info h3 {
  font-family: var(--font);
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--white);
}
.contact-detail {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon { font-size: 1.35rem; margin-top: .1rem; flex-shrink: 0; }
.contact-detail strong { display: block; margin-bottom: .2rem; color: var(--gold-light); font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; }
.contact-detail p { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.55; }
.contact-note {
  margin-top: 1.5rem;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.1rem;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding-top: 0;
  border-top: 3px solid var(--green-mid);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand .logo {
  color: var(--white);
  font-size: 1.3rem;
  display: block;
  margin-bottom: .75rem;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.65; }
.footer-links h4, .footer-legal h4 {
  color: var(--gold-light);
  font-size: .78rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green-light); }
.footer-legal p { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.3rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .83rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-step { min-width: 200px; max-width: 220px; }
  .process-connector { display: none; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-card { order: -1; }
  .info-card { max-width: 400px; margin: 0 auto; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  /* Sections */
  .section { padding: 4rem 0; }
  .stats-section { padding: 3rem 0; }

  /* Hero */
  .hero { min-height: 56vh; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; width: 100%; }
  .hero-scroll { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid  { grid-template-columns: 1fr; }

  /* Cards */
  .service-card { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .contact-info { padding: 1.5rem; }
  .info-card { padding: 2rem 1.5rem; max-width: 100%; }
  .testimonial-card { padding: 1.8rem 1.5rem; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  input, select, textarea { font-size: 1rem; } /* prevents iOS zoom on focus */

  /* Process */
  .process-steps { flex-direction: column; align-items: center; gap: 1.5rem; }
  .process-step { max-width: 100%; padding: 0 .5rem; }

  /* Section tag */
  .section-tag.center { margin-bottom: 2.25rem; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2.5rem 0 1.5rem;
  }
  .footer-brand {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-align: center;
  }
  .footer-links {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-align: center;
  }
  .footer-links ul { flex-direction: row; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: center; }
  .footer-links a { font-size: 1rem; min-height: 44px; display: inline-flex; align-items: center; }
  .footer-legal { padding-bottom: 1rem; text-align: center; }
  .footer-bottom { margin-top: .5rem; }

  /* Navbar */
  .nav-links {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: .5rem 0; min-height: 44px; display: flex; align-items: center; }
  .burger { display: flex; }
  .btn-nav { min-height: 44px; justify-content: center; width: 100%; }
}

@media (max-width: 400px) {
  .stat-number { font-size: 2rem; }
  .stat-suffix { font-size: 1.4rem; }
  .stat-label  { font-size: .78rem; }
}
