/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Sober and Clear for Religious Audience */
    --primary-color: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --secondary-color: #c0922a;
    --secondary-light: #d4a843;
    --accent-color: #27ae60;
    --accent-light: #2ecc71;
    
    --text-primary: #2c3e50;
    --text-secondary: #5d6d7e;
    --text-light: #85929e;
    --text-white: #ffffff;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: #ecf0f1;
    --bg-dark: #2c3e50;
    
    --border-color: #e8ecef;
    --shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
    --shadow-hover: 0 4px 20px rgba(44, 62, 80, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-lg);
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn-cta:hover,
.btn-cta:focus {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(192, 146, 42, 0.3);
}

/* Header */
/* Centralized Section Titles */
h2, .section-title {
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl) auto;
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-bottom: 2px solid var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo h1 {
    font-size: var(--font-size-xl);
    margin-bottom: 0;
    color: var(--primary-color);
}

.tagline {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.cta-button {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-sm);
}

/* Hero Section */
.hero {
    background-image: url('assets/background-palavra.webp'); /* caminho da imagem */
    background-size: cover; /* cobre toda a área */
    background-position: center; /* centraliza a imagem */
    background-repeat: no-repeat; /* evita repetição */
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.logo-small {
    max-height: 100px; /* ajuste conforme necessário */
    vertical-align: middle;
    margin-right: 10px;
}


.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-md);
    color: #E1E1E1;
}

.highlight {
    display: block;
    font-size: var(--font-size-2xl);
    color: var(--secondary-color);
    font-weight: 200;
    font-style: normal;
    margin-top: var(--space-xs);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: #E1E1E1;
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: #E1E1E1;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: var(--space-xl);
}

.guarantee {
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--accent-color);
    font-weight: 500;
}

/* Sections */
section {
    padding: var(--space-3xl) 0;
}

section:nth-child(even) {
    background-color: var(--bg-secondary);
}

.section-intro {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Section */
.why-section {
    text-align: center;
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
}

/* How It Works */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.pricing-highlight {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-white);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-xl);
}

.pricing-highlight strong {
    color: var(--text-white);
    font-size: var(--font-size-2xl);
}

.pricing-detail {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.course-card {
    padding: var(--space-lg);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.course-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-lg);
}

.courses-footer {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    font-style: italic;
}

/* Professors Grid */
.professors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.professor-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.professor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.professor-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(192, 146, 42, 0.2);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: var(--space-sm);
    left: var(--space-lg);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card blockquote {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Mission Call */
.mission-call {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    text-align: center;
}

.mission-content {
    max-width: 700px;
    margin: 0 auto;
}

.mission-call h2 {
    color: var(--text-white);
    margin-bottom: var(--space-xl);
}

.mission-call p {
    font-size: var(--font-size-lg);
    color: var(--text-white);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.mission-call strong {
    color: var(--secondary-light);
}

/* FAQ - Updated Modern Design */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question[aria-expanded="true"] {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.faq-answer p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-accent));
    text-align: center;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.offer-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.offer-item p {
    margin: 0;
    font-size: var(--font-size-base);
    text-align: left;
}

.final-message {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.final-message h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-2xl);
}

.final-message p {
    font-size: var(--font-size-lg);
    margin: 0;
}

.cta-button-container {
    margin-top: var(--space-2xl);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-2xl) 0 var(--space-lg) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    color: var(--text-white);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--secondary-light);
    font-style: italic;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--secondary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--primary-light);
}

.footer-bottom p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl) 0;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .highlight {
        font-size: var(--font-size-xl);
    }
    
    .features-grid,
    .courses-grid,
    .professors-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .btn-large {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-base);
    }
    
    .feature-card,
    .course-card,
    .professor-card {
        padding: var(--space-md);
    }
    
    .testimonial-card {
        padding: var(--space-lg);
    }
}

/* Video Section */
.video-section {
    text-align: center;
    background-color: var(--bg-secondary);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    animation: fadeInUp 0.8s ease-out;
}

.video-container iframe {
    border-radius: var(--border-radius-lg);
}

/* Platform Preview */
.platform-preview {
    background-color: var(--bg-primary);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.preview-text h2 {
    margin-bottom: var(--space-lg);
}

.preview-features {
    list-style: none;
    padding: 0;
    margin-top: var(--space-lg);
}

.preview-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-lg);
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.platform-mockup {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    animation: fadeInLeft 0.8s ease-out;
}

/* Enhanced Feature Cards */
.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
    stroke-width: 1.5;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Enhanced Course Cards */
.course-card {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.course-card:nth-child(2) { animation-delay: 0.1s; }
.course-card:nth-child(3) { animation-delay: 0.2s; }
.course-card:nth-child(4) { animation-delay: 0.3s; }
.course-card:nth-child(5) { animation-delay: 0.4s; }
.course-card:nth-child(6) { animation-delay: 0.5s; }
.course-card:nth-child(7) { animation-delay: 0.6s; }
.course-card:nth-child(8) { animation-delay: 0.7s; }
.course-card:nth-child(9) { animation-delay: 0.8s; }

/* Course Cards Info */
.course-info {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-color);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.duration,
.instructor {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

.duration svg,
.instructor svg {
    width: 16px;
    height: 16px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.instructor {
    color: var(--primary-color);
}

/* Professor Cards */
.professor-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md) auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    animation: zoomIn 0.6s ease-out;
}

.professor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.professor-card:hover .professor-image img {
    transform: scale(1.1);
}

.professor-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.professor-card:nth-child(2) { animation-delay: 0.1s; }
.professor-card:nth-child(3) { animation-delay: 0.2s; }
.professor-card:nth-child(4) { animation-delay: 0.3s; }
.professor-card:nth-child(5) { animation-delay: 0.4s; }
.professor-card:nth-child(6) { animation-delay: 0.5s; }
.professor-card:nth-child(7) { animation-delay: 0.6s; }
.professor-card:nth-child(8) { animation-delay: 0.7s; }
.professor-card:nth-child(9) { animation-delay: 0.8s; }
.professor-card:nth-child(10) { animation-delay: 0.9s; }

/* Final CTA Section - Redesigned */
.final-cta {
    background: #f5f5f5;
    padding: var(--space-3xl) 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    color: white;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.2);
    text-align: left;
    animation: slideInUp 0.8s ease-out;
    border: 2px solid var(--secondary-color);
}

/* Plan Title */
.plan-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    letter-spacing: 1px;
	color: burlywood
}

/* Price Display */
.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value .currency {
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

.price-value .amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1;
}

.price-value .period {
    font-size: var(--font-size-xl);
    font-weight: 500;
}

.price-alternative {
    text-align: center;
    font-size: var(--font-size-base);
    margin: 0 0 var(--space-sm) 0;
    opacity: 0.9;
	color: aliceblue
}

.price-description {
    text-align: center;
    font-size: var(--font-size-sm);
    opacity: 0.8;
    margin-bottom: var(--space-2xl);
    line-height: 1.4;
	color: aliceblue
}

/* Main Benefits */
.main-benefits {
    margin-bottom: var(--space-2xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.benefit-item.highlight {
    font-weight: 600;
    color: var(--secondary-color);
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #48bb78;
    margin-top: 2px;
    stroke-width: 2.5;
}

.check-icon.green {
    color: #48bb78;
}

/* CTA Message Section */
.cta-message {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.cta-headline {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.3;
    color: var(--secondary-color);
}

.cta-subtext {
    font-size: var(--font-size-base);
    line-height: 1.5;
    opacity: 0.9;
	color: aliceblue
}

/* CTA Button */
.cta-button-container {
    text-align: center;
}

.main-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-decoration: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(192, 146, 42, 0.3);
    transition: all var(--transition-smooth);
    width: 100%;
    text-align: center;
}

.main-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 146, 42, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Standalone Price Badge */
.price-badge-standalone {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideInUp 0.8s ease-out;
    transform: scale(1.05);
}

.price-badge-standalone .price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--space-xs);
    color: white;
}

.price-badge-standalone .currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.price-badge-standalone .amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1;
}

.price-badge-standalone .period {
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.price-badge-standalone .price-description {
    color: white;
    font-size: var(--font-size-base);
    opacity: 0.9;
}

/* Benefits Container */
.benefits-container {
    max-width: 700px;
    margin: 0 auto var(--space-2xl) auto;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out 0.2s both;
    border: 2px solid var(--secondary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    animation: slideInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.benefit-item:nth-child(2) { animation-delay: 0.4s; }
.benefit-item:nth-child(3) { animation-delay: 0.6s; }

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.benefit-item span {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
    line-height: 1.5;
}

.offer-main {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--secondary-color);
    animation: pulse 2s infinite alternate;
}

.price-highlight {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    transform: scale(1.1);
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: var(--space-xs);
}

.currency {
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.price-description {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.offer-features {
    display: grid;
    gap: var(--space-md);
}

.offer-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    animation: slideInRight 0.6s ease-out;
    animation-fill-mode: both;
}

.offer-item:nth-child(2) { animation-delay: 0.2s; }
.offer-item:nth-child(3) { animation-delay: 0.4s; }

.offer-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.offer-item p {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    text-align: left;
}

.cta-section {
    animation: bounceIn 1s ease-out 0.5s both;
}

.final-message {
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.final-message h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-2xl);
}

.final-message p {
    font-size: var(--font-size-lg);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    from {
        box-shadow: var(--shadow-hover);
    }
    to {
        box-shadow: 0 8px 30px rgba(192, 146, 42, 0.3);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.4);
        --border-color: #333;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .preview-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .preview-text {
        order: 2;
    }
    
    .preview-image {
        order: 1;
    }
    
    .offer-main {
        padding: var(--space-lg);
    }
    
    .price-badge {
        padding: var(--space-md) var(--space-lg);
    }
    
    .amount {
        font-size: var(--font-size-4xl);
    }
    
    /* New Pricing Card Mobile Styles */
    .pricing-card {
        max-width: 90%;
        margin: 0 auto;
        padding: var(--space-xl);
    }
    
    .plan-title {
        font-size: var(--font-size-lg);
    }
    
    .price-value .currency {
        font-size: var(--font-size-xl);
    }
    
    .price-value .amount {
        font-size: var(--font-size-4xl);
    }
    
    .price-value .period {
        font-size: var(--font-size-lg);
    }
    
    .benefit-item {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-sm);
    }
    
    .cta-headline {
        font-size: var(--font-size-lg);
    }
    
    .cta-subtext {
        font-size: var(--font-size-sm);
    }
    
    .main-cta-button {
        font-size: var(--font-size-base);
        padding: var(--space-md) var(--space-lg);
    }
    
    /* FAQ Mobile Styles */
    .faq-item {
        margin-bottom: var(--space-sm);
    }
    
    .faq-question {
        font-size: var(--font-size-base);
        padding: var(--space-md) var(--space-md);
        font-weight: 600;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer {
        padding: 0 var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--space-md) var(--space-md) var(--space-md);
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 0 -var(--space-sm);
        border-radius: 0;
    }
    
    .professor-image {
        width: 100px;
        height: 100px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .duration,
    .instructor {
        font-size: var(--font-size-xs);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-bg-image {
        opacity: 0.05;
    }
}n-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #1a1a1a;
        --bg-secondary: #242424;
        --bg-accent: #2d2d2d;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --text-light: #888;
        --border-color: #404040;
    }
}
