:root {
    --bg-color: #050a06;
    --surface-color: #0c1810;
    --surface-glass: rgba(12, 24, 16, 0.7);
    --primary: #00ff41;
    --primary-glow: rgba(0, 255, 65, 0.4);
    --text-main: #f0fdf4;
    --text-muted: #9ca3af;
    --border-color: rgba(0, 255, 65, 0.15);
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-handwriting: 'Caveat', cursive;
    --font-price: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

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

/* Typography */
p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--text-main);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--primary-glow);
    margin-top: 1.5rem;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: #000;
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
    width: 100%;
    text-align: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0); }
}

/* Glassmorphism utility */
.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-image: url('assets/stadium_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,10,6,0.8) 0%, rgba(5,10,6,0.95) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 2rem;
    display: inline-block;
}

.eyebrow {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.main-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s;
}

.vsl-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl-play-btn {
    background: var(--primary);
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pulse 2s infinite;
    transition: transform 0.2s;
}

.vsl-play-btn:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 28px;
    height: 28px;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin: 2rem 0;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Problem Section 2.0 */
.problem-section {
    text-align: center;
    padding: 100px 0;
}

.problem-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-arrow {
    color: var(--primary);
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-arrow::before, .title-arrow::after {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background: rgba(0, 255, 65, 0.3);
    margin: 0 1rem;
}

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.problem-card {
    background: #030604;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);
}

.problem-card p {
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.handwriting-quote {
    font-family: var(--font-handwriting);
    font-size: 3.5rem !important;
    color: var(--primary) !important;
    margin: 1rem 0 2rem !important;
}

.separator-text {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.separator-text::before, .separator-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.separator-text span {
    padding: 0 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.alert-box-red {
    background: linear-gradient(90deg, rgba(30,5,5,1) 0%, rgba(15,0,0,1) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0 2rem;
    text-align: left;
    width: 100%;
}

.alert-icon {
    color: #ff3333;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.alert-box-red p {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

.arrow-down-green {
    color: var(--primary);
    margin: 1rem 0;
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.cta-button.green-solid {
    background: var(--primary);
    color: #000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.cta-button.green-solid:hover {
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
    color: #000;
}

.problem-image-col {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.problem-image {
    width: 210%;
    max-width: 210%;
    height: auto;
    transform: translateX(-52%);
    display: block;
}

@media (max-width: 900px) {
    .problem-layout {
        grid-template-columns: 1fr;
    }
    .title-arrow::before, .title-arrow::after {
        width: 50px;
    }
    .problem-image-col {
        height: 400px;
    }
}

/* About Section 2.0 */
.about-card-new {
    background: #030604;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: left;
    margin-top: 2rem;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-card-new p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.check-list-green {
    list-style: none;
    margin: 2rem 0;
}

.check-list-green li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #e5e7eb;
}

.check-list-green .icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.separator-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 65, 0.15);
    margin: 2rem 0;
}

.community-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-trophy {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.small-text-about {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

/* Target Section 2.0 */
.center-title {
    margin-top: 4rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.center-title span {
    font-size: 1.5rem;
}

.target-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.target-card {
    background: #030604;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.target-card:hover {
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.02);
}

.target-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.target-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e5e7eb;
    text-align: left;
}

.center-card {
    grid-column: 2;
}

.warning-box-new {
    background: transparent;
    border: 1px dashed rgba(0, 255, 65, 0.4);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.star-icon {
    color: var(--primary);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.warning-text-content {
    text-align: left;
}

.warning-text-content p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.white-text {
    color: #fff;
}

.green-text {
    color: var(--primary);
}

@media (max-width: 900px) {
    .target-grid-new {
        grid-template-columns: 1fr;
    }
    .center-card {
        grid-column: 1;
    }
}

/* Modules Section */
.modules-section {
    background: var(--surface-color);
}

.modules-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary);
    transition: var(--transition);
}

.module-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.module-icon {
    background: rgba(0, 255, 65, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.module-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Deliverables Section 2.0 */
.deliverables-card-new {
    background: #030604;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 3rem 0;
}

.deliverables-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.glow-separator {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.4), transparent);
    margin: 0 auto 1.5rem;
}

.deliverables-subtitle {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 4rem;
}

.deliverables-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.5rem;
    column-gap: 2rem;
    text-align: left;
}

.deliverable-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.check-circle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-circle-icon i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.deliverable-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #e5e7eb;
}

@media (max-width: 900px) {
    .deliverables-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Bonus Section 2.0 */
.bonus-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bonus-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus-trophy-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bonus-trophy-line .line {
    width: 60px;
    height: 1px;
    background: rgba(0, 255, 65, 0.4);
}

.bonus-trophy-line .trophy-icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.bonus-header h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.bonus-subtitle {
    color: #e5e7eb;
    font-size: 1.1rem;
}

.bonus-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bonus-card-horizontal {
    background: #030604;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
}

.bonus-img-col {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.bonus-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-text-col {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 255, 65, 0.4);
    color: #e5e7eb;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.bonus-tag-new i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.bonus-card-horizontal h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.bonus-card-horizontal p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .bonus-grid-new {
        grid-template-columns: 1fr;
    }
    .bonus-card-horizontal {
        flex-direction: column;
    }
    .bonus-img-col {
        flex: 0 0 250px;
    }
}

/* Certificate Section 2.0 */
.certificate-section {
    padding: 6rem 0;
    overflow: hidden;
}

.cert-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    align-items: center;
}

.cert-header {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.cert-details {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.cert-image-col {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    position: relative;
}

.cert-title-new {
    font-size: 3rem;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.cert-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.cert-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cert-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-feature-item i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cert-feature-item span {
    font-weight: 500;
    font-size: 1.05rem;
}

.cert-disclaimer-new {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.4;
}

.cert-glow-bg {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    top: 10%;
    left: 10%;
    z-index: 0;
}

.cert-image-col img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.cert-image-col img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@media (max-width: 900px) {
    .cert-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .cert-header {
        grid-column: 1;
        grid-row: 1;
    }
    .cert-image-col {
        grid-column: 1;
        grid-row: 2;
    }
    .cert-details {
        grid-column: 1;
        grid-row: 3;
    }
    .cert-features-list {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0 auto 2.5rem;
    }
    .cert-feature-item {
        text-align: left;
        align-items: flex-start;
    }
    .cert-feature-item i {
        margin-top: 2px;
    }
}

/* Academy */
.academy-section {
    background: url('assets/stadium_bg.png') center/cover no-repeat;
    position: relative;
    text-align: center;
}

.academy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,10,6,0.9);
}

.academy-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.academy-section h2 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.quote-large {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 3rem;
    text-transform: none;
    font-style: italic;
}

/* Pricing Section 2.0 */
.pricing-section {
    padding: 4rem 0 6rem;
    text-align: center;
}

.pricing-card-mockup {
    background-image: linear-gradient(to bottom, rgba(3, 6, 4, 0.88), rgba(3, 6, 4, 0.98)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.5015894947056629.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 3.5rem 2rem;
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.15);
    position: relative;
    overflow: hidden;
    max-width: 550px;
    margin: 0 auto;
}

.pricing-header-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.pricing-icon-top {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(0, 255, 65, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-icon-top i {
    color: var(--primary);
    width: 28px;
    height: 28px;
}

.pricing-pre-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
}

.pricing-main-title {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.pricing-subtitle-mockup {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin: 0;
}

.pricing-separator-mockup {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.3), transparent);
    margin: 0 auto 2.5rem;
    width: 80%;
}

.pricing-body-mockup {
    text-align: center;
}

.price-de-mockup {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-family: var(--font-price);
    font-weight: 500;
}

.strike-red {
    text-decoration: line-through;
    color: #ff4444;
    font-weight: 800;
}

.price-avista-mockup {
    color: var(--primary);
    font-weight: 900;
    font-family: var(--font-price);
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    letter-spacing: -2px;
}

.price-avista-mockup .currency {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    font-weight: 700;
    letter-spacing: normal;
}

.price-avista-mockup .amount {
    font-size: 6.5rem;
    line-height: 0.8;
}

.price-avista-mockup .cents {
    font-size: 2.5rem;
    letter-spacing: normal;
}

.price-avista-mockup .avista-label {
    font-size: 1.1rem;
    color: #e5e7eb;
    font-weight: 500;
    margin-left: 1rem;
    text-shadow: none;
    font-family: var(--font-body);
    letter-spacing: normal;
    text-transform: uppercase;
}

.price-ou-line-mockup {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
    margin: 2rem 0;
    font-family: var(--font-price);
    font-weight: 500;
}

.price-ou-line-mockup::before,
.price-ou-line-mockup::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-ou-line-mockup span {
    padding: 0 1.5rem;
}

.price-parcelado-mockup {
    font-size: 3rem;
    font-family: var(--font-price);
    font-weight: 900;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.cta-button-mockup {
    background: #00ff41;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    transition: all 0.3s ease;
    margin: 0 auto 2rem;
    width: 100%;
}

.cta-button-mockup i {
    width: 24px;
    height: 24px;
}

.cta-button-mockup:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 255, 65, 0.6);
    background: #00e63a;
}

.pricing-footer-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.95rem;
}

.pricing-footer-mockup i {
    width: 18px;
    height: 18px;
    color: #9ca3af;
}

@media (max-width: 600px) {
    .price-avista-mockup .amount {
        font-size: 4rem;
    }
    .price-avista-mockup .currency, .price-avista-mockup .cents {
        font-size: 2rem;
    }
    .price-parcelado-mockup {
        font-size: 2.2rem;
    }
    .pricing-card-mockup {
        padding: 2.5rem 1.5rem;
    }
    .pricing-main-title {
        font-size: 1.8rem;
    }
}

/* FAQ */
.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 30px;
    text-align: center;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer > .container > p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #555;
    margin: 0;
}

/* Custom Background Images for Sections */
.academy-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.95), rgba(5, 10, 6, 0.97)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4989547153848283.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

.problem-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.96), rgba(5, 10, 6, 0.98)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4989547153848283.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

.target-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.97), rgba(5, 10, 6, 0.95)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.35264767367153915.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

.about-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.96), rgba(5, 10, 6, 0.98)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.5015894947056629.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.modules-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.95), rgba(5, 10, 6, 0.97)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4989547153848283.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

.deliverables-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.98), rgba(5, 10, 6, 0.94)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.35264767367153915.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bonus-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.96), rgba(5, 10, 6, 0.98)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.5015894947056629.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.certificate-section {
    background-image: linear-gradient(to right, rgba(5, 10, 6, 0.99), rgba(5, 10, 6, 0.9)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.4989547153848283.png');
    background-size: cover;
    background-position: center;
    background-color: transparent !important;
}

.pricing-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.96), rgba(5, 10, 6, 0.99)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.5015894947056629.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

.faq-section {
    background-image: linear-gradient(to bottom, rgba(5, 10, 6, 0.98), rgba(5, 10, 6, 0.99)), url('https://kdloteojnkcjblhoirea.supabase.co/storage/v1/object/public/public-files/0.35264767367153915.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .problem-section h2, .about-card h2, .target-section h2, .modules-section h2, .deliverables-box h2, .bonus-section h2, .cert-text h2, .academy-text h2, .price-header h2, .faq-section h2 {
        font-size: 2rem;
    }
    
    .quote, .quote-large {
        font-size: 1.5rem;
    }
    
    .glass {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .price-avista {
        font-size: 3rem;
    }
    
    .price-parcelado {
        font-size: 2rem;
    }
}
