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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Video Container - Horizontal (Default) */
.video-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Video Container - Vertical (9:16 format) */
.video-container-vertical {
    max-width: 450px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
}

.video-container-vertical iframe {
    width: 100%;
    height: 800px;
    display: block;
    border: none;
}

.video-placeholder {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 8rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    display: block;
}

.video-placeholder p {
    font-size: 1.25rem;
    color: #d1d5db;
}

video {
    width: 100%;
    display: block;
}

/* CTA Primary */
.cta-primary {
    margin-top: 2rem;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.problem-card i {
    font-size: 3rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.problem-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.solution-point {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.point-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.point-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.solution-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Learn Section */
.learn-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.learn-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.learn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.learn-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.learn-icon i {
    font-size: 2rem;
    color: white;
}

.learn-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.learn-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Free Quick Win Section */
.free-quickwin-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
}

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

.free-badge i {
    font-size: 1.25rem;
}

.quickwin-video-container {
    max-width: 100%;
    margin: 3rem 0 2rem;
}

.quickwin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.meta-proof {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.meta-proof i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.meta-proof p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.quickwin-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-item span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: white;
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

.video-wrapper .video-placeholder {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 6rem 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-wrapper .video-placeholder i {
    font-size: 5rem;
    color: var(--success-color);
}

.video-wrapper .video-placeholder p {
    color: #d1d5db;
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

.video-caption {
    text-align: center;
    color: var(--text-medium);
    font-size: 1rem;
    font-style: italic;
    margin-top: 1rem;
}

.quickwin-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-offer {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Transformation Section */
.transformation-section {
    padding: 6rem 0;
    background: white;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.transformation-before,
.transformation-after {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.transformation-before h3 {
    color: var(--warning-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transformation-after h3 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transformation-before ul,
.transformation-after ul {
    list-style: none;
}

.transformation-before ul li,
.transformation-after ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
}

.transformation-before ul li:last-child,
.transformation-after ul li:last-child {
    border-bottom: none;
}

.transformation-arrow {
    font-size: 3rem;
    color: var(--primary-color);
}

.transformation-result {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    border-radius: 16px;
    color: white;
}

.result-text {
    font-size: 1.25rem;
    margin: 0;
}

/* Community Section */
.community-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.community-feature {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.community-feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.community-feature h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.community-feature p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
}

.pricing-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    padding: 2.5rem 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-light), white);
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-medium);
}

.price-subtext {
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.pricing-value {
    background: var(--bg-light);
    padding: 2rem;
    margin: 0 2rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.pricing-value p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
}

.cta-guarantee {
    margin-top: 1rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    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.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-section > p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.final-cta-box {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-message {
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid #fbbf24;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.urgency-message i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.urgency-message p {
    margin: 0;
    font-weight: 600;
    font-size: 1.125rem;
}

.final-guarantee {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.final-reminder {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-reminder p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #9ca3af;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Video Link Styles */
.video-link-box {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-link-box:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.video-link-box:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-link-box:hover .play-button-overlay {
    color: var(--success-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay i {
    display: block;
}

.watch-on-youtube {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.video-link-box:hover .watch-on-youtube {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.watch-on-youtube i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .solution-content {
        grid-template-columns: 1fr;
    }

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

    .transformation-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .quickwin-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-wrapper .video-placeholder {
        padding: 4rem 2rem;
        min-height: 280px;
    }

    .video-wrapper iframe {
        height: 350px;
    }

    .video-container-vertical {
        max-width: 380px;
    }

    .video-container-vertical iframe {
        height: 675px;
    }

    .quickwin-cta {
        padding: 2rem 1.5rem;
    }

    .cta-question {
        font-size: 1.25rem;
    }

    .cta-offer {
        font-size: 1rem;
    }

    .meta-proof {
        padding: 2rem;
    }

    .benefit-item {
        padding: 1.25rem;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section > p {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .video-placeholder {
        padding: 4rem 1rem;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .video-container-vertical {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .video-container-vertical iframe {
        height: 570px;
    }

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

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

    .final-cta-box {
        padding: 2rem 1.5rem;
    }

    .free-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

    .video-wrapper .video-placeholder {
        padding: 3rem 1rem;
        min-height: 200px;
    }

    .video-wrapper iframe {
        height: 250px;
    }

    .video-wrapper .video-placeholder i {
        font-size: 3.5rem;
    }

    .video-wrapper .video-placeholder p {
        font-size: 1rem;
    }

    .meta-proof {
        padding: 1.5rem;
    }

    .meta-proof i {
        font-size: 2rem;
    }

    .meta-proof p {
        font-size: 1rem;
    }

    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-item i {
        font-size: 1.75rem;
    }

    .benefit-item strong {
        font-size: 1.125rem;
    }

    .play-button-overlay {
        font-size: 3.5rem;
    }

    .watch-on-youtube {
        font-size: 0.9rem;
    }

    .watch-on-youtube i {
        font-size: 1.25rem;
    }
}