@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg: #090b11;
  --card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --primary: #ff6500;
  --blue: #1E72B5;
  --blue-light: hsl(209,72%,60%);
  --text: #f5f5f7;
  --muted: #6b7589;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Syne', sans-serif;
  --radius: 1rem;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── ACCESSIBILITY ── */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  background: var(--primary); color: #fff; padding: .6rem 1.1rem; border-radius: .5rem;
  font-size: .85rem; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── SCROLL-IN ANIMATIONS (global) ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
/* No-JS / reduced-motion fallback: never hide content */
.no-js .fade-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,11,17,0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(9,11,17,0.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn-nav {
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  padding: .55rem 1.4rem; border-radius: 9999px; transition: background .2s;
}
.btn-nav:hover { background: #e05a00; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.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); }
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.25rem 1.5rem; border-top: 1px solid var(--border);
  background: rgba(9,11,17,0.95);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: .9rem; font-weight: 500; color: var(--muted); padding: .25rem 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  padding: .75rem 2rem; border-radius: 9999px; transition: background .2s;
}
.btn-primary:hover { background: #e05a00; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,101,0,.35); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  padding: .75rem 2rem; border-radius: 9999px; transition: background .2s, border-color .2s, transform .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ── GLOW ORBS ── */
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.glow-blue  { background: radial-gradient(ellipse, hsl(209 72% 43% / .13) 0%, transparent 70%); }
.glow-orange{ background: radial-gradient(circle, hsl(16 100% 50% / .08) 0%, transparent 70%); }

/* ── GLASS CARD ── */
.glass {
  background: var(--card);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── SECTION LABELS ── */
.label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: .75rem; }
.label-orange { color: var(--primary); }
.label-blue   { color: var(--blue-light); }

/* ── HEADINGS ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; }
.h-xl  { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
.h-lg  { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.h-md  { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
.h-sm  { font-size: 1.1rem; font-weight: 700; }
.text-muted { color: var(--muted); }

/* ── LAYOUT HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.gap-sm { gap: .75rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── HERO ── */
.hero {
  min-height: 90vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 5rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.hero-logo { position: relative; margin-bottom: 2.5rem; display: inline-block; }
.hero-logo::before {
  content: ''; position: absolute; inset: -40%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,101,0,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo img { height: 200px; width: auto; position: relative; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(255,101,0,.4);
  color: var(--primary); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 700; padding: .4rem 1rem;
  border-radius: 9999px; margin-bottom: 1.5rem;
}
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── COURSE TAGS ── */
.course-tag {
  display: inline-block; padding: .45rem 1.1rem; border-radius: 9999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: .85rem; font-weight: 500; color: var(--muted);
}

/* ── FEATURE CARDS ── */
.feature-card { padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); transition: border-color .2s; }
.feature-card:hover { border-color: rgba(255,101,0,.3); }
.icon-box {
  width: 48px; height: 48px; border-radius: .75rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}

/* ── PHOTO GRID ── */
.photo-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s; }
.photo-card:hover img { transform: scale(1.05); }

/* ── MILESTONE CARDS ── */
.milestone-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.10); position: relative; }
.milestone-card .img-wrap { height: 260px; overflow: hidden; }
.milestone-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.milestone-card:hover img { transform: scale(1.05); }
.milestone-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: .6rem 1rem;
  background: rgba(0,0,0,.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  font-size: .75rem; font-weight: 600; color: var(--text); transition: opacity .3s;
}
.milestone-hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
}
.milestone-card:hover .milestone-label { opacity: 0; }
.milestone-card:hover .milestone-hover { opacity: 1; }
.milestone-hover .mh-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--blue-light); margin-bottom: .25rem; }
.milestone-hover p { font-size: .85rem; color: #fff; line-height: 1.4; }

/* ── RATING BADGES ── */
.rating-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.25rem; border-radius: 9999px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.stars { color: #facc15; font-size: 1rem; letter-spacing: -.05em; }
.rating-num { font-weight: 700; font-size: .9rem; }
.rating-source { font-size: .75rem; color: var(--muted); }

/* ── VALUES GRID ── */
.value-item { display: flex; align-items: center; gap: .75rem; }
.value-item svg { flex-shrink: 0; color: var(--primary); }
.value-item span { font-size: .9rem; font-weight: 500; }

/* ── PROGRAM CARDS ── */
.program-card {
  padding: 1.75rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: border-color .3s; position: relative; overflow: hidden;
}
.program-card:hover { border-color: rgba(255,255,255,.18); }
.program-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(circle at 30% 30%, rgba(30,114,181,.08) 0%, transparent 70%);
  border-radius: inherit; pointer-events: none;
}
.program-card:hover::before { opacity: 1; }
.program-tag { font-size: .65rem; font-weight: 700; padding: .2rem .6rem; border-radius: 9999px; }
.program-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; margin-bottom: .75rem; margin-top: .75rem; }
.program-card p { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── WHY US CARDS ── */
.why-item {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.25rem;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color .2s; margin-bottom: .75rem;
}
.why-item:hover { border-color: rgba(255,255,255,.14); }
.why-icon {
  width: 36px; height: 36px; border-radius: .6rem; flex-shrink: 0;
  background: rgba(30,114,181,.15); border: 1px solid rgba(30,114,181,.25);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { color: var(--blue-light); }

/* ── CONTACT ── */
.contact-box { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); margin-bottom: .75rem; }
.contact-icon { width: 40px; height: 40px; border-radius: .75rem; background: rgba(255,101,0,.1); border: 1px solid rgba(255,101,0,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--primary); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .4rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .7rem 1rem; border-radius: .75rem;
  border: 1px solid var(--border); background: rgba(255,255,255,.04);
  color: var(--text); font-family: var(--font-body); font-size: .9rem; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(255,101,0,.5); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: .85rem; border-radius: .75rem;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; transition: background .2s;
}
.btn-submit:hover { background: #e05a00; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }
.open-maps {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem;
  color: var(--muted); padding: .5rem 1rem; border-radius: .75rem; border: 1px solid var(--border);
  transition: color .2s;
}
.open-maps:hover { color: var(--primary); }
.social-icons { display: flex; flex-wrap: wrap; gap: .75rem; }
.social-icon {
  width: 48px; height: 48px; border-radius: .75rem; border: 1px solid var(--border);
  background: var(--card); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); transition: all .2s;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon.ig:hover  { color: #E1306C; border-color: rgba(225,48,108,.3); background: rgba(225,48,108,.08); }
.social-icon.fb:hover  { color: #1877F2; border-color: rgba(24,119,242,.3); background: rgba(24,119,242,.08); }
.social-icon.yt:hover  { color: #FF0000; border-color: rgba(255,0,0,.3); background: rgba(255,0,0,.08); }
.social-icon.wa:hover  { color: #25D366; border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.08); }
.social-icon.li:hover  { color: #0A66C2; border-color: rgba(10,102,194,.3); background: rgba(10,102,194,.08); }

/* ── CTA SECTION ── */
.cta-section { background: rgba(255,255,255,.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── FOOTER ── */
.footer { padding: 2rem 1.5rem; border-top: 1px solid var(--border); text-align: center; }
.footer p { font-size: .8rem; color: var(--muted); }

/* ── ALERT ── */
.alert { padding: .9rem 1.25rem; border-radius: .75rem; margin-bottom: 1rem; font-size: .9rem; font-weight: 500; display: none; }
.alert-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #f87171; }

/* ── INSIDE GALLERY ── */
.gallery-bento { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-bento .span-rows { grid-row: span 2; }
.gallery-bento .photo-card img { object-fit: cover; width: 100%; height: 100%; }
.gallery-bento .span-rows { height: 100%; }
.gallery-bento .span-rows img { height: 100%; }
.gallery-bento .short { height: 220px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .gallery-bento { grid-template-columns: repeat(2,1fr); }
  .gallery-bento .span-rows { grid-row: span 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-logo img { height: 140px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-bento { grid-template-columns: 1fr; }
  .milestone-grid-top { grid-template-columns: 1fr !important; }
  .milestone-grid-bottom { grid-template-columns: 1fr !important; }
}

/* ── ABOUT PAGE ── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:768px){ .about-2col { grid-template-columns: 1fr; gap: 2rem; } }
.mission-glass {
  border-radius: 1.5rem; padding: 4rem; text-align: center;
  border: 1px solid rgba(255,255,255,.10); position: relative; overflow: hidden;
  background: rgba(255,255,255,.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}

/* ── CONTACT 2COL ── */
.contact-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media(max-width:768px){ .contact-2col { grid-template-columns: 1fr; } }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--primary), var(--blue-light));
  transition: width .1s linear;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(9,11,17,.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s, border-color .2s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { border-color: var(--primary); color: var(--primary); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ── STATS COUNTERS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.stat-card {
  text-align: center; padding: 2rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card); transition: border-color .2s, transform .2s;
}
.stat-card:hover { border-color: rgba(255,101,0,.3); transform: translateY(-4px); }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.75rem); font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--muted); margin-top: .5rem; letter-spacing: .03em; }
@media(max-width:768px){ .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media(max-width:900px){ .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 1rem; transition: border-color .2s, transform .2s;
}
.testi-card:hover { border-color: rgba(255,101,0,.3); transform: translateY(-4px); }
.testi-stars { color: #facc15; font-size: .95rem; letter-spacing: -.05em; }
.testi-text { font-size: .92rem; color: var(--text); line-height: 1.7; flex: 1; }
.testi-who { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--blue));
}
.testi-name { font-size: .9rem; font-weight: 600; }
.testi-role { font-size: .75rem; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(255,101,0,.3); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer; background: none; border: none; color: var(--text);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; padding: 1.15rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--primary); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.25rem 1.15rem; font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── RICH FOOTER ── */
.footer { padding: 4rem 1.5rem 2rem; border-top: 1px solid var(--border); background: rgba(255,255,255,.015); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-display); font-size: .95rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-social { display: flex; gap: .6rem; margin-top: .5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: .6rem; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s;
}
.footer-social a:hover { color: var(--primary); border-color: rgba(255,101,0,.3); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
@media(max-width:768px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
