:root {
    --purple: #150025;
    --purple2: #2a0050;
    --purple3: #1e0038;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-dark: #8b6914;
    --text: #1a0a2e;
    --text2: #3a2860;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    background: var(--purple);
    color: #fff;
    overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(21, 0, 37, 0.96);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold),
        var(--gold-light)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid var(--gold);
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
}
.logo-text {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}
.logo-text span {
    display: block;
    font-size: 0.55rem;
    color: rgba(240, 208, 128, 0.7);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.header-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    font-weight: 700;
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    text-decoration: none;
}
.header-cta:hover {
    transform: translateY(-2px);
    color: var(--gold) !important;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        ellipse at 50% 0%,
        #2d0060 0%,
        #1a0030 40%,
        #0d0020 100%
    );
    padding: 130px 40px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 25%,
        rgba(201, 168, 76, 0.1) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 168, 76, 0.3),
        transparent
    );
}
.hero-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
}
.hero-emblem {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: linear-gradient(145deg, #1a0030, #35005e);
    border: 3px solid var(--gold);
    box-shadow:
        0 0 0 8px rgba(201, 168, 76, 0.07),
        0 0 50px rgba(201, 168, 76, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    position: relative;
}
.hero-emblem::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.18);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: rgba(240, 208, 128, 0.88);
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 28px;
    text-transform: uppercase;
    background: rgba(201, 168, 76, 0.06);
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5.5vw, 3.9rem);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 28px;
    font-weight: 700;
}
.hero h1 .gold {
    color: var(--gold);
}
.hero-quote {
    color: #fff;
    font-size: 0.96rem;
    font-style: italic;
    max-width: 580px;
    margin: 0 auto 50px;
    line-height: 1.85;
    font-family: "Playfair Display", serif;
}
.hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    font-weight: 700;
    border: none;
    padding: 15px 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    transform: translateY(-3px);
    color: var(--gold) !important;
    box-shadow: 0 14px 34px rgba(201, 168, 76, 0.55);
}
.btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1.5px solid rgba(255, 255, 255, 0.38);
    padding: 14px 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ─── FOUNDER QUOTE ─── */
.fq-section {
    background: linear-gradient(180deg, #0d0020 0%, #150025 100%);
    padding: 90px 40px;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.fq-inner {
    max-width: 820px;
    margin: 0 auto;
}
.fq-line1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 30px;
}
.fq-line2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    color: #fff;
    font-style: italic;
    font-weight: 700;
    line-height: 1.75;
    margin-bottom: 24px;
}
.fq-line2 .gold {
    color: var(--gold);
}
.fq-cite {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ─── SECTION BASE ─── */
.section {
    padding: 90px 40px;
}
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.eyebrow {
    text-align: center;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-align: center;
    margin-bottom: 14px;
    color: #fff;
    font-weight: 700;
}
.gold-rule {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 14px auto 28px;
    border-radius: 2px;
}
.section-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    max-width: 580px;
    margin: 0 auto 52px;
    font-size: 0.93rem;
    line-height: 1.78;
}

/* ─── FOUNDER ─── */
.founder-section {
    background: linear-gradient(180deg, #150025 0%, #1e0038 100%);
}
.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 60px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}
.founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 18px;
    max-width: 400px;
    border: 2px solid rgba(201, 168, 76, 0.35);
    background: linear-gradient(145deg, #1a0030 0%, #35005e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 168, 76, 0.08);
    font-size: 5rem;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
}
.founder-photo-placeholder span {
    font-size: 5rem;
}
.founder-photo-placeholder p {
    font-size: 0.85rem;
    font-family: "Poppins", sans-serif;
}
.founder-tag-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.founder-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.founder-tag + .founder-tag::before {
    content: "·";
    margin-right: 6px;
    color: rgba(201, 168, 76, 0.35);
}
.founder-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.founder-card-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.3s;
}
.founder-card-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
}
.fci-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.fci-text {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.72;
}
.fci-text strong {
    color: #fff;
}

/* ─── RECORDS GALLERY ─── */
/* ─── RECORDS TIMELINE ─── */
.records-section {
    background: linear-gradient(180deg, #0d0020 0%, #150025 100%);
}

/* ─── WORLD RECORDS GALLERY ─── */
.records-section {
    background: linear-gradient(180deg, #0d0020 0%, #150025 100%);
}
.records-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cert-card-new {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.cert-card-new:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.55),
        0 0 0 1.5px rgba(201, 168, 76, 0.55);
    border-color: rgba(201, 168, 76, 0.6);
}
.cert-card-num-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 0;
}
.cert-card-seq {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    padding: 3px 12px;
}
.cert-card-icon {
    font-size: 1.1rem;
}
/* Image container — full cert visible, no crop */
.cert-img-container {
    margin: 12px 14px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a0030;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
    line-height: 0;
}
.cert-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}
.cert-card-new:hover .cert-img-container img {
    transform: scale(1.03);
}
.cert-info {
    padding: 14px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cert-date-badge {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    opacity: 0.8;
}
.cert-title-new {
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}
.cert-dist {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}
.cert-officially {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    padding: 3px 10px;
    width: fit-content;
}

@media (max-width: 900px) {
    .records-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .records-grid-new {
        grid-template-columns: 1fr;
    }
    .cert-card-new {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
    .cert-card-new:hover {
        transform: translateY(-4px);
    }
}

/* ─── LEADERBOARD ─── */
.leader-section {
    background: linear-gradient(180deg, #150025 0%, #0d0020 100%);
}
.leader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.leader-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition:
        transform 0.3s,
        border-color 0.3s;
}
.leader-card:hover {
    transform: translateY(-4px);
}
.leader-card.first {
    border-color: rgba(201, 168, 76, 0.45);
}
.leader-medal {
    font-size: 2.6rem;
    margin-bottom: 9px;
}
.leader-name {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}
.leader-skill {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 14px;
}
.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    height: 7px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        var(--gold-dark),
        var(--gold),
        var(--gold-light)
    );
}
.progress-pct {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 6px;
}

/* ─── CERT SHOWCASE ─── */
.cert-section {
    background: linear-gradient(180deg, #0d0020 0%, #150025 100%);
}
.cert-doc-wrap {
    max-width: 680px;
    margin: 0 auto 38px;
    perspective: 1000px;
}
.cert-doc {
    background: linear-gradient(160deg, #fdf6e3 0%, #f5e8c0 50%, #ede0b0 100%);
    border-radius: 6px;
    border: 3px solid #b89020;
    box-shadow:
        0 0 0 6px #c9a84c,
        0 0 0 10px #8b6914,
        0 0 0 13px #c9a84c,
        0 0 50px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(180, 140, 30, 0.15);
    padding: 44px 52px 36px;
    position: relative;
    text-align: center;
    color: #1a1a1a;
}
.cert-doc::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1.5px solid rgba(180, 140, 30, 0.4);
    border-radius: 3px;
    pointer-events: none;
}
.cert-doc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.cert-doc-stars {
    color: #b89020;
    font-size: 0.85rem;
    letter-spacing: 4px;
}
.cert-doc-org {
    font-family: "Playfair Display", serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #8b4513;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.cert-doc-headline {
    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: #1a0030;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 12px 0 6px;
    text-shadow: 1px 1px 0 rgba(180, 140, 30, 0.3);
}
.cert-doc-divider-top {
    height: 3px;
    margin: 12px auto 20px;
    max-width: 300px;
    background: linear-gradient(
        90deg,
        transparent,
        #b89020,
        #ffd700,
        #b89020,
        transparent
    );
    border-radius: 2px;
}
.cert-doc-certify {
    font-size: 0.82rem;
    color: #555;
    letter-spacing: 1px;
    font-style: italic;
    margin-bottom: 8px;
}
.cert-doc-name {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #1a0030;
    margin: 8px 0 10px;
    border-bottom: 2px solid rgba(180, 140, 30, 0.5);
    padding-bottom: 8px;
    display: inline-block;
    width: 100%;
}
.cert-doc-desc {
    font-size: 0.82rem;
    color: #555;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.cert-doc-module {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 14px;
}
.cert-doc-body {
    font-size: 0.78rem;
    color: #555;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}
.cert-doc-divider-bottom {
    height: 2px;
    margin: 14px auto 20px;
    max-width: 280px;
    background: linear-gradient(
        90deg,
        transparent,
        #b89020,
        #ffd700,
        #b89020,
        transparent
    );
    border-radius: 2px;
}
.cert-doc-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.cert-doc-sig-block {
    flex: 1;
}
.cert-doc-sig-line {
    height: 1px;
    background: #b89020;
    margin-bottom: 6px;
}
.cert-doc-sig-name {
    font-family: "Playfair Display", serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a0030;
}
.cert-doc-sig-title {
    font-size: 0.65rem;
    color: #777;
    line-height: 1.5;
    margin-top: 3px;
}
.cert-doc-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: radial-gradient(circle, #d4d4d4 0%, #a0a0a0 60%, #888 100%);
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}
.cert-doc-seal-inner {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-doc-seal-text {
    font-size: 0.36rem;
    font-weight: 700;
    text-align: center;
    color: #444;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.5;
}
.cert-doc-ribbon {
    margin-top: 18px;
    font-size: 0.7rem;
    color: #8b4513;
    letter-spacing: 1.5px;
    font-style: italic;
}
.cert-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cert-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

/* ─── CONTEST ─── */
.contest-section {
    background: linear-gradient(180deg, #150025 0%, #1e0038 100%);
}
.contest-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.contest-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 13px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.contest-step .cicon {
    font-size: 1.9rem;
    margin-bottom: 9px;
}
.contest-step p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.81rem;
    line-height: 1.62;
}
.prize-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.28);
}
.prize-badge .pamt {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    font-family: "Playfair Display", serif;
    line-height: 1;
}
.prize-badge h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 6px 0 4px;
}
.prize-badge p {
    font-size: 0.76rem;
    opacity: 0.78;
}

/* ─── REGISTER FORM ─── */
.register-section {
    background: linear-gradient(180deg, #1e0038 0%, #150025 100%);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-group.full {
    grid-column: 1/-1;
}
.form-group label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 13px 15px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.87rem;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}
.form-group select option {
    background: #1e0038;
    color: #fff;
}
.form-submit {
    width: 100%;
    padding: 15px;
    margin-top: 6px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.32);
    transition: all 0.3s;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(201, 168, 76, 0.48);
}
.secure-note {
    text-align: center;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.76rem;
}

/* ─── FAQ ─── */
.faq-section {
    background: linear-gradient(180deg, #150025 0%, #0d0020 100%);
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.13);
}
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    font-size: 0.91rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    gap: 14px;
}
.faq-icon {
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.38);
    flex-shrink: 0;
    font-style: normal;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(201, 168, 76, 0.12);
}
.faq-a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.87rem;
    line-height: 1.82;
    display: none;
    padding-bottom: 20px;
    padding-right: 42px;
}

/* ─── WHATSAPP ─── */
.wa-section {
    background: linear-gradient(180deg, #0d0020 0%, #150025 100%);
    padding: 78px 40px;
    text-align: center;
}
.wa-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 22px;
    padding: 52px 46px;
    max-width: 580px;
    margin: 0 auto;
}
.wa-box h2 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 12px;
}
.wa-box p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 26px;
    font-size: 0.9rem;
    line-height: 1.72;
}
.wa-btn {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.24);
}
.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.38);
}

/* ─── FOOTER ─── */
footer {
    background: #09001a;
    padding: 50px 48px 26px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}
.footer-logo {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}
.footer-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 5px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    align-items: center;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    text-align: center;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.22);
}

/* ─── STICKY BAR ─── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(9, 0, 26, 0.97);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 32px;
    backdrop-filter: blur(12px);
}
.sticky-bar p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}
.sticky-bar strong {
    color: var(--gold);
}

/* ─── FLOAT WA ─── */
.float-wa {
    position: fixed;
    bottom: 66px;
    right: 24px;
    z-index: 800;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}
.float-wa:hover {
    transform: scale(1.1);
}

/* ─── RESPONSIVE ─── */

/* ════════════════════════════════════════
   LEGENDS GRID (static 3-col, not carousel)
   ════════════════════════════════════════ */
.legends-section {
    background: linear-gradient(180deg, #150025 0%, #0d0020 100%);
}
.legends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.legend-card-new {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
    cursor: default;
}
.legend-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.55);
}
.legend-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.legend-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.legend-tag-new {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}
.legend-name-new {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}
.legend-desc-new {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    line-height: 1.7;
    flex: 1;
}

/* ════════════════════════════════════════
   PRICING CAROUSEL – 3/2/1 visible cards
   ════════════════════════════════════════ */
.pricing-section {
    background: linear-gradient(180deg, #1e0038 0%, #150025 100%);
}

/* outer viewport – clips overflow */
.pc-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0 10px; /* top space for popular badge */
}

/* sliding rail */
.pc-rail {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
}

/* each slide */
.pc-slide {
    flex: 0 0 calc((100% - 40px) / 3); /* 3 visible desktop */
    min-width: 0;
}

/* card itself */
.pc-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 24px 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        opacity 0.3s;
}
.pc-card.popular-card {
    border-color: var(--gold);
    background: linear-gradient(
        145deg,
        rgba(201, 168, 76, 0.14),
        rgba(201, 168, 76, 0.04)
    );
}
.pc-card.ebook-card {
    border-color: rgba(201, 168, 76, 0.45);
    background: linear-gradient(
        145deg,
        rgba(201, 168, 76, 0.1),
        rgba(100, 60, 0, 0.08)
    );
}
/* dim non-center cards subtly on desktop */
.pc-slide.pc-side .pc-card {
    opacity: 0.82;
}
.pc-slide.pc-side:hover .pc-card {
    opacity: 1;
}

.pc-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.64rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.pc-badge.gold-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
}
.pc-badge.red-badge {
    background: linear-gradient(135deg, #c0391b, #8b0000);
    color: #fff;
}
.pc-badge.green-badge {
    background: linear-gradient(135deg, #25a244, #1a7a33);
    color: #fff;
}

.pc-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.pc-plan {
    font-size: 0.63rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 600;
}
.pc-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}
.pc-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
    font-family: "Playfair Display", serif;
    margin: 10px 0 4px;
    line-height: 1;
}
.pc-price span {
    font-size: 0.74rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}
.pc-sessions {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
}
.pc-features {
    list-style: none;
    flex: 1;
    margin-bottom: 18px;
}
.pc-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.pc-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.pc-features li:last-child {
    border: none;
}
.pc-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    font-weight: 700;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    text-decoration: none;
    margin-top: auto;
}
.pc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.45);
}

/* nav arrows */
.pc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}
.pc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.45);
    background: rgba(21, 0, 37, 0.8);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.pc-arrow:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}
.pc-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

/* dots */
.pc-dots-wrap {
    display: flex;
    gap: 7px;
    align-items: center;
}
.pc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.28);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    flex-shrink: 0;
}
.pc-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* plan labels */
.pc-labels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.pc-label {
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Poppins", sans-serif;
    font-size: 0.73rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.pc-label.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    border-color: var(--gold);
    font-weight: 700;
}

/* ════════════════════════════════════════
   WHATSAPP BUTTON
   ════════════════════════════════════════ */
.wa-fab {
    position: fixed;
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        opacity 0.4s;
    opacity: 0;
    pointer-events: none;
}
.wa-fab.visible {
    opacity: 1;
    pointer-events: auto;
}
.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
.wa-fab:active {
    transform: scale(0.95);
}
.wa-fab svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    display: block;
}
/* tooltip */
.wa-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
    border-right: none;
}
.wa-fab:hover .wa-tooltip {
    opacity: 1;
}

/* ════════════════════════════════════════
   GLOBAL MOBILE FIXES
   ════════════════════════════════════════ */
html,
body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    max-width: 100vw;
}
img {
    max-width: 100%;
    height: auto;
}
* {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1100px) {
    .section-inner {
        max-width: 100%;
        padding: 0 24px;
    }
}

/* Tablet: 2 cards */
@media (max-width: 900px) {
    .pc-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .legends-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .records-grid {
        grid-template-columns: 1fr 1fr;
    }
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Mobile: 1 card */
@media (max-width: 640px) {
    header {
        padding: 10px 14px;
        gap: 8px;
    }
    .logo-text {
        font-size: 0.82rem;
    }
    .logo-text span {
        font-size: 0.48rem;
        letter-spacing: 1px;
        max-width: 160px;
    }
    .header-cta {
        font-size: 0.7rem;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .section {
        padding: 52px 16px;
    }
    .hero {
        padding: 86px 16px 60px;
    }
    .fq-section {
        padding: 52px 16px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }
    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        padding: 6px 14px;
    }
    .hero-quote {
        font-size: 0.88rem;
        margin-bottom: 36px;
    }
    .stats-row {
        gap: 20px;
    }
    .stat-num {
        font-size: 1.6rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-btns {
        gap: 10px;
    }
    .btn-primary,
    .btn-outline {
        padding: 12px 22px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .section-sub {
        font-size: 0.86rem;
    }

    .fq-line1,
    .fq-line2 {
        font-size: clamp(0.9rem, 4.5vw, 1.15rem);
    }

    .pc-slide {
        flex: 0 0 100% !important;
    }
    .pc-viewport {
        padding: 18px 0 8px;
    }
    .pc-card {
        padding: 28px 20px 22px;
    }
    .pc-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .legends-grid {
        grid-template-columns: 1fr;
    }
    .legend-img-wrap {
        aspect-ratio: 1/1;
    }

    .records-grid {
        grid-template-columns: 1fr;
    }
    .how-steps {
        grid-template-columns: 1fr;
    }
    .leader-grid {
        grid-template-columns: 1fr;
    }

    .cert-doc {
        padding: 28px 18px 24px;
    }
    .cert-doc-headline {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    .cert-doc-name {
        font-size: 1.4rem;
    }
    .cert-doc-footer {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .cert-doc-sig-block {
        text-align: center !important;
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
    }
    .sticky-bar {
        padding: 10px 14px;
    }
    .wa-box {
        padding: 30px 18px;
    }

    .wa-fab {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    .wa-fab svg {
        width: 28px;
        height: 28px;
    }
    .wa-tooltip {
        display: none;
    }
}

@media (max-width: 380px) {
    .header-cta {
        font-size: 0.65rem;
        padding: 7px 10px;
    }
    .logo-text {
        font-size: 0.75rem;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .pc-card {
        padding: 24px 16px 20px;
    }
}

/* ─── FADE-UP ─── */
.fade-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════════════════
   PACKAGES SECTION — Premium SaaS-style redesign
   ══════════════════════════════════════════════════════════ */
.pkg-section {
    background: linear-gradient(180deg, #f5f3ff 0%, #f0ecff 100%);
    padding: 80px 0;
}
.pkg-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}
.pkg-eyebrow {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
}
.pkg-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: #1a0030;
    text-align: center;
    font-weight: 700;
    margin-bottom: 12px;
}
.pkg-sub {
    text-align: center;
    color: #666;
    font-size: 0.93rem;
    max-width: 540px;
    margin: 0 auto 52px;
    line-height: 1.75;
}

/* ── CARD BASE ── */
.pkg-card {
    background: linear-gradient(135deg, #1f0036 0%, #3b0066 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow: 0 6px 32px rgba(26, 0, 48, 0.18);
}
.pkg-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 0% 0%,
        rgba(201, 168, 76, 0.07) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.pkg-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow:
        0 20px 56px rgba(26, 0, 48, 0.32),
        0 0 0 1px rgba(201, 168, 76, 0.25);
    border-color: rgba(201, 168, 76, 0.3);
}

/* ── FEATURED (Most Popular) ── */
.pkg-card.pkg-featured {
    background: linear-gradient(135deg, #1a0030 0%, #4a0080 50%, #2d0055 100%);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow:
        0 8px 40px rgba(201, 168, 76, 0.2),
        0 0 0 1.5px rgba(201, 168, 76, 0.35);
    transform: scale(1.01);
}
.pkg-card.pkg-featured:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow:
        0 24px 64px rgba(201, 168, 76, 0.28),
        0 0 0 2px rgba(201, 168, 76, 0.55);
    border-color: rgba(201, 168, 76, 0.7);
}
.pkg-card.pkg-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(201, 168, 76, 0.1) 0%,
        transparent 55%
    );
    pointer-events: none;
}

/* ── eBOOK CARD ── */
.pkg-card.pkg-ebook {
    background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 60%, #1a0800 100%);
    border-color: rgba(201, 168, 76, 0.3);
}
.pkg-card.pkg-ebook::before {
    background: radial-gradient(
        ellipse at 0% 0%,
        rgba(255, 180, 60, 0.08) 0%,
        transparent 60%
    );
}

/* ── BADGES ── */
.pkg-popular-tag,
.pkg-value-tag,
.pkg-ebook-tag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.63rem;
    font-weight: 700;
    padding: 6px 18px 6px 22px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-radius: 0 22px 0 14px;
}
.pkg-popular-tag {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #1a0030;
}
.pkg-value-tag {
    background: linear-gradient(135deg, #25a244, #1a7a33);
    color: #fff;
}
.pkg-ebook-tag {
    background: linear-gradient(135deg, #c0391b, #8b0000);
    color: #fff;
}

/* ── CARD INNER ── */
.pkg-card-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    align-items: stretch;
}

/* ── LEFT PANEL ── */
.pkg-left {
    padding: 36px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pkg-num {
    display: none;
} /* removed */
.pkg-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1;
}
.pkg-plan-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.8);
    font-weight: 700;
    margin-bottom: 6px;
}
.pkg-name {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}
.pkg-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}
.pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 6px;
}
.pkg-price {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.pkg-per {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}
.pkg-sessions {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ── RIGHT PANEL ── */
.pkg-right {
    padding: 36px 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pkg-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}
.pkg-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}
.pkg-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.85rem;
}
.pkg-features li:last-child {
    border: none;
}

/* ── CTA BUTTONS ── */
.pkg-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(90deg, #6a00ff, #9a00ff);
    color: #fff;
    box-shadow: 0 4px 18px rgba(106, 0, 255, 0.35);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pkg-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.pkg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(106, 0, 255, 0.5);
    background: linear-gradient(90deg, #7a10ff, #aa10ff);
}
.pkg-btn:hover::after {
    transform: translateX(100%);
}
.pkg-btn:active {
    transform: translateY(0) scale(0.98);
}

.pkg-btn-gold {
    background: linear-gradient(
        90deg,
        var(--gold-dark),
        var(--gold),
        var(--gold-dark)
    );
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #1a0030;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
}
.pkg-btn-gold:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55);
    transform: translateY(-2px);
}

.pkg-btn-dark {
    background: linear-gradient(90deg, #8b0000, #c0391b, #8b0000);
    background-size: 200% 100%;
    background-position: 0% 0%;
    color: #fff;
    box-shadow: 0 4px 18px rgba(192, 57, 27, 0.35);
}
.pkg-btn-dark:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 28px rgba(192, 57, 27, 0.5);
    transform: translateY(-2px);
}

/* ── GOLDEN DIVIDER ── */
.pkg-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 168, 76, 0.4),
        rgba(240, 208, 128, 0.6),
        rgba(201, 168, 76, 0.4),
        transparent
    );
    margin: 28px 0;
}

/* ── MOBILE ── */
@media (max-width: 760px) {
    .pkg-card-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pkg-left {
        padding: 32px 24px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .pkg-right {
        padding: 20px 24px 28px;
    }
    .pkg-price {
        font-size: 2.1rem;
    }
    .pkg-btn {
        padding: 12px 20px;
    }
    .pkg-popular-tag,
    .pkg-value-tag,
    .pkg-ebook-tag {
        font-size: 0.58rem;
        padding: 5px 14px 5px 16px;
    }
}
@media (max-width: 480px) {
    .pkg-section {
        padding: 52px 0;
    }
    .pkg-inner {
        padding: 0 14px;
    }
    .pkg-card {
        border-radius: 18px;
    }
    .pkg-card.pkg-featured {
        transform: scale(1);
    }
    .pkg-left,
    .pkg-right {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* ── FADE-IN-CARD animation ── */
.fade-in-card {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-card:nth-child(1) {
    transition-delay: 0s;
}
.fade-in-card:nth-child(3) {
    transition-delay: 0.1s;
}
.fade-in-card:nth-child(5) {
    transition-delay: 0.2s;
}
.fade-in-card:nth-child(7) {
    transition-delay: 0.3s;
}
.fade-in-card:nth-child(9) {
    transition-delay: 0.4s;
}

/* ── Light theme for Founder Quote ── */
.fq-light {
    background: #fff !important;
    border-top: 1px solid #f0ecfa;
    border-bottom: 1px solid #f0ecfa;
}
.fq-light .fq-line1 {
    color: #333 !important;
}
.fq-light .fq-line2 {
    color: #1a0030 !important;
}
.fq-light .fq-line2 .gold {
    color: var(--gold-dark) !important;
}
.fq-light .fq-cite {
    color: #aaa !important;
}

/* ── Light theme for Contest ── */
.contest-light {
    background: #fff !important;
}
.contest-light .eyebrow {
    color: var(--gold-dark) !important;
}
.contest-light .section-title {
    color: #1a0030 !important;
}
.contest-light .section-sub {
    color: #555 !important;
}
.contest-light .gold-rule {
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.contest-light .contest-step {
    background: #f8f7ff !important;
    border-color: #e8e2f5 !important;
}
.contest-light .contest-step p {
    color: #444 !important;
}
.contest-light .prize-badge {
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
}

/* ── PKG Mobile Responsive ── */
@media (max-width: 760px) {
    .pkg-card {
        padding: 28px 22px;
    }
    .pkg-card-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pkg-num {
        font-size: 2rem;
    }
    .pkg-name {
        font-size: 1.2rem;
    }
    .pkg-price {
        font-size: 1.8rem;
    }
    .pkg-btn {
        padding: 13px 20px;
    }
    .pkg-popular-tag,
    .pkg-value-tag,
    .pkg-ebook-tag {
        left: 18px;
        font-size: 0.58rem;
    }
}
@media (max-width: 480px) {
    .pkg-section {
        padding: 52px 0;
    }
    .pkg-card {
        padding: 22px 16px;
    }
    .pkg-inner {
        padding: 0 14px;
    }
}
.pkg-card {
    padding: 24px 18px;
}
.pkg-inner {
    padding: 0 14px;
}

/* ── PACKAGE CARD LOAD ANIMATIONS ── */
@keyframes pkgFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pkg-card.fade-in-card {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.35s;
}
.pkg-card.fade-in-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Micro-interaction: selected state */
.pkg-card.selected {
    box-shadow:
        0 0 0 2.5px var(--gold),
        0 20px 50px rgba(26, 0, 48, 0.18);
}
.pkg-featured.selected {
    box-shadow:
        0 0 0 2.5px var(--gold-light),
        0 24px 60px rgba(26, 0, 48, 0.45);
}

/* ═══════════════════════════════════════════════
   MODULES — What Your Child Will Learn
   ═══════════════════════════════════════════════ */
.modules-section {
    background: linear-gradient(180deg, #150025 0%, #1e0038 100%);
}

.tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 26px;
    border-radius: 50px;
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Poppins", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.3);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
}
.module-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition:
        transform 0.3s,
        box-shadow 0.3s,
        border-color 0.3s,
        background 0.3s;
    cursor: default;
}
.module-card:hover {
    transform: translateY(-4px);
    background: rgba(201, 168, 76, 0.09);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.module-num {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.75;
    flex-shrink: 0;
    min-width: 36px;
    line-height: 1;
}
.module-name {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-section {
    background: linear-gradient(180deg, #1e0038 0%, #150025 100%);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}
/* connector line between steps */
.how-steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--gold),
        rgba(201, 168, 76, 0.2),
        var(--gold)
    );
    z-index: 0;
}
.how-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px 18px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    transition:
        transform 0.35s,
        box-shadow 0.35s,
        border-color 0.35s,
        background 0.35s;
}
.how-step:hover {
    transform: translateY(-8px);
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 168, 76, 0.25);
}
.step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--purple);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(201, 168, 76, 0.4);
    font-family: "Playfair Display", serif;
}
.step-icon {
    font-size: 1.9rem;
    line-height: 1;
    margin-top: 10px;
}
.step-title {
    font-family: "Playfair Display", serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.step-desc {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.65;
}

@media (max-width: 1000px) {
    .how-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .how-steps::before {
        display: none;
    }
}
@media (max-width: 640px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 400px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

.affiliator-section {
    /* background: #fff; */
    text-align: center;
}

.affiliator-box {
    max-width: 700px;
    margin: auto;
    /* background: #; */
    padding: 30px;
    border-radius: 12px;
}

.affiliator-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.affiliator-features {
    text-align: left;
    margin-top: 20px;
}

.feature-item {
    padding: 8px 0;
    font-size: 15px;
}

.affiliator-btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
}

.video-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-overlay h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
}

.video-controls {
    margin-top: 10px;
}

.fullscreen-video-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.fullscreen-video-container video {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

/* Unmute button styling */
.unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}
.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
