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

:root {
    /* Brand Colors based on style guide */
    --primary-color: #2F3AB2;
    --secondary-color: #313D3D;
    --accent-color: #00AD9F;
    --hero-dark-blue: #1a237e;
    --hero-lighter-blue: #303f9f;
    --hero-link-blue: #00AFF5;
    --footer-color: #2A2A2A;
    --card-background: #ffffff;
    --input-background: #ffffff;
    --border-color: #ccc;
    --text-color: #2C3E50;
    --background-color: #ffffff;
    --daynight-color: #ffffc5;
    
    /* Legacy colors for compatibility */
    --primary-dark: #1a1a1a;
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-green: #00AD9F;
    --accent-gold: #D4AF37;
    --text-gray: #666666;
    --light-gray: #f8f9fa;
    --success-green: #28a745;
    
    /* Typography */
    --system-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-primary: var(--system-font);
    --font-heading: var(--system-font);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--primary-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 48px; }
h2 { font-size: 26px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 18px; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: var(--accent-green);
    transition: color 0.3s ease;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--hero-dark-blue) 0%, var(--hero-lighter-blue) 100%);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    box-shadow: var(--shadow-md);
}

.cta-button.hero-button {
    background: #00AFF5;
}

.cta-button.large {
    background: #00AFF5;
}

.cta-button.primary:hover {
    background: #303f9f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 22px;
}

/* Navigation */
.navbar {
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo {
    height: 60px;
    width: auto;
    display: block;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--hero-dark-blue);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    font-size: 21px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link.cta-nav:hover {
    background: #303f9f;
}

.nav-link.cta-nav {
    background: var(--hero-dark-blue);
    color: var(--primary-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-dark-blue) 0%, var(--hero-lighter-blue) 100%);
    color: var(--primary-white);
    padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--primary-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    width: fit-content;
}

.popular-badge.large {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--hero-link-blue);
}

.hero-subtitle {
    font-size: 1.525rem;
    color: #cccccc;
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: #cccccc;
}

.feature-item i {
    color: var(--accent-green);
}

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

.cta-subtext {
    color: #aaaaaa;
    font-size: 1.125rem;
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-mockup {
    position: relative;
}

.mockup-container {
    position: relative;
    width: 300px;
    height: 400px;
}

.mockup-cover {
    width: 100%;
    height: 100%;
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.mockup-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.mockup-shadow {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--primary-dark);
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

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

.problem-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.problem-item i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: var(--spacing-md);
}

.problem-item h3 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
}

/* Features Section */
.features-section {
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-lg);
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #00AD9F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon i {
    font-size: 1.725rem;
    color: var(--primary-white);
}

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

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

/* Video Section */
.video-section {
    padding: var(--spacing-xl) 0;
    background: var(--primary-white);
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: var(--spacing-lg) 0 var(--spacing-xs) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

.benefit-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-item i {
    font-size: 1.725rem;
    color: #303f9f;
    margin-top: 4px;
}

.benefit-item h4 {
    color: var(--primary-dark);
    margin-bottom: var(--spacing-xs);
}

/* Stats Card */
.stats-card {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-dark-blue);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 500;
}

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

.social-proof .section-title {
    color: var(--primary-white);
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollTestimonials 30s linear infinite;
    width: calc(200% + var(--spacing-lg)); /* Double width for seamless loop */
    will-change: transform; /* Optimize for animation */
}

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

/* Carousel Animation */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--carousel-distance, -50%));
    }
}

/* Pause animation on hover */
.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    backdrop-filter: blur(10px);
    flex: 0 0 300px; /* Fixed width to match original grid cards */
    min-width: 300px; /* Minimum width for mobile */
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    color: #ffffff;
    font-style: italic;
    font-size: 1.325rem;
    font-weight: 600;
}

.testimonial-author strong {
    color: #ffffff;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--hero-link-blue);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Purchase Section */
.purchase-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
}

.purchase-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.purchase-header {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--hero-dark-blue) 0%, var(--hero-lighter-blue) 100%);
    color: var(--primary-white);
    position: relative;
}

.purchase-header .popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.purchase-header h2 {
    margin: var(--spacing-md) 0 var(--spacing-sm) 0;
}

.purchase-header p {
    color: #cccccc;
    margin: 0;
}

.price-section {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--primary-white);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
}

.currency {
    font-size: 1.725rem;
    font-weight: 600;
    color: var(--text-gray);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--hero-dark-blue);
    font-family: var(--font-heading);
}

.period {
    font-size: 1.425rem;
    color: var(--text-gray);
}

.price-note {
    color: #000000;
    margin: 0;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--hero-dark-blue);
}

.purchase-features {
    padding: 0 var(--spacing-lg);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.feature i {
    color: var(--success-green);
    font-size: 1.2rem;
}

.purchase-cta {
    padding: var(--spacing-lg);
    text-align: center;
}

.security-note {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    color: var(--text-gray);
    font-size: 1.125rem;
}

.security-note i {
    vertical-align: middle;
    line-height: 1;
}

.guarantees {
    padding: var(--spacing-lg);
    background: var(--light-gray);
}

.guarantee {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.guarantee:last-child {
    margin-bottom: 0;
}

.guarantee i {
    font-size: 1.725rem;
    color: var(--hero-dark-blue);
    margin-top: 4px;
}

.guarantee strong {
    color: var(--primary-dark);
}

.guarantee p {
    margin: 0;
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: var(--spacing-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.faq-question h4 {
    margin: 0;
    color: var(--primary-dark);
}

.faq-question i {
    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: 200px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    margin: 0;
}

/* Footer */
footer {
    background: var(--footer-color);
    color: var(--primary-white);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: var(--spacing-sm);
    font-size: 18px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 19px;
}

.footer-section a:hover {
    color: var(--hero-link-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    max-width: 870px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: var(--primary-white);
    font-size: 19px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .mockup-container {
        width: 250px;
        height: 330px;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Carousel tablet adjustments */
    .testimonial {
        flex: 0 0 300px;
        min-width: 280px;
    }
    
    .price {
        flex-direction: row;
        gap: 4px;
        justify-content: center;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .video-section .container {
        padding: 0 var(--spacing-sm);
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    
    /* Footer Tablet Responsive */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-section a {
        font-size: 18px;
    }
    
    .footer-bottom {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .footer-bottom p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 8px;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .hero {
        padding: calc(70px + var(--spacing-md)) 0 var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    /* Carousel responsive adjustments */
    .testimonial {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .testimonials-track {
        width: calc(200% + var(--spacing-lg));
    }
    
    /* Footer Mobile Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 17px;
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-section a {
        font-size: 17px;
    }
    
    .footer-bottom {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
    
    .footer-bottom p {
        font-size: 15px;
        text-align: center;
    }
    
    .video-section .container {
        padding: 0 var(--spacing-xs);
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(2) { animation-delay: 0.1s; }
.hero-content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-content > *:nth-child(4) { animation-delay: 0.3s; }
.hero-content > *:nth-child(5) { animation-delay: 0.4s; }

/* Conversion Optimization Elements */
/* Removed urgency indicator and countdown timer styles */

.pulse-animation {
    animation: buttonPulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
    }
}

/* Social Proof Elements */
.social-proof-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.proof-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
    font-size: 1.125rem;
}

.proof-badge i {
    color: var(--success-green);
}

/* Risk Reversal Elements */
.risk-reversal {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid var(--success-green);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.risk-reversal h4 {
    color: var(--success-green);
    margin-bottom: var(--spacing-sm);
}

.risk-reversal p {
    color: var(--primary-dark);
    margin: 0;
    font-weight: 500;
}

/* Scarcity Elements */
.scarcity-indicator {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.scarcity-indicator p {
    color: #dc3545;
    font-weight: 600;
    margin: 0;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-gray);
    font-size: 1.075rem;
}

.trust-signal i {
    color: var(--success-green);
}

/* Watch Page Styles */
.watch-page-header {
    background: var(--primary-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.watch-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.watch-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.watch-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.watch-logo {
    height: 60px;
    width: auto;
    display: block;
}

.watch-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--hero-dark-blue);
}

.watch-home-link {
    color: var(--hero-dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.watch-home-link:hover {
    color: var(--hero-lighter-blue);
}

.watch-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.watch-video-section {
    margin-bottom: var(--spacing-xl);
}

.watch-video-section h1 {
    font-size: 2.5rem;
    color: var(--hero-dark-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.watch-intro {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.watch-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: var(--spacing-md);
}

.watch-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.watch-cta-section {
    background: linear-gradient(135deg, var(--hero-dark-blue), var(--hero-lighter-blue));
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.watch-cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.watch-cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.watch-cta-content .cta-button {
    display: inline-block;
    margin-bottom: var(--spacing-md);
    background: white;
    color: var(--hero-dark-blue);
    font-weight: 700;
}

.watch-cta-content .cta-button:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.watch-cta-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.watch-cta-subtext i {
    color: var(--accent-gold);
}

.watch-cta-subtext .separator {
    margin: 0 4px;
}

.watch-transcript-section {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.watch-transcript-section h2 {
    font-size: 1.75rem;
    color: var(--hero-dark-blue);
    margin-bottom: var(--spacing-md);
}

.transcript-placeholder {
    color: var(--text-color);
    line-height: 1.8;
}

.transcript-placeholder p {
    margin-bottom: var(--spacing-sm);
}

.transcript-placeholder em {
    color: var(--text-gray);
}

.watch-about-section {
    margin-bottom: var(--spacing-xl);
}

.watch-about-section h2 {
    font-size: 1.75rem;
    color: var(--hero-dark-blue);
    margin-bottom: var(--spacing-md);
}

.watch-about-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.watch-about-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--spacing-lg);
}

.watch-about-section ul li {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
    position: relative;
}

.watch-about-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Watch Page Mobile Responsive */
@media (max-width: 768px) {
    .watch-page-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .watch-header-container {
        padding: 0 var(--spacing-sm);
    }
    
    .watch-logo-container {
        gap: 10px;
    }
    
    .watch-logo {
        height: 40px;
    }
    
    .watch-logo-text {
        font-size: 18px;
    }
    
    .watch-home-link {
        font-size: 16px;
    }
    
    .watch-video-section h1 {
        font-size: 1.75rem;
    }
    
    .watch-intro {
        font-size: 1.125rem;
    }
    
    .watch-cta-section {
        padding: var(--spacing-lg);
    }
    
    .watch-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .watch-cta-content p {
        font-size: 1rem;
    }
    
    .watch-cta-subtext {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .watch-cta-subtext .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .watch-video-section h1 {
        font-size: 1.5rem;
    }
    
    .watch-cta-content h2 {
        font-size: 1.25rem;
    }
    
    .watch-about-section h2,
    .watch-transcript-section h2 {
        font-size: 1.5rem;
    }
    
    .watch-logo-container {
        gap: 8px;
    }
    
    .watch-logo {
        height: 35px;
    }
    
    .watch-logo-text {
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }