﻿:root {
    /* Color Palette - Refined for "Wow" Effect */
    --navy-deep: #05060F;
    --navy-core: #0C0E1F;
    --navy-light: #161B31;
    --navy-accent: #1D2342;

    --pink-primary: #FF0055;
    --pink-bright: #FF2E7E;
    --pink-glow: rgba(255, 0, 85, 0.4);
    --pink-soft: rgba(255, 0, 85, 0.1);

    --white: #FFFFFF;
    --text-main: #F8FAFF;
    --text-muted: #94A3B8;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    --gradient-hero: radial-gradient(circle at 0% 0%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(12, 14, 31, 1) 0%, var(--navy-deep) 100%);

    --shadow-premium: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(255, 0, 85, 0.2);

    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 100px;

    --header-height: 70px;
    --container-max: 1300px;
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.text-center {
    text-align: center;
}


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

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--gradient-hero);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography Helpers */
.eyebrow {
    font-family: 'Outfit', sans-serif;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.lead {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 55ch;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.lead-center {
    margin-inline: auto;
    text-align: center;
}


/* Glassmorphism Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.22rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
}

.btn.primary {
    background: var(--pink-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn.primary:hover {
    background: var(--pink-bright);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.4);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-pro {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
}


/* Site Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(5, 6, 15, 0);
}

.site-header.scrolled {
    background: rgba(5, 6, 15, 0.85);
    backdrop-filter: var(--glass-blur);
    height: 80px;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .site-header.scrolled {
        height: 70px;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.brand-text {
    line-height: 1;
}

.brand-kicker {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-primary);
    display: block;
    margin-bottom: 2px;
}

.brand-name {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 15, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 900;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.cta {
    background: var(--white);
    color: var(--navy-deep);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.nav-link.cta:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 60px;
    min-height: calc(100vh - var(--header-height));
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../img/hero-background.png');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--navy-deep) 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy-deep) 30%, transparent 100%);
    z-index: 1;
}

.hero.hero-compact {
    min-height: 28vh;
    max-height: 520px;
    padding: 90px 0 40px;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero h1 span {
    color: var(--pink-primary);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--pink-primary);
    opacity: 0.2;
    z-index: -1;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-actions {
        gap: 0.75rem;
    }
}

/* Hero Visual Element */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--pink-primary);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.hero-card .badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 0.75rem;
}

.hero-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.hero-card p {
    font-size: 0.98rem;
    line-height: 1.5;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.6rem 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.2rem;
}

.hero-card .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
}

/* Form Hero (Payment / Thanks) */
.form-hero {
    padding: 110px 0 40px;
}

.hero-stack {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-premium);
}

/* Payment Layout */
.section.payment-section {
    padding: 90px 0 120px;
}

.payment-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: start;
}

.payment-summary {
    position: relative;
    background: linear-gradient(160deg, rgba(13, 16, 35, 0.92), rgba(16, 22, 52, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.payment-summary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 0% 0%, rgba(255, 0, 85, 0.12), transparent 45%);
    opacity: 0.9;
    pointer-events: none;
}

.summary-brand {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.summary-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.summary-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.summary-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.2rem 0 0;
}

.summary-heading {
    position: relative;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.summary-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.summary-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.summary-line strong {
    color: var(--text-main);
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-weight: 700;
}

.summary-amount {
    font-size: 1.3rem;
}

.summary-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.summary-quote {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 1.25rem;
}

.summary-quote p {
    margin: 0 0 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.summary-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.summary-author span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.payment-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
}

.payment-header h2 {
    margin-bottom: 0.35rem;
}

.payment-intro {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.payment-error {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: rgba(255, 0, 85, 0.12);
    border: 1px solid rgba(255, 0, 85, 0.35);
    color: var(--text-main);
    font-size: 0.9rem;
}

.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.4rem;
}

.payment-tab {
    border: none;
    background: transparent;
    color: var(--text-muted);
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.payment-tab.active {
    background: rgba(255, 0, 85, 0.2);
    color: var(--text-main);
    box-shadow: 0 12px 30px rgba(255, 0, 85, 0.25);
}

.payment-panels {
    margin-top: 1.6rem;
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
    animation: slideUp 0.35s ease;
}

.stripe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stripe-element {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.9rem;
}

.payment-fields {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.payment-field {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.payment-field.emphasis {
    border-color: rgba(255, 0, 85, 0.35);
    box-shadow: 0 12px 24px rgba(255, 0, 85, 0.15);
}

.field-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.field-value {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.field-pill {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
}

.payment-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.payment-cards {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.payment-chip {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.payment-switch {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.switch-dot {
    width: 32px;
    height: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    position: relative;
}

.switch-dot::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background: var(--pink-primary);
    border-radius: 50%;
}

.payment-actions .btn {
    width: 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
}

.payment-footnote {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.payment-note {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.payment-rib {
    margin-top: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-rib p {
    margin-bottom: 0.5rem;
}

.payment-highlight {
    margin-bottom: 1rem;
    color: var(--pink-primary);
    font-weight: 600;
}

.payment-highlight span {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.paypal-embed {
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.paypal-embed > div {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .payment-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .payment-tabs {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .payment-tab {
        border-radius: 14px;
        justify-content: flex-start;
    }

    .payment-field-row {
        grid-template-columns: 1fr;
    }
}

.body-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.stat-item .stat-value {
    display: block;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: var(--pink-primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: clamp(0.6rem, 0.9vw, 0.8rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section.muted {
    background: rgba(255, 255, 255, 0.01);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

/* CTA Panel */
.cta-panel {
    padding: 5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
}

.cta-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--pink-primary);
    box-shadow: var(--shadow-premium);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover .bento-img {
    transform: scale(1.1);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(5, 6, 15, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.bento-cta {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--pink-primary);
    text-align: center;
    padding: 2rem;
}

.bento-cta h3 {
    margin-bottom: 1rem;
}

.bento-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
}


/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: var(--navy-accent);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--pink-primary);
    transition: var(--transition-smooth);
}

.card:hover h3 {
    color: var(--pink-primary);
}

.card:hover::after {
    height: 100%;
}

.card:hover {
    background: var(--navy-light);
    transform: translateY(-10px);
}

.how-card {
    padding: 4rem;
}

.steps-list-simple {
    margin-top: 2rem;
    list-style: none;
}


/* Steps */
.steps-list {
    counter-reset: steps;
}

.step-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.step-item::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--pink-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
}

/* Footer */
.site-footer {
    padding: 100px 0 50px;
    border-top: 1px solid var(--glass-border);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .footer-text {
    margin-top: 1.5rem;
    color: var(--text-muted);
    max-width: 30ch;
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.footer-link {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-link:hover {
    color: var(--pink-primary);
    padding-left: 10px;
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations Overrides */
.reveal-entry {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 6vw, 3.4rem);
    }

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

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-card {
        text-align: left;
    }

    .hero-stack {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-highlight {
        text-align: left;
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1.5rem 2rem;
        background: rgba(5, 6, 15, 0.98);
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        z-index: 950;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    .nav-link.cta {
        width: 100%;
        justify-content: center;
    }

    body.nav-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-toggle-line:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    body.nav-open .nav-toggle-line:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle-line:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    body {
        background-attachment: scroll;
    }

    .container {
        padding: 0 20px;
    }

    .brand {
        gap: 0.75rem;
    }

    .logo {
        height: 44px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .site-header.scrolled {
        height: var(--header-height);
    }

    .section {
        padding: 80px 0;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item.large,
    .bento-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
        align-items: flex-start;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 8vw, 3rem);
        line-height: 1.08;
    }

    .hero h1 span::after {
        height: 5px;
    }

    .lead {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-inline: auto;
        max-width: 36ch;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-card {
        padding: 1.3rem;
    }

    .hero-card h3 {
        font-size: 1.45rem;
    }

    .hero-card p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
        margin: 1.2rem 0;
        padding-top: 1rem;
    }

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

    .section-header {
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 6vw, 2.6rem);
    }

    .how-card {
        padding: 2.2rem 1.6rem;
    }

    .cta-panel {
        padding: 2.5rem 1.75rem;
    }

    .cta-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
    }
}

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

@media (max-width: 520px) {
    .brand-kicker {
        display: none;
    }
}

@media (max-width: 480px) {
    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        letter-spacing: -0.01em;
    }

    .lead {
        font-size: 0.92rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.4rem;
    }

    .badge {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
        padding: 0.35rem 0.85rem;
    }

    .hero-card h3 {
        font-size: 1.3rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
        margin: 1rem 0;
        padding-top: 0.9rem;
    }
}

.form-section {
    padding: 0 0 60px;
}

.form-section.register-section {
    padding-bottom: 40px;
}

/* Forms & Inputs Refined */
.form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.form-card.narrow {
    max-width: 900px;
}

.register-card {
    padding: 2rem 2.5rem;
    margin-top: -40px;
}

/* Summary (Thanks page) */
.summary-card {
    padding: 2.5rem;
}

.summary-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.summary-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.summary-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
}

.summary-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.summary-list {
    display: grid;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-item .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.summary-item .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.summary-item .value.highlight {
    color: var(--pink-primary);
    font-weight: 800;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

/* Modern Multi-step Header */
.form-progress {
    margin-bottom: 2.5rem;
    position: relative;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--pink-primary);
    transform: translateY(-50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 0 15px var(--pink-primary);
}

.step-indicator {
    width: 38px;
    height: 38px;
    background: var(--navy-core);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s ease;
    cursor: default;
    background-color: var(--navy-deep);
}

.step-indicator.active {
    border-color: var(--pink-primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.step-indicator.completed {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: var(--white);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: slideUp 0.35s ease;
}

.step-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.register-card .block-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.register-card .block-header h3 {
    margin: 0;
}

.register-card .step-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
    text-align: center;
    color: var(--text-muted);
}

.form-field {
    margin-bottom: 1.25rem;
}

.register-card .form-field {
    margin-bottom: 0.9rem;
}

.register-card .form-field>label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.register-card .step-grid {
    gap: 0.9rem 1rem;
}

.step-grid .full-width {
    grid-column: span 2;
}

/* Inputs Refinement */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.register-card input[type="text"],
.register-card input[type="email"],
.register-card input[type="tel"],
.register-card input[type="date"],
.register-card select,
.register-card textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 4px rgba(255, 0, 85, 0.1);
}

select option {
    background-color: var(--navy-core);
    color: var(--white);
}

.hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.register-card .hint {
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.register-card .step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.register-card .form-progress {
    margin-bottom: 1.5rem;
}

.step-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.step-actions .btn {
    min-width: 140px;
    flex: 1;
}

@media (max-width: 480px) {
    .step-actions {
        flex-direction: column-reverse;
    }

    .step-actions .btn {
        width: 100%;
    }
}

.register-card .step-actions {
    margin-top: 1.5rem;
}

.register-card .step-actions .btn {
    min-width: 140px;
    padding: 0.7rem 1.6rem;
    font-size: 0.9rem;
}

.register-card .photo-preview {
    margin-top: 0.35rem;
    height: 80px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    overflow: hidden;
}

.register-card .photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .form-card {
        padding: 2.5rem 1.5rem;
        margin-top: -40px;
    }

    .hero.hero-compact {
        min-height: 22vh;
        padding: 80px 0 30px;
    }

    .register-card {
        padding: 1.8rem 1.5rem;
        margin-top: -30px;
    }

    .summary-card {
        padding: 2rem 1.5rem;
    }
}

/* Badges & Tags */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--pink-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Toggle Switch */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.register-card .toggle-row {
    margin-bottom: 0.6rem;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.toggle input[type="checkbox"] {
    width: auto;
}

/* Checkboxes & Final Consent */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.checkbox:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--pink-primary);
    flex-shrink: 0;
}

.checkbox label {
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: normal;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
}

.register-card .checkbox {
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.btn.ghost.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Modern Admin Dashboard */
.admin-hero {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, var(--navy-deep), var(--navy-core));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.kpi-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.kpi-card .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.kpi-card .kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

.kpi-card .kpi-value.highlight {
    color: var(--pink-primary);
}

.admin-grid {
    display: grid;
    gap: 2rem;
}

.admin-card {
    background: var(--navy-core);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    overflow: hidden;
}

.admin-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Modern Admin Table */
.table-responsive {
    overflow-x: auto;
    margin: 1rem -2.5rem -2.5rem;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    text-align: left;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
    padding: 1.5rem 2.5rem;
    font-size: 0.95rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-table .player-cell {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.admin-table .player-img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--navy-deep);
}

.admin-table .player-info .name {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.admin-table .player-info .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Status Badges Refined */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.pending {
    background: rgba(255, 180, 0, 0.1);
    color: #FFB400;
}

.status-badge.approved {
    background: rgba(0, 255, 135, 0.1);
    color: #00FF87;
}

.status-badge.paid {
    background: rgba(0, 163, 255, 0.1);
    color: #00A3FF;
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-icon:hover {
    background: var(--pink-primary);
    color: var(--white);
    border-color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.2);
}

@media (max-width: 1024px) {
    .admin-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .admin-kpi-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Preloader & Layout Enhancements */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-visual {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 4px solid var(--pink-soft);
    border-radius: 50%;
}

.loader-circle {
    position: absolute;
    inset: 0;
    border: 4px solid transparent;
    border-top-color: var(--pink-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-img {
    position: absolute;
    inset: 15px;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

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

/* Footer Enhancements */
.footer-logo-wrap {
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials .footer-link {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 0;
}

.footer-socials .footer-link:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

.hero-actions-center {
    justify-content: center;
    margin-top: 3rem;
}

.partners-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.partners-grid {
    margin-top: 4rem;
    opacity: 0.5;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.partners-grid .glass-panel {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

.highlight-age {
    color: var(--pink-primary);
    font-weight: 800;
}
