:root {
    --blue: #005bab;
    --blue-deep: #003d73;
    --blue-soft: #e8f2fb;
    --red: #d32f2f;
    --red-deep: #b71c1c;
    --ink: #122033;
    --muted: #5d6b7c;
    --line: #e6edf4;
    --paper: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(0, 45, 90, 0.1);
    --radius: 22px;
    --header: 84px;
    --section-y: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: Outfit, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.container .narrow { width: min(820px, 100%); margin: 0; text-align: left; }

.topbar {
    background: var(--blue-deep);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.04em;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
}
.topbar a { color: #fff; opacity: 0.9; }
.topbar-links {
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-phone {
    font-weight: 600;
    white-space: nowrap;
}
.topbar .social-btn { opacity: 1; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0,40,80,.08);
    border-color: var(--line);
}
.header-inner {
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links,
.nav-mobile-foot { display: contents; }
.nav-mobile-head,
.nav-mobile-meta,
.nav-backdrop { display: none; }
.nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -8px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s;
}
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.nav-toggle span {
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle {
    background: var(--blue-soft);
    border-color: #c9dcea;
}
body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
@keyframes navLinkIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: none; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(211,47,47,.25); }
.btn-red:hover { background: var(--red-deep); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(0,91,171,.22); }
.btn-blue:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.btn-white:hover { background: #f3f7fb; }
.btn .btn-icon { width: 18px; height: 18px; margin-left: 8px; flex-shrink: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    flex-shrink: 0;
}
.eyebrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 10px 0 0 currentColor;
    flex-shrink: 0;
    opacity: .9;
}
.eyebrow.light { color: #ffb4b4; }
.section-head .eyebrow {
    margin-bottom: 14px;
}

.has-shapes { position: relative; }
.has-shapes > .container,
.has-shapes > .marquee,
.has-shapes > .footer-bottom {
    position: relative;
    z-index: 2;
}
.site-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.site-shapes.is-flip { transform: scaleX(-1); }
.ss-ring,
.ss-blob,
.ss-arc,
.ss-dots { position: absolute; }
.ss-ring {
    border-radius: 50%;
    border: 1.5px solid rgba(0,91,171,.18);
}
.ss-ring-a {
    width: 320px;
    height: 320px;
    top: -110px;
    left: -90px;
}
.ss-ring-a::after {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px dashed rgba(0,91,171,.14);
}
.ss-ring-b {
    width: 170px;
    height: 170px;
    right: 7%;
    bottom: 48px;
    border-color: rgba(211,47,47,.22);
}
.ss-blob {
    border-radius: 50%;
    filter: blur(1px);
    animation: shapeFloat 12s ease-in-out infinite;
}
.ss-blob-a {
    width: 240px;
    height: 240px;
    top: 8%;
    right: -80px;
    background: radial-gradient(circle at 32% 28%, rgba(0,91,171,.16), rgba(0,91,171,.03) 68%);
}
.ss-blob-b {
    width: 190px;
    height: 190px;
    left: 8%;
    bottom: -70px;
    border-radius: 46% 54% 62% 38% / 42% 38% 62% 58%;
    background: radial-gradient(circle at 40% 36%, rgba(211,47,47,.16), rgba(211,47,47,.03) 70%);
    animation-delay: -4s;
}
.ss-arc {
    width: 220px;
    height: 220px;
    left: 42%;
    top: -70px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0,91,171,.18);
    border-right-color: rgba(211,47,47,.12);
    transform: rotate(18deg);
}
.ss-dots {
    width: 92px;
    height: 64px;
    right: 16%;
    top: 86px;
    background-image: radial-gradient(rgba(0,91,171,.28) 1.6px, transparent 1.8px);
    background-size: 16px 16px;
    opacity: .7;
}
.site-shapes.is-dark .ss-ring { border-color: rgba(255,255,255,.22); }
.site-shapes.is-dark .ss-ring-a::after { border-color: rgba(255,255,255,.16); }
.site-shapes.is-dark .ss-ring-b { border-color: rgba(255,176,176,.3); }
.site-shapes.is-dark .ss-blob-a {
    background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.16), rgba(255,255,255,.03) 68%);
}
.site-shapes.is-dark .ss-blob-b {
    background: radial-gradient(circle at 40% 36%, rgba(255,90,90,.2), rgba(255,255,255,.02) 70%);
}
.site-shapes.is-dark .ss-arc {
    border-top-color: rgba(255,255,255,.22);
    border-right-color: rgba(255,170,170,.22);
}
.site-shapes.is-dark .ss-dots {
    background-image: radial-gradient(rgba(255,255,255,.38) 1.6px, transparent 1.8px);
}
@keyframes shapeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.section { padding: var(--section-y) 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2, .intro-copy h2, .about-copy h2, .founder-copy h2, .page-hero h1, .hero h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    text-align: left;
    gap: 20px;
}
.section-head.split > div { min-width: 0; }

/* Stacked sections keep top padding so pre-headings breathe. */

.hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    place-items: end start;
    color: #fff;
    overflow: hidden;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    animation: ken 18s ease-in-out infinite alternate;
}
@keyframes ken { to { transform: scale(1.14); } }
.hero-overlay {
    background: linear-gradient(90deg, rgba(6,22,42,.78) 0%, rgba(6,22,42,.35) 58%, rgba(211,47,47,.18) 100%);
}
.hero-content { position: relative; padding: 0 0 90px; max-width: 740px; z-index: 1; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); margin-bottom: 18px; line-height: 1.08; }
.hero-lead { font-size: clamp(16px, 2.2vw, 18px); max-width: 560px; color: rgba(255,255,255,.88); margin-bottom: 28px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-marquee {
    position: relative;
    background: var(--red);
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-marquee::before,
.hero-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(32px, 8vw, 72px);
    z-index: 1;
    pointer-events: none;
}
.hero-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--red) 15%, transparent);
}
.hero-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--red) 15%, transparent);
}
.hero-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: heroMarqueeScroll 55s linear infinite;
}
@keyframes heroMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hero-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 0;
}
.hero-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    white-space: nowrap;
    font-weight: 700;
    font-size: clamp(12px, 1.5vw, 15px);
    letter-spacing: 0.02em;
    transition: opacity .2s ease;
}
.hero-marquee-sep {
    color: rgba(255,255,255,.42);
    font-weight: 600;
    letter-spacing: -0.06em;
    user-select: none;
}
.hero-marquee-emoji {
    font-size: 1em;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.12));
}
.hero-marquee-text { line-height: 1.2; }

.intro-grid, .about-story {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-story.reverse { grid-template-columns: 1fr 1.05fr; }
.intro-visual, .about-photo { position: relative; }
.intro-visual img, .about-photo img {
    width: 100%; height: 520px; object-fit: cover; border-radius: 28px;
    box-shadow: var(--shadow);
}
.intro-badge {
    position: absolute;
    left: -18px; bottom: 28px;
    background: var(--red);
    color: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.intro-badge strong { display: block; font-size: 32px; line-height: 1; }
.intro-copy p, .about-copy p { color: var(--muted); margin-bottom: 16px; }
.intro-copy h2, .about-copy h2 { font-size: 40px; margin-bottom: 16px; }

.check-list { list-style: none; margin: 22px 0 28px; }
.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px var(--blue-soft);
}

.counters {
    background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, #1a6db8);
    color: #fff;
    padding: var(--section-y) 0;
}
.counters .section-head { margin-bottom: 36px; }
.counters .section-head h2 { color: #fff; }
.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: center;
}
.counter-grid article {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 28px 16px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.counter-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transform: translate(34%, -34%) scale(0.72);
    opacity: 1;
    transition: transform .3s ease, background .3s ease;
    pointer-events: none;
    z-index: 0;
}
.counter-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.24);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
}
.counter-grid article:hover::before {
    transform: translate(30%, -30%) scale(0.88);
    background: rgba(255, 255, 255, 0.3);
}
.counter-grid article > * {
    position: relative;
    z-index: 1;
}
.counter-grid .count {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.counter-grid article p { opacity: .88; font-weight: 500; }

.testimonials { background: var(--paper); }
.muted-note { text-align: center; color: var(--muted); }
.testimonial-slider { position: relative; }
.testimonial-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-slider.is-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}
.testimonial-slider.is-slider .testimonial-viewport {
    min-width: 0;
    overflow: hidden;
}
.testimonial-slider.is-slider .testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
}
.testimonial-slider.is-slider .testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slider.is-slider .testimonial-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}
.testimonial-slider.is-slider .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    height: auto;
}
.testimonial-nav {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
    flex-shrink: 0;
    transition: transform .2s, background .2s, opacity .2s;
    position: relative;
    z-index: 2;
}
.testimonial-nav svg { width: 22px; height: 22px; display: block; }
.testimonial-nav:hover:not(:disabled) { background: var(--blue-deep); transform: translateY(-2px); }
.testimonial-nav:disabled { opacity: .35; cursor: default; box-shadow: none; }
.testimonial-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--blue-soft);
    transform: translate(34%, -34%) scale(0.72);
    opacity: 1;
    transition: transform .3s ease, background .3s ease;
    pointer-events: none;
    z-index: 0;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 45, 90, .1);
}
.testimonial-card:hover::before {
    transform: translate(30%, -30%) scale(0.88);
    background: #cfe4f7;
}
.testimonial-card > * {
    position: relative;
    z-index: 1;
}
.testimonial-body {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 16px;
}
.person { display: flex; align-items: center; gap: 12px; }
.person img,
.person-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.person-avatar {
    display: grid;
    place-items: center;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}
.person strong { display: block; font-size: 16px; line-height: 1.3; }
.person span { display: block; color: var(--muted); font-size: 13px; }

.team-page { padding-top: 48px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1180px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0, 45, 90, .06);
    opacity: 0;
    animation: teamRise .7s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: var(--team-delay, 0ms);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 22px 44px rgba(0, 45, 90, .12);
}
.team-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(160deg, var(--blue-soft), #fff 65%);
}
.team-card.is-red .team-media {
    background: linear-gradient(160deg, #fdecec, #fff 65%);
}
.team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1);
    transition: transform .45s ease;
}
.team-card:hover .team-media img {
    animation: teamZoomLoop 2.4s ease-in-out infinite;
}
.team-avatar {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 56px;
    font-weight: 700;
    color: var(--blue);
    background: radial-gradient(circle at 30% 20%, #fff, var(--blue-soft));
}
.team-card.is-red .team-avatar { color: var(--red); }
.team-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 22px;
    flex: 1;
}
.team-role {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
}
.team-card.is-red .team-role { color: var(--red); }
.team-body h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
}
.team-bio {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}
.team-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.team-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.team-social svg { width: 15px; height: 15px; }
.team-social:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: transparent;
}
.team-social.facebook:hover { background: #1877f2; }
.team-social.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.team-social.linkedin:hover { background: #0a66c2; }
.team-social.twitter:hover { background: #111; }
.team-social.youtube:hover { background: #ff0000; }
.team-social.whatsapp:hover { background: #25d366; }
@keyframes teamRise {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes teamZoomLoop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.partners { padding: var(--section-y) 0 36px; overflow: hidden; background: var(--blue-deep); color: #fff; }
.partners .section-head { margin-bottom: 28px; }
.marquee { overflow: hidden; }
.marquee:hover .marquee-inner,
.marquee:focus-within .marquee-inner {
    animation-play-state: paused;
}
.marquee-inner {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: slide 75s linear infinite;
    padding: 10px 0 30px;
}
@keyframes slide { to { transform: translateX(-50%); } }
.partner-logo {
    min-width: 210px;
    height: 110px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}
.partner-logo img {
    max-width: 160px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.partner-logo-text {
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
}

.partners-page {
    background: var(--paper);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.partner-grid-card {
    aspect-ratio: 2 / 1;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 8px 24px rgba(0, 45, 90, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-grid-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 91, 171, .2);
    box-shadow: 0 16px 36px rgba(0, 45, 90, 0.1);
}
.partner-grid-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-grid.preview { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    height: auto;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.gallery-item:hover img { transform: scale(1.08); }

.programs { background: var(--paper); }
.programs .section-head.split {
    align-items: center;
}
.programs .section-head.split .btn {
    flex-shrink: 0;
    white-space: nowrap;
}
.section-head h2 .accent { color: var(--red); }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 45, 90, 0.07);
    transition: transform .28s ease, box-shadow .28s ease;
    color: inherit;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0, 45, 90, 0.14);
}
.program-media {
    position: relative;
    height: 236px;
    overflow: hidden;
}
.program-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.program-card:hover .program-media img { transform: scale(1.08); }
.program-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: 0 0 22px 22px;
    background: #fff;
}
.program-body h3 {
    font-size: 22px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: #fff;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb { height: 210px; display: block; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 22px; }
.blog-body time { color: var(--red); font-size: 13px; font-weight: 600; }
.blog-body h3 { margin: 8px 0 10px; font-size: 22px; }
.blog-body p { color: var(--muted); margin-bottom: 14px; }
.blog-body .text-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}
.blog-body .text-link:hover { color: var(--red-deep); }
.text-link { color: var(--blue); font-weight: 600; }

.cta-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(18,32,51,.93) 0%, rgba(0,61,115,.88) 55%, rgba(122,28,28,.84) 100%),
        url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
    padding: var(--section-y) 0;
    text-align: center;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}
.cta-inner p {
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.75;
    max-width: 620px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}
.cta-actions .btn { min-width: 190px; padding: 14px 30px; }

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(0,61,115,.92), rgba(211,47,47,.55)),
        url('https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
    padding: 80px 0 64px;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 12px; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.88); }
.post-excerpt { max-width: 720px; }
.page-hero .post-excerpt,
.page-hero .post-excerpt p,
.page-hero .post-excerpt h1,
.page-hero .post-excerpt h2,
.page-hero .post-excerpt h3,
.page-hero .post-excerpt h4,
.page-hero .post-excerpt h5,
.page-hero .post-excerpt h6 {
    color: rgba(255,255,255,.9);
}

.founder { padding: var(--section-y) 0; }
.founder-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 48px;
    align-items: center;
    background: var(--paper);
    border-radius: 32px;
    padding: 28px;
    overflow: hidden;
}
.founder-photo { position: relative; }
.founder-photo img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.founder-copy { position: relative; padding: 12px 20px 12px 8px; }
.founder-copy h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 22px;
}
.founder-mark {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 92px;
    line-height: .45;
    color: var(--red);
    opacity: .28;
    margin: 4px 0 14px;
}
.founder-copy p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 17px;
}
.founder-copy p strong { color: var(--ink); font-weight: 600; }
.founder-sign {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.founder-sign strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.founder-sign span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.history {
    background: var(--paper);
    padding: var(--section-y) 0;
}
.history .section-head p:last-of-type {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
}
.history-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 40px auto 0;
}
.history-highlights article {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 45, 90, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.history-highlights article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--blue-soft);
    transform: translate(34%, -34%) scale(0.72);
    opacity: 1;
    transition: transform .3s ease, background .3s ease;
    pointer-events: none;
    z-index: 0;
}
.history-highlights article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 45, 90, .1);
}
.history-highlights article:hover::before {
    transform: translate(30%, -30%) scale(0.88);
    background: #cfe4f7;
}
.history-highlights article > * {
    position: relative;
    z-index: 1;
}
.history-highlights strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 6px;
}
.history-highlights span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.timeline {
    list-style: none;
    position: relative;
    max-width: 920px;
    margin: 56px auto 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--red));
    transform: translateX(-50%);
    border-radius: 99px;
}
.timeline li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 28px;
    position: relative;
}
.timeline li:last-child { margin-bottom: 0; }
.timeline li:nth-child(odd) .timeline-card { grid-column: 1; }
.timeline li:nth-child(even) .timeline-card { grid-column: 2; }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 18px;
    height: 18px;
    background: var(--blue);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--blue-soft);
    z-index: 1;
}
.timeline li:nth-child(even) .timeline-dot { background: var(--red); box-shadow: 0 0 0 4px #fde8e8; }
.timeline li:last-child .timeline-dot {
    background: var(--red);
    box-shadow: 0 0 0 5px #fde8e8;
}
.timeline-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px 26px 24px 26px;
    box-shadow: 0 16px 40px rgba(0, 45, 90, 0.07);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    translate: 0 18px;
    animation: timeline-in .55s ease forwards;
    transition: transform .25s ease, box-shadow .25s ease;
}
.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--blue-soft);
    transform: translate(34%, -34%) scale(0.72);
    opacity: 1;
    transition: transform .3s ease, background .3s ease;
    pointer-events: none;
    z-index: 0;
}
.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 45, 90, .1);
}
.timeline-card:hover::before {
    transform: translate(30%, -30%) scale(0.88);
    background: #cfe4f7;
}
.timeline li:nth-child(even) .timeline-card::before,
.timeline-card.featured::before {
    background: #fde8e8;
}
.timeline li:nth-child(even) .timeline-card:hover::before,
.timeline-card.featured:hover::before {
    background: #f8d0d0;
}
.timeline-card > * {
    position: relative;
    z-index: 1;
}
.timeline li:nth-child(1) .timeline-card { animation-delay: .05s; }
.timeline li:nth-child(2) .timeline-card { animation-delay: .12s; }
.timeline li:nth-child(3) .timeline-card { animation-delay: .19s; }
.timeline li:nth-child(4) .timeline-card { animation-delay: .26s; }
.timeline li:nth-child(5) .timeline-card { animation-delay: .33s; }
@keyframes timeline-in {
    to { opacity: 1; translate: 0 0; }
}
.timeline-card.featured {
    border: 1px solid rgba(211, 47, 47, 0.18);
    background: linear-gradient(180deg, #fff 70%, #fff6f6);
}
.timeline-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
}
.timeline-icon svg {
    width: 22px;
    height: 22px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.timeline li:nth-child(even) .timeline-icon,
.timeline-card.featured .timeline-icon {
    background: #fde8e8;
    color: var(--red);
}
.timeline-card time {
    display: block;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.timeline-card h3 {
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 8px;
}
.timeline-card p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

.mvv { padding: var(--section-y) 0; }
.mvv .section-head { margin-bottom: 36px; }
.mvv-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}
.mvv-card,
.mvv-values {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(0, 45, 90, 0.07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.mvv-card {
    padding: 36px 32px 32px;
}
.mvv-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), #3d8fd4);
}
.mvv-card.is-vision::before {
    background: linear-gradient(90deg, var(--red), #f06a6a);
}
.mvv-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    right: -60px;
    bottom: -70px;
    background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.mvv-card.is-vision::after {
    background: radial-gradient(circle, #fde8e8 0%, transparent 70%);
}
.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 45, 90, 0.12);
    border-color: rgba(0, 91, 171, 0.16);
}
.mvv-card.is-vision:hover { border-color: rgba(211, 47, 47, 0.18); }
.mvv-watermark {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 76px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    color: var(--blue);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}
.mvv-card.is-vision .mvv-watermark { color: var(--red); }
.mvv-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    box-shadow: 0 14px 28px rgba(0, 91, 171, 0.28);
}
.mvv-card.is-vision .mvv-icon {
    background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
    box-shadow: 0 14px 28px rgba(211, 47, 47, 0.28);
}
.mvv-icon svg,
.mvv-value-icon svg {
    width: 28px;
    height: 28px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mvv-kicker {
    display: inline-block;
    margin: 0 0 8px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.mvv-card h3,
.mvv-values-copy h3 {
    font-size: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.mvv-card > p:not(.mvv-kicker),
.mvv-values-copy p:not(.mvv-kicker) {
    color: var(--muted);
    margin: 0;
    max-width: 46ch;
}
.mvv-values {
    padding: 36px 32px 32px;
}
.mvv-values::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-deep), var(--blue) 45%, var(--red));
}
.mvv-values-copy {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}
.mvv-values-copy .mvv-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    background: linear-gradient(160deg, #1a4f86 0%, var(--blue-deep) 100%);
}
.mvv-value-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mvv-value-list li {
    background: var(--paper);
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 22px 18px 20px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.mvv-value-list li:hover {
    background: #fff;
    border-color: rgba(0, 91, 171, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 45, 90, 0.08);
}
.mvv-value-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: var(--blue-soft);
    color: var(--blue);
}
.mvv-value-icon svg { width: 22px; height: 22px; }
.mvv-value-list li:nth-child(even) .mvv-value-icon {
    background: #fde8e8;
    color: var(--red);
}
.mvv-value-list li:hover .mvv-value-icon {
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 91, 171, 0.22);
}
.mvv-value-list li:nth-child(even):hover .mvv-value-icon {
    background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.22);
}
.mvv-value-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}
.mvv-value-list li > span:last-child {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    line-height: 1.45;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.contact-section { background: var(--paper); }
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
    align-items: start;
}
.contact-aside h2 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 10px; }
.contact-lead {
    color: var(--muted);
    margin-bottom: 24px;
}
.info-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid transparent;
    box-shadow: 0 10px 28px rgba(0, 45, 90, 0.06);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
a.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 91, 171, .18);
    box-shadow: var(--shadow);
}
.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-card h3 { font-size: 14px; margin-bottom: 2px; }
.info-card p { color: var(--muted); margin: 0; word-break: break-word; }
.contact-social {
    margin-top: 26px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 28px rgba(0, 45, 90, 0.06);
}
.contact-social h3 {
    font-size: 16px;
    margin-bottom: 12px;
}
.contact-form, .admin-form {
    display: grid;
    gap: 16px;
    background: #fff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.contact-form-wrap { scroll-margin-top: calc(var(--header) + 40px); }
.contact-form-intro h2 {
    font-size: 28px;
    margin-bottom: 6px;
}
.contact-form-intro p { color: var(--muted); }
.contact-form .btn { width: 100%; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 600; font-size: 14px; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}
input::placeholder, textarea::placeholder {
    color: #8a97a8;
    opacity: 1;
}
input:focus, textarea:focus, select:focus {
    outline: 2px solid rgba(0,91,171,.2);
    border-color: var(--blue);
}
.contact-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #dbe7f2;
}
.contact-map iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}
.map-float-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    padding: 20px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 340px;
}
.map-float-card h3 { margin-bottom: 6px; }
.map-float-card p { color: var(--muted); margin: 0 0 12px; }
.map-float-card a {
    color: var(--blue);
    font-weight: 700;
}
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; }
.alert.success { background: #e8f7ee; color: #146c2e; }
.alert.error { background: #fdecec; color: #b42318; }

.member-hero {
    position: relative;
    color: #fff;
    padding: 56px 0 72px;
    overflow: hidden;
}
.member-hero-overlay {
    background: linear-gradient(100deg, rgba(6,22,42,.88) 0%, rgba(6,22,42,.62) 48%, rgba(0,61,115,.45) 100%);
}
.member-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 40px;
    align-items: start;
}
.member-hero-copy {
    position: sticky;
    top: calc(var(--header) + 28px);
    padding-top: 12px;
}
.member-hero-copy h1 {
    font-size: clamp(38px, 5vw, 62px);
    margin-bottom: 16px;
}
.member-hero-points {
    list-style: none;
    margin: 8px 0 28px;
}
.member-hero-points li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.9);
}
.member-hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffb4b4;
}
.member-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}
.member-hero-meta a {
    color: #fff;
    font-weight: 600;
    opacity: .92;
}
.member-form-card {
    background: #fff;
    color: var(--ink);
    border-radius: 24px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
}
.member-form { display: grid; gap: 10px; }
.member-form-intro h2 { font-size: 22px; margin-bottom: 2px; }
.member-form-intro p { color: var(--muted); font-size: 14px; }
.member-form .btn { width: 100%; border-radius: 12px; padding: 12px 20px; }
.member-form .form-row { gap: 10px; }
.member-form .field-inline {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 6px 10px;
}
.member-form .field-stack {
    display: grid;
    gap: 5px;
}
.member-form .field-caption {
    line-height: 1.3;
    white-space: nowrap;
}
.member-form input,
.member-form select { padding: 9px 12px; }
.req { color: var(--red); }
.field-hint {
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.aadhar-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: #f7fbff;
    display: grid;
    gap: 4px;
}
.aadhar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.aadhar-card strong { font-size: 15px; }
.aadhar-card > p {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
}
.aadhar-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.btn-add-file {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--blue);
    font: inherit;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.btn-add-file svg { width: 16px; height: 16px; }
.aadhar-list {
    list-style: none;
    display: grid;
    gap: 6px;
    margin-top: 6px;
}
.aadhar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 500;
}
.aadhar-list button {
    border: 0;
    background: transparent;
    color: var(--red);
    font-weight: 700;
    cursor: pointer;
}
.member-why { background: var(--paper); }
.member-why .section-head p,
.member-ways .section-head p { color: var(--muted); max-width: 640px; margin: 10px auto 0; }
.member-why-grid,
.member-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.member-why-grid article,
.member-ways-grid article {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 16px 40px rgba(0, 45, 90, 0.06);
}
.member-why-grid span {
    display: block;
    color: var(--red);
    font-weight: 800;
    margin-bottom: 8px;
}
.member-why-grid h3,
.member-ways-grid h3 { margin-bottom: 8px; font-size: 22px; }
.member-why-grid p,
.member-ways-grid p { color: var(--muted); margin: 0; }
.member-steps { background: var(--paper); }
.member-steps-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}
.member-steps-list li {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 28px 24px;
    box-shadow: 0 16px 40px rgba(0, 45, 90, 0.06);
    counter-increment: step;
}
.member-steps-list li::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
}
.member-steps-list strong { display: block; font-size: 20px; margin-bottom: 6px; }
.member-steps-list span { color: var(--muted); }

.career-hero {
    position: relative;
    color: #fff;
    padding: 64px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #002a52 0%, #003d73 45%, #005bab 100%);
}
.career-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.career-hero-copy h1 {
    font-size: clamp(38px, 5vw, 60px);
    margin-bottom: 16px;
}
.career-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 28px 0 32px;
}
.career-hero-stats div {
    display: grid;
    gap: 2px;
}
.career-hero-stats strong {
    font-size: 22px;
    line-height: 1.1;
}
.career-hero-stats span {
    color: rgba(255,255,255,.78);
    font-size: 14px;
}
.career-hero-visual {
    display: grid;
    place-items: center;
}
.career-hero-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px 28px;
    max-width: 380px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.career-hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.career-hero-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.career-hero-card p {
    color: rgba(255,255,255,.86);
    margin: 0;
}
.career-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.career-job-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 16px 40px rgba(0, 45, 90, 0.06);
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: grid;
    gap: 12px;
}
.career-job-card:hover,
.career-job-card.is-selected {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 45, 90, 0.1);
    border-color: rgba(0, 91, 171, .25);
}
.career-job-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.career-job-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #eef5fc;
    color: var(--blue);
    display: grid;
    place-items: center;
}
.career-job-icon svg { width: 22px; height: 22px; }
.career-job-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: #eef5fc;
    padding: 5px 10px;
    border-radius: 999px;
}
.career-job-card h3 {
    font-size: 22px;
    margin: 0;
}
.career-job-card > p {
    color: var(--muted);
    margin: 0;
    min-height: 72px;
}
.career-job-perks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}
.career-job-perks li {
    font-size: 12px;
    font-weight: 600;
    color: #2f5f8f;
    background: #f3f8fd;
    padding: 6px 10px;
    border-radius: 999px;
}
.career-job-apply {
    width: 100%;
    margin-top: 4px;
}
.career-apply-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.career-form-wrap {
    scroll-margin-top: calc(var(--header) + 40px);
}
.career-lead {
    color: var(--muted);
    margin-bottom: 24px;
}
.career-open-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}
.career-open-item {
    display: grid;
    gap: 6px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 10px 28px rgba(0, 45, 90, 0.06);
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.career-open-item:hover,
.career-open-item.is-selected {
    transform: translateY(-2px);
    border-color: rgba(0, 91, 171, .25);
    box-shadow: 0 16px 36px rgba(0, 45, 90, 0.1);
}
.career-open-item strong {
    font-size: 18px;
}
.career-open-item > span:last-child {
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.career-open-tag {
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    background: #eef5fc;
    padding: 5px 10px;
    border-radius: 999px;
}
.career-benefits {
    list-style: none;
    display: grid;
    gap: 18px;
    margin: 0 0 28px;
}
.career-benefits li {
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 28px rgba(0, 45, 90, 0.06);
}
.career-benefits strong {
    display: block;
    margin-bottom: 4px;
}
.career-benefits span {
    color: var(--muted);
    font-size: 14px;
}
.resume-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    background: #f7fbff;
    display: grid;
    gap: 6px;
}
.resume-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.resume-card strong { font-size: 15px; }
.resume-card > p {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    color: var(--muted);
}
.resume-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.resume-name {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}
.career-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.career-modal.open {
    opacity: 1;
    visibility: visible;
}
.career-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 22, 42, .62);
    backdrop-filter: blur(4px);
}
.career-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    text-align: center;
    box-shadow: 0 28px 80px rgba(0, 45, 90, .22);
    transform: translateY(12px) scale(.98);
    transition: transform .25s ease;
}
.career-modal.open .career-modal-card {
    transform: translateY(0) scale(1);
}
.career-modal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f7ee;
    color: #146c2e;
    display: grid;
    place-items: center;
}
.career-modal-icon svg { width: 36px; height: 36px; }
.career-modal-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.career-modal-card p {
    color: var(--muted);
    margin: 0 0 22px;
}
.career-modal-card .btn { width: 100%; }

.empty-state { text-align: center; color: var(--muted); padding: 40px 0; }

.post-cover { margin: -40px auto 40px; }
.post-cover img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.post-content { padding-bottom: 80px; }

.rich-text h1, .rich-text h2, .rich-text h3,
.rich-text h4, .rich-text h5, .rich-text h6 {
    color: var(--ink);
    line-height: 1.3;
    margin: 1.4em 0 .5em;
}
.rich-text h1 { font-size: 2rem; }
.rich-text h2 { font-size: 1.6rem; }
.rich-text h3 { font-size: 1.3rem; }
.rich-text h4 { font-size: 1.15rem; }
.rich-text h5 { font-size: 1.05rem; }
.rich-text h6 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.rich-text p, .rich-text ul, .rich-text ol, .rich-text blockquote, .rich-text table, .rich-text pre {
    margin: 0 0 1em;
}
.rich-text ul, .rich-text ol { padding-left: 1.4em; }
.rich-text li { margin: .3em 0; }
.rich-text a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.rich-text img, .rich-text video, .rich-text iframe {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 12px 0;
}
.rich-text iframe { width: 100%; min-height: 280px; }
.rich-text blockquote {
    border-left: 4px solid var(--red);
    padding: 8px 16px;
    background: var(--paper);
    border-radius: 0 12px 12px 0;
    color: var(--ink);
}
.rich-text table { width: 100%; border-collapse: collapse; }
.rich-text th, .rich-text td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.rich-text th { background: var(--blue-soft); }
.rich-text pre, .rich-text code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: #0b1624;
    color: #e8f2fb;
    border-radius: 10px;
}
.rich-text pre { padding: 14px 16px; overflow: auto; }
.rich-text :not(pre) > code { background: var(--blue-soft); color: var(--blue-deep); padding: 2px 6px; border-radius: 6px; }
.rich-text hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.testimonial-body.rich-text h1,
.testimonial-body.rich-text h2,
.testimonial-body.rich-text h3 { font-size: 1.15rem; margin: .6em 0 .35em; }
.testimonial-body.rich-text p:last-child { margin-bottom: 0; }

.lightbox {
    position: fixed; inset: 0;
    background: rgba(8,16,28,.88);
    display: none;
    place-items: center;
    z-index: 80;
    padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 18px; right: 24px;
    background: transparent; border: 0; color: #fff;
    font-size: 42px; cursor: pointer;
}

.site-footer { background: #0b1624; color: #d5dee8; padding-top: 64px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}
.footer-brand img { height: 70px; margin-bottom: 14px; background: #fff; border-radius: 12px; padding: 6px; }
.footer-grid h4 { color: #fff; margin-bottom: 14px; }
.footer-grid a, .footer-grid p { display: block; margin-bottom: 8px; color: #b7c3d0; }
.footer-grid a:hover { color: #fff; }
.footer-contact a { line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: 14px; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-inner p { margin: 0; color: #b7c3d0; }
.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-legal a {
    color: #b7c3d0;
    text-decoration: none;
    transition: color .2s;
}
.footer-legal a:hover { color: #fff; }
.footer-legal span { color: rgba(255,255,255,.35); }

.faq-section .section-head p {
    color: var(--muted);
    max-width: 640px;
    margin: 10px auto 0;
}
.faq-list {
    width: min(820px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.05);
    overflow: hidden;
}
.faq-item[open] {
    border-color: rgba(0, 91, 171, 0.22);
    box-shadow: 0 16px 36px rgba(0, 45, 90, 0.08);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 56px 18px 22px;
    font-weight: 600;
    line-height: 1.45;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .2s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
}
.faq-answer {
    padding: 0 22px 20px;
    color: var(--muted);
}
.faq-answer a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}
.faq-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.whatsapp-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 71;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25d366;
    box-shadow: 0 14px 32px rgba(18, 140, 70, 0.38);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float svg {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
}
.whatsapp-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 36px rgba(18, 140, 70, 0.42);
}
.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    animation: whatsappPulse 2.2s ease-out infinite;
}
.whatsapp-float-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #111827;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    padding: 8px 12px;
    border-radius: 999px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    --progress: 0;
    position: fixed;
    right: 28px;
    bottom: 100px;
    z-index: 70;
    width: 56px;
    height: 56px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 61, 115, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s, box-shadow .2s, background .2s;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.back-to-top:hover {
    background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
    box-shadow: 0 16px 36px rgba(183, 28, 28, 0.32);
    transform: translateY(-3px) scale(1);
}
.back-to-top:hover .back-to-top-icon svg {
    animation: backToTopBounce .7s ease infinite;
}
.back-to-top:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}
.back-to-top-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.back-to-top-track,
.back-to-top-fill {
    fill: none;
    stroke-width: 3;
}
.back-to-top-track { stroke: rgba(255,255,255,.22); }
.back-to-top-fill {
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 125.66;
    stroke-dashoffset: calc(125.66 * (1 - var(--progress)));
    transition: stroke-dashoffset .12s linear;
}
.back-to-top-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
.back-to-top-icon svg { width: 22px; height: 22px; }

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255,255,255,.1);
    transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
}
.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.linkedin:hover { background: #0a66c2; }
.social-btn.twitter:hover { background: #111; }
.social-btn.youtube:hover { background: #ff0000; }
.social-btn.whatsapp:hover { background: #25d366; }

.social-footer { margin-top: 18px; }
.footer-grid .social-btn {
    display: inline-flex;
    margin-bottom: 0;
    color: #fff;
}
.social-topbar { gap: 6px; }
.social-topbar .social-btn {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.12);
}
.social-topbar .social-btn svg { width: 14px; height: 14px; }

.social-contact .social-btn {
    width: 44px;
    height: 44px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
}
.social-contact .social-btn.facebook { color: #1877f2; }
.social-contact .social-btn.instagram { color: #dc2743; }
.social-contact .social-btn.linkedin { color: #0a66c2; }
.social-contact .social-btn.twitter { color: #111; }
.social-contact .social-btn.youtube { color: #ff0000; }
.social-contact .social-btn.whatsapp { color: #25d366; }
.social-contact .social-btn:hover { color: #fff; }

.social-nav { gap: 8px; }
.social-nav .social-btn {
    width: 38px;
    height: 38px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
}
.social-nav .social-btn.facebook { color: #1877f2; }
.social-nav .social-btn.instagram { color: #dc2743; }
.social-nav .social-btn.linkedin { color: #0a66c2; }
.social-nav .social-btn.twitter { color: #111; }
.social-nav .social-btn.youtube { color: #ff0000; }
.social-nav .social-btn.whatsapp { color: #25d366; }
.social-nav .social-btn:hover { color: #fff; }

@media (max-width: 960px) {
    :root { --section-y: 56px; }
    .topbar-inner { flex-wrap: wrap; justify-content: center; }
    .topbar-inner > span { display: none; }
    .topbar-phone { display: none; }
    .nav-toggle { display: block; }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 40;
        background: rgba(8, 18, 32, .48);
        backdrop-filter: blur(6px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease;
    }
    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100dvh - var(--header));
        overflow: hidden;
        background: linear-gradient(180deg, #fff 0%, #f7fafd 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        border-radius: 0 0 28px 28px;
        box-shadow: 0 28px 70px rgba(8, 30, 60, .22);
        border-top: 1px solid var(--line);
        z-index: 3;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .32s ease, transform .32s cubic-bezier(.22, 1, .36, 1), visibility .32s;
    }
    .nav::before {
        content: "";
        height: 3px;
        background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
        display: block;
    }
    .nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links,
    .nav-mobile-foot {
        display: flex;
        flex-direction: column;
    }
    .nav-mobile-head {
        display: block;
        flex-shrink: 0;
        padding: 18px 22px 8px;
    }
    .nav-mobile-head .eyebrow { margin-bottom: 4px; }
    .nav-mobile-head p:last-child {
        color: var(--muted);
        font-size: 14px;
    }
    .nav-links {
        padding: 6px 18px 8px;
        gap: 4px;
        flex: 1 1 auto;
        min-height: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -.02em;
    }
    .nav-links a::after {
        content: none;
        display: none;
    }
    .nav-links a:hover {
        background: var(--blue-soft);
        color: var(--blue-deep);
    }
    .nav-links a.active {
        background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
        color: #fff;
        box-shadow: 0 10px 22px rgba(0, 91, 171, .28);
    }
    .nav-links a.active:hover {
        background: linear-gradient(90deg, var(--red-deep) 0%, var(--blue-deep) 100%);
        color: #fff;
    }
    .nav.open .nav-links a {
        animation: navLinkIn .4s ease both;
    }
    .nav.open .nav-links a:nth-child(1) { animation-delay: .05s; }
    .nav.open .nav-links a:nth-child(2) { animation-delay: .09s; }
    .nav.open .nav-links a:nth-child(3) { animation-delay: .13s; }
    .nav.open .nav-links a:nth-child(4) { animation-delay: .17s; }
    .nav.open .nav-links a:nth-child(5) { animation-delay: .21s; }
    .nav.open .nav-links a:nth-child(6) { animation-delay: .25s; }
    .nav.open .nav-links a:nth-child(7) { animation-delay: .29s; }
    .nav-mobile-foot {
        flex-shrink: 0;
        padding: 12px 18px 20px;
        gap: 14px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -10px 24px rgba(8, 30, 60, .04);
    }
    .nav-cta {
        width: 100%;
        margin: 0;
        color: #fff;
        padding: 15px 26px;
        font-size: 16px;
    }
    .nav-mobile-meta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .nav-phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--blue-deep);
        font-size: 15px;
    }
    .nav-phone svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    .social-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    body.nav-open { overflow: hidden; }
    body.nav-open .back-to-top,
    body.nav-open .whatsapp-float { opacity: 0; pointer-events: none; }
    .map-float-card {
        position: static;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid var(--line);
    }
    .contact-map iframe { height: 320px; }
    .intro-grid, .about-story, .about-story.reverse,
    .contact-grid, .mvv-pair, .founder-card,
    .blog-grid, .footer-grid, .form-row,
    .member-hero-grid,
    .testimonial-slider:not(.is-slider) .testimonial-track {
        grid-template-columns: 1fr;
        display: grid;
    }
    .member-hero-copy { position: static; }
    .hero-content { padding: 0 0 64px; max-width: 100%; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(6,22,42,.55) 0%, rgba(6,22,42,.82) 72%, rgba(6,22,42,.9) 100%);
    }
    .hero h1 { font-size: clamp(32px, 7.5vw, 52px); }
    .hero-marquee-item { padding: 0 16px; gap: 8px; }
    .hero-marquee-group { padding: 7px 0; }
    .member-why-grid, .member-ways-grid, .member-steps-list {
        grid-template-columns: 1fr 1fr;
    }
    .career-hero-inner,
    .career-apply-grid,
    .career-jobs-grid {
        grid-template-columns: 1fr;
    }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 18px; }
    .timeline li {
        grid-template-columns: 1fr;
        padding-left: 48px;
        gap: 0;
    }
    .timeline li:nth-child(odd) .timeline-card,
    .timeline li:nth-child(even) .timeline-card {
        grid-column: 1;
    }
    .timeline-dot { left: 18px; }
    .gallery-grid,
    .gallery-grid.preview {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-slider.is-slider .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .section-head.split { text-align: left; }
    .programs .section-head.split,
    .gallery-preview .section-head.split {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .programs .section-head.split .btn,
    .gallery-preview .section-head.split .btn {
        padding: 11px 18px;
        font-size: 14px;
    }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; min-width: 0; }
    .intro-visual img, .about-photo img, .founder-photo img, .blog-thumb, .post-cover img { height: 280px; }
    .founder-card { padding: 16px; gap: 24px; }
    .founder-copy { padding: 4px 8px 12px; }
    .hero { min-height: 78vh; }
    .hero-content { padding: 0 0 52px; }
    .hero-actions .btn { min-width: 0; }
    .intro-badge { left: 16px; }
    .whatsapp-float { right: 18px; bottom: 18px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .whatsapp-float-label { display: none; }
    .back-to-top { right: 18px; bottom: 82px; width: 50px; height: 50px; }
    .mvv-value-list { grid-template-columns: 1fr 1fr; }
    .mvv-card, .mvv-values { padding: 28px 22px 24px; }
    .mvv-watermark { font-size: 58px; }
}
@media (max-width: 560px) {
    :root { --section-y: 48px; }
    .social-topbar { justify-content: center; }
    .mvv-value-list { grid-template-columns: 1fr; }
    .mvv-values-copy { flex-direction: column; gap: 16px; }
    .mvv-card h3, .mvv-values-copy h3 { font-size: 24px; }
    .history-highlights { grid-template-columns: 1fr; }
    .counter-grid article { padding: 20px 10px; }
    .counter-grid .count { font-size: 32px; }
    .testimonial-slider.is-slider {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        column-gap: 16px;
    }
    .testimonial-slider.is-slider .testimonial-viewport {
        grid-column: 1 / -1;
        width: 100%;
    }
    .testimonial-slider.is-slider .testimonial-card {
        flex-basis: 100%;
    }
    .testimonial-nav { width: 42px; height: 42px; }
    .testimonial-slider.is-slider .testimonial-nav.prev { grid-row: 2; justify-self: end; }
    .testimonial-slider.is-slider .testimonial-nav.next { grid-row: 2; justify-self: start; }
    .member-why-grid, .member-ways-grid, .member-steps-list { grid-template-columns: 1fr; }
    .career-jobs-grid { grid-template-columns: 1fr; }
    .career-job-card > p { min-height: 0; }
    .programs-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; gap: 16px; }
    .partner-grid-card { padding: 22px 24px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-media { aspect-ratio: 4 / 3; }
    .programs .section-head.split h2 {
        font-size: clamp(22px, 5.6vw, 32px);
    }
    .programs .section-head.split .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    .member-form .field-caption { white-space: normal; }
}

@media (max-width: 720px) {
    .ss-dots,
    .ss-arc { display: none; }
    .ss-ring-a { width: 210px; height: 210px; }
    .ss-blob-a { width: 160px; height: 160px; }
}

.site-cursor {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease;
}
.site-cursor.is-on { opacity: 1; }
.site-cursor.is-text { opacity: 0; }
.site-cursor-dot,
.site-cursor-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    will-change: transform;
}
.site-cursor-dot span,
.site-cursor-ring span {
    display: block;
    border-radius: 50%;
}
.site-cursor-dot span {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #ff6a12;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 0 8px 2px rgba(255, 106, 18, 0.7);
}
.site-cursor-ring span {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
    background: radial-gradient(circle, rgba(255, 106, 18, 0.32) 0%, rgba(255, 106, 18, 0.14) 48%, rgba(255, 106, 18, 0.04) 70%, transparent 74%);
    border: 1.5px solid rgba(255, 122, 32, 0.45);
    box-shadow: 0 0 24px rgba(255, 106, 18, 0.28);
    transform: scale(0.15);
    opacity: 0;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
}
.site-cursor.is-click .site-cursor-ring span {
    transform: scale(1);
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .site-cursor { display: block; }
}

@media (prefers-reduced-motion: reduce) {
    .nav,
    .nav-backdrop,
    .nav-toggle span {
        transition: none;
    }
    .nav.open .nav-links a { animation: none; }
    .hero-media img { animation: none; transform: none; }
    .ss-blob { animation: none; }
    .timeline-card {
        opacity: 1;
        transform: none;
        translate: 0;
        animation: none;
    }
    .timeline-card:hover,
    .history-highlights article:hover {
        transform: none;
    }
    .timeline-card::before,
    .history-highlights article::before {
        transition: none;
    }
    .mvv-card,
    .mvv-value-list li {
        transition: none;
    }
    .mvv-card:hover,
    .mvv-value-list li:hover {
        transform: none;
    }
    .program-card:hover { transform: none; }
    .program-card:hover .program-media img { transform: none; }
    .team-card {
        opacity: 1;
        animation: none;
    }
    .team-card:hover { transform: none; }
    .team-card:hover .team-media img { animation: none; transform: none; }
    .back-to-top,
    .back-to-top-fill,
    .whatsapp-float { transition: none; }
    .back-to-top:hover .back-to-top-icon svg { animation: none; }
    .whatsapp-float-pulse { animation: none; }
    .site-cursor,
    .site-cursor-dot span,
    .site-cursor-ring span { transition: none; }
}
