:root {
    --bg: #020814;
    --bg-soft: #061020;
    --card: rgba(6, 17, 34, 0.78);
    --card-border: rgba(70, 130, 220, 0.22);
    --blue: #006dff;
    --blue-soft: #0094ff;
    --text: #f5f7fb;
    --muted: #9da8b8;
    --line: rgba(255,255,255,0.08);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Inter', sans-serif;
    --signature: 'Great Vibes', cursive;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top center, rgba(0, 109, 255, 0.15), transparent 38%),
        linear-gradient(180deg, #020814 0%, #020814 100%);
    color: var(--text);
    font-family: var(--sans);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-navbar {
    width: calc(100% - 48px);
    margin: 24px auto 0;
    padding: 18px 28px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: rgba(3, 10, 23, 0.78);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand strong {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 0.95;
    font-weight: 600;
}

.brand small {
    display: block;
    margin-top: 5px;
    font-family: var(--signature);
    font-size: 20px;
    color: #fff;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border-left: 2px solid rgba(255,255,255,0.7);
    border-right: 2px solid rgba(0,109,255,0.7);
    position: relative;
}

.brand-mark span {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border-left: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(0,109,255,0.5);
    transform: rotate(-25deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--blue-soft);
}

.nav-cta,
.primary-btn {
    background: linear-gradient(135deg, #0047dc, #083dff);
    padding: 17px 30px;
    border-radius: 7px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(0, 109, 255, 0.18);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 24px;
}

.main-wrapper {
    padding: 30px 0 20px;
}

.hero-section {
    position: relative;
    padding: 20px 0;
}

.section-label {
    display: block;
    color: var(--blue-soft);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 104px);
    line-height: 0.92;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin: 0;
}

.signature {
    font-family: var(--signature);
    font-size: 40px;
    margin-top: 12px;
}

.hero-media {
    max-width: 760px;
    height: 300px;
    margin: 38px auto 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(0, 109, 255, 0.20), transparent 45%),
        rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 80px rgba(0,109,255,0.08);
}

.aligner-placeholder {
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.event-meta {
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: rgba(5, 14, 30, 0.8);
}

.event-meta div {
    padding: 16px 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.86);
}

.event-meta div + div {
    border-left: 1px solid var(--line);
}

.event-meta i {
    color: var(--blue-soft);
}

.countdown-card,
.premium-card,
.site-footer {
    border: 1px solid var(--card-border);
    background: var(--card);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 60px rgba(0, 109, 255, 0.05);
}

.countdown-card {
    max-width: 1080px;
    margin: 28px auto 0;
    padding: 28px 38px;
    text-align: center;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 20px 0 28px;
}

.countdown-grid div {
    padding: 0 22px;
}

.countdown-grid div + div {
    border-left: 1px solid var(--line);
}

.countdown-grid strong {
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
}

.countdown-grid span {
    display: block;
    margin-top: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

.primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    min-width: 420px;
    max-width: 100%;
    font-size: 20px;
}

.countdown-card p {
    margin: 18px 0 0;
    color: rgba(255,255,255,0.72);
}

.premium-card {
    min-height: 280px;
    padding: 34px;
}

.premium-card h3 {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 16px;
}

.premium-card h6 {
    color: var(--blue-soft);
    font-size: 16px;
    margin-bottom: 28px;
}

.premium-card p {
    color: rgba(255,255,255,0.76);
    max-width: 320px;
}

.speaker-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.speaker-image {
    width: 220px;
    height: 220px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.overview-grid div {
    display: grid;
    gap: 6px;
}

.overview-grid i {
    color: var(--blue-soft);
    font-size: 24px;
}

.overview-grid strong {
    color: #fff;
}

.overview-grid span {
    color: rgba(255,255,255,0.68);
}

.site-footer {
    width: calc(100% - 48px);
    margin: 30px auto 20px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 0.95;
}

.footer-brand small {
    display: block;
    font-family: var(--signature);
    font-size: 19px;
}

.site-footer p {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.copyright {
    text-align: right;
}

@media (max-width: 991px) {
    .site-navbar {
        width: calc(100% - 24px);
        padding: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: #061020;
        border: 1px solid var(--card-border);
        border-radius: 12px;
        padding: 20px;
        flex-direction: column;
        gap: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    .event-meta {
        flex-direction: column;
    }

    .event-meta div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .countdown-grid div + div {
        border-left: 0;
    }

    .speaker-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .speaker-image {
        width: 100%;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .copyright {
        text-align: left;
    }
}

.register-hero {
    padding: 20px 0 40px;
}

.register-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 28px;
}

.register-meta {
    max-width: 980px;
    margin: 0 auto 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 12px;
    overflow: hidden;
}

.register-meta div {
    padding: 18px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.84);
}

.register-meta div:last-child {
    border-right: 0;
}

.register-meta i {
    color: var(--blue-soft);
    font-size: 26px;
}

.register-meta small {
    color: rgba(255,255,255,0.62);
}

.registration-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
}

.registration-left,
.registration-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-panel,
.includes-card {
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.82);
    border-radius: 12px;
    padding: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 50px rgba(0, 109, 255, 0.04);
}

.panel-label {
    display: block;
    color: var(--blue-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.form-panel label {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-input {
    background: rgba(1, 8, 20, 0.72) !important;
    border: 1px solid rgba(85, 120, 170, 0.25) !important;
    color: #fff !important;
    border-radius: 7px;
    min-height: 52px;
    box-shadow: none !important;
}

.premium-input::placeholder {
    color: rgba(255,255,255,0.34);
}

.premium-input:focus {
    border-color: rgba(0, 148, 255, 0.72) !important;
    box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.12) !important;
}

.form-select.premium-input {
    color: rgba(255,255,255,0.72) !important;
}

.form-select.premium-input option {
    background: #061020;
    color: #fff;
}

.phone-group {
    display: grid;
    grid-template-columns: 130px 1fr;
}

.phone-group .country-code {
    border-radius: 7px 0 0 7px;
    border-right: 0 !important;
}

.phone-group input {
    border-radius: 0 7px 7px 0;
}

.secure-note {
    margin-top: 22px;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secure-note i {
    color: rgba(255,255,255,0.58);
}

.includes-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 13px;
}

.includes-card li {
    color: rgba(255,255,255,0.78);
    display: flex;
    align-items: center;
    gap: 12px;
}

.includes-card i {
    color: var(--blue-soft);
}

.price-option {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(85, 120, 170, 0.28);
    border-radius: 9px;
    background: rgba(2, 10, 24, 0.62);
    cursor: pointer;
    margin-bottom: 18px;
    transition: 0.25s ease;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-option:hover,
.price-option.active {
    border-color: rgba(0, 148, 255, 0.75);
    box-shadow: 0 0 28px rgba(0, 109, 255, 0.08);
}

.price-option input {
    display: none;
}

.radio-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    position: relative;
}

.price-option.active .radio-dot {
    border-color: var(--blue-soft);
}

.price-option.active .radio-dot::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--blue-soft);
}

.price-content strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.price-content small {
    display: block;
    color: rgba(255,255,255,0.56);
}

.price-value {
    text-align: right;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.price-value small {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    margin-top: 3px;
}

.order-panel {
    padding-bottom: 30px;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,0.74);
    margin-bottom: 18px;
}

.summary-row strong {
    color: rgba(255,255,255,0.92);
    text-align: right;
}

.summary-divider {
    height: 1px;
    background: var(--line);
    margin: 24px 0;
}

.summary-total {
    align-items: center;
    margin-bottom: 0;
}

.summary-total span {
    font-size: 17px;
    color: #fff;
}

.summary-total strong {
    font-size: 28px;
    color: #fff;
}

.payment-secure {
    color: rgba(255,255,255,0.64);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.iyzico-box {
    border: 1px solid rgba(85, 120, 170, 0.28);
    background: rgba(2, 10, 24, 0.62);
    border-radius: 9px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.iyzico-logo {
    width: 78px;
    height: 44px;
    border-radius: 7px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.iyzico-box strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.iyzico-box span {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
}

.terms-check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    color: rgba(255,255,255,0.76) !important;
    font-weight: 400 !important;
}

.terms-check input {
    margin-top: 4px;
    accent-color: var(--blue);
}

.terms-check a {
    color: var(--blue-soft);
}

.payment-btn {
    width: 100%;
    min-width: auto;
    border: 0;
    min-height: 58px;
}

.ssl-note {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
}

.ssl-note i {
    color: var(--blue-soft);
    font-size: 30px;
}

@media (max-width: 991px) {
    .register-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .register-meta div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .registration-layout {
        grid-template-columns: 1fr;
    }

    .summary-total {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .register-meta {
        grid-template-columns: 1fr;
    }

    .phone-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .phone-group .country-code,
    .phone-group input {
        border-radius: 7px;
        border-right: 1px solid rgba(85, 120, 170, 0.25) !important;
    }

    .price-option {
        grid-template-columns: 28px 1fr;
    }

    .price-value {
        grid-column: 2;
        text-align: left;
    }
}
.inner-hero {
    padding: 38px 0 44px;
}

.inner-hero-content {
    max-width: 900px;
    margin: 0 auto 44px;
}

.inner-hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.inner-hero-content h1 span {
    color: var(--blue-soft);
}

.inner-hero-content p {
    color: rgba(255,255,255,0.68);
    font-size: 18px;
    line-height: 1.75;
    max-width: 760px;
}

.text-center.inner-hero-content p,
.inner-hero-content.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.academy-feature-grid {
    max-width: 1220px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.academy-feature-card {
    min-height: 300px;
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.82);
    border-radius: 12px;
    padding: 34px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.academy-feature-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
    opacity: 0.65;
}

.feature-icon {
    width: 78px;
    height: 78px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 109, 255, 0.22), rgba(0, 109, 255, 0.06));
    border: 1px solid rgba(0, 148, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 24px;
}

.academy-feature-card h3 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.academy-feature-card p {
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
}

.about-split {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
}

.about-copy,
.about-visual-card,
.program-day,
.program-cta,
.contact-card,
.contact-form {
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.82);
    border-radius: 12px;
    padding: 38px;
    backdrop-filter: blur(16px);
}

.about-copy h2,
.program-cta h2 {
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    margin-bottom: 24px;
}

.about-copy p {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    font-size: 16px;
}

.about-btn {
    margin-top: 20px;
    min-width: 260px;
}

.about-visual-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.visual-orbit {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border-left: 2px solid rgba(255,255,255,0.55);
    border-right: 2px solid rgba(0,148,255,0.75);
    box-shadow: 0 0 80px rgba(0,109,255,0.16);
}

.visual-orbit span {
    position: absolute;
    inset: 35px;
    border-radius: 50%;
    border-left: 1px solid rgba(255,255,255,0.35);
    border-right: 1px solid rgba(0,148,255,0.55);
    transform: rotate(-25deg);
}

.about-visual-card h3 {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
}

.about-visual-card p {
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
}

.program-overview {
    max-width: 1080px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.82);
    border-radius: 12px;
    overflow: hidden;
}

.program-overview div {
    padding: 26px 18px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.program-overview div:last-child {
    border-right: 0;
}

.program-overview i {
    color: var(--blue-soft);
    font-size: 28px;
    margin-bottom: 12px;
}

.program-overview strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
}

.program-overview span {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
}

.program-grid {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.program-day-header {
    margin-bottom: 26px;
}

.program-day-header span {
    display: inline-flex;
    color: var(--blue-soft);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.program-day-header h2 {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
    margin: 0;
}

.session-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.session-time {
    color: var(--blue-soft);
    font-weight: 700;
    font-size: 18px;
}

.session-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.session-card p {
    color: rgba(255,255,255,0.62);
    margin: 0;
    line-height: 1.65;
}

.program-cta {
    max-width: 980px;
    margin: 34px auto 0;
    text-align: center;
}

.program-cta .primary-btn {
    margin-top: 12px;
}

.contact-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
    border-bottom: 0;
}

.contact-row i {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 109, 255, 0.12);
    border: 1px solid rgba(0, 148, 255, 0.2);
    color: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row strong {
    display: block;
    margin-bottom: 6px;
}

.contact-row span {
    color: rgba(255,255,255,0.64);
}

.contact-form label {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.textarea-input {
    min-height: 160px;
    resize: vertical;
}

@media (max-width: 991px) {
    .academy-feature-grid,
    .program-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split,
    .program-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .program-overview div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 575px) {
    .academy-feature-grid,
    .program-overview {
        grid-template-columns: 1fr;
    }

    .about-copy,
    .about-visual-card,
    .program-day,
    .program-cta,
    .contact-card,
    .contact-form {
        padding: 26px;
    }

    .session-card {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .visual-orbit {
        width: 200px;
        height: 200px;
    }
}
.nav-login {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(85, 120, 170, 0.28);
    border-radius: 7px;
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.035);
    color: rgba(255,255,255,0.88) !important;
}

.nav-login svg,
.nav-cta svg,
.primary-btn svg {
    width: 18px;
    height: 18px;
}

.nav-login:hover {
    border-color: rgba(0, 148, 255, 0.65);
    color: #fff !important;
    background: rgba(0, 109, 255, 0.10);
}
.result-section {
    min-height: 68vh;
    display: grid;
    place-items: center;
    padding: 40px 18px;
}

.result-card {
    width: 100%;
    max-width: 760px;
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.86);
    border-radius: 18px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(18px);
    box-shadow: 0 0 80px rgba(0, 109, 255, 0.08);
}

.result-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 54px;
    height: 54px;
}

.result-card.success .result-icon {
    background: rgba(45, 217, 143, 0.12);
    color: #2dd98f;
    border: 1px solid rgba(45, 217, 143, 0.22);
}

.result-card.failed .result-icon {
    background: rgba(255, 95, 109, 0.12);
    color: #ff5f6d;
    border: 1px solid rgba(255, 95, 109, 0.22);
}

.result-card h1 {
    font-family: var(--serif);
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.95;
    margin-bottom: 20px;
}

.result-card p {
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 24px;
}

.result-email {
    display: inline-flex;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 148, 255, 0.22);
    background: rgba(0, 109, 255, 0.08);
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

.result-email strong {
    color: #fff;
    margin-left: 6px;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.secondary-result-btn {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 7px;
    border: 1px solid rgba(85, 120, 170, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.84);
    background: rgba(255,255,255,0.035);
    font-weight: 700;
}

.secondary-result-btn:hover {
    color: #fff;
    border-color: rgba(0, 148, 255, 0.62);
}

@media (max-width: 575px) {
    .result-card {
        padding: 34px 22px;
    }

    .result-actions .primary-btn,
    .secondary-result-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .site-navbar {
        margin-top: 12px;
        width: calc(100% - 20px);
        border-radius: 14px;
    }

    .brand strong {
        font-size: 18px;
    }

    .brand small {
        font-size: 17px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 15vw, 68px);
    }

    .signature {
        font-size: 32px;
    }

    .hero-media {
        height: 220px;
        margin-top: 28px;
    }

    .event-meta div {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
    }

    .countdown-card {
        padding: 22px 16px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .primary-btn {
        min-width: auto;
        width: 100%;
        font-size: 16px;
        min-height: 56px;
    }

    .premium-card {
        padding: 24px;
        min-height: auto;
    }

    .premium-card h3 {
        font-size: 34px;
    }

    .register-meta {
        margin-left: 10px;
        margin-right: 10px;
    }

    .registration-layout {
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-panel,
    .includes-card {
        padding: 22px;
    }

    .result-card {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 420px) {
    .countdown-grid strong {
        font-size: 34px;
    }

    .countdown-grid span {
        font-size: 11px;
    }

    .inner-hero-content h1 {
        font-size: 42px;
    }

    .academy-feature-card h3,
    .program-day-header h2 {
        font-size: 30px;
    }
}
/* Client revision: brighter navy, animated moon/logo, refined hero and countdown */
:root {
    --bg: #071a34;
    --bg-soft: #0b2445;
    --card: rgba(10, 31, 58, 0.78);
    --card-border: rgba(172, 207, 255, 0.28);
    --blue: #1d75ff;
    --blue-soft: #63b7ff;
    --signature: 'Inter', sans-serif;
}

body {
    background:
        radial-gradient(circle at 50% 4%, rgba(84, 163, 255, 0.22), transparent 42%),
        radial-gradient(circle at 18% 22%, rgba(22, 136, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #0b2548 0%, #061a34 45%, #071629 100%);
}

.site-navbar {
    background: rgba(9, 28, 54, 0.82);
    border-color: rgba(205, 228, 255, 0.22);
}

.brand-mark,
.hero-moon-logo,
.academy-motion-logo {
    background:
        radial-gradient(circle at 34% 30%, rgba(255,255,255,0.98), rgba(192, 225, 255,0.84) 24%, rgba(80, 160, 255,0.34) 48%, rgba(10,31,58,0.08) 66%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(220, 240, 255, 0.42);
    box-shadow:
        inset -18px 0 30px rgba(4, 20, 45, 0.45),
        0 0 34px rgba(99, 183, 255, 0.22);
    overflow: hidden;
    animation: moonBreath 5.8s ease-in-out infinite;
}

.brand-mark::after,
.hero-moon-logo::after,
.academy-motion-logo::after {
    content: "";
    position: absolute;
    inset: -18%;
    background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.55) 50%, rgba(99,183,255,0.12) 62%, transparent 100%);
    transform: translateX(-120%) rotate(18deg);
    animation: lightSweep 4.4s ease-in-out infinite;
}

.brand-mark span,
.hero-moon-logo span,
.academy-motion-logo span {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.28);
    border-left-color: rgba(7, 26, 52, 0.36);
    transform: rotate(-18deg);
}

.hero-content {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 34px;
    isolation: isolate;
    padding: 68px 18px 88px;
}

.hero-video-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at center, rgba(91, 173, 255, 0.30), transparent 32%),
        linear-gradient(115deg, transparent 0%, rgba(99, 183, 255, 0.08) 24%, rgba(255,255,255,0.12) 42%, rgba(29,117,255,0.14) 54%, transparent 72%),
        radial-gradient(circle at 50% 45%, rgba(255,255,255,0.14), transparent 24%);
    filter: blur(0.2px);
    animation: heroLightMove 8s ease-in-out infinite alternate;
}

.hero-video-glow::before,
.hero-video-glow::after {
    content: "";
    position: absolute;
    inset: 12% 6%;
    border-radius: 50%;
    border: 1px solid rgba(205, 228, 255, 0.12);
    transform: rotate(-10deg);
    animation: orbitPulse 9s linear infinite;
}

.hero-video-glow::after {
    inset: 20% 18%;
    border-color: rgba(99,183,255,0.16);
    animation-duration: 12s;
    animation-direction: reverse;
}

.hero-title-wrap {
    position: relative;
    display: inline-block;
    padding: 10px 42px 44px;
}

.hero-content h1 {
    text-shadow: 0 18px 80px rgba(0,0,0,0.28), 0 0 32px rgba(99,183,255,0.12);
}

.hero-moon-logo {
    position: absolute;
    top: 42px;
    left: 50%;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.92;
}

.signature {
    position: absolute;
    right: 50px;
    bottom: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.03em;
    color: #9fd3ff;
    text-shadow: 0 0 24px rgba(99,183,255,0.34);
    margin: 0;
}

.hero-media,
.event-meta,
.aligner-placeholder {
    display: none !important;
}

.countdown-card {
    max-width: 860px;
    margin-top: -44px;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.58);
    background: rgba(7, 24, 48, 0.86);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 24px 70px rgba(0,0,0,0.18),
        0 0 60px rgba(99,183,255,0.12);
}

.countdown-card .section-label {
    color: #d9efff;
}

.countdown-grid strong {
    font-variant-numeric: tabular-nums;
    color: #fff;
    text-shadow: 0 0 24px rgba(99,183,255,0.28);
}

.speaker-card {
    align-items: center;
}

.speaker-card > div:first-child {
    min-width: 0;
}

.speaker-bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 18px;
    display: grid;
    gap: 10px;
}

.speaker-bullets li {
    color: rgba(255,255,255,0.74);
    line-height: 1.5;
    position: relative;
    padding-left: 22px;
}

.speaker-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-soft);
    box-shadow: 0 0 16px rgba(99,183,255,0.5);
}

.cv-placeholder-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(99,183,255,0.28);
    background: rgba(99,183,255,0.08);
    color: #d9efff;
    font-weight: 700;
    font-size: 13px;
}

.speaker-photo {
    overflow: hidden;
    background: rgba(255,255,255,0.035);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-grid {
    grid-template-columns: repeat(3, 1fr);
}

.academy-motion-logo {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
}

.about-visual-card .visual-orbit {
    display: none;
}

@keyframes lightSweep {
    0%, 24% { transform: translateX(-125%) rotate(18deg); opacity: 0; }
    42% { opacity: 1; }
    64%, 100% { transform: translateX(125%) rotate(18deg); opacity: 0; }
}

@keyframes moonBreath {
    0%, 100% { box-shadow: inset -18px 0 30px rgba(4, 20, 45, 0.45), 0 0 28px rgba(99, 183, 255, 0.18); }
    50% { box-shadow: inset -10px 0 24px rgba(4, 20, 45, 0.24), 0 0 54px rgba(99, 183, 255, 0.34); }
}

@keyframes heroLightMove {
    0% { transform: scale(1) translateX(-1%); opacity: 0.78; }
    100% { transform: scale(1.06) translateX(1%); opacity: 1; }
}

@keyframes orbitPulse {
    0% { transform: rotate(0deg) scale(1); opacity: 0.42; }
    50% { transform: rotate(180deg) scale(1.04); opacity: 0.72; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.42; }
}

@media (max-width: 991px) {
    .hero-content {
        min-height: 460px;
        padding: 74px 10px 96px;
    }

    .hero-title-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .signature {
        right: 20px;
    }

    .countdown-card {
        margin-top: -34px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hero-content {
        min-height: 410px;
        border-radius: 22px;
    }

    .hero-moon-logo {
        width: 82px;
        height: 82px;
        top: 34px;
    }

    .signature {
        position: static;
        display: block;
        margin-top: 16px;
        text-align: right;
        font-size: 22px;
    }

    .countdown-card {
        margin-top: -24px;
    }

    .academy-motion-logo {
        width: 190px;
        height: 190px;
    }
}

.about-academy-page .academy-about-section {
    padding-top: 46px;
}

.academy-about-hero {
    margin-bottom: 28px;
}

.academy-about-hero h1 {
    font-family: var(--serif);
    font-size: clamp(82px, 10vw, 132px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    margin-bottom: 22px;
}

.academy-about-hero p {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255,255,255,0.74);
}

.academy-title-line {
    width: 72px;
    height: 2px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
    box-shadow: 0 0 20px rgba(0,148,255,0.55);
}

.academy-arc-wrap {
    position: relative;
    max-width: 760px;
    height: 138px;
    margin: 0 auto -34px;
    overflow: hidden;
    pointer-events: none;
}

.academy-arc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -210px;
    border-radius: 50%;
    border: 1px solid rgba(0,148,255,0.22);
}

.academy-arc.arc-one {
    width: 680px;
    height: 420px;
    border-color: rgba(255,255,255,0.08);
}

.academy-arc.arc-two {
    width: 560px;
    height: 350px;
    border-color: rgba(0,148,255,0.28);
}

.academy-arc.arc-three {
    width: 470px;
    height: 300px;
    border-color: rgba(0,148,255,0.42);
    box-shadow: 0 -10px 34px rgba(0,148,255,0.08);
}

.academy-feature-grid-compact {
    margin-bottom: 44px;
    background: rgba(4, 14, 30, 0.34);
    border-radius: 18px;
    padding: 20px 0;
    gap: 0;
    border: 1px solid rgba(70, 130, 220, 0.10);
}

.academy-feature-grid-compact .academy-feature-card {
    min-height: 245px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    padding: 28px 30px;
}

.academy-feature-grid-compact .academy-feature-card + .academy-feature-card {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.academy-feature-grid-compact .academy-feature-card::before {
    display: none;
}

.academy-feature-grid-compact .feature-icon {
    margin: 0 auto 24px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(0, 109, 255, 0.04);
    color: var(--blue-soft);
}

.academy-feature-grid-compact .feature-icon svg {
    width: 38px;
    height: 38px;
}

.academy-feature-grid-compact h3 {
    font-size: 28px;
    line-height: 0.95;
    margin-bottom: 24px;
}

.academy-feature-grid-compact h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
}

.academy-feature-grid-compact p {
    font-size: 14px;
    line-height: 1.65;
    max-width: 210px;
    margin: 0 auto;
}

.academy-bottom-split {
    gap: 28px;
}

.academy-vision-card,
.academy-premium-card {
    min-height: 320px;
    text-align: center;
    justify-content: center;
}

.academy-vision-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.academy-vision-card .section-label {
    margin-bottom: 36px;
}

.vision-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-soft);
}

.vision-icon svg {
    width: 54px;
    height: 54px;
}

.academy-vision-card p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
}

.academy-premium-card {
    align-items: center;
    padding-top: 42px;
}

.academy-premium-card .academy-motion-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 96px;
    height: 96px;
    margin: 0 auto 26px;
}

.academy-premium-card h3 {
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
}

.academy-premium-card h3::after {
    content: "";
    display: block;
    width: 52px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
}

.academy-premium-card p {
    text-align: center;
    max-width: 360px;
    margin: 0 auto 22px;
}

.outline-register-btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 7px;
    border: 1px solid rgba(0,148,255,0.68);
    color: var(--blue-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0,109,255,0.06);
    font-weight: 700;
}

.outline-register-btn:hover {
    color: #fff;
    background: rgba(0,109,255,0.16);
    box-shadow: 0 0 28px rgba(0,109,255,0.14);
}

.outline-register-btn svg {
    width: 17px;
    height: 17px;
}

.academy-footer-line {
    margin-top: 46px;
    text-align: center;
    color: var(--blue-soft);
    text-transform: uppercase;
    letter-spacing: 0.62em;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.86;
}

@media (max-width: 991px) {
    .academy-feature-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .academy-feature-grid-compact .academy-feature-card {
        border-left: 0 !important;
    }

    .academy-feature-grid-compact .academy-feature-card:nth-child(2n) {
        border-left: 1px solid rgba(255,255,255,0.08) !important;
    }

    .academy-feature-grid-compact .academy-feature-card:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 575px) {
    .academy-about-hero h1 {
        font-size: 78px;
    }

    .academy-about-hero p {
        font-size: 17px;
    }

    .academy-arc-wrap {
        height: 90px;
        margin-bottom: -24px;
    }

    .academy-feature-grid-compact {
        grid-template-columns: 1fr;
    }

    .academy-feature-grid-compact .academy-feature-card {
        border-left: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .academy-feature-grid-compact .academy-feature-card:first-child {
        border-top: 0;
    }

    .academy-footer-line {
        letter-spacing: 0.35em;
        font-size: 11px;
    }
}
.footer-center {
    display: grid;
    gap: 14px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.56);
    font-size: 12px;
    line-height: 1.4;
    transition: 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--blue-soft);
}

.footer-legal-links a::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-left: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.28);
    vertical-align: middle;
}

.footer-legal-links a:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .footer-center {
        gap: 12px;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .footer-legal-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-legal-links a::after {
        display: none;
    }
}
.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    max-width: 1080px;
    margin: 0 auto;
    border: 1px solid rgba(85, 120, 170, 0.32);
    background:
        radial-gradient(circle at left top, rgba(0, 109, 255, 0.14), transparent 38%),
        rgba(5, 15, 32, 0.94);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 18px;
    display: none;
    grid-template-columns: 54px 1fr auto;
    gap: 16px;
    align-items: center;
    box-shadow: 0 22px 80px rgba(0,0,0,0.38), 0 0 40px rgba(0,109,255,0.08);
}

.cookie-consent.show {
    display: grid;
    animation: cookieSlideUp 0.35s ease both;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(18px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(0, 109, 255, 0.10);
    border: 1px solid rgba(0, 148, 255, 0.24);
    color: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-icon svg {
    width: 26px;
    height: 26px;
}

.cookie-consent-content strong {
    display: block;
    color: #fff;
    font-size: 17px;
    margin-bottom: 6px;
}

.cookie-consent-content p {
    color: rgba(255,255,255,0.66);
    line-height: 1.55;
    font-size: 14px;
    margin: 0;
}

.cookie-consent-content a {
    color: var(--blue-soft);
    font-weight: 700;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.cookie-reject {
    background: rgba(255,255,255,0.035);
    color: rgba(255,255,255,0.78);
    border-color: rgba(255,255,255,0.12);
}

.cookie-reject:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}

.cookie-accept {
    background: linear-gradient(135deg, #0047dc, #083dff);
    color: #fff;
    border-color: rgba(0, 148, 255, 0.42);
    box-shadow: 0 0 28px rgba(0, 109, 255, 0.18);
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 34px rgba(0, 109, 255, 0.26);
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
        text-align: left;
        padding: 16px;
    }

    .cookie-consent-icon {
        width: 48px;
        height: 48px;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .cookie-consent-actions {
        grid-template-columns: 1fr;
    }
}
/* Legal Pages */
.legal-section {
    padding: 48px 0 60px;
}

.legal-hero {
    max-width: 880px;
    margin: 0 auto 30px;
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
}

.legal-hero p {
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 680px;
}

.legal-card {
    max-width: 1040px;
    margin: 0 auto;
    border: 1px solid var(--card-border);
    background: rgba(5, 15, 32, 0.84);
    border-radius: 18px;
    padding: 42px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 70px rgba(0, 109, 255, 0.06);
}

.legal-meta {
    border: 1px solid rgba(0,148,255,0.18);
    background: rgba(0,109,255,0.07);
    color: rgba(255,255,255,0.72);
    border-radius: 999px;
    display: inline-flex;
    padding: 10px 16px;
    margin-bottom: 28px;
    font-size: 14px;
}

.legal-card h2 {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
    margin: 30px 0 14px;
}

.legal-card h3 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: #fff;
}

.legal-card p,
.legal-card li {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    font-size: 15px;
}

.legal-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.legal-info-box {
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.025);
    border-radius: 16px;
    padding: 20px;
    margin: 18px 0;
}

.legal-info-box p {
    margin: 0 0 8px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 34px 10px 44px;
    }

    .legal-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .legal-card h2 {
        font-size: 28px;
    }
}
