:root {
  --c0: #04080f;
  --c1: #0a1525;
  --c2: #0f2040;
  --c3: #1a4a8a;
  --accent:  #4facfe;
  --accent2: #74c5fe;
  --accent3: #a8d8ff;
  --gold:    #f0c674;
  --w:   #ffffff;
  --w80: rgba(255 255 255 / 0.80);
  --w50: rgba(255 255 255 / 0.50);
  --w20: rgba(255 255 255 / 0.20);
  --w10: rgba(255 255 255 / 0.10);
  --w06: rgba(255 255 255 / 0.06);
  --glow: rgba(79 172 254 / 0.22);
  --accent-glow: rgba(79 172 254 / 0.08);
  --accent-border: rgba(79 172 254 / 0.20);
  --accent-border-hover: rgba(79 172 254 / 0.40);
  --tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --r:  16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c0);
  color: var(--w80);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(4 8 15 / 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(79 172 254 / 0.12);
  box-shadow: 0 4px 40px rgba(0 0 0 / 0.5);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: filter var(--tr), transform var(--tr);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 10px rgba(79 172 254 / 0.5));
  transform: translateY(-1px);
}

.nav-logo-symbol { height: 38px; width: auto; flex-shrink: 0; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--w);
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-sub {
  font-size: 0.56rem;
  letter-spacing: 0.20em;
  color: rgba(255 255 255 / 0.45);
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.90rem;
  letter-spacing: 0.015em;
  color: var(--w80);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}

.nav-links a:hover { color: var(--w); background: var(--w10); }
.nav-links a.active { color: var(--accent2); }

.nav-links .nav-cta {
  color: var(--c0);
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(79 172 254 / 0.40);
  transition: transform var(--tr), box-shadow var(--tr), color var(--tr), background var(--tr);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79 172 254 / 0.60);
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: var(--c0);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--w80);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--w10);
  background: rgba(4 8 15 / 0.96);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--w80);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background var(--tr), color var(--tr);
}

.nav-mobile a:hover { background: var(--w10); color: var(--w); }

.nav-mobile .cta-m {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: var(--c0);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(79 172 254 / 0.40);
}

/* ─── SHARED LABEL ─── */

.page-label,
.about-intro-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-label::before,
.about-intro-label::before,
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ─── PAGE HERO ─── */

.page-hero {
  position: relative;
  padding: 140px 32px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c1) 0%, var(--c0) 100%);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  background: radial-gradient(circle, rgba(79 172 254 / 0.09) 0%, transparent 70%);
}

.page-hero::before {
  top: -120px;
  left: -120px;
  width: 600px;
  height: 600px;
}

.page-hero::after {
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79 172 254 / 0.05) 0%, transparent 70%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--w50);
  animation: fade-up 0.6s 0.05s both;
}

.page-breadcrumb a { color: var(--accent2); text-decoration: none; transition: color var(--tr); }
.page-breadcrumb a:hover { color: var(--w); }
.page-breadcrumb svg { width: 12px; height: 12px; fill: var(--w20); }

.page-label { margin-bottom: 14px; animation: fade-up 0.6s 0.10s both; }

.page-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  letter-spacing: -0.018em;
  line-height: 1.18;
  color: var(--w);
  max-width: 620px;
  animation: fade-up 0.6s 0.18s both;
}

/* ─── HIGHLIGHT TEXT ─── */

.hl {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title .hl { animation: shimmer 5s linear infinite; }

/* ─── ABOUT SECTION ─── */

.about-section {
  padding: 80px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-lead {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.012em;
  line-height: 1.25;
  color: var(--w);
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-paragraphs p {
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: 0.003em;
  line-height: 1.80;
  color: var(--w80);
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  color: var(--accent2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 50px;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.value-pill:hover {
  background: rgba(79 172 254 / 0.15);
  border-color: var(--accent-border-hover);
  transform: translateY(-2px);
}

.value-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.about-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ─── PHOTO CARD ─── */

.about-photo-col { position: relative; }

.photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(79 172 254 / 0.5), rgba(79 172 254 / 0.05), rgba(79 172 254 / 0.3));
  z-index: 0;
  pointer-events: none;
}

.photo-inner {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c2) 0%, var(--c1) 100%);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(4 8 15 / 0.85) 100%),
    linear-gradient(135deg, #0f2040 0%, #1a4a8a 50%, #0a1525 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4 8 15 / 0.90) 100%);
  z-index: 1;
}

.photo-namecard {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.photo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--w);
}

.photo-role {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent2);
}

.photo-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.cred-tag {
  background: rgba(79 172 254 / 0.15);
  border: 1px solid rgba(79 172 254 / 0.25);
  color: var(--accent3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 50px;
}

/* Floating stat cards */

.float-card,
.float-card-2 {
  position: absolute;
  background: rgba(10 21 37 / 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--accent-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0 0 0 / 0.40);
  z-index: 3;
}

.float-card {
  top: -24px;
  left: -28px;
  padding: 16px 20px;
  animation: float 4.0s ease-in-out infinite;
}

.float-card-2 {
  bottom: 100px;
  right: -24px;
  padding: 14px 18px;
  gap: 10px;
  animation: float 4.5s ease-in-out 0.8s infinite;
}

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-text { display: flex; flex-direction: column; gap: 2px; }

.float-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--w);
}

.float-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--w50);
  white-space: nowrap;
}

/* ─── MISSION SECTION ─── */

.mission-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(180deg, var(--c0) 0%, var(--c1) 50%, var(--c0) 100%);
}

.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  background: radial-gradient(circle at 50% 50%, rgba(79 172 254 / 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.mission-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  letter-spacing: -0.012em;
  line-height: 1.20;
  color: var(--w);
  margin-bottom: 16px;
}

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

.mission-card {
  position: relative;
  background: var(--w06);
  border: 1px solid rgba(79 172 254 / 0.12);
  border-radius: var(--r);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
  opacity: 0;
  transition: opacity var(--tr);
}

.mission-card:hover {
  background: rgba(79 172 254 / 0.07);
  border-color: rgba(79 172 254 / 0.28);
  transform: translateY(-4px);
}

.mission-card:hover::before { opacity: 1; }

.mission-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background var(--tr), box-shadow var(--tr);
}

.mission-card:hover .mission-icon {
  background: rgba(79 172 254 / 0.18);
  box-shadow: 0 0 24px var(--glow);
}

.mission-h {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: var(--w);
}

.mission-p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.70;
  color: var(--w50);
}

/* ─── APPROACH SECTION ─── */

.approach-section {
  padding: 80px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}

.approach-list {
  display: flex;
  flex-direction: column;
}

.approach-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255 255 255 / 0.06);
  cursor: default;
}

.approach-item:last-child { border-bottom: none; }

.approach-item:hover .approach-num { color: var(--accent); }

.approach-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: rgba(79 172 254 / 0.40);
  min-width: 40px;
  padding-top: 3px;
  transition: color var(--tr);
}

.approach-body { display: flex; flex-direction: column; gap: 6px; }

.approach-h {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.30;
  color: var(--w);
}

.approach-p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.70;
  color: var(--w50);
}

.approach-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  border: 1px solid rgba(79 172 254 / 0.12);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.apstat {
  background: var(--w06);
  border: 1px solid rgba(79 172 254 / 0.12);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--tr), border-color var(--tr);
}

.apstat:hover {
  background: var(--accent-glow);
  border-color: rgba(79 172 254 / 0.25);
}

.apstat-n {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.018em;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.apstat-l {
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--w50);
}

.approach-quote {
  background: rgba(79 172 254 / 0.06);
  border: 1px solid rgba(79 172 254 / 0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  font-size: 0.96rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.005em;
  line-height: 1.75;
  color: var(--w80);
  position: relative;
}

.approach-quote::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(79 172 254 / 0.20);
  position: absolute;
  top: -8px;
  left: 16px;
}

/* ─── CTA BANNER ─── */

.cta-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c1) 0%, var(--c2) 50%, #1a5fa8 100%);
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(79 172 254 / 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text { flex: 1; min-width: 280px; }

.cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.012em;
  line-height: 1.22;
  color: var(--w);
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.70;
  color: var(--w80);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cta-note {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--w50);
  text-align: right;
}

/* ─── BUTTONS ─── */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 13px 28px;
}

.btn-primary {
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  color: var(--c0);
  box-shadow: 0 6px 30px rgba(79 172 254 / 0.42);
  transition: transform var(--tr), box-shadow var(--tr);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79 172 254 / 0.60);
}

.btn-primary svg { width: 17px; height: 17px; }

.btn-secondary {
  font-weight: 500;
  padding: 13px 26px;
  background: rgba(255 255 255 / 0.08);
  border: 1px solid rgba(255 255 255 / 0.25);
  color: var(--w);
  backdrop-filter: blur(10px);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.btn-secondary:hover {
  background: rgba(255 255 255 / 0.16);
  border-color: rgba(79 172 254 / 0.50);
  transform: translateY(-1px);
}

.btn-secondary svg { width: 17px; height: 17px; }

/* ─── FOOTER ─── */

footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c0) 0%, #040a14 100%);
  border-top: 1px solid rgba(79 172 254 / 0.10);
}

footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79 172 254 / 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--w50);
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--w10);
  border: 1px solid var(--w20);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.social-btn:hover {
  background: rgba(79 172 254 / 0.20);
  border-color: var(--accent-border-hover);
  transform: translateY(-2px);
}

.social-btn svg { width: 15px; height: 15px; fill: var(--w80); }

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w);
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.84rem;
  color: var(--w50);
  text-decoration: none;
  transition: color var(--tr), padding-left var(--tr);
}

.footer-col ul a:hover { color: var(--w80); padding-left: 4px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-item svg { width: 14px; height: 14px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact-item span { font-size: 0.82rem; color: var(--w50); line-height: 1.55; }

.footer-bottom {
  border-top: 1px solid var(--w10);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-legal a { font-size: 0.78rem; color: var(--w50); }

.footer-bottom span { color: var(--accent2); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  text-decoration: none;
  transition: color var(--tr);
}

.footer-legal a:hover { color: var(--w80); }

/* ─── WHATSAPP FAB ─── */

.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37 211 102 / 0.50);
  text-decoration: none;
  transition: transform var(--tr), box-shadow var(--tr);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 12px 36px rgba(37 211 102 / 0.65);
}

.wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* ─── SCROLL REVEAL ─── */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal          { transform: translateY(28px); }
.reveal-left     { transform: translateX(-32px); }
.reveal-right    { transform: translateX(32px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── KEYFRAMES ─── */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes shimmer {
  to { background-position: 200% 0%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-col { order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .float-card  { left: 0; top: -20px; }
  .float-card-2 { right: 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 16px; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .nav-inner  { padding: 0 20px; }

  .page-hero,
  .about-section,
  .approach-section { padding-inline: 20px; }
  .page-hero  { padding-top: 120px; padding-bottom: 60px; }

  .mission-inner   { padding: 0 20px; }
  .cta-inner       { padding: 60px 20px; }
  .cta-actions     { align-items: flex-start; }
  .cta-note        { text-align: left; }

  .footer-top      { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 28px; }
  .footer-bottom   { flex-direction: column; text-align: center; padding: 16px 20px; }
  .wa-fab          { bottom: 20px; right: 20px; }

  .approach-stats  { grid-template-columns: 1fr 1fr; }
  .float-card,
  .float-card-2    { display: none; }
}

@media (max-width: 480px) {
  .about-cta { flex-direction: column; }
  .btn-primary,
  .btn-secondary   { width: 100%; justify-content: center; }
  .approach-stats  { grid-template-columns: 1fr; }
}