/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-light: #059669;
  --cream: #F5F0E8;
  --cream-dark: #EDE7DB;
  --cream-light: #FBF8F3;
  --dark: #0F1C1A;
  --dark-soft: #1A2E2A;
  --text: #1A2E2A;
  --text-light: #4A5E5A;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(4, 120, 87, 0.08);
  --shadow-lg: 0 12px 48px rgba(4, 120, 87, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--emerald); }
.text-accent-light { color: #6EE7B7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn--primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; padding: 16px 28px; }

/* ── Section Tags ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}
.section-tag--light { color: #6EE7B7; }
.section-tag--light::before { background: #6EE7B7; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.nav.scrolled .nav-logo span { color: var(--dark); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald-light);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  background: var(--emerald-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--white);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(4, 120, 87, 0.2);
}
.geo-circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  border-width: 3px;
}
.geo-circle--2 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: -80px;
  border-color: rgba(110, 231, 183, 0.15);
}

.geo-rect {
  position: absolute;
  border: 2px solid rgba(4, 120, 87, 0.15);
  border-radius: var(--radius);
}
.geo-rect--1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 8%;
  transform: rotate(25deg);
}
.geo-rect--2 {
  width: 120px;
  height: 120px;
  bottom: 200px;
  right: 15%;
  transform: rotate(-15deg);
  border-color: rgba(110, 231, 183, 0.2);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(4, 120, 87, 0.15);
  border: 1px solid rgba(4, 120, 87, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6EE7B7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.tag-dot {
  width: 8px;
  height: 8px;
  background: #6EE7B7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* Hero Image Stack */
.hero-img-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img--main {
  width: 380px;
  height: 480px;
  top: 0;
  right: 0;
}
.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--float {
  width: 260px;
  height: 180px;
  bottom: 40px;
  left: 0;
  border: 4px solid var(--dark);
}
.hero-img--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--dark);
  line-height: 1.3;
}

.hero-geo-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.6;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── SERVICES ── */
.services {
  padding: 100px 0;
  background: var(--cream-light);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 120, 87, 0.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--emerald);
}
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 560px;
}

.about-img-main {
  width: 360px;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  width: 260px;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-geo {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(4, 120, 87, 0.15);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--emerald);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(4, 120, 87, 0.2);
  flex-shrink: 0;
}

/* ── WHY US ── */
.why-us {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.why-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(110, 231, 183, 0.1);
}
.why-circle--1 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}
.why-square {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(4, 120, 87, 0.2);
  border-radius: 20px;
  top: 60px;
  right: 60px;
  transform: rotate(20deg);
}
.why-diamond {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(110, 231, 183, 0.15);
  top: 120px;
  left: 80px;
  transform: rotate(45deg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(110, 231, 183, 0.3);
  transform: translateY(-4px);
}

.why-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(4, 120, 87, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-circle--1 { width: 300px; height: 300px; top: -80px; right: 10%; }
.cta-circle--2 { width: 180px; height: 180px; bottom: -60px; left: 5%; }
.cta-rect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  top: 40px;
  left: 15%;
  transform: rotate(30deg);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(4, 120, 87, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--emerald);
  margin-bottom: 4px;
  display: block;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a {
  color: var(--text);
  transition: var(--transition);
}
.contact-item a:hover { color: var(--emerald); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(4, 120, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 320px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a,
.footer-col li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  line-height: 1.5;
}
.footer-col a:hover { color: #6EE7B7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-img-stack {
    display: none;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual { height: 400px; }
  .about-img-main { width: 260px; height: 340px; }
  .about-img-secondary { width: 200px; height: 160px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
