:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #121212;
    --color-dark-secondary: #1a1a1a;
    --color-yellow: #FFD700;
    --color-yellow-bright: #FFC700;
    --color-yellow-dark: #B8860B;
    --color-gray: #808080;
    --color-gray-light: #a0a0a0;
    --color-white: #ffffff;

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Effects */
    --glow-yellow: 0 0 20px rgba(255, 215, 0, 0.3);
    --glow-yellow-strong: 0 0 40px rgba(255, 215, 0, 0.6);
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    will-change: transform;
    animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-yellow), transparent);
    top: -250px;
    right: -250px;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-yellow-bright), transparent);
    bottom: -200px;
    left: -200px;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(30px, 30px, 0);
    }
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 100;
    padding: var(--spacing-md) 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
}

.logo-text {
    color: var(--color-white);
}

.logo-highlight {
    color: var(--color-yellow);
    text-shadow: var(--glow-yellow);
}

/* CTA Button */
.cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    color: var(--color-black);
    border: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    will-change: transform;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-yellow-strong);
}

.cta-button:hover .button-glow {
    left: 100%;
}

.nav-cta {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    min-height: calc(100vh - 100px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-yellow);
}

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

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray-light);
    max-width: 700px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    padding: 1.5rem 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
    will-change: transform;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translate3d(0, -5px, 0);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    margin-top: 0.5rem;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-yellow), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Mentor Introduction Section */
.mentor-intro-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-secondary) 50%, var(--color-dark) 100%);
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.mentor-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.mentor-intro-image-wrapper {
    position: relative;
}

.mentor-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mentor-intro-image-wrapper:hover .mentor-intro-image {
    transform: scale(1.02);
}

.mentor-intro-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    color: var(--color-black);
    padding: 1.5rem;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: var(--glow-yellow-strong);
    text-align: center;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mentor-intro-role {
    font-size: 1.25rem;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.mentor-intro-description {
    margin-bottom: var(--spacing-md);
}

.mentor-intro-description p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.mentor-intro-description strong {
    color: var(--color-yellow);
    font-weight: 600;
}

.mentor-intro-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Mentor Section */

.mentor-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
    position: relative;
}

.mentor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.mentor-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 2rem;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-yellow);
}

.frame-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mentor-badge-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    color: var(--color-black);
    padding: 1.5rem;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: var(--glow-yellow-strong);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--color-yellow);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.mentor-role {
    font-size: 1.25rem;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-md);
}

.mentor-description {
    margin-bottom: var(--spacing-md);
}

.mentor-description p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-light);
    line-height: 1.8;
}

.mentor-description strong {
    color: var(--color-yellow);
    font-weight: 600;
}

.mentor-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

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

.highlight-icon {
    width: 30px;
    height: 30px;
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--color-white);
}

/* Catchphrase Section */
.catchphrase-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.catchphrase-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.catchphrase-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
}

.catchphrase-author {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-light);
    font-weight: 500;
}

/* Events Gallery Section */
.events-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
    position: relative;
}

.events-subtitle {
    text-align: center;
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.event-photo {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-dark-secondary), var(--color-dark));
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-photo::before {
    content: '';
}

.event-photo:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: var(--glow-yellow);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.event-photo:hover .photo-overlay {
    transform: translateY(0);
}

.photo-label {
    color: var(--color-yellow);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Placeholder backgrounds for each photo */
.event-photo-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.event-photo-2 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.event-photo-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.event-photo-4 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.event-photo-5 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.event-photo-6 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.benefit-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translate3d(0, -5px, 0);
    box-shadow: var(--glow-yellow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-yellow);
}

.benefit-description {
    color: var(--color-gray-light);
    line-height: 1.8;
}

/* Modules Section */
.modules-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}

.modules-subtitle {
    font-family: var(--font-display);
    text-align: center;
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.module-card {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--transition-smooth);
}

.module-card:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.module-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.module-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0.75rem;
}

.module-description {
    color: var(--color-gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Bonus Section */
.bonus-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.bonus-item {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
    transition: var(--transition-smooth);
}

.bonus-item:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0.75rem;
}

.bonus-description {
    color: var(--color-gray-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Community Section */
.community-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-black), var(--color-dark-secondary));
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.community-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.community-text {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-md);
}

.community-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: var(--spacing-md) 0;
}

.community-benefit {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--color-yellow);
    text-align: left;
    color: var(--color-white);
    font-weight: 500;
}

.community-highlight {
    font-size: 1.2rem;
    color: var(--color-yellow);
    font-weight: 600;
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
}

.pricing-comparison {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.comparison-text {
    color: var(--color-gray-light);
    margin-bottom: 1.5rem;
}

.comparison-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-item {
    text-align: left;
    color: var(--color-white);
    font-size: 0.95rem;
}

.comparison-value {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.value-highlight {
    color: var(--color-yellow);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
}

.pricing-offer {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.main-offer-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 2px solid var(--color-yellow);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.main-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-bright), var(--color-yellow));
    box-shadow: 0 0 15px var(--color-yellow);
}

.offer-header {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--color-gray-light);
}

.strike {
    text-decoration: line-through;
    color: #ff4444;
    font-weight: 600;
    margin: 0 0.3rem;
}

.offer-price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.price-cents {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.price-installments {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Bonus Ticket Style */
.bonus-ticket-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px dashed rgba(192, 192, 192, 0.5);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    position: relative;
}

.ticket-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.ticket-content {
    flex: 1;
}

.ticket-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-yellow);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.ticket-name {
    display: block;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.2rem;
    font-family: var(--font-display);
}

.ticket-detail {
    font-size: 0.8rem;
    color: var(--color-gray-light);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-gray);
}

.pulse-animation {
    position: relative;
    animation: pulse-glow 2s infinite;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.8),
            rgba(255, 215, 0, 0.6),
            rgba(255, 255, 255, 0.8),
            rgba(255, 215, 0, 0.6));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: pulse-border 2s infinite, gradient-shift 3s ease infinite;
    filter: blur(8px);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 215, 0, 0.4),
            0 0 60px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.6),
            0 0 90px rgba(255, 215, 0, 0.4);
    }
}

@keyframes pulse-border {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.guarantee-section {
    margin-top: var(--spacing-lg);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-info {
    text-align: left;
}

.guarantee-title-large {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
}

.guarantee-description {
    color: var(--color-gray-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.guarantee-description strong {
    color: var(--color-yellow);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-black), var(--color-dark-secondary));
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    filter: blur(100px);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
}

.main-cta {
    padding: 1.5rem 3rem;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.cta-guarantee-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.cta-guarantee-card:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.guarantee-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-content {
    flex: 1;
    text-align: left;
}

.guarantee-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0.25rem;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--color-gray-light);
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    background: var(--color-black);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.footer-text {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    /* Hero Mobile */
    .hero-content {
        padding: 4rem 0;
        min-height: calc(100vh - 80px);
        justify-content: space-evenly;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        max-width: 90%;
        text-align: center;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* Hero Stats Mobile */
    .hero-stats {
        flex-direction: row;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        width: 100%;
    }

    .stat-card {
        flex: 1;
        padding: 1rem 0.75rem;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* CTA Buttons Mobile */
    .hero-cta,
    .main-cta {
        padding: 1rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .main-cta {
        padding: 1.2rem 2rem;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }

    /* Mentor Introduction Section Mobile */
    .mentor-intro-section {
        padding: 3rem 0;
    }

    .mentor-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mentor-intro-role {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mentor-intro-description {
        margin-bottom: 1.5rem;
    }

    .mentor-intro-description p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .mentor-intro-badge-floating {
        padding: 1rem;
        bottom: -15px;
        right: -15px;
    }

    /* Mentor Section Mobile */

    .mentor-section {
        padding: 3rem 0;
    }

    .mentor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .mentor-role {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mentor-description {
        margin-bottom: 1.5rem;
    }

    .mentor-description p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .highlight-item {
        gap: 0.75rem;
    }

    .highlight-icon {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

    .image-frame {
        padding: 1rem;
    }

    .frame-corner {
        width: 30px;
        height: 30px;
    }

    .mentor-badge-floating {
        padding: 1rem;
        bottom: -15px;
        right: -15px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    /* Benefits Section Mobile */
    .benefits-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }


    /* Catchphrase Section Mobile */
    .catchphrase-section {
        padding: 2rem 0;
    }

    .catchphrase-quote {
        font-size: 1.25rem;
    }

    .catchphrase-author {
        font-size: 0.9rem;
    }

    /* Events Section Mobile */
    .events-section {
        padding: 3rem 0;
    }

    .events-subtitle {
        font-size: 0.95rem;
    }

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

    .event-photo::before {
        font-size: 2rem;
    }

    .photo-label {
        font-size: 0.75rem;
    }

    /* CTA Guarantee Card Mobile */
    .cta-guarantee-card {
        flex-direction: row;
        padding: 1rem 1.25rem;
        max-width: 100%;
    }

    .guarantee-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .guarantee-icon {
        font-size: 1.25rem;
    }

    .guarantee-title {
        font-size: 0.9rem;
    }

    .guarantee-text {
        font-size: 0.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .benefit-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }


    /* Modules Section Mobile */
    .modules-section {
        padding: 3rem 0;
    }

    .modules-subtitle {
        font-size: 0.95rem;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .module-number {
        font-size: 2rem;
    }

    .module-title {
        font-size: 1.1rem;
    }

    /* Bonus Section Mobile */
    .bonus-section {
        padding: 3rem 0;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .bonus-icon {
        font-size: 2.5rem;
    }

    .bonus-title {
        font-size: 1rem;
    }

    /* Community Section Mobile */
    .community-section {
        padding: 3rem 0;
    }

    .community-title {
        font-size: 1.75rem;
    }

    .community-text {
        font-size: 1rem;
    }

    .community-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .community-benefit {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .community-highlight {
        font-size: 1.1rem;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-comparison {
        padding: 1.5rem;
    }

    .comparison-title {
        font-size: 1.25rem;
    }

    .comparison-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .comparison-item {
        font-size: 0.85rem;
    }

    .value-highlight {
        font-size: 1.25rem;
    }

    .offer-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        white-space: normal;
        line-height: 1.4;
    }

    .main-offer-card {
        padding: 2rem 1rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .price-currency {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .price-cents {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    .bonus-ticket-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .ticket-icon {
        font-size: 2rem;
    }

    .ticket-name {
        font-size: 1rem;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .guarantee-title-large {
        font-size: 1.1rem;
    }

    .guarantee-description {
        font-size: 0.85rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-guarantee {
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0;
    }

    .footer-logo {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    /* Glow effects - reduce on mobile */
    .glow-orb {
        filter: blur(60px);
        opacity: 0.15;
    }

    .glow-orb-1 {
        width: 300px;
        height: 300px;
    }

    .glow-orb-2 {
        width: 250px;
        height: 250px;
    }
}

/* Responsive - Extra Small Devices (Smartphones Portrait) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.65rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        gap: 0.3rem;
        max-width: 95%;
    }

    .badge-icon {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 0.75rem 0.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-cta,
    .main-cta {
        font-size: 0.8rem;
        padding: 0.9rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* Viral Section */
.viral-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-black), var(--color-dark));
}

/* Viral Gallery */
.viral-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.viral-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viral-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.viral-photo-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: var(--color-dark-secondary);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

.viral-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.viral-photo-card:hover .viral-photo {
    transform: scale(1.05);
}

.viral-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: padding 0.3s ease;
}

.viral-photo-card:hover .viral-photo-overlay {
    padding: 2.5rem 1.5rem 2rem;
}

.viral-photo-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-yellow);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.viral-photo-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Viral Gallery Container & Dots */
.viral-gallery-container {
    position: relative;
    width: 100%;
}

.viral-gallery-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.viral-gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.viral-gallery-dots .dot.active {
    background: var(--color-yellow);
    width: 30px;
    border-radius: 5px;
}

.viral-message {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.viral-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.viral-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.viral-text-highlight {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-white);
    font-weight: 600;
    margin: var(--spacing-md) 0;
}

.viral-text-strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 700;
    margin: var(--spacing-md) 0;
}

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

/* Target Audience Section */
.target-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-black);
}

/* Target Grid Premium */
.target-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: var(--spacing-lg) 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.target-card {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-yellow), var(--color-yellow-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.target-card:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.target-card:hover::before {
    opacity: 1;
}

.target-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.target-card:hover .target-icon {
    transform: scale(1.15) rotate(5deg);
}

.target-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.target-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin: 0;
    line-height: 1.3;
}

.target-card-text {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    line-height: 1.5;
    margin: 0;
}

/* Highlight Card (Viral) */
.target-card-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.target-card-highlight::before {
    opacity: 1;
    width: 6px;
}

.target-card-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.12));
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.target-conclusion {
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-top: var(--spacing-lg);
}

.target-conclusion strong {
    color: var(--color-yellow);
    font-weight: 700;
}

/* Modules Grid Detailed */
.modules-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.module-card-detailed {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: var(--transition-smooth);
}

.module-card-detailed:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.module-topics {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.module-topics li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    color: var(--color-gray-light);
    position: relative;
    line-height: 1.6;
}

.module-topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-yellow);
    font-weight: 700;
}

.bonus-subtitle {
    font-family: var(--font-display);
    text-align: center;
    color: var(--color-gray-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Social Proof Section */
.social-proof-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.proof-stat-card {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: var(--transition-smooth);
}

.proof-stat-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--glow-yellow);
}

.proof-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1rem;
    color: var(--color-gray-light);
}

.proof-message {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
}

.proof-text {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
}

.proof-text-large {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin: var(--spacing-md) 0;
}

.proof-conclusion {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-top: var(--spacing-md);
}

/* Pricing Urgency Badge */
.pricing-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 199, 0, 0.15));
    border: 2px solid var(--color-yellow);
    border-radius: 12px;
    margin: 0 auto 2rem;
    animation: urgencyPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

@keyframes urgencyPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

.urgency-icon {
    font-size: 1.5rem;
    animation: urgencyShake 1s ease-in-out infinite;
}

@keyframes urgencyShake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.urgency-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-yellow);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

/* Pricing Tiers */
.pricing-intro {
    font-family: var(--font-display);
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.pricing-tier {
    padding: var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-tier:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--glow-yellow);
}

.tier-hot {
    border-color: var(--color-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.tier-badge {
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray-light);
}

.tier-price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.tier-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.tier-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.tier-cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.tier-installments {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.tier-features {
    margin: 1.5rem 0;
}

.tier-feature {
    padding: 0.75rem 0;
    color: var(--color-gray-light);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.tier-feature:last-child {
    border-bottom: none;
}

.tier-warning,
.tier-info,
.tier-warning-premium {
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 8px;
}

.tier-warning {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffaa00;
    font-weight: 600;
}

.tier-info {
    background: rgba(255, 215, 0, 0.05);
    color: var(--color-gray-light);
    font-style: italic;
}

.tier-warning-premium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--color-yellow);
}

.tier-cta {
    width: 100%;
    margin-top: 1rem;
}

.guarantee-highlight {
    color: var(--color-yellow);
    font-weight: 700;
}

/* Final CTA Section */
.final-cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-black), var(--color-dark-secondary));
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    filter: blur(100px);
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 165, 0, 0.2);
    border: 2px solid rgba(255, 165, 0, 0.5);
    color: #ffaa00;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.final-text {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.final-text strong {
    color: var(--color-yellow);
    font-weight: 700;
}

.final-text-strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin: var(--spacing-md) 0;
}

.final-text-highlight {
    font-size: 1.5rem;
    color: var(--color-yellow);
    font-weight: 700;
    font-style: italic;
    margin: var(--spacing-md) 0;
}

.final-cta-button {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .viral-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .viral-gallery::-webkit-scrollbar {
        display: none;
    }

    .viral-photo-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .viral-gallery-dots {
        display: flex;
    }

    .viral-photo-price {
        font-size: 1.5rem;
    }

    .viral-text,
    .viral-text-highlight,
    .viral-text-strong {
        font-size: 1rem;
    }

    .target-grid-premium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .target-card {
        padding: 1.5rem;
    }

    .target-icon {
        font-size: 2.5rem;
    }

    .target-card-title {
        font-size: 1.1rem;
    }

    .target-card-text {
        font-size: 0.9rem;
    }

    .target-text {
        font-size: 0.95rem;
    }

    .modules-grid-detailed {
        gap: 1rem;
    }

    .module-topics li {
        font-size: 0.9rem;
    }

    .proof-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .proof-number {
        font-size: 2.5rem;
    }

    .proof-text-large {
        font-size: 1.5rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tier-amount {
        font-size: 3rem;
    }

    .final-title {
        font-size: 1.75rem;
    }

    .final-text {
        font-size: 1rem;
    }

    .final-cta-button {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

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

    .viral-photo-price {
        font-size: 1.4rem;
    }

    .viral-photo-label {
        font-size: 0.8rem;
    }

    .tier-amount {
        font-size: 2.5rem;
    }

    .proof-number {
        font-size: 2rem;
    }
}
