/* ==========================================================================
   Certifika — Hoja de estilos principal
   Paleta corporativa + diseño moderno, dinámico y responsive
   ========================================================================== */

:root {
  /* Brand colors — extracted directly from the official logo */
  --green: #06974A;
  --green-dark: #047038;
  --green-light: #2eb872;
  --blue: #1086CC;
  --blue-dark: #0a69a3;
  --blue-light: #4ab0e3;
  --navy: #0c3a5c;
  --navy-dark: #07263d;
  --navy-light: #18527f;
  --grey: #6c7a85;
  --grey-light: #EEF3F7;
  --white: #FFFFFF;
  --cream: #F6FAFC;
  --black: #040404;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(12, 58, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 58, 92, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 58, 92, 0.12);
  --shadow-glow: 0 10px 40px rgba(6, 151, 74, 0.25);

  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--grey); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
}

/* ===== Decorative utilities ===== */
.highlight-green { color: var(--green); }
.highlight-blue { color: var(--blue); }
.highlight-yellow { color: var(--blue); } /* legacy alias */

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 2px;
  background: var(--green);
}

.section-title {
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(12, 58, 92, 0.08);
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  text-decoration: none;
}
.logo-slot img.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.logo-slot:hover img.logo-img { transform: scale(1.03); }
.site-footer .logo-slot {
  justify-content: flex-start;
  align-self: flex-start;
  margin-right: auto;
  width: fit-content;
}
.site-footer .logo-slot img.logo-img { height: 84px; }
.footer-about { text-align: left; }
@media (max-width: 960px) {
  .logo-slot img.logo-img { height: 60px; }
  .site-footer .logo-slot img.logo-img { height: 72px; }
}
@media (max-width: 640px) {
  .logo-slot img.logo-img { height: 52px; }
  .site-footer .logo-slot img.logo-img { height: 64px; }
}
.logo-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.3rem;
  font-family: var(--font-display);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.logo-placeholder::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.45);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.main-nav a::before {
  content: '';
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 2px;
  background: var(--green);
  transition: var(--transition);
  transform: translateX(-50%);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}
.main-nav a:hover::before,
.main-nav a.active::before {
  width: 60%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy);
  color: var(--white);
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }

.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active span::after  { transform: rotate(-45deg); top: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6, 151, 74, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12, 58, 92, 0.2);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}
.btn svg { width: 16px; height: 16px; transition: var(--transition); }
.btn:hover svg { transform: translateX(3px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, #d5efd0 0%, #eaf5ff 45%, var(--white) 80%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(6, 151, 74, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -15%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(16, 134, 204, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.07); }
}

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

.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 151, 74, 0.3);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(6, 151, 74, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 151, 74, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(6, 151, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 151, 74, 0); }
}

.hero h1 {
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.028em;
  font-weight: 700;
  text-wrap: balance;
}
.hero h1 .line-1 {
  display: block;
  color: var(--navy);
}
.hero h1 .accent {
  display: inline-block;
  position: relative;
  background: linear-gradient(100deg, #4e9a2f 0%, var(--green) 45%, #92d66d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  isolation: isolate;
  padding: 0 0.05em;
}
.hero h1 .accent::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.28em;
  background: linear-gradient(90deg,
    rgba(235, 227, 28, 0) 0%,
    rgba(235, 227, 28, 0.55) 7%,
    rgba(235, 227, 28, 0.72) 50%,
    rgba(235, 227, 28, 0.55) 93%,
    rgba(235, 227, 28, 0) 100%);
  border-radius: 999px;
  z-index: -1;
  transform: skewX(-4deg);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--navy-light);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 560px;
  text-wrap: pretty;
}
.hero-lead strong {
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-display);
  display: block;
  font-size: 1.35rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(12, 58, 92, 0.1);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.hero-stat .num span { color: var(--green); }
.hero-stat .label {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 500;
}

/* Hero visual / orbit */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.hero-visual-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(6, 151, 74, 0.4);
  animation: spin 30s linear infinite;
  pointer-events: none;
}
.orbit.outer { width: 105%; height: 105%; border-color: rgba(16, 134, 204, 0.5); animation-duration: 45s; }
.orbit.mid   { width: 78%;  height: 78%;  animation-duration: 30s; }
.orbit.inner { width: 58%;  height: 58%;  border-color: rgba(12, 58, 92, 0.18); animation-duration: 22s; animation-direction: reverse; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.globe {
  position: relative;
  width: 68%;
  height: 68%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 25px 50px rgba(6, 151, 74, 0.35));
}
.globe iframe,
.globe dotlottie-player {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: block;
}

.orbit-icon {
  position: absolute;
  width: 60px; height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(12, 58, 92, 0.15);
  color: var(--green-dark);
  z-index: 3;
}
.orbit-icon svg { width: 28px; height: 28px; }
.orbit-icon.leaf { top: -4%;  left: 50%; transform: translate(-50%, 0); }
.orbit-icon.sun  { top: 50%;  right: -4%; transform: translate(0, -50%); color: #e8a408; }
.orbit-icon.wind { bottom: -4%; left: 50%; transform: translate(-50%, 0); color: var(--navy); }
.orbit-icon.drop { top: 50%;  left: -4%;  transform: translate(0, -50%); color: #3da5ff; }

/* Floating info card */
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  animation: bob 4s ease-in-out infinite;
  z-index: 4;
  min-width: 180px;
}
.floating-card.top-right { top: 4%; right: -4%; }
.floating-card.bottom-left { bottom: 4%; left: -6%; animation-delay: -2s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(6, 151, 74, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
}
.floating-card strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
}
.floating-card em {
  color: var(--grey);
  font-style: normal;
  font-size: 0.75rem;
}

/* ===== Interior hero (subpages) ===== */
.interior-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
  color: var(--white);
}
.interior-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 151, 74, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(16, 134, 204, 0.18) 0%, transparent 45%);
}
.interior-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.interior-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { color: var(--green-light); }
.interior-hero h1 { color: var(--white); margin-bottom: 16px; }
.interior-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; max-width: 620px; }

/* ===== Feature grid (home) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12, 58, 92, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 151, 74, 0.3);
}
.feature-card:hover::before { height: 100%; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6, 151, 74, 0.15) 0%, rgba(16, 134, 204, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  transform: rotate(-8deg);
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ===== Program modules timeline ===== */
.program {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.program::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(6, 151, 74, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(16, 134, 204, 0.18) 0%, transparent 40%);
  pointer-events: none;
}
.program .container { position: relative; z-index: 2; }
.program .eyebrow { color: var(--green-light); }
.program .eyebrow::before { background: var(--green-light); }
.program h2 { color: var(--white); }
.program p { color: rgba(255, 255, 255, 0.75); }

.modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
  counter-reset: module;
}
.module {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  counter-increment: module;
}
.module::before {
  content: counter(module, decimal-leading-zero);
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}
.module:hover {
  background: rgba(6, 151, 74, 0.12);
  border-color: var(--green);
  transform: translateY(-4px);
}
.module-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.module h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.module p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(12, 58, 92, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 151, 74, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 151, 74, 0.3);
}
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  transform: rotate(-10deg) scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  position: relative;
  z-index: 1;
}
.service-link:hover { gap: 10px; }

/* ===== Two-col content ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-block h2 { margin-bottom: 20px; }

.quote-block {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 32px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 0; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
}

/* Checklist */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 16px no-repeat;
}

/* ===== Visual / image card ===== */
.visual-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.visual-card img.visual-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.visual-card:hover img.visual-card-img { transform: scale(1.05); }
.visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(6, 151, 74, 0.35) 70%, rgba(7, 38, 61, 0.9) 100%);
}
.visual-card-content {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  color: var(--white);
  z-index: 1;
}
.visual-card-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.visual-card-content span { font-size: 0.95rem; opacity: 0.9; }

.image-slot {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(12, 58, 92, 0.05) 0%, rgba(6, 151, 74, 0.08) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(12, 58, 92, 0.03) 20px, rgba(12, 58, 92, 0.03) 21px);
  border: 2px dashed rgba(12, 58, 92, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey);
  text-align: center;
  padding: 24px;
}
.image-slot .label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.image-slot small {
  font-size: 0.75rem;
}
.image-slot svg {
  width: 48px; height: 48px;
  opacity: 0.4;
}

/* ===== Newsletter band ===== */
.newsletter {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(6, 151, 74, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(16, 134, 204, 0.2) 0%, transparent 50%);
}
.newsletter .container { position: relative; z-index: 1; }
.newsletter h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.newsletter h2 span { color: var(--green-light); }

.newsletter-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 20px;
  font-size: 0.92rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--green);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover { color: var(--green-light); transform: translateX(4px); }
.footer-col .contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-col .contact-item .icon {
  width: 32px; height: 32px;
  background: rgba(6, 151, 74, 0.15);
  border-radius: 8px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.socials a:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bar .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bar a:hover { color: var(--green-light); }

/* ===== Partner logos strip ===== */
.partners {
  padding: 48px 0;
  background: var(--grey-light);
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 28px;
}
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-slot {
  height: 72px;
  min-width: 140px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 2px dashed rgba(12, 58, 92, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 20px;
  transition: var(--transition);
}
.partner-slot:hover {
  border-color: var(--green);
  border-style: solid;
  color: var(--navy);
  transform: scale(1.03);
}
.partner-slot img { max-height: 44px; object-fit: contain; }

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(12, 58, 92, 0.06);
}
.yellow-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: clamp(64px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.yellow-band::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.yellow-band::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(6, 151, 74, 0.35);
}
.yellow-band .container { position: relative; z-index: 1; }
.yellow-band h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
.yellow-band h2 span { color: #b9f3d0; }
.yellow-band .section-lead { margin: 0 auto 40px; text-align: center; color: rgba(255,255,255,0.85); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid.single { grid-template-columns: 1fr; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-field label .req { color: var(--green); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(12, 58, 92, 0.12);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--navy);
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-field select { appearance: none; cursor: pointer;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231A3240'><path d='M7 10l5 5 5-5z'/></svg>") right 16px center / 22px no-repeat;
  padding-right: 48px;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 151, 74, 0.12);
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
}
.form-check input { width: 20px; height: 20px; accent-color: var(--green); margin-top: 2px; flex: none; }

.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

/* ===== Contact info ===== */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-method {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid rgba(12, 58, 92, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact-method .icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-method strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-weight: 700;
}
.contact-method span {
  color: var(--grey);
  font-size: 0.95rem;
}

.map-placeholder {
  aspect-ratio: 5/6;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--grey-light) 0%, #e8eef2 100%);
  border: 1px solid rgba(12, 58, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 151, 74, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 151, 74, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
}
.map-pin .pin {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.map-pin .pin::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(6, 151, 74, 0.3);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ===== News grid ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.news-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 151, 74, 0.2) 0%, transparent 70%);
}
.news-card:hover {
  transform: translateY(-6px);
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
}
.news-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
  position: relative;
}
.news-date strong { font-size: 1.4rem; }
.news-date span { font-size: 0.78rem; text-transform: uppercase; margin-top: 4px; }
.news-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.3;
}
.news-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.news-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  font-weight: 600;
  font-size: 0.92rem;
}
.news-card .link:hover { gap: 12px; }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .main-nav,
  .nav-cta.desktop-only {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 32px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    gap: 4px;
    overflow-y: auto;
  }
  .main-nav.open,
  .nav-cta.desktop-only.open {
    right: 0;
  }
  .main-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
  }
  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(6, 151, 74, 0.08);
  }
  .main-nav a::before { display: none; }
  .nav-cta.desktop-only { top: auto; bottom: 32px; right: -100%; height: auto; padding: 0 24px; background: transparent; box-shadow: none; }
  .nav-cta.desktop-only.open { right: 0; }

  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat .num { font-size: 1.8rem; }
  .floating-card { display: none; }
  .form-card { padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-about { text-align: left; }
  .footer-about .logo-slot { justify-content: flex-start; margin-left: 0; }
  .footer-bar { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-form .btn { width: 100%; }
  .logo-text { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .interior-hero { padding: 140px 0 70px; }
  .partners-track { gap: 24px; }
  .partner-slot { min-width: 120px; height: 60px; }
}

@media (max-width: 420px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
