@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy: #0D2B45;
  --teal: #00C2A8;
  --teal-dark: #009688;
  --teal-dim: #007A6B;
  --aqua: #E0FAF7;
  --cool-white: #F7F9FC;
  --white: #FFFFFF;
  --text-primary: #0D2B45;
  --text-secondary: #4A6880;
  --text-light: #7B9EB8;
  --border: rgba(13,43,69,0.10);
  --border-strong: rgba(13,43,69,0.18);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-primary); background: var(--white); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
.logo-svg { display: block; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: rgba(13,43,69,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,194,168,0.15); z-index: 1000; display: flex; align-items: center; padding: 0 5%; gap: 2rem; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-brand-text { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: 0.01em; line-height: 1.1; }
.nav-brand-text span { display: block; font-size: 10px; font-weight: 400; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin-left: auto; }
.nav-links a { display: block; padding: 8px 16px; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s; border-radius: 6px; }
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }
.nav-cta { margin-left: 8px; padding: 8px 20px !important; background: var(--teal) !important; color: var(--navy) !important; border-radius: 8px !important; font-weight: 600 !important; font-size: 13px !important; transition: background 0.2s, transform 0.15s !important; }
.nav-cta:hover { background: #00d9bc !important; transform: translateY(-1px); color: var(--navy) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

/* SECTIONS */
section { padding: 96px 5%; }
.section-inner { max-width: 1080px; margin: 0 auto; }

/* HERO */
.hero { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 100px; background: var(--navy); position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,194,168,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,194,168,0.06) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,194,168,0.12) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,194,168,0.12); border: 1px solid rgba(0,194,168,0.25); color: var(--teal); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--navy); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; letter-spacing: 0.01em; }
.btn-primary:hover { background: #00d9bc; transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.8); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px; padding: 13px 24px; border-radius: 10px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-teal-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--teal-dim); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; padding: 13px 24px; border-radius: 10px; text-decoration: none; border: 1.5px solid var(--teal); cursor: pointer; transition: background 0.2s, color 0.2s; }
.btn-teal-outline:hover { background: var(--teal); color: var(--navy); }

/* HERO CARD */
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,194,168,0.2); border-radius: 20px; padding: 32px; backdrop-filter: blur(8px); }
.hero-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.hero-stat-row { display: flex; flex-direction: column; gap: 16px; }
.hero-stat { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: rgba(0,194,168,0.06); border: 1px solid rgba(0,194,168,0.12); border-radius: 12px; }
.hero-stat-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,194,168,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.hero-stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600; color: var(--white); }

/* TRUST BAR */
.trust-bar { background: var(--aqua); padding: 28px 5%; border-top: 1px solid rgba(0,194,168,0.2); border-bottom: 1px solid rgba(0,194,168,0.2); }
.trust-bar-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--teal-dim); font-weight: 500; }
.trust-icon { width: 32px; height: 32px; background: rgba(0,194,168,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* SECTION LABELS */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dim); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.7; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* HOME PROGRAMS GRID */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: pointer; text-decoration: none; display: block; }
.program-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.program-card:hover { border-color: rgba(0,194,168,0.4); transform: translateY(-4px); }
.program-card:hover::before { transform: scaleX(1); }
.prog-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--aqua); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.prog-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.prog-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.prog-link { font-size: 13px; font-weight: 600; color: var(--teal-dim); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s, color 0.2s; }
.prog-link:hover { color: var(--teal); gap: 8px; }

/* HOW IT WORKS */
.how-bg { background: var(--cool-white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 28px; left: calc(16.67% + 16px); right: calc(16.67% + 16px); height: 1px; background: linear-gradient(90deg, var(--teal), rgba(0,194,168,0.2), var(--teal)); }
.step { text-align: center; padding: 28px 20px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--teal); margin: 0 auto 20px; position: relative; z-index: 1; }
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* IMPACT */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.impact-card { background: var(--navy); border-radius: 16px; padding: 36px 28px; text-align: center; position: relative; overflow: hidden; }
.impact-card::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; background: rgba(0,194,168,0.08); }
.impact-soon { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.impact-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.impact-badge { display: inline-block; background: rgba(0,194,168,0.12); border: 1px solid rgba(0,194,168,0.2); color: var(--teal); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }

/* PAGE HEROES (inner pages) */
.prog-page-hero { background: var(--navy); padding: calc(var(--nav-h) + 64px) 5% 72px; position: relative; overflow: hidden; }
.prog-page-hero .hero-grid-bg { position: absolute; inset: 0; }
.prog-page-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag { display: inline-block; background: rgba(0,194,168,0.12); border: 1px solid rgba(0,194,168,0.25); color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.page-hero-title { font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 540px; line-height: 1.7; }

/* PROGRAMS PAGE */
.prog-section { padding: 80px 5%; }
.prog-section:nth-child(even) { background: var(--cool-white); }
.prog-full { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.prog-full.flip { direction: rtl; }
.prog-full.flip > * { direction: ltr; }
.prog-full-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--aqua); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; border: 1px solid rgba(0,194,168,0.25); }
.prog-full h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.02em; }
.prog-full-sub { font-size: 14px; font-weight: 600; color: var(--teal-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.prog-full p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.prog-topics { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.prog-topics li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.prog-topics li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--aqua); border: 1.5px solid var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300C2A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.prog-visual { background: var(--navy); border-radius: 24px; padding: 48px 36px; border: 1px solid rgba(0,194,168,0.15); position: relative; overflow: hidden; }
.prog-visual .hero-grid-bg { position: absolute; inset: 0; border-radius: 24px; }
.prog-visual-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.prog-visual-item { background: rgba(0,194,168,0.08); border: 1px solid rgba(0,194,168,0.15); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; }
.prog-visual-item-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,194,168,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prog-visual-item-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.4; }
.prog-visual-item-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }

/* ABOUT */
.about-split { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.about-photo-wrap { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-photo-box { border-radius: 20px; overflow: hidden; background: var(--navy); border: 1px solid rgba(0,194,168,0.2); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; }
.about-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,0.3); font-size: 13px; text-align: center; padding: 24px; }
.about-photo-placeholder-circle { width: 80px; height: 80px; border-radius: 50%; background: rgba(0,194,168,0.12); border: 2px dashed rgba(0,194,168,0.3); display: flex; align-items: center; justify-content: center; }
.about-photo-caption { margin-top: 14px; text-align: center; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.about-photo-caption strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-content h2 { font-size: 36px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 6px; }
.about-lead { font-size: 18px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; font-weight: 400; }
.about-body { font-size: 15.5px; color: var(--text-secondary); line-height: 1.8; }
.about-body p { margin-bottom: 18px; }
.about-quote { border-left: 3px solid var(--teal); padding: 16px 24px; margin: 28px 0; background: var(--aqua); border-radius: 0 12px 12px 0; }
.about-quote p { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 500; color: var(--navy); line-height: 1.5; margin: 0; font-style: italic; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.value-card { background: var(--cool-white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.value-card-icon { font-size: 22px; margin-bottom: 8px; }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: pointer; text-decoration: none; display: block; }
.blog-card:hover { border-color: rgba(0,194,168,0.4); transform: translateY(-4px); }
.blog-thumb { height: 160px; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb-icon { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; background: rgba(0,194,168,0.15); border: 1.5px solid rgba(0,194,168,0.3); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 24px 22px; }
.blog-tag { display: inline-block; background: var(--aqua); color: var(--teal-dim); font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.blog-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.blog-excerpt { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 12px; }
.blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 14px; overflow: hidden; background: var(--navy); border: 1px solid rgba(0,194,168,0.12); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; transition: border-color 0.2s; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item:hover { border-color: rgba(0,194,168,0.4); }
.gallery-placeholder { position: relative; z-index: 1; text-align: center; color: rgba(255,255,255,0.25); font-size: 13px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(13,43,69,0.85)); font-size: 12.5px; color: rgba(255,255,255,0.7); font-weight: 500; z-index: 2; opacity: 0; transition: opacity 0.2s; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* CONTACT */
.contact-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.02em; }
.contact-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-top: 1px solid var(--border); }
.contact-detail:last-of-type { border-bottom: 1px solid var(--border); }
.contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--aqua); border: 1px solid rgba(0,194,168,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact-form-wrap { background: var(--cool-white); border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px; }
.form-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 12.5px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-strong); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy); background: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,194,168,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; background: var(--navy); color: var(--white); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--teal); color: var(--navy); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--aqua); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* FOOTER */
footer { background: var(--navy); padding: 56px 5% 32px; border-top: 1px solid rgba(0,194,168,0.15); }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background 0.2s, border-color 0.2s; cursor: pointer; }
.social-btn:hover { background: rgba(0,194,168,0.15); border-color: rgba(0,194,168,0.3); }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse-dot 2s infinite; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .prog-full { grid-template-columns: 1fr; gap: 40px; }
  .prog-full.flip { direction: ltr; }
  .about-split { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; }
  .about-photo-box { aspect-ratio: 3/2; max-width: 320px; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(13,43,69,0.98); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .trust-bar-inner { gap: 24px; }
  .about-values { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  section { padding: 64px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}
