:root {
    --bg-color: #050505;
    --text-main: #FFFFFF;
    --text-muted: #A0AAB2;
    --green-primary: #00E676;
    --green-dark: #00B259;
    --teal-accent: #00E5FF;
    --teal-dark: #00838F;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
}

.highlight-green {
    background: linear-gradient(90deg, var(--green-primary), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(0, 229, 255, 0.05) 40%, rgba(5, 5, 5, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 24px;
}

/* Video Placeholder */
.video-container {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 40px auto;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 230, 118, 0.15), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.video-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease;
}

.video-container:hover .video-icon {
    color: #FF0000;
}

/* Subheadline */
.subheadline {
    max-width: 700px;
    margin: 0 auto 40px;
}

/* CTA Wrapper & Button */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--green-primary) 0%, #00C853 50%, var(--teal-dark) 100%);
    background-size: 200% auto;
    color: var(--bg-color);
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    max-width: 400px;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 230, 118, 0.3);
}

.cta-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .cta-icon {
    transform: translateX(5px);
}

/* Guarantee and Social Proof */
.social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.divider {
    width: 4px;
    height: 4px;
    background-color: var(--surface-border);
    border-radius: 50%;
}

.customers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -10px;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--surface);
    border: 2px solid var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--text-main);
}

.customers strong {
    color: var(--text-main);
    font-weight: 700;
}

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

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Section 2: Features */
.features-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.card-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: var(--text-main);
}

.card-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.card-description strong {
    color: var(--text-main);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.feature-list li strong {
    color: var(--text-main);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Negative Card Styles */
.card-negative {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(255,50,50,0.02) 100%);
    border-color: rgba(255, 50, 50, 0.1);
}

.card-negative:hover {
    box-shadow: 0 20px 40px rgba(255, 50, 50, 0.05);
}

.list-negative .icon-box {
    background: rgba(255, 50, 50, 0.1);
    color: #FF5252;
}

/* Positive Card Styles */
.card-positive {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,230,118,0.05) 100%);
    border-color: rgba(0, 230, 118, 0.2);
}

.card-positive:hover {
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.4);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,230,118,0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.card-positive .card-title,
.card-positive .card-description,
.card-positive .card-subtitle,
.card-positive .feature-list {
    position: relative;
    z-index: 1;
}

.list-positive .icon-box {
    background: rgba(0, 230, 118, 0.15);
    color: var(--green-primary);
}

.list-positive li {
    color: var(--text-main);
}

/* Conclusion Text */
.conclusion-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--surface-border);
}

.conclusion-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

/* Section 3: Steps */
.steps-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 230, 118, 0.02) 100%);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-primary);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

.steps-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Carousel Placeholder */
.carousel-wrapper {
    width: 100%;
    margin-bottom: 60px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--green-primary) var(--surface);
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
}

.carousel-container::-webkit-scrollbar-track {
    background: var(--surface);
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background-color: var(--green-primary);
    border-radius: 4px;
}

.carousel-item {
    flex: 0 0 auto;
    width: 280px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
    scroll-snap-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.carousel-item:hover {
    transform: scale(1.02);
    border-color: var(--green-primary);
    color: var(--text-main);
}

.carousel-item i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

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

/* Final Highlight */
.final-highlight {
    text-align: center;
    padding: 24px 40px;
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
}

.final-highlight h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    white-space: nowrap;
}

/* Section 4: Target Audience */
.audience-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.02) 0%, var(--bg-color) 100%);
}

.audience-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.audience-description strong {
    color: var(--text-main);
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.profession-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.profession-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3); /* Teal accent hover */
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,229,255,0.05));
}

.prof-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--green-primary), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: transform 0.3s ease;
}

.profession-card:hover .prof-icon {
    transform: scale(1.1);
}

.profession-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.more-professions {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

/* Section 5: Testimonials */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 230, 118, 0.02) 100%);
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.testimonial-placeholder {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.testimonial-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--green-primary);
    color: var(--text-main);
}

.testimonial-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section 6: Benefits */
.benefits-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,230,118,0.05) 100%);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 229, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.benefit-icon i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--green-primary), var(--teal-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section 8: Results Marquee */
.results-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.02) 0%, var(--bg-color) 100%);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: scroll 50s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused; /* Pauses the auto-scroll when user hovers */
}

.marquee-item {
    width: 320px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.marquee-item:hover {
    transform: scale(1.02);
    border-color: var(--green-primary);
    color: var(--text-main);
}

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

/* Keyframes for Marquee */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

/* Section 9: Content & Bonuses */
.content-bonus-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.course-content-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.4) 100%);
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-list li {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bonus-card {
    background: linear-gradient(145deg, rgba(0, 230, 118, 0.03) 0%, rgba(0, 229, 255, 0.03) 100%);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--teal-accent));
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

.bonus-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px dashed rgba(0, 230, 118, 0.3);
}

.bonus-icon i {
    font-size: 2rem;
    color: var(--green-primary);
}

.bonus-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.4;
}

.bonus-card p {
    font-size: 1.125rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes price to bottom */
}

.bonus-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
}

.old-price {
    color: #ff4444;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.free-price {
    color: var(--text-main);
    font-weight: 400;
    font-size: 1.5rem;
}

.free-price .price-green {
    color: var(--green-primary);
    font-weight: 800;
}

.final-offer-summary {
    text-align: center;
    padding: 30px;
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.final-offer-summary h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

/* Section 10: Guarantee */
.guarantee-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 230, 118, 0.03) 100%);
}

.guarantee-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0.6) 100%);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee-icon-large {
    font-size: 5rem;
    color: var(--green-primary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.4));
}

.guarantee-box h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-text p strong {
    color: var(--text-main);
}

.guarantee-highlight {
    font-weight: 700;
    color: var(--text-main);
    margin-top: 25px;
    font-size: 1.25rem !important;
}

/* Section 11: FAQ */
.faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

.faq-question i {
    color: var(--teal-accent);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--surface-border);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .professions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 12px;
    }

    .divider {
        display: none;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    .feature-card {
        padding: 30px 20px;
    }
    
    .conclusion-text {
        padding: 30px 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }

    .carousel-item {
        width: 240px; /* slightly smaller on mobile */
    }
    
    .marquee-item {
        width: 260px;
    }
    
    .professions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .profession-card {
        padding: 20px 15px;
    }
    
    .prof-icon {
        font-size: 2rem;
    }
}
