/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #F7931A;
    --pink-dark: #E2820A;
    --pink-light: #FFB84D;
    --magenta: #FF6B00;
    --dark: #0a0a0a;
    --dark-card: #111111;
    --dark-lighter: #1a1a1a;
    --dark-border: #222222;
    --text: #ffffff;
    --text-muted: #888888;
    --text-light: #aaaaaa;
    --success: #22c55e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Pink Text */
.text-pink {
    color: var(--pink);
}

/* Hero Header Image */
.hero-header-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
}

/* Step Card Images */
.step-card-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step-card-img:hover {
    transform: scale(1.02);
}

/* Bitcoin Text */
.text-btc {
    color: #F7931A;
    text-shadow: 0 0 15px rgba(247, 147, 26, 0.4);
}

/* Bitcoin Images Grid */
.btc-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
}

.btc-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.btc-img:hover {
    transform: scale(1.05);
}

/* Bonus Highlight Box */
.bonus-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), rgba(255, 107, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(247, 147, 26, 0.3);
}

.bonus-box {
    text-align: center;
    padding: 15px 25px;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

.bonus-box.featured {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(255, 107, 0, 0.1));
    border-color: #F7931A;
}

.bonus-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.bonus-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #F7931A;
}

.bonus-arrow {
    font-size: 24px;
    color: #F7931A;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 15px;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

/* Bitcoin Price Banner */
.btc-price-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.15), rgba(255, 107, 0, 0.05));
    border-radius: 16px;
    border: 2px solid #F7931A;
    margin-bottom: 40px;
}

.btc-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.btc-price-info {
    display: flex;
    flex-direction: column;
}

.btc-label {
    font-size: 14px;
    color: var(--text-muted);
}

.btc-price {
    font-size: 36px;
    font-weight: 800;
    color: #F7931A;
}

.btc-change {
    font-size: 16px;
    color: #22c55e;
    font-weight: 600;
}

/* Motivation Section */
.motivation-section {
    padding: 80px 0;
    background: var(--dark);
}

.motivation-header {
    text-align: center;
    margin-bottom: 50px;
}

.motivation-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.motivation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.motivation-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.motivation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(247, 147, 26, 0.2);
}

.motivation-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.motivation-content {
    padding: 20px;
}

.motivation-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #F7931A;
}

.motivation-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* BTC Hero Image */
.btc-hero-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.full-width-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--dark-lighter);
}

.success-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.success-card {
    display: flex;
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.success-card img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.success-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-author strong {
    display: block;
    color: #F7931A;
    margin-bottom: 5px;
}

.success-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.1), var(--dark));
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.urgency-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #F7931A;
}

.urgency-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.urgency-headline {
    font-size: 20px;
    color: #F7931A;
    margin-bottom: 20px;
}

.urgency-list {
    list-style: none;
    margin-bottom: 25px;
}

.urgency-list li {
    padding: 8px 0;
    font-size: 16px;
}

/* BTC Banner */
.btc-banner {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.btc-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BTC Final Images */
.btc-final-images {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.btc-final-images img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--dark-border);
}

/* Responsive */
@media (max-width: 992px) {
    .motivation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .success-card {
        flex-direction: column;
    }
    
    .success-card img {
        width: 100%;
        height: 200px;
    }
    
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-img {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .btc-images-grid {
        grid-template-columns: 1fr;
    }
    
    .btc-img {
        height: 150px;
    }
    
    .motivation-grid {
        grid-template-columns: 1fr;
    }
    
    .btc-price-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .btc-final-images {
        justify-content: center;
    }
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.features-header .section-subtitle {
    color: var(--text-muted);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: inherit;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--pink);
    color: white;
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-muted);
}

.btn-outline-light:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

.btn-pulse:hover {
    animation: none;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--pink);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--pink);
}

.nav-link .arrow {
    font-size: 10px;
    opacity: 0.6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at 30% 50%, rgba(233, 30, 99, 0.18) 0%, rgba(156, 39, 176, 0.08) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.15);
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.hero-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text);
}

.hero-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pink);
    font-weight: 600;
}

.hero .btn {
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--dark-border);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--dark);
}

.video-header {
    text-align: center;
    margin-bottom: 48px;
}

.video-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 400;
}

.video-header h2 {
    font-size: 26px;
    font-weight: 500;
}

.video-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.video-player {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Learn Section */
.learn-section {
    padding: 80px 0;
    background: var(--dark);
}

.learn-header {
    text-align: center;
    margin-bottom: 50px;
}

.learn-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.learn-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.learn-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.learn-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.learn-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.learn-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: var(--pink);
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .learn-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--dark);
}

.problem-header {
    text-align: center;
    margin-bottom: 50px;
}

.problem-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.problem-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.problem-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-solution {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.problem-solution p {
    font-size: 16px;
    color: var(--text);
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.methodology-step {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
    transition: border-color 0.3s ease;
}

.methodology-step:hover {
    border-color: var(--pink);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.methodology-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.methodology-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 12px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.result-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.result-card:hover {
    border-color: var(--pink);
}

.result-quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--pink);
}

.result-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.result-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.result-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.result-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Level Card Enhancements */
.level-duration {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 10px;
}

.level-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.level-card.featured {
    border-color: var(--pink);
    position: relative;
    transform: scale(1.02);
}

.level-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Professor Card Enhancements */
.professor-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.professor-role {
    font-size: 13px;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 12px;
}

.professor-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.professor-stats {
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
}

.professor-stats span {
    font-size: 12px;
    color: var(--text-light);
}

/* Lead Benefits */
.lead-benefits {
    margin-top: 24px;
}

.lead-benefits li {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text);
}

/* Pillars Section */
.pillars-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
}

.section-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 36px;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--pink);
    cursor: pointer;
}

.pillar-icon {
    margin-bottom: 14px;
}

.pillar-icon img {
    width: 44px;
    height: 44px;
}

.pillar-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pillar-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Levels Section */
.levels-section {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1a1a2e 100%);
}

.section-header-left {
    margin-bottom: 40px;
    text-align: center;
}

.section-header-left h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.35;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.level-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 24px;
    transition: border-color 0.3s ease;
}

.level-card:hover {
    border-color: var(--pink);
}

.level-header {
    margin-bottom: 16px;
}

.level-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.level-list {
    margin-bottom: 20px;
}

.level-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.level-list li:last-child {
    border-bottom: none;
}

.level-list .check {
    color: var(--pink);
    font-weight: 600;
    font-size: 12px;
}

/* Partners Section */
.partners-section {
    padding: 50px 0;
    background: var(--dark);
}

.partners-title {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* Featured Partner */
.featured-partner {
    padding: 40px 0 60px;
    background: var(--dark);
}

.featured-card {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.08) 0%, rgba(156, 39, 176, 0.03) 100%);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

.featured-label {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
}

.featured-brand {
    font-size: 32px;
    font-weight: 600;
    color: var(--pink);
}

/* Free Classes Section */
.free-classes-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #0d47a1 0%, #1565c3 50%, #0d47a1 100%);
}

.free-classes-header {
    text-align: center;
    margin-bottom: 36px;
}

.free-classes-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 400;
}

.free-classes-header h2 {
    font-size: 24px;
    font-weight: 500;
}

.classes-carousel {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.class-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 20px 28px;
    text-align: center;
    min-width: 140px;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.class-item:hover {
    border-color: var(--pink);
}

.class-item .class-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.class-item span {
    font-size: 13px;
    font-weight: 500;
    display: block;
}

/* Professors Section */
.professors-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
}

.professors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.professor-card {
    text-align: center;
}

.professor-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--dark-border);
}

.professor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professor-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.professor-card p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Media Section */
.media-section {
    padding: 70px 0 80px;
    background: var(--dark);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.media-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.media-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.media-link {
    font-size: 12px;
    color: var(--pink);
}

.media-link:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #1a237e 0%, #303f9f 50%, #1a237e 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-content p {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--pink);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Discount Section */
.discount-section {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
}

.discount-content {
    text-align: center;
}

.discount-content h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 500;
    line-height: 1.4;
}

/* Lead Section */
.lead-section {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(233, 30, 99, 0.04) 100%);
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: center;
}

.lead-content h2 {
    font-size: clamp(22px, 2.8vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.lead-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lead-form-container {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 28px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-form h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 6px;
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pink);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

input[type="date"] {
    color-scheme: dark;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    width: 20px;
    height: 20px;
    opacity: 1;
}

.form-group select {
    cursor: pointer;
}

/* Form validation error styles */
.input-error {
    border-color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.05) !important;
}

.field-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 6px;
    padding-left: 2px;
}

.input-valid {
    border-color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.05) !important;
}

.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--pink);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-links-row {
    display: flex;
    gap: 24px;
}

.footer-links-row a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links-row a:hover {
    color: var(--pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 10px !important;
    margin-top: 6px;
    opacity: 0.5;
}

.risk-disclaimer {
    margin-top: 20px;
    padding: 16px;
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 8px;
}

.risk-disclaimer p {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

.risk-disclaimer strong {
    color: var(--pink);
}

/* Responsive */
@media (max-width: 1024px) {
    .pillars-grid,
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .professors-grid,
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lead-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 450px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--dark-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--dark-border);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header .btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 11px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-features li {
        font-size: 13px;
    }
    
    .pillars-grid,
    .levels-grid,
    .professors-grid,
    .media-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .classes-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .class-item {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .lead-buttons {
        flex-direction: column;
    }
    
    .lead-content {
        text-align: center;
    }
    
    .section-title,
    .section-subtitle {
        font-size: 18px;
    }
    
    .section-header-left h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 14px;
        text-align: center;
    }
    
    .video-header h2 {
        font-size: 20px;
    }
    
    .free-classes-header h2 {
        font-size: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-quote {
        font-size: 14px;
    }
    
    .discount-content h2 {
        font-size: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
    }
    
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .lead-modal-content {
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-form-container {
        padding: 20px;
    }
    
    .lead-form-container {
        padding: 20px;
    }
    
    .pillar-card {
        padding: 20px 16px;
    }
    
    .level-card {
        padding: 20px;
    }
    
    .professor-image {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .section-cta {
        padding: 0 16px;
    }
    
    .section-cta .btn {
        width: 100%;
    }
}

/* Hero Layout: Video Left, Form Right */
.hero-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-text-top {
    margin-bottom: 24px;
}

.hero-text-top h1 {
    margin-top: 12px;
}

.hero-header-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 12px;
    display: block;
}

.hero-video-wrapper {
    margin-bottom: 20px;
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.hero-text-bottom {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-form-container {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 28px;
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        position: static;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.modal-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--dark-border);
    position: sticky;
    top: 0;
    background: var(--dark-card);
    z-index: 1;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--pink);
}

.modal-body {
    padding: 24px;
}

.modal-body h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text);
}

.modal-body h3:first-of-type {
    margin-top: 16px;
}

.modal-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.modal-body ul {
    margin-bottom: 16px;
    padding-left: 0;
}

.modal-body li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
}

.modal-body li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--pink);
}

/* Cookie Configuration Modal */
.cookie-category {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-category-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cookie-list {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--dark-border);
}

.cookie-list li {
    font-size: 11px;
    padding: 3px 0 3px 16px;
}

.cookie-list li::before {
    left: 2px;
    font-size: 8px;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-toggle.disabled {
    cursor: default;
    opacity: 0.7;
}

.cookie-toggle input {
    display: none;
}

.toggle-slider {
    width: 44px;
    height: 24px;
    background: var(--dark-border);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--pink);
}

.cookie-toggle input:checked + .toggle-slider::after {
    left: 23px;
    background: white;
}

.cookie-toggle.disabled .toggle-slider {
    background: var(--pink);
    opacity: 0.6;
}

.cookie-toggle.disabled .toggle-slider::after {
    left: 23px;
    background: white;
}

.toggle-label {
    font-size: 11px;
    color: var(--text-muted);
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-border);
}

.cookie-policy-info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--dark-border);
}

.cookie-policy-info h3 {
    margin-top: 0;
}

/* Responsive for modals and cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text p {
        max-width: 100%;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .modal {
        padding: 20px 12px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 400px;
    }
}

/* Scroll-Triggered Lead Modal */
.scroll-modal .modal-content {
    max-width: 480px;
}

.lead-modal-content {
    position: relative;
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(233, 30, 99, 0.05) 100%);
    border: 1px solid rgba(233, 30, 99, 0.3);
    overflow: visible;
}

.lead-modal-content .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lead-modal-body {
    padding: 32px;
}

.lead-modal-body .form-group input,
.lead-modal-body .form-group select {
    background: #1a1a1a;
}

.lead-modal-body .lead-form {
    background: #111111;
    padding: 20px;
    border-radius: 8px;
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.lead-modal-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--pink), var(--magenta));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.lead-modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.lead-modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.lead-modal-footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Scroll modal entrance animation */
.scroll-modal.active .modal-content {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Chat Widget Styles */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: inherit;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    color: white;
}

.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    height: 500px;
    background: var(--dark);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.chat-widget.active .chat-window {
    display: flex;
    animation: chatSlideUp 0.3s ease-out;
}

.chat-widget.active .chat-icon {
    display: none;
}

.chat-widget.active .chat-close-icon {
    display: block !important;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    padding: 16px;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chat-avatar img {
    width: 30px;
    height: 30px;
}

.chat-header-title {
    font-weight: 600;
    font-size: 15px;
}

.chat-header-status {
    font-size: 12px;
    opacity: 0.9;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--darker);
}

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    animation: messageIn 0.3s ease-out;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    background: var(--dark);
    color: var(--text);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-message.user {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.typing {
    background: var(--dark);
    padding: 16px 20px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chat-option-btn {
    background: transparent;
    border: 1px solid var(--pink);
    color: var(--pink);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-option-btn:hover {
    background: var(--pink);
    color: white;
}

.chat-input-area {
    padding: 12px 16px;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: var(--darker);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 12px 18px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input-area input:focus {
    border-color: var(--pink);
}

.chat-input-area input::placeholder {
    color: var(--text-muted);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-send-btn:hover {
    transform: scale(1.1);
}

.chat-send-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

.chat-success {
    text-align: center;
    padding: 20px;
}

.chat-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 40px);
        height: 70vh;
        right: -10px;
    }
}
