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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;

    /* Modern shadcn-inspired design tokens */
    --radius: 0.5rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Ring effects for focus states */
    --ring-offset: 2px;
    --ring-color: rgba(255, 107, 53, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Video Facade (lazy load optimization) */
.video-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-facade img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.play-button {
    position: relative;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-facade:hover .play-button {
    transform: scale(1.1);
}

.play-button svg {
    display: block;
}

/* CTA Button - Modern shadcn-inspired design */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #e55a2b;
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.cta-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 var(--ring-offset) var(--bg-white), 0 0 0 calc(var(--ring-offset) + 3px) var(--ring-color);
}

/* Button variants */
.cta-button-secondary {
    background: var(--secondary-color);
    color: white;
}

.cta-button-secondary:hover {
    background: #003d6e;
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.cta-button-outline:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button-ghost {
    background: transparent;
    color: var(--text-dark);
    box-shadow: none;
}

.cta-button-ghost:hover {
    background: var(--bg-light);
}

/* Button sizes */
.cta-button-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.cta-button-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Countdown Section - Modern shadcn-inspired design */
.countdown-section {
    background: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    min-width: 120px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials - Modern shadcn-inspired design */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonial-grid {
    display: grid;
    gap: 60px;
}

.testimonial {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial:nth-child(even) {
    grid-template-columns: 1fr 2fr;
}

.testimonial:nth-child(even) .testimonial-content {
    order: 2;
}

.testimonial:nth-child(even) .testimonial-image {
    order: 1;
}

.testimonial-image {
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimonial-author a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.testimonial-author a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover .testimonial-image img {
    transform: scale(1.05);
}

/* Problem Section - Modern shadcn-inspired design */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--text-dark);
}

.problem-title {
    font-size: 2rem;
    text-align: center;
    margin: 40px 0 30px;
    color: var(--primary-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.problem-item::before {
    content: '⚠';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.problem-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.problem-item:hover::before {
    opacity: 0.2;
}

.problem-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.benefits-column {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.benefits-column h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.benefits-column ul {
    list-style: none;
}

.benefits-column li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-text {
    font-size: 1.8rem;
    text-align: center;
    margin: 60px 0 40px;
    line-height: 1.6;
}

/* Companies Section */
.companies-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    margin-top: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.companies-grid img {
    width: 100%;
    height: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.companies-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Course Presentation */
.course-presentation {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.presentation-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

.course-image {
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.course-description,
.course-audience {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Method Section */
.method-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.method-steps {
    margin-top: 60px;
}

.method-step {
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: left;
}

.step-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.method-step h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.method-step img {
    max-width: 400px;
    width: 100%;
    margin: 30px auto;
    display: block;
}

.method-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.method-step ul {
    margin-top: 20px;
    padding-left: 20px;
}

.method-step li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Modules Section - Modern shadcn-inspired design */
.modules-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.module {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius) 0 0 var(--radius);
    opacity: 0;
    transition: opacity 0.3s;
}

.module:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.module:hover::before {
    opacity: 1;
}

.module h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.module h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.module p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.module-meta {
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Advanced Section Divider */
.advanced-divider {
    text-align: center;
    padding: 60px 20px;
    margin: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: calc(var(--radius) * 2);
    position: relative;
    overflow: hidden;
}

.advanced-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" fill-opacity="0.1"/></svg>');
    opacity: 0.3;
}

.advanced-divider-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.highlight-gradient {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.advanced-divider-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Instructors Section - Modern shadcn-inspired design */
.instructors-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 50px;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: calc(var(--radius) * 2);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.instructor-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instructor-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.instructor-card:hover .instructor-image::after {
    opacity: 1;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.05);
}

.instructor-info {
    padding: 2rem;
}

.instructor-info h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.instructor-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.instructor-social {
    margin-top: 15px;
}

.instructor-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.instructor-social a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.instructor-social a:active {
    transform: translateY(0);
}

/* Pricing Section - Modern shadcn-inspired design */
.pricing-section {
    padding: 80px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: calc(var(--radius) * 2);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--primary-color);
}

.pricing-card.featured::before {
    content: "MÁS POPULAR";
    position: absolute;
    top: 1.5rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.pricing-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 20px;
}

.fire-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 4px solid #ffc107;
    box-shadow: var(--shadow-sm);
}

.offer-details {
    margin: 30px 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.offer-details p {
    margin: 5px 0;
    font-size: 1.1rem;
}

.discount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.2);
}

.final-price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 15px 0;
}

.validity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.includes {
    text-align: left;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.includes ul {
    list-style: none;
}

.includes li {
    padding: 0.5rem 0;
    font-size: 1rem;
    display: block;
    line-height: 1.6;
    transition: all 0.2s;
}

.includes li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.includes li.excluded {
    text-decoration: line-through;
    opacity: 0.5;
    color: var(--text-light);
}

.includes li.excluded:hover {
    padding-left: 0;
    color: var(--text-light);
}

/* Narrative Section Enhanced */
.narrative-section-enhanced {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Narrative Hero */
.narrative-hero {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.narrative-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.narrative-hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--secondary-color);
    max-width: 900px;
    margin: 0 auto;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Value Propositions */
.narrative-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.value-prop-card {
    background: white;
    padding: 40px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    border-radius: 0 0 0 100%;
}

.value-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-left-color: var(--secondary-color);
}

.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-prop-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Reflection Callout */
.reflection-callout {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 30px 40px;
    border-radius: var(--radius);
    border-left: 5px solid #ffc107;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
}

.reflection-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.reflection-callout p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #856404;
    margin: 0;
    font-style: italic;
}

/* Myth Buster */
.myth-buster {
    background: white;
    padding: 50px;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-xl);
    margin: 60px 0;
    border: 3px solid var(--secondary-color);
    position: relative;
}

.myth-buster::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: white;
    padding: 0 20px;
}

.myth-title {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--secondary-color);
    text-align: center;
    margin: 0;
}

.highlight-negative {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight-negative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.3;
}

/* False Beliefs Box */
.false-beliefs-box {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 5px solid #dc3545;
    margin: 50px 0;
    box-shadow: var(--shadow-md);
    position: relative;
}

.false-beliefs-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 3rem;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.false-beliefs-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #721c24;
    margin: 0 0 20px 0;
    padding: 0 0 0 30px;
    border-left: 4px solid #dc3545;
    font-weight: 600;
}

.false-beliefs-text {
    font-size: 1.2rem;
    color: #721c24;
    margin: 0;
    line-height: 1.7;
}

/* CTA Text Box */
.cta-text-box {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 50px;
    border-radius: calc(var(--radius) * 2);
    border: 3px solid #28a745;
    margin: 60px 0;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.cta-text-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.cta-text-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-text-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #155724;
    margin: 0;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 80px 0 50px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.divider-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--primary-color);
}

/* Three Things Title */
.three-things-title {
    font-size: 2.3rem;
    line-height: 1.4;
    text-align: center;
    color: var(--secondary-color);
    margin: 0 0 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.title-highlight {
    background: linear-gradient(135deg, var(--primary-color), #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.title-emphasis {
    color: var(--primary-color);
    font-weight: 600;
}

/* Old Narrative Section (for compatibility) */
.narrative-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.narrative-section .section-title {
    margin-bottom: 20px;
}

.narrative-section .section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.narrative-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 20px 0;
    line-height: 1.8;
}

.three-things {
    margin-top: 40px;
    display: grid;
    gap: 40px;
}

.thing-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.thing-item-image {
    width: 100%;
    max-height: 350px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.thing-item-image img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
}

.thing-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.thing-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.thing-item ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.thing-item li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Compact Testimonials */
.testimonials-compact {
    padding: 60px 20px;
    background: var(--bg-white);
}

.testimonials-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-compact {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-compact:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-compact-image {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-compact-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-compact-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-compact-author {
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.testimonial-compact-author strong {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-compact-author a {
    color: var(--primary-color);
    text-decoration: none;
}

.testimonial-compact-author a:hover {
    text-decoration: underline;
}

/* Benefits with Icons Section */
.benefits-icons-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.benefits-icons-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
    padding: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-icon-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.benefit-icon-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.benefit-icon-image::after {
    content: attr(data-label);
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
}

.benefit-icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.benefit-icon-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-icon-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* CTA Career Section */
.cta-career-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-career-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-career-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-career-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-2xl);
}

/* Community Section */
.community-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.flags-container {
    margin: 40px 0;
}

.flags-text {
    font-size: 2rem;
    line-height: 1.8;
}

.community-section .cta-button {
    margin-top: 30px;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.bonus-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.bonus-item {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}

.bonus-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.bonus-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.bonus-meta {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.bonus-item p {
    font-size: 1.15rem;
    font-weight: 500;
}

.bonus-item ul {
    margin-top: 15px;
    margin-left: 20px;
}

.bonus-item li {
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Why Learn Section */
.why-learn-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.why-learn-content {
    max-width: 900px;
    margin: 30px auto;
}

.why-learn-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-learn-image {
    margin-top: 40px;
}

.why-learn-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section - Modern shadcn-inspired design */
.faq-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    color: var(--text-dark);
}

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

.faq-question:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--ring-color);
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: calc(var(--radius) / 2);
}

.faq-item.active .faq-question:after {
    content: "-";
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 15px;
    }

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

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

    .hero-description {
        font-size: 1.1rem;
    }

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

    .testimonial:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .testimonial:nth-child(even) .testimonial-content,
    .testimonial:nth-child(even) .testimonial-image {
        order: initial;
    }

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

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

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

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

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }

    .nav {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .header-content {
        justify-content: center;
        text-align: center;
    }

    .logo img {
        max-width: 180px;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.4;
        min-height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .presentation-title {
        font-size: 2rem;
    }

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

    /* Compact testimonials responsive */
    .testimonials-compact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-compact {
        padding: 20px;
    }

    .testimonial-compact-image img {
        width: 80px;
        height: 80px;
    }

    /* Narrative section responsive */
    .three-things {
        gap: 25px;
    }

    .thing-item {
        padding: 20px;
    }

    .thing-item h3 {
        font-size: 1.3rem;
    }

    /* Benefits icons responsive */
    .benefits-icons-grid {
        gap: 30px;
    }

    .benefit-icon-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 15px;
    }

    .benefit-icon-item:hover {
        transform: none;
    }

    .benefit-icon-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .benefit-icon-item h3 {
        font-size: 1.4rem;
    }

    .benefit-icon-item p {
        font-size: 1rem;
    }

    /* CTA Career responsive */
    .cta-career-content h2 {
        font-size: 1.8rem;
    }

    .cta-career-content p {
        font-size: 1.1rem;
    }

    /* Community section responsive */
    .flags-text {
        font-size: 1.5rem;
    }

    /* Bonus section responsive */
    .bonus-item {
        padding: 25px;
    }

    .bonus-item h3 {
        font-size: 1.5rem;
    }

    /* Why learn responsive */
    .why-learn-content p {
        font-size: 1.1rem;
    }

    /* CTA buttons responsive */
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-button-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Countdown responsive */
    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    /* Method step responsive */
    .method-step h2 {
        font-size: 1.5rem;
    }

    .method-step p,
    .method-step li {
        font-size: 1rem;
    }

    /* Narrative Section Enhanced Responsive */
    .narrative-hero-title {
        font-size: 1.8rem;
    }

    .narrative-icon {
        font-size: 3rem;
    }

    .narrative-value-props {
        grid-template-columns: 1fr;
    }

    .value-prop-card {
        padding: 30px;
    }

    .value-prop-icon {
        font-size: 2.5rem;
    }

    .value-prop-card p {
        font-size: 1.1rem;
    }

    .reflection-callout {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .reflection-callout p {
        font-size: 1.1rem;
    }

    .myth-buster {
        padding: 30px 20px;
    }

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

    .false-beliefs-quote {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .false-beliefs-text {
        font-size: 1.1rem;
    }

    .false-beliefs-icon {
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
        right: 20px;
    }

    .cta-text-box {
        padding: 30px;
    }

    .cta-text-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text-icon {
        font-size: 2.5rem;
    }

    .cta-text-content p {
        font-size: 1.1rem;
    }

    .divider-number {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .three-things-title {
        font-size: 1.8rem;
    }

    .title-highlight {
        font-size: 2rem;
    }

    /* Advanced Divider Responsive */
    .advanced-divider {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .advanced-divider-title {
        font-size: 1.8rem;
    }

    .advanced-divider-subtitle {
        font-size: 1rem;
    }
}
