:root {
    --gold: #FFDE59;
    --dark-blue: #0A1628;
    --mid-blue: #0E2044;
    --accent-blue: #1A3A6B;
    --light-blue: #1E4A8A;
    --white: #FFFFFF;
    --off-white: #F4F6FA;
    --text-muted: #8A9BB8;
    --font-title: 'Teko', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-blue);
    margin: 0;
    padding: 0;
}

.asec-wrap {
    font-family: var(--font-body);
    color: var(--dark-blue);
    background: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Light section (white bg) */
.asec-section-light {
    background: #ffffff;
}

.asec-section-light .asec-section-title {
    color: var(--dark-blue);
}

.asec-section-light .asec-section-title em {
    color: var(--accent-blue);
}

.asec-section-light .asec-label {
    color: var(--accent-blue);
}

.asec-section-light .asec-label::before {
    background: var(--accent-blue);
}

.asec-section-light .asec-body-text {
    color: #3a4a60;
}

.asec-section-light .asec-hero-eyebrow {
    color: var(--accent-blue);
}

/* Dark section (dark blue bg) */
.asec-section-dark {
    background: var(--dark-blue);
    color: var(--white);
}

.asec-section-dark .asec-section-title {
    color: var(--white);
}

.asec-section-dark .asec-section-title em {
    color: var(--gold);
}

.asec-section-dark .asec-label {
    color: var(--gold);
}

.asec-section-dark .asec-label::before {
    background: var(--gold);
}

.asec-section-dark .asec-body-text {
    color: rgba(255, 255, 255, 0.7);
}

/* ── HERO ── */
.asec-hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    overflow: hidden;
}

.asec-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26, 58, 107, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 222, 89, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.asec-hero::after {
    content: 'ASEC';
    position: absolute;
    right: -20px;
    bottom: -60px;
    font-family: var(--font-title);
    font-size: clamp(180px, 28vw, 380px);
    font-weight: 700;
    color: rgba(255, 222, 89, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}

.asec-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.asec-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.asec-hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.asec-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.asec-hero h1 span {
    color: var(--gold);
    display: block;
}

.asec-hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.asec-hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 40px;
}

.asec-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.asec-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-blue);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.asec-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.asec-btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.asec-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Hero right side decorative */
.asec-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.asec-emblem {
    width: 340px;
    height: 340px;
    position: relative;
}

.asec-emblem-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 222, 89, 0.15);
    animation: spin 30s linear infinite;
}

.asec-emblem-ring:nth-child(2) {
    inset: 30px;
    border-color: rgba(255, 222, 89, 0.08);
    animation-duration: 20s;
    animation-direction: reverse;
}

.asec-emblem-ring:nth-child(3) {
    inset: 60px;
    border-color: rgba(255, 255, 255, 0.06);
    animation-duration: 40s;
}

.asec-emblem-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    top: -3px;
    left: calc(50% - 3px);
}

.asec-emblem-center {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--dark-blue) 100%);
    border: 1.5px solid rgba(255, 222, 89, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.asec-emblem-text {
    font-family: var(--font-title);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.05em;
}

.asec-emblem-sub {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ── SECTION BASE ── */
.asec-section {
    padding: 100px 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.asec-section-full {
    padding: 100px 60px;
    width: 100%;
}

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

.asec-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.asec-section-title {
    font-family: var(--font-title);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.asec-section-title em {
    color: var(--gold);
    font-style: normal;
}

.asec-body-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* ── DIVIDER ── */
.asec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 22, 40, 0.12), transparent);
    margin: 0 60px;
}

.asec-divider-dark {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.2), transparent);
    margin: 0 60px;
}

/* ── ABOUT ── */
.asec-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.asec-about-left {
    position: relative;
}

.asec-about-left::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(10, 22, 40, 0.12), transparent);
}

.asec-stat-block {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(10, 22, 40, 0.1);
}

.asec-stat {
    background: #ffffff;
    padding: 24px 20px;
}

.asec-stat-num {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-blue);
    line-height: 1;
}

.asec-stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a8a9a;
    margin-top: 6px;
}

.asec-about-right p+p {
    margin-top: 18px;
}

/* ── FOCUS AREAS ── */
.asec-focus-bg {
    background: var(--dark-blue);
}

.asec-focus-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.asec-focus-header {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.asec-focus-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

.asec-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.asec-focus-card {
    background: var(--mid-blue);
    padding: 36px 32px;
    position: relative;
    transition: background 0.3s;
}

.asec-focus-card:hover {
    background: var(--accent-blue);
}

.asec-focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
}

.asec-focus-card:hover::before {
    background: var(--gold);
}

.asec-focus-num {
    font-family: var(--font-title);
    font-size: 52px;
    font-weight: 700;
    color: rgba(255, 222, 89, 0.12);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.asec-focus-card:hover .asec-focus-num {
    color: rgba(255, 222, 89, 0.25);
}

.asec-focus-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    color: var(--gold);
}

.asec-focus-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.asec-focus-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ── WHY ASEC ── */
.asec-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

.asec-why-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.asec-why-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    font-size: 15px;
    font-weight: 400;
    color: #3a4a60;
    transition: color 0.2s;
}

.asec-why-list li:hover {
    color: var(--dark-blue);
}

.asec-why-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--accent-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.asec-why-visual {
    position: sticky;
    top: 100px;
}

.asec-why-box {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 222, 89, 0.2);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.asec-why-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--font-title);
    font-size: 200px;
    color: rgba(255, 222, 89, 0.04);
    line-height: 1;
}

.asec-why-quote {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.asec-why-quote em {
    color: var(--gold);
    font-style: normal;
}

.asec-why-attr {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── EVENTS ── */
.asec-events-bg {
    background: var(--dark-blue);
}

.asec-events-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.asec-events-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
}

.asec-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 48px;
}

.asec-event-card {
    background: var(--mid-blue);
    padding: 36px 32px;
    position: relative;
    transition: background 0.3s;
    overflow: hidden;
}

.asec-event-card:hover {
    background: var(--accent-blue);
}

.asec-event-featured {
    background: var(--accent-blue);
}

.asec-event-tag {
    display: inline-block;
    background: rgba(255, 222, 89, 0.12);
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.asec-event-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.asec-event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.asec-event-meta::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--gold);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") no-repeat center/contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") no-repeat center/contain;
    min-width: 14px;
}

.asec-events-cta {
    text-align: center;
}

/* ── PARTNERSHIPS ── */
.asec-partners-bg {
    background: #ffffff;
}

.asec-partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.asec-partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.asec-partner-list {
    list-style: none;
    margin: 32px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.asec-partner-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    font-size: 15px;
    font-weight: 300;
    color: #3a4a60;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
}

.asec-partner-list li span.marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(26, 58, 107, 0.4);
    margin-top: 1px;
}

.asec-partner-list li span.marker::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    clip-path: polygon(0 50%, 35% 0, 100% 0, 65% 50%, 100% 100%, 35% 100%);
}

.asec-partner-visual {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 222, 89, 0.15);
    padding: 52px 44px;
    text-align: center;
}

.asec-partner-visual-title {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 32px;
}

.asec-partner-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.asec-partner-type {
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s;
}

.asec-partner-type:hover {
    border-color: rgba(255, 222, 89, 0.4);
    color: var(--gold);
}

/* ── FOOTER STRIP ── */
.asec-footer-strip {
    background: var(--dark-blue);
    border-top: 1px solid rgba(255, 222, 89, 0.1);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asec-footer-brand {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

.asec-footer-tagline {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Outline button on white/light background */
.asec-btn-outline-light {
    display: inline-block;
    border: 1.5px solid rgba(10, 22, 40, 0.3);
    color: var(--dark-blue);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.asec-btn-outline-light:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Primary button on light bg (uses dark blue) */
.asec-btn-primary-dark {
    display: inline-block;
    background: var(--dark-blue);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.asec-btn-primary-dark:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

/* ── HEADER & NAVIGATION ── */
.asec-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 222, 89, 0.1);
    transition: all 0.3s ease;
}

.asec-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asec-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.asec-logo-text {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.05em;
}

.asec-logo-sub {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.asec-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.asec-nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.asec-nav-link:hover,
.asec-nav-link.active {
    color: var(--gold);
}

.asec-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.asec-nav-link:hover::after,
.asec-nav-link.active::after {
    width: 100%;
}

/* Dropdown styling */
.asec-nav-dropdown {
    position: relative;
}

.asec-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--mid-blue);
    border: 1px solid rgba(255, 222, 89, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1010;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.asec-nav-dropdown:hover .asec-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.asec-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.asec-dropdown-menu a:last-child {
    border-bottom: none;
}

.asec-dropdown-menu a:hover {
    background: var(--accent-blue);
    color: var(--gold);
    padding-left: 24px;
}

/* Menu Toggle Button (Hamburger) */
.asec-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.asec-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.asec-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--gold);
}

.asec-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.asec-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--gold);
}

/* ── RICH FOOTER ── */
.asec-footer {
    background: var(--dark-blue);
    border-top: 1px solid rgba(255, 222, 89, 0.15);
    padding: 80px 60px 40px;
    color: var(--white);
}

.asec-footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
}

.asec-footer-col h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.asec-footer-logo-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 20px;
}

.asec-footer-tagline-small {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.asec-footer-info {
    list-style: none;
}

.asec-footer-info li {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.asec-footer-info li strong {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.asec-footer-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.asec-footer-info li a:hover {
    color: var(--gold);
}

.asec-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asec-footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.asec-footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.asec-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.asec-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.25s;
    font-size: 14px;
}

.asec-social-icon:hover {
    background: var(--gold);
    color: var(--dark-blue);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.asec-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.asec-footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.asec-footer-bottom a:hover {
    color: var(--gold);
}

/* ── SUBPAGE HERO ── */
.asec-subpage-hero {
    position: relative;
    background: var(--dark-blue);
    padding: 160px 60px 80px;
    overflow: hidden;
    text-align: center;
}

.asec-subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(26, 58, 107, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.asec-subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.asec-subpage-hero h1 {
    font-family: var(--font-title);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.asec-subpage-hero h1 span {
    color: var(--gold);
}

.asec-subpage-hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── FORM STYLES ── */
.asec-form-group {
    margin-bottom: 24px;
    text-align: left;
}

.asec-form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.asec-form-control {
    width: 100%;
    background: var(--mid-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s;
    outline: none;
}

.asec-form-control:focus {
    border-color: var(--gold);
    background: var(--accent-blue);
}

textarea.asec-form-control {
    resize: vertical;
    min-height: 120px;
}

.asec-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.asec-form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--mid-blue);
    border: 1px solid rgba(255, 222, 89, 0.15);
    padding: 48px 40px;
    position: relative;
}

.asec-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .asec-hero {
        padding: 120px 28px 60px;
    }

    .asec-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .asec-hero-visual {
        display: none;
    }

    .asec-section {
        padding: 72px 28px;
    }

    .asec-section-full {
        padding: 72px 28px;
    }

    .asec-about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .asec-about-left::after {
        display: none;
    }

    .asec-focus-header {
        grid-template-columns: 1fr;
    }

    .asec-focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .asec-why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .asec-events-grid {
        grid-template-columns: 1fr;
    }

    .asec-events-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .asec-partners-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .asec-divider,
    .asec-divider-dark {
        margin: 0 28px;
    }

    .asec-footer-strip {
        flex-direction: column;
        gap: 12px;
        padding: 28px;
        text-align: center;
    }

    /* Mobile Navigation */
    .asec-header-container {
        padding: 15px 28px;
    }
    .asec-menu-toggle {
        display: flex;
    }
    .asec-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-blue);
        border-left: 1px solid rgba(255, 222, 89, 0.1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 15px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }
    .asec-nav.active {
        right: 0;
    }
    .asec-nav-link {
        font-size: 15px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .asec-nav-dropdown {
        width: 100%;
    }
    .asec-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(14, 32, 68, 0.5);
        border: none;
        border-left: 2px solid var(--gold);
        margin-top: 5px;
        padding-left: 10px;
        display: none;
        width: 100%;
    }
    .asec-nav-dropdown.active .asec-dropdown-menu {
        display: block;
    }

    .asec-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .asec-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .asec-subpage-hero {
        padding: 120px 28px 60px;
    }
}

@media (max-width: 560px) {
    .asec-focus-grid {
        grid-template-columns: 1fr;
    }

    .asec-stat-block {
        grid-template-columns: 1fr 1fr;
    }

    .asec-hero-ctas {
        flex-direction: column;
    }

    .asec-btn-primary,
    .asec-btn-outline {
        text-align: center;
    }

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

    .asec-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .asec-form-container {
        padding: 30px 20px;
    }
}

/* ── BRAND LOGO STYLES ── */
.asec-header-logo {
    height: 48px;
    display: block;
    border-radius: 4px;
    border: 1px solid rgba(255, 222, 89, 0.2);
    background-color: #F7F7F7;
    transition: all 0.25s ease;
}

.asec-header-logo:hover {
    border-color: var(--gold);
    transform: scale(1.03);
}

.asec-footer-logo {
    height: 52px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: block;
    border: 1px solid rgba(255, 222, 89, 0.2);
    background-color: #F7F7F7;
    transition: all 0.25s ease;
}

.asec-footer-logo:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

/* ── COOKIE BANNER ── */
.asec-cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: rgba(14, 32, 68, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 222, 89, 0.25);
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.asec-cookie-banner.active {
    bottom: 20px;
}

.asec-cookie-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-align: left;
}

.asec-cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: color 0.2s;
}

.asec-cookie-text a:hover {
    color: var(--white);
}

.asec-cookie-btn {
    background: var(--gold);
    color: var(--dark-blue);
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.asec-cookie-btn:hover {
    background: var(--white);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .asec-cookie-banner {
        flex-direction: column;
        left: 10px;
        right: 10px;
        padding: 20px;
        align-items: stretch;
        text-align: center;
    }
    .asec-cookie-btn {
        width: 100%;
        text-align: center;
    }
}
