:root {
  --primary-dark:   #0a2540;
  --primary-green:  #00c853;
  --primary-teal:   #0891b2;
  --accent-green:   #86efac;
  --accent-light:   #dcfce7;
  --bg-light:       #f8fafc;
  --bg-white:       #ffffff;
  --text-dark:      #1e293b;
  --text-medium:    #475569;
  --text-light:     #94a3b8;
  --border-light:   #e2e8f0;
  --gradient-hero:  linear-gradient(135deg, #0a2540 0%, #0d3b5c 50%, #0891b2 100%);
  --gradient-green: linear-gradient(135deg, #00c853 0%, #0891b2 100%);
  --shadow-sm:      0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:      0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:      0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:      0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Inline-only padding: elements combining .container with a section class set their
   own vertical padding, which a `padding` shorthand here would silently reset. */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary-green); }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 640px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-green);
  color: white;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 200, 83, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid rgba(10,61,98,0.22);
}
.btn-secondary:hover { background: rgba(10,61,98,0.05); border-color: rgba(10,61,98,0.45); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { 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; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  padding-top: calc(16px + env(safe-area-inset-top));
  /* Opaque from the start: the logo video has a white matte, so it only blends
     over a white backdrop — over the hero image it would show as a white box. */
  background: #fff;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  padding-top: calc(12px + env(safe-area-inset-top));
}
.navbar.scrolled .nav-link { color: var(--text-dark); }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }

/* No chip plate on the light hero — the video's white matte blends into the page,
   so the mark reads as if it were transparent. */
.logo-chip {
  display: inline-flex; align-items: center;
  background: transparent;
  transition: var(--transition);
}
/* Fluid between the 480px and 1440px breakpoints so the mark stays proportionate
   to the viewport instead of jumping at each media query. */
.logo-img, .logo-video { height: clamp(38px, 3.6vw, 58px); width: auto; display: block; mix-blend-mode: multiply; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary-green);
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary-green); }
.nav-link:hover::after { width: 100%; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary-dark); font-size: 1.5rem; cursor: pointer; padding: 4px; }

/* HERO — light background so the white-matted logo video blends seamlessly */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(170deg, #ffffff 0%, #f4f8fb 55%, #eaf3f7 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a3d62' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.08;
  /* Fades in below the navbar so the pattern doesn't butt against its bottom edge. */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 clamp(90px, 14vh, 190px));
  mask-image: linear-gradient(to bottom, transparent 0, #000 clamp(90px, 14vh, 190px));
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18; }
/* Kept clear of the top edge so the tint fades in below the opaque navbar rather
   than stopping hard against it. */
.hero-shape-1 { width: 500px; height: 500px; background: var(--primary-green); top: 8%; right: -5%; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--primary-teal); bottom: -10%; left: -5%; }
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(10,61,98,0.05);
  border: 1px solid rgba(10,61,98,0.12);
  border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--primary-green); }
.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; color: var(--primary-dark); line-height: 1.1; margin-bottom: 20px; }
.hero-title .highlight {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.125rem; color: var(--text-medium); max-width: 520px; margin-bottom: 20px; line-height: 1.7; }
.hero-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text-medium); }
.hero-points i { color: var(--primary-green); font-size: 0.9375rem; margin-top: 4px; flex-shrink: 0; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-wrap { position: relative; width: 100%; max-width: 660px; }
.hero-image-main { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); position: relative; z-index: 2; aspect-ratio: 4/3; object-fit: cover; }
.hero-image-accent { position: absolute; width: 100%; height: 100%; border-radius: var(--radius-xl); background: var(--gradient-green); top: 20px; left: 20px; z-index: 1; opacity: 0.3; }
.hero-stat-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(10,61,98,0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-stat-card.stat-1 { top: 10%; right: -10px; }
.hero-stat-card.stat-2 { bottom: 15%; left: -20px; }
.hero-stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary-green); line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: var(--text-medium); font-weight: 500; }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(10,61,98,0.45);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator i { font-size: 1.25rem; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* PARALLAX BANDS
   Full-bleed image panels between sections. The layer is oversized and translated
   by JS on scroll; `will-change` keeps the transform on the compositor.
   Source images are modest resolution (568-1314px wide), so the layer is scaled up
   and blurred slightly under the overlay to hide softness at full-bleed width. */
.parallax-band {
  position: relative;
  min-height: clamp(340px, 62vh, 640px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* The layer is one viewport tall and JS translates it by -bandTop, so it lands
   exactly over the viewport and holds still while the band scrolls across it.
   `overflow: hidden` on the band clips it. Done this way rather than with
   `background-attachment: fixed`, which iOS Safari does not support. */
.parallax-fixed {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  transform: translate3d(0, var(--py, 0px), 0);
  will-change: transform;
  z-index: 0;
  pointer-events: none;
}
.parallax-zoom {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform;
}
/* Zoom-in while the band is on screen. */
.parallax-band.in-view .parallax-zoom { animation: kenburns 12s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.2); }
}
.parallax-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(8,42,68,0.86) 0%, rgba(8,42,68,0.62) 45%, rgba(8,42,68,0.42) 100%);
}
.parallax-content { position: relative; z-index: 2; text-align: left; }
.parallax-heading {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem); font-weight: 800;
  color: white; line-height: 1.15; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.parallax-sub {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  color: rgba(255,255,255,0.88); max-width: 560px; line-height: 1.7;
}

/* ABOUT */
.about { background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { width: 100%; height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.about-image-deco { position: absolute; width: 120px; height: 120px; border: 4px solid var(--primary-green); border-radius: var(--radius-lg); top: -20px; left: -20px; z-index: -1; }
.about-image-deco-2 { position: absolute; width: 80px; height: 80px; background: var(--accent-light); border-radius: var(--radius-md); bottom: -15px; right: -15px; z-index: -1; }
.about-content h3 { font-size: 1.75rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.about-content p { color: var(--text-medium); margin-bottom: 16px; line-height: 1.8; }

.point-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.point-list li { position: relative; padding-left: 26px; font-size: 0.9375rem; color: var(--text-medium); line-height: 1.6; }
.point-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; top: 1px;
  color: var(--primary-green); font-size: 0.8125rem;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon { width: 40px; height: 40px; background: var(--accent-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary-green); font-size: 1rem; flex-shrink: 0; }
.about-feature-text { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }

.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.mv-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border-light); transition: var(--transition); }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-green); }
.mv-card-icon { width: 56px; height: 56px; background: var(--gradient-green); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; margin-bottom: 20px; }
.mv-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 12px; }
.mv-card p { color: var(--text-medium); font-size: 0.9375rem; line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border-light); transition: var(--transition); text-align: center; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--accent-green); }
.value-icon { width: 64px; height: 64px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-green); font-size: 1.5rem; transition: var(--transition); }
.value-card:hover .value-icon { background: var(--gradient-green); color: white; }
.value-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: var(--text-medium); line-height: 1.6; }

/* CONCERNS */
.concerns { background: var(--gradient-hero); position: relative; overflow: hidden; }
.concerns .section-title, .concerns .section-subtitle { color: white; }
.concerns .section-label { color: var(--accent-green); }
.concerns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.concern-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.concern-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); border-color: rgba(0, 200, 83, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.concern-icon { width: 72px; height: 72px; background: rgba(0, 200, 83, 0.15); border: 2px solid rgba(0, 200, 83, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-green); font-size: 1.75rem; transition: var(--transition); }
.concern-card:hover .concern-icon { background: var(--primary-green); color: white; border-color: var(--primary-green); }
.concern-card h4 { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 10px; }
.concern-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* INITIATIVES */
.initiatives { background: var(--bg-light); }
.initiatives-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.initiative-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border-light); transition: var(--transition); display: flex; gap: 20px; align-items: flex-start; }
.initiative-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-green); }
.initiative-icon { width: 56px; height: 56px; background: var(--accent-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary-green); font-size: 1.25rem; flex-shrink: 0; transition: var(--transition); }
.initiative-card:hover .initiative-icon { background: var(--gradient-green); color: white; }
.initiative-content h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.initiative-content ul { display: flex; flex-direction: column; gap: 6px; }
.initiative-content li { font-size: 0.875rem; color: var(--text-medium); padding-left: 18px; position: relative; line-height: 1.5; }
.initiative-content li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--primary-green); border-radius: 50%; }

/* SOLUTIONS */
.solutions { background: var(--bg-white); }
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.solution-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition); }
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); background: var(--bg-white); border-color: var(--accent-green); }
.solution-icon { width: 64px; height: 64px; background: var(--gradient-green); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: white; font-size: 1.5rem; }
.solution-card h4 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.solution-card p { font-size: 0.8125rem; color: var(--text-medium); line-height: 1.6; }

/* EXPERIENCE */
.experience { background: var(--bg-light); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.exp-content h3 { font-size: 1.75rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 20px; }
.exp-content p { color: var(--text-medium); margin-bottom: 16px; line-height: 1.8; }
.exp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.exp-stat { background: var(--bg-white); border-radius: var(--radius-md); padding: 24px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition); }
.exp-stat:hover { border-color: var(--primary-green); transform: translateY(-3px); }
.exp-stat-number { font-size: 2rem; font-weight: 800; color: var(--primary-green); line-height: 1; margin-bottom: 6px; }
.exp-stat-label { font-size: 0.8125rem; color: var(--text-medium); font-weight: 500; }
.exp-visual { position: relative; }
/* Square source — no aspect-ratio crop, so the whole unit stays visible. */
.exp-image { width: 100%; height: auto; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }

/* CONTACT */
.contact { background: var(--bg-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 1.75rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 16px; }
.contact-info > p { color: var(--text-medium); margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; background: var(--accent-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary-green); font-size: 1.125rem; flex-shrink: 0; }
.contact-item-text h5 { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.contact-item-text p, .contact-item-text a { font-size: 0.9375rem; color: var(--text-medium); transition: var(--transition); }
.contact-item-text a:hover { color: var(--primary-green); }
.contact-form { background: var(--bg-light); border-radius: var(--radius-xl); padding: 40px; border: 1px solid var(--border-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.9375rem;
  color: var(--text-dark); background: var(--bg-white);
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; display: none; }
.form-status.success { display: block; background: var(--accent-light); color: #166534; border: 1px solid #86efac; }
.form-status.error { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* FOOTER */
.footer { background: var(--primary-dark); color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-chip { background: white; padding: 16px 20px; border-radius: var(--radius-lg); }
.footer-logo-img, .footer-logo-video { height: clamp(120px, 10vw, 160px); width: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 18px; line-height: 1.7; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--primary-green); }
.footer-col h5 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col a:hover { color: var(--primary-green); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-contact-item i { color: var(--primary-green); margin-top: 4px; font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-social a:hover { background: var(--primary-green); color: white; transform: translateY(-2px); }

/* MOBILE MENU */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--bg-white); z-index: 1001; padding: 80px 32px 32px; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu.active { right: 0; }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }
.mobile-menu-logo { height: 44px; width: auto; margin-bottom: 28px; display: block; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu-links a { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.mobile-menu-links a:hover { color: var(--primary-green); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-grid, .about-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-card { display: none; }

  /* Text leads on mobile so the fixed navbar never sits on top of the hero image.
     Clearance is measured from the navbar's real height (--nav-h, set in JS) rather
     than a fixed guess, which drifts as the logo scales. */
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-content { padding-top: calc(var(--nav-h, 70px) + 40px); }
  .hero-image-wrap { max-width: 100%; }
  .hero-image-accent { display: none; }
  .scroll-indicator { display: none; }
  .parallax-band { min-height: 300px; }
  .mv-cards, .values-grid, .concerns-grid, .initiatives-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  /* Inline-only: the `padding` shorthand here would reset .hero-content's padding-top. */
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .contact-form { padding: 24px; }
  .logo-img, .logo-video { height: 34px; }
  .logo-chip { padding: 7px 12px; }
  .footer-logo-img, .footer-logo-video { height: 104px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-loaded .hero-content > * { animation: fadeInUp 0.8s ease forwards; }
.page-loaded .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.page-loaded .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.page-loaded .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.page-loaded .hero-content > *:nth-child(4) { animation-delay: 0.4s; }