:root {
    --brand: #1e5fb4;
    --brand-dark: #143f7a;
    --brand-light: #3a8bcf;
    --brand-glow: #5fa3df;
    --accent: #f47c20;
    --accent-dark: #d6651a;
    --accent-light: #ff9d5a;
    --ink: #1a2942;
    --muted: #5a6b7d;
    --bg: #ffffff;
    --bg-soft: #faf7f2;
    --bg-band: #f3ede4;
    --border: #e8e2d6;
    --success: #2e9d6a;
    --shadow-sm: 0 4px 12px rgba(30, 95, 180, 0.06);
    --shadow: 0 12px 40px rgba(30, 95, 180, 0.1);
    --shadow-lg: 0 25px 60px rgba(30, 95, 180, 0.18);
    --shadow-gold: 0 10px 30px rgba(244, 124, 32, 0.35);
    --radius: 16px;
    --grad-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    --grad-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection {
    background: var(--accent);
    color: #fff;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
    background: var(--grad-brand);
    border-radius: 10px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--brand);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
}
h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1.25rem;
}
a {
    color: var(--brand);
    text-decoration: none;
    transition: 0.25s;
}
img {
    max-width: 100%;
    display: block;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}
.btn-outline:hover {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}
.btn-dark {
    background: var(--grad-brand);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-ghost {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 124, 32, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(244, 124, 32, 0.25);
}

.section {
    padding: 100px 0;
    position: relative;
}
.section-soft {
    background: var(--bg-soft);
}
.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}
.section-title p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 1.08rem;
}

/* TOPBAR */
.topbar {
    background: var(--brand-dark);
    color: #cfe0ef;
    font-size: 0.85rem;
    padding: 9px 0;
}
.topbar .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.topbar a {
    color: #cfe0ef;
    margin-left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.topbar a:hover {
    color: var(--accent);
}
.topbar i {
    color: var(--accent);
    margin-right: 6px;
}
.topbar .social a {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
}
.topbar .social a i {
    color: #fff;
    margin: 0;
}
.topbar .social a:hover {
    background: var(--accent);
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}
header.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--brand);
    text-decoration: none;
}
.logo-mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.05);
}
.logo span {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links > li {
    position: relative;
}
.nav-links > li > a {
    padding: 10px 14px;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.94rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    position: relative;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
    transform: translateX(-50%);
}
.nav-links > li > a:hover {
    color: var(--brand);
}
.nav-links > li > a:hover::after {
    width: 70%;
}
.nav-links > li > a.active {
    color: var(--brand);
    font-weight: 700;
}
.nav-links > li > a.active::after {
    width: 70%;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: var(--shadow-lg);
    border-radius: 14px;
    padding: 12px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    border: 1px solid var(--border);
}
.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}
.dropdown li a i {
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    color: var(--brand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: 0.3s;
}
.dropdown li a:hover {
    background: var(--bg-soft);
    color: var(--brand);
    transform: translateX(4px);
}
.dropdown li a:hover i {
    background: var(--grad-brand);
    color: #fff;
}
.dropdown li a .price-tag {
    margin-left: auto;
    background: #e6f7ee;
    color: var(--success);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand);
    cursor: pointer;
}

/* HERO (About-specific — smaller than home) */
.about-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
    color: #fff;
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.22) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: float 9s ease-in-out infinite;
}
.about-hero::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    bottom: -250px;
    left: -200px;
    border-radius: 50%;
    animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 40px) scale(1.05);
    }
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.6;
}
.about-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.about-hero h1 {
    color: #fff;
    margin-bottom: 18px;
}
.about-hero h1 span {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.about-hero p.lead {
    font-size: 1.15rem;
    color: #e0ecf6;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}
.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #cfe0ef;
}
.breadcrumb a {
    color: #cfe0ef;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb i {
    margin: 0 8px;
    font-size: 0.65rem;
    color: var(--accent);
}
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* OUR JOURNEY (2-col) */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.journey-img {
    aspect-ratio: 4/5;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.journey-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(244, 124, 32, 0.2), transparent 60%);
}
.journey-img .ico-big {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: #fff;
    opacity: 0.85;
}
.journey-img .stamp {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    color: var(--brand);
    padding: 14px 18px;
    border-radius: 14px;
    font-family: 'Poppins';
    font-weight: 700;
    box-shadow: var(--shadow);
}
.journey-img .stamp small {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 600;
}
.journey-img .stamp strong {
    font-size: 1.3rem;
    color: var(--brand);
}
.journey-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.journey-text p strong {
    color: var(--ink);
}

/* MISSION + VISION */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.mv-card:hover::before {
    transform: scaleX(1);
}
.mv-card .ico-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--grad-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}
.mv-card.vision .ico-wrap {
    background: var(--grad-gold);
    box-shadow: var(--shadow-gold);
}
.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.mv-card p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* WHO WE HELP (4 cards) */
.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.who-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: 0.4s;
    position: relative;
}
.who-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.who-card .ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: 0.4s;
}
.who-card:hover .ico {
    background: var(--grad-gold);
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}
.who-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.who-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* HOW WE HELP (5 steps in alternating rows) */
.help-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
}
.help-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: 0.3s;
}
.help-item:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.help-item .num {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--grad-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}
.help-item h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}
.help-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.team-card .photo {
    height: 220px;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}
.team-card.instructors .photo {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.team-card.support .photo {
    background: linear-gradient(135deg, var(--brand-light), var(--success));
}
.team-card .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
}
.team-card .body {
    padding: 28px 24px;
}
.team-card .role-tag {
    display: inline-block;
    background: rgba(244, 124, 32, 0.12);
    color: var(--accent-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(244, 124, 32, 0.25);
}
.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.team-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* STATS */
.stats-band {
    background: var(--brand-dark);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.15), transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
}
.stats-band .container {
    position: relative;
    z-index: 1;
}
.stats-band h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}
.stat-card .ico {
    width: 56px;
    height: 56px;
    background: var(--grad-gold);
    color: #fff;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    box-shadow: var(--shadow-gold);
}
.stat-card .n {
    font-family: 'Poppins';
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-card .l {
    color: #cfe0ef;
    font-size: 0.92rem;
    margin-top: 8px;
    font-weight: 500;
}

/* WHY DIFFERENT (4-feature) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
}
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-card:hover::before {
    transform: scaleX(1);
}
.why-card .ico {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    transition: 0.4s;
}
.why-card:hover .ico {
    transform: rotate(-8deg) scale(1.08);
    background: var(--grad-gold);
}
.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.why-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* CTA */
.cta-band {
    background: var(--grad-gold);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}
.cta-band::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.cta-band > * {
    position: relative;
    z-index: 1;
}
.cta-band h2 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 2.2rem;
}
.cta-band p {
    margin-bottom: 28px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* FOOTER (same as index) */
footer {
    background: var(--brand-dark);
    color: #cfe0ef;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.05), transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}
.foot-grid h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.08rem;
    position: relative;
    padding-bottom: 10px;
}
.foot-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.foot-grid p,
.foot-grid a {
    color: #a9c0d4;
    font-size: 0.92rem;
    line-height: 1.95;
}
.foot-grid ul {
    list-style: none;
}
.foot-grid ul li a {
    transition: 0.3s;
    display: inline-block;
}
.foot-grid ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}
.foot-grid .contact-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}
.foot-grid .contact-row i {
    color: var(--accent);
    margin-top: 5px;
}
.foot-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s;
}
.foot-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-4px);
}
.newsletter {
    display: flex;
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 16px;
    outline: none;
    font-size: 0.9rem;
    font-family: 'Inter';
}
.newsletter input::placeholder {
    color: #7a92ab;
}
.newsletter button {
    background: var(--grad-gold);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
}
.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.86rem;
    color: #a9c0d4;
}
.foot-bottom a {
    color: #a9c0d4;
}
.foot-bottom a:hover {
    color: var(--accent);
}

/* FLOAT */
.float-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    cursor: pointer;
}
.float-cta:hover {
    transform: scale(1.15) rotate(8deg);
}
.float-cta::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .journey-grid,
    .mv-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }
    .who-grid,
    .team-grid,
    .stats-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        box-shadow: var(--shadow);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links > li > a {
        padding: 12px 16px;
    }
    .menu-toggle {
        display: block;
    }
    .section {
        padding: 70px 0;
    }
    .cta-band {
        padding: 36px;
    }
    .help-item {
        flex-direction: column;
        gap: 14px;
    }
}

.icon-rocket {
    font-size: 3rem;
    color: #fff;
    background: var(--brand);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}
