:root {
    --navy: #0d1b2e;
    --navy2: #122240;
    --navy3: #1a3055;
    --sky: #a8d4f0;
    --sky2: #c8e6f8;
    --sky3: #e8f4fc;
    --steel: #6fa8d0;
    --steel2: #4a87be;
    --silver: #d0dce8;
    --silver2: #b0c8dc;
    --white: #ffffff;
    --cream: #f4f8fc;
    --gold: #c8a84a;
    --gold2: #e0c070;
    --accent: #2a7fc0;
    --accent2: #1a5fa0;
    --muted: #6a8aaa;
    --muted2: #4a6a8a;
    --ink: #0a1520;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 64px;
    background: rgba(13, 27, 46, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(168, 212, 240, 0.1);
    transition: all 0.3s;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--sky);
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 9px 22px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent2) !important;
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sky);
    font-size: 24px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-globe-bg {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 70vh;
    height: 70vh;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 35%,
        rgba(42, 127, 192, 0.25) 0%,
        rgba(26, 48, 85, 0.4) 40%,
        rgba(13, 27, 46, 0.8) 70%,
        transparent 100%
    );
    border: 1px solid rgba(168, 212, 240, 0.1);
    animation: globeSpin 40s linear infinite;
}

.hero-globe-ring {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    width: 72vh;
    height: 72vh;
    border-radius: 50%;
    border: 1px solid rgba(168, 212, 240, 0.06);
}

.hero-globe-ring2 {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 78vh;
    height: 78vh;
    border-radius: 50%;
    border: 1px solid rgba(168, 212, 240, 0.04);
}

@keyframes globeSpin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 212, 240, 0.4);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-20vh) scale(1.5);
        opacity: 0;
    }
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 212, 240, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 212, 240, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 64px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(42, 127, 192, 0.15);
    border: 1px solid rgba(42, 127, 192, 0.3);
    color: var(--sky);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-headline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 7.5vw, 100px);
    font-weight: 700;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-headline .sky {
    color: var(--sky);
}

.hero-headline .gld {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--white);
    padding: 15px 34px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 127, 192, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--sky);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(168, 212, 240, 0.3);
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline:hover {
    border-color: var(--sky);
    background: rgba(168, 212, 240, 0.06);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeUp 0.8s 0.6s ease both;
    flex-wrap: wrap;
}

.logo-img {
    display: inline-block;
    animation: bouncePro 2.2s ease-in-out infinite;
}

.logo-img {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

@keyframes bouncePro {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
    }
}

.h-stat-n {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    color: var(--sky);
    letter-spacing: 2px;
    line-height: 1;
    display: block;
}

.h-stat-l {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
    display: block;
}

/* ── TICKER ── */
.ticker {
    background: var(--accent2);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    font-family: "Bebas Neue", sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 44px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.ticker-item::after {
    content: "◆";
    font-size: 8px;
    opacity: 0.5;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION ── */
.section {
    padding: 110px 64px;
}

.si {
    max-width: 1160px;
    margin: 0 auto;
}

.si.narrow {
    max-width: 800px;
}

.si.wide {
    max-width: 1280px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--accent);
}

.eyebrow.light {
    color: var(--sky);
}

.eyebrow.light::before {
    background: var(--sky);
}

.eyebrow.gold {
    color: var(--gold);
}

.eyebrow.gold::before {
    background: var(--gold);
}

h2.t {
    font-family: "DM Serif Display", serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 20px;
}

h2.t .sky {
    color: var(--accent2);
}

h2.t .gld {
    color: var(--gold);
}

h2.t.light {
    color: var(--white);
}

h2.t.light .sky {
    color: var(--sky);
}

.lead {
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--muted2);
    line-height: 1.8;
    max-width: 640px;
    font-weight: 300;
}

.lead.light {
    color: rgba(255, 255, 255, 0.55);
}

.blue-rule {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--sky));
    margin: 24px 0;
}

/* ── ABOUT ── */
.about {
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: linear-gradient(145deg, var(--navy2), var(--navy3));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-inner {
    background: linear-gradient(145deg, var(--navy2) 0%, var(--navy3) 100%);
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 40% 35%,
            rgba(42, 127, 192, 0.3) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 75% 70%,
            rgba(200, 168, 74, 0.12) 0%,
            transparent 45%
        );
}

.about-globe-icon {
    font-size: 100px;
    opacity: 0.15;
    position: relative;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 24px 28px;
    text-align: center;
}

.about-badge-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 44px;
    color: var(--white);
    line-height: 1;
    display: block;
}

.about-badge-lbl {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about-content p {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-content p strong {
    color: var(--ink);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tag {
    display: inline-block;
    background: var(--sky3);
    border: 1px solid rgba(42, 127, 192, 0.15);
    color: var(--accent2);
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── SECTORS ── */
.sectors {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.sectors::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 80% 30%,
            rgba(42, 127, 192, 0.1) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 40% 60% at 10% 80%,
            rgba(200, 168, 74, 0.06) 0%,
            transparent 50%
        );
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: rgba(168, 212, 240, 0.08);
}

.sector-card {
    background: rgba(13, 27, 46, 0.9);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.sector-card:hover {
    background: rgba(26, 48, 85, 0.95);
}

.sector-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.sector-card:hover::after {
    transform: scaleX(1);
}

.sector-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 56px;
    color: rgba(168, 212, 240, 0.06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}

.sector-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.sector-title {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.sector-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
}

/* ── CONSULTANCY ── */
.consult {
    background: var(--cream);
}

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

.consult-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.c-card {
    background: var(--white);
    border: 1px solid rgba(42, 127, 192, 0.1);
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13, 27, 46, 0.1);
    border-color: rgba(42, 127, 192, 0.25);
}

.c-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--sky));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.c-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.c-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.c-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

.consult-text p {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* ── FOUNDER ── */
.founder {
    background: var(--navy2);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 50% 70% at 0% 50%,
        rgba(42, 127, 192, 0.12) 0%,
        transparent 55%
    );
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-img-wrap {
    position: relative;
}

.founder-card {
    background: var(--navy3);
    border: 1px solid rgba(168, 212, 240, 0.1);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 40%,
        rgba(42, 127, 192, 0.2) 0%,
        transparent 60%
    );
}

.founder-initials {
    font-family: "Cormorant Garamond", serif;
    font-size: 120px;
    font-weight: 700;
    color: rgba(168, 212, 240, 0.1);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.founder-plate {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent2), var(--navy));
    padding: 26px 28px;
    border-top: 2px solid var(--accent);
}

.founder-plate-name {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.founder-plate-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
}

.founder-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-style: italic;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 28px;
}

.founder-quote::before {
    content: "“";
    font-size: 80px;
    color: rgba(168, 212, 240, 0.1);
    line-height: 0;
    display: block;
    margin-bottom: 16px;
}

.founder-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin-bottom: 16px;
}

.founder-bio strong {
    color: rgba(255, 255, 255, 0.9);
}

.founder-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.chip {
    display: inline-block;
    background: rgba(42, 127, 192, 0.12);
    border: 1px solid rgba(42, 127, 192, 0.25);
    color: var(--sky);
    padding: 7px 15px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── ELECTION ARM ── */
.election {
    background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.election::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 212, 240, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 212, 240, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.election-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.e-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 212, 240, 0.1);
    padding: 38px 30px;
    transition: all 0.3s;
}

.e-card:hover {
    background: rgba(42, 127, 192, 0.1);
    border-color: rgba(168, 212, 240, 0.25);
    transform: translateY(-4px);
}

.e-icon {
    font-size: 34px;
    margin-bottom: 18px;
    display: block;
}

.e-title {
    font-family: "DM Serif Display", serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 10px;
}

.e-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* ── IMPACT ── */
.impact {
    background: linear-gradient(135deg, var(--accent2) 0%, var(--navy2) 100%);
}

.impact-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1160px;
    margin: 0 auto;
}

.impact-item {
    text-align: center;
    padding: 56px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.impact-item:last-child {
    border-right: none;
}

.impact-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    color: var(--white);
    line-height: 1;
    display: block;
}

.impact-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
    display: block;
}

/* ── MEMBERSHIP FORM ── */
.membership {
    background: var(--navy);
}

.form-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    margin-top: 56px;
}

.form-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin-bottom: 16px;
}

.form-left .benefit-list {
    list-style: none;
    margin-top: 24px;
}

.form-left .benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.form-left .benefit-list li::before {
    content: "→";
    color: var(--sky);
    font-weight: 700;
    flex-shrink: 0;
}

.reg-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 212, 240, 0.12);
    padding: 44px 40px;
}

.form-section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--sky);
    margin-bottom: 20px;
    margin-top: 32px;
    display: block;
    border-bottom: 1px solid rgba(168, 212, 240, 0.1);
    padding-bottom: 8px;
}

.form-section-title:first-child {
    margin-top: 0;
}

.fg {
    margin-bottom: 14px;
}

.fg label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 212, 240, 0.12);
    color: var(--white);
    padding: 13px 16px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.fg input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--steel);
}

.fg select {
    color: rgba(255, 255, 255, 0.5);
}

.fg select option {
    background: var(--navy2);
    color: var(--white);
}

.fg textarea {
    resize: vertical;
    min-height: 80px;
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.frow3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--white);
    border: none;
    padding: 17px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(42, 127, 192, 0.4);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

/* ── DONATE ── */
.donate {
    background: var(--cream);
}

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

.donate-text p {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.use-list {
    list-style: none;
    margin-top: 20px;
}

.use-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(42, 127, 192, 0.1);
    font-size: 14px;
    color: var(--muted2);
}

.use-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.donate-box {
    background: var(--navy);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.donate-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--sky), var(--gold));
}

.d-lbl {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 20px;
    display: block;
}

.d-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.d-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 212, 240, 0.15);
    color: var(--white);
    padding: 13px 8px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.d-btn:hover,
.d-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.d-custom input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 212, 240, 0.15);
    color: var(--white);
    padding: 13px 16px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.d-custom input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.d-custom input:focus {
    border-color: var(--sky);
}

.d-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.d-submit:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

.d-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 72px 64px 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(168, 212, 240, 0.07);
}

.footer-brand img {
    height: 44px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.8;
    max-width: 260px;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--sky);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
}

.footer-tag {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.18);
}

.social-links {
    display: flex;
    gap: 12px;
}

.soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 212, 240, 0.15);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: all 0.2s;
}

.soc:hover {
    border-color: var(--sky);
    color: var(--sky);
    background: rgba(168, 212, 240, 0.05);
}

/* ── UNSPLASH PHOTO OVERLAYS ── */
.photo-section {
    position: relative;
    overflow: hidden;
}

.photo-overlay {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    filter: grayscale(30%);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-l {
    opacity: 0;
    transform: translateX(-22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-l.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-r {
    opacity: 0;
    transform: translateX(22px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-r.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-btn {
        display: block;
    }

    .section {
        padding: 72px 24px;
    }

    .hero-inner {
        padding: 0 24px;
    }

    .about-grid,
    .consult-grid,
    .founder-grid,
    .donate-grid,
    .form-intro {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .election-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hero-globe-bg,
    .hero-globe-ring,
    .hero-globe-ring2 {
        display: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 18px;
    }

    .hero-inner {
        padding: 0 18px;
    }

    .hero-stats {
        gap: 24px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .election-grid {
        grid-template-columns: 1fr;
    }

    .frow,
    .frow3 {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .impact-inner {
        grid-template-columns: 1fr 1fr;
    }

    .d-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .consult-cards {
        grid-template-columns: 1fr;
    }
}

/* ── PARTNERSHIP ── */
.partnership {
    background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.partnership::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 212, 240, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 212, 240, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 212, 240, 0.1);
    padding: 40px 32px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--sky));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.partner-card:hover {
    background: rgba(42, 127, 192, 0.08);
    border-color: rgba(168, 212, 240, 0.25);
    transform: translateY(-4px);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-icon {
    font-size: 38px;
    margin-bottom: 20px;
    display: block;
}

.partner-title {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 20px;
}

.partner-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pb {
    display: inline-block;
    background: rgba(42, 127, 192, 0.12);
    border: 1px solid rgba(42, 127, 192, 0.2);
    color: var(--sky);
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.partner-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 212, 240, 0.15);
    padding: 56px 52px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.partner-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--sky), var(--gold));
}

.partner-cta-tag {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.partner-cta-heading {
    font-family: "DM Serif Display", serif;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
}

.partner-cta-heading span {
    color: var(--sky);
}

.partner-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 32px;
}

.partner-cta-stats {
    display: flex;
    gap: 36px;
}

.pcs-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.pcs-lbl {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partner-cta {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px 28px;
    }
}

@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-cta-stats {
        gap: 20px;
    }
}

.h-stat-n {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ── HERO MOBILE FIX (ADDED) ── */

/* Tablet and below */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-inner {
        max-width: 680px;
    }

    .hero-inner.logo {
        margin-top: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
        text-align: center;
    }

    .logo-img {
        margin: 0 auto;
        max-width: 180px;
    }
}

/* Mobile phones */
@media (max-width: 640px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 34px;
        line-height: 1.1;
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-inner.logo {
        margin-top: 30px;
    }

    .logo-img {
        max-width: 140px;
    }

    .hero-stats {
        gap: 18px;
        padding-top: 18px;
    }

    .h-stat-n {
        font-size: 28px;
    }

    .h-stat-l {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* ── BACK TO TOP (ADDED) ── */
.btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(13, 27, 46, 0.25);
}

/* show state */
.btt.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* hover effect */
.btt:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 40px rgba(42, 127, 192, 0.4);
}

/* click press */
.btt:active {
    transform: scale(0.95);
}

/* mobile tweak */
@media (max-width: 640px) {
    .btt {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ── HERO SLIDER (ADDED) ── */

.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* smooth exit */
.hero-slide.exit {
    opacity: 0;
    transform: translateX(-40px);
}

/* mobile spacing fix */
@media (max-width: 640px) {
    .hero-slider {
        min-height: 420px;
    }
}

.breadcrumb-section {
    background: linear-gradient(135deg, #0d1b2e, #1b3a5c);
    padding: 60px 0;
    color: #fff;
}

.breadcrumb-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-left {
    max-width: 60%;
}

.breadcrumb-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-sub {
    font-size: 14px;
    color: #a8d4f0;
}

.breadcrumb-right {
    text-align: right;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb li a {
    color: #a8d4f0;
    text-decoration: none;
}

.breadcrumb li a:hover {
    color: #ffffff;
}

.breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}
