/**
 * Main Stylesheet
 * 
 * This is where all the CSS for the theme is stored.
 * As the theme grows, you might want to split this into multiple files.
 */

/* Font Face Definitions */
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/700.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/800.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/barlow-condensed@5/900.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/oswald@5/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/oswald@5/500.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/oswald@5/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/oswald@5/700.css');

/* Global Variables */
:root {
    /* Colors */
    --primary-color: #0073aa;
    --secondary-color: #23282d;
    --accent-color: #f8922c;
    --light-color: #f8f9fa;
    --dark-color: #333333;
    --text-color: #333333;
    --text-color-light: #717171;
    --link-color: #0073aa;
    --link-hover-color: #00a0d2;
    --border-color: #dddddd;
    --background-color: #ffffff;
    --background-alt: #f4f4f4;
    --dark-red: #851429;
    --black: #000000;
    --price-accent: #f54540;
    --benefit-accent: #f54540;
    --cta-color: #26981B;
    --cta-shadow: #188D0E;
    --urgency-bg: #FF5555;
    
    /* New feelings section colors */
    --negative-bg-color: #ffecec;
    --negative-border-color: #ff6b6b;
    --positive-bg-color: #ecffec;
    --positive-border-color: #4CAF50;
    
    /* Typography */
    --font-heading: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Font Sizes */
    --font-size-h1: 3.2rem;
    --font-size-h2: 2.6rem;
    --font-size-h3: 2rem;
    --font-size-h4: 1.5rem;
    --font-size-body: 1.1rem;
    --font-size-small: 0.875rem;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-width: 1px;
    --border-width-thick: 2px;
    --border-style: solid;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Layout */
    --container-width: 1140px;
    --section-padding: var(--spacing-lg) 0;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    color: var(--text-color);
    background-color: var(--background-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover, a:focus {
    color: var(--link-hover-color);
    text-decoration: underline;
}

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

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

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

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

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

p {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding-bottom: var(--spacing-md) 0;
}

/* Section */
.section {
    padding: var(--section-padding);
}

/* Header */
.site-header {
    padding: var(--spacing-sm) 0;
    background-color: var(--light-color);
    border-bottom: var(--border-width) var(--border-style) var(--border-color);
}

.site-branding {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.site-title {
    margin: 0;
    font-size: var(--font-size-h3);
    font-weight: 700;
}

.site-description {
    margin: 0;
    font-size: var(--font-size-small);
    opacity: 0.8;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    margin-right: var(--spacing-sm);
}

.main-navigation a {
    display: block;
    padding: var(--spacing-xs) 0;
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
}

.site-footer a {
    color: #fff;
}

.site-info {
    margin-bottom: var(--spacing-sm);
}

.footer-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-navigation li {
    margin: 0 var(--spacing-xs);
}

/* Sidebar */
.widget-area {
    padding: var(--spacing-sm);
    background-color: var(--light-color);
    border: var(--border-width) var(--border-style) var(--border-color);
    border-radius: var(--border-radius-md);
}

.widget {
    margin-bottom: var(--spacing-lg);
}

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

.widget-title {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-h4);
}

/* Buttons */
.button, 
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: var(--link-hover-color);
    text-decoration: none;
}

/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    .site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-branding {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.75rem;
        --font-size-h4: 1.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: var(--spacing-lg) 0 calc(var(--spacing-lg) + 100px) 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg-desktop.webp');
    background-position: center;
    z-index: -1;
    scale: 1.2;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

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

/* Enhanced Hero Headline */
.hero-headline {
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    color: var(--background-color);
}

.pre-headline {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFD700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(255, 152, 0, 0.25);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    transform: translateY(0);
    animation: float 2s ease-in-out infinite;
}

.price-accent {
    color: var(--price-accent);
    font-weight: 900;
    text-decoration: underline;
}

.price-accent-2 {
    color: var(--cta-color);
    font-weight: 900;
    text-decoration: underline;
}

.benefit-accent {
    color: var(--benefit-accent);
    font-weight: 900;
}

.benefit-accent-2 {
    color: var(--cta-color);
    font-weight: 900;
}

/* Payment Methods Section */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
}

.payment-icon {
    height: 30px;
    border-radius: 4px;
    opacity: 0.5;
    filter: grayscale(1);
}


.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}



/* Enhanced Subheadline */
.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    color: var(--background-color);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

/* Urgency Timer */
.urgency-timer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--urgency-bg);
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    z-index: 5;
    font-family: var(--font-heading);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.timer-label {
    margin-right: 8px;
    font-size: 0.9rem;
}

.countdown {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: pulse 1s infinite;
}

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

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

@keyframes playButtonPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 10px rgba(255,255,255,0.4), 0 10px 25px rgba(0,0,0,0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 0 15px rgba(255,255,255,0.6), 0 15px 30px rgba(0,0,0,0.7);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 10px rgba(255,255,255,0.4), 0 10px 25px rgba(0,0,0,0.5);
    }
}

/* Video Section Enhancements */
.video-placeholder-wrapper {
    margin: var(--spacing-lg) auto;
    max-width: 800px;
    position: relative;
}

.video-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
}

.video-label .arrow-top,
.video-label .arrow-bottom {
    width: 24px;
    height: 24px;
    animation: arrowBounce 2s infinite;
    color: #FFD700;
}

.arrow-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    width: 60px;
    height: 60px;
    animation: arrowDownBounce 2s infinite;
}

.arrow-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes arrowDownBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -100%);
    }
    40% {
        transform: translate(-50%, -80%);
    }
    60% {
        transform: translate(-50%, -90%);
    }
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 10px solid #fff;
    animation: videoPlaceholderPulsate 1.5s ease-in-out infinite;
}

.video-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFD700;
    font-weight: 600;
    margin-top: 12px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
    font-size: 1.1rem;
}

.video-cta .arrow-up {
    width: 24px;
    height: 24px;
    animation: arrowBounce 2s infinite;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #00b7ff, #0007ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(255,255,255,0.4), 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    animation: playButtonPulse 2s infinite;
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 40px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 10px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Section divider styling */
.section-divider {
    position: relative;
    width: 100%;
    z-index: 2;
    line-height: 0;
    margin-top: -100px;
    overflow-x: hidden;
    overflow-y: hidden;

}

.divider-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleX(2) scaleY(2);
    transform-origin: top center;
    margin-top: 64px;
    max-width: 100%;
    overflow-x: hidden;
}

.duration {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Social Proof Mini */
.social-proof-mini {
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--border-radius-md);
    padding: 15px;
    margin: var(--spacing-md) auto;
    max-width: 600px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.proof-count {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.proof-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    }

.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.mini-quote {
    font-style: italic;
    font-weight: 600;
}

/* CTA Enhancements */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.normal-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
}

.current-price {
    font-weight: 700;
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
}

.mini-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.mini-benefits li {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.start-button {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(613.92% 177.57% at 49.83% 145.39%, rgba(107, 209, 97, 0.00) 0%, #26981B 100%), 
                radial-gradient(540.93% 232.48% at 42.41% -95.39%, rgba(119, 211, 110, 0.00) 0%, #26981B 71.91%, #77D36E 100%);
    color: white;
    background-blend-mode: overlay, screen, normal;
    font-weight: 800;
    padding: 22px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    animation: buttonPulse 2s ease-in-out infinite, buttonBounce 5s ease-in-out infinite;
    width: 400px;
    max-width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
}
    50% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.5);
}
    100% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
}
}

@keyframes buttonBounce {
    0%, 10%, 20%, 100% {
        transform: translateY(0);
    }
    5%, 15% {
        transform: translateY(-5px);
}
}

.scarcity-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #FFD700;
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.4rem;
    }
    
    .pre-headline {
        font-size: 1.1rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
    }
    
    .play-button {
        width: 100px;
        height: 100px;
    }
    
    .start-button {
        padding: 20px 24px;
        font-size: 16px;
        width: 350px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .pre-headline {
        font-size: 1rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .start-button {
        padding: 16px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    .video-placeholder {
        border-width: 5px;
    }
    
    .mini-benefits {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .mini-benefits li {
        width: 100%;
        text-align: center;
    }
    
    .play-icon {
        border-width: 15px 0 15px 24px;
    }
    
    .duration {
        font-size: 12px;
    }
    
    .arrow-animation {
        width: 40px;
        height: 40px;
    }
    
    /* Sticky CTA on mobile */
    .hero-section.scrolled .cta-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 999;
        padding: 10px;
        margin: 0;
    }
    
    .hero-section.scrolled .start-button {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Cost Advantage Section Styles */
.cost-advantage-section {
    background-color: var(--background-color);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Resource Allocation Comparison */
.resource-allocation {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
}

.resource-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--black);
}

.allocation-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.allocation-box {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.allocation-box.traditional {
    border-left: 5px solid var(--negative-border-color);
}

.allocation-box.smart {
    border-left: 5px solid var(--positive-border-color);
}

.allocation-header {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--border-color);
}

.allocation-header h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

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

.allocation-bars {
    margin-bottom: var(--spacing-sm);
}

.allocation-item {
    margin-bottom: 15px;
}

.allocation-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.allocation-bar-wrapper {
    height: 30px;
    background-color: #f0f0f0;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.allocation-bar {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    transition: width 1.5s ease;
}

/* Animation for moving gradient patterns */
@keyframes moveGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.allocation-box.traditional .allocation-bar.store-dev {
    background: linear-gradient(rgba(226, 102, 76, 0.65), transparent), 
                repeating-linear-gradient(135deg, #a22215 0 5px, #be2a20 0 10px);
    background-size: 200% 100%;
    animation: moveGradient 20s linear infinite;
}

.allocation-box.traditional .allocation-bar.ad-budget {
    background: linear-gradient(rgba(136, 136, 136, 0.65), transparent), 
                repeating-linear-gradient(135deg, #666666 0 5px, #888888 0 10px);
    background-size: 200% 100%;
    animation: moveGradient 20s linear infinite;
}

.allocation-box.smart .allocation-bar.store-dev {
    background: linear-gradient(rgba(136, 136, 136, 0.65), transparent), 
                repeating-linear-gradient(135deg, #666666 0 5px, #888888 0 10px);
    background-size: 200% 100%;
    animation: moveGradient 20s linear infinite;
}

.allocation-box.smart .allocation-bar.ad-budget {
    background: linear-gradient(rgba(76, 175, 80, 0.65), transparent), 
                repeating-linear-gradient(135deg, #13a500 0 5px, #18cc00 0 10px);
    background-size: 200% 100%;
    animation: moveGradient 20s linear infinite;
}

.allocation-amount {
    position: absolute;
    right: 10px;
    font-weight: 700;
}

.allocation-amount.outside {
    position: absolute;
    left: 110%;
    color: #333;
    white-space: nowrap;
}

.allocation-result {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    line-height: 1.5;
}

.allocation-result.negative {
    background-color: var(--negative-bg-color);
    color: var(--text-color);
}

.allocation-result.positive {
    background-color: var(--positive-bg-color);
    color: var(--text-color);
}

.allocation-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

.math-statement {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.highlight-negative {
    color: #ff0000;
    font-weight: 700;
}

.highlight-positive {
    color: #13db00;
    font-weight: 700;
}

/* Responsive Styles for Cost Advantage Section */
@media (min-width: 768px) {
    .allocation-comparison {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cost-advantage-section {
        padding: var(--spacing-lg) 0;
    }
    
    .resource-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .allocation-bar {
        font-size: 0.8rem;
    }
}

/* Feelings Section Enhanced */
.feelings-section {
    background-color: var(--background-color);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-preheadline {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feelings-headline {
    font-size: 2.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.feelings-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subheadline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 100px;
    color: var(--black);
}

/* Feelings Grid Layout */
.feelings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: var(--spacing-lg);
}

/* Common Feeling Box Styles */
.feeling-box {
    position: relative;
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    overflow: hidden;
}

/* Feeling Box Content */
.feeling-content {
    z-index: 2;
}

.feeling-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
    font-family: var(--font-body);

}

.feeling-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-color);
}

/* Feeling Images */
.feeling-image-wrapper {
    width: 100%;
    z-index: 2;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.feeling-image {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid;
    border-radius: var(--border-radius-md);
}

/* Feeling Badge */
.feeling-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 var(--border-radius-md) 0 var(--border-radius-md);
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Negative Feelings Styles */
.negative {
    background-color: var(--negative-bg-color);
    border: 1px solid #ff0000;

}

.negative .feeling-image {
    border-color: var(--negative-border-color);
}

.negative .feeling-badge {
    background-color: var(--negative-border-color);
    color: white;
}

/* Positive Feelings Styles */
.positive {
    background-color: var(--positive-bg-color);
    border: 1px solid #13db00;

}

.positive .feeling-image {
    border-color: var(--positive-border-color);
}

.positive-badge {
    background-color: var(--positive-border-color);
    color: white;
}

/* Bridge Element */
.bridge-element {
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-lg) 0;
}

.bridge-line {
    height: 60px;
    width: 2px;
    background-color: var(--primary-color);
}

.turning-point {
    width: 200px;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bridge-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.bridge-text {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Solution Desire Section */
.solution-desire {
    padding-top: var(--spacing-md);
}

.positive-headline {
    color: var(--positive-border-color);
}

.positive-headline:after {
    background-color: var(--positive-border-color);
}

/* CTA Container */
.feelings-cta-container {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.cta-wrapper {
    background-color: rgba(0, 115, 170, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
    border: 2px dashed var(--primary-color);
}

.cta-header {
    margin-bottom: 20px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.cta-guarantee {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guarantee-icon {
    font-size: 1.2rem;
}

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

/* Animation Classes */


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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0px 6px 0px 0px #188D0E, 0px 30px 70px 0px rgba(121, 241, 110, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
}
}

/* Staggered Animation Delay - Removed */

/* Responsive Styles */
@media (min-width: 768px) {
    .feelings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feelings-headline {
        font-size: 2.8rem;
    }

    .feeling-box {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .feeling-box:nth-child(odd) {
        grid-template-areas: "image content";
    }
    
    .feeling-box:nth-child(even) {
        grid-template-areas: "content image";
    }

    .feeling-image-wrapper {
        grid-area: image;
    }
    
    .feeling-content {
        grid-area: content;
    }
}

@media (min-width: 992px) {
    .feelings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feeling-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .feelings-section {
        padding: var(--spacing-lg) 0;
    }
    
    .feelings-headline {
        font-size: 1.8rem;
    }
    
    .feeling-title {
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-wrapper {
        padding: var(--spacing-md);
    }

    .feeling-box {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "content";
    }

    .feeling-image-wrapper {
        grid-area: image;
    }

    .feeling-content {
        grid-area: content;
    }
}

/* YouTube Section Enhanced */
.youtube-section {
    background-color: var(--background-alt);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.youtube-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

/* Section Header */
.youtube-headline {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

/* Video Preview Badges */
.video-preview-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--dark-red);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.video-badge i {
    margin-right: 6px;
    font-style: normal;
}

/* Video Container */
.demo-video-container {
    margin: var(--spacing-md) 0 var(--spacing-xl);
}

.video-arrows-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-arrows-top,
.video-arrows-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.video-arrows-top {
    margin-bottom: 15px;
}

.video-arrows-bottom {
    margin-top: 15px;
}

.video-arrow {
    width: 80px;
    height: 80px;
    transform: rotate(90deg);
}

.video-arrows-top .video-arrow {
    animation: arrowDownAnimation 1.5s infinite;
}

.video-arrows-bottom .video-arrow {
    transform: rotate(-90deg);
    animation: arrowUpAnimation 1.5s infinite;
}

@keyframes arrowDownAnimation {
    0% {
        transform: translateY(0) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(15px) rotate(90deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(90deg);
        opacity: 0.7;
    }
}

@keyframes arrowUpAnimation {
    0% {
        transform: translateY(0) rotate(-90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(-90deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(-90deg);
        opacity: 0.7;
    }
}

/* Stagger the animations for a wave effect */
.video-arrow:nth-child(1) {
    animation-delay: 0s;
}
.video-arrow:nth-child(2) {
    animation-delay: 0.2s;
}
.video-arrow:nth-child(3) {
    animation-delay: 0.4s;
}
.video-arrow:nth-child(4) {
    animation-delay: 0.6s;
}

@media (max-width: 767px) {
    .video-arrow {
        width: 50px;
        height: 50px;
    }
}

/* Video Testimonial */
.video-testimonial {
    max-width: 700px;
    margin: 25px auto 0;
    padding: 20px;
    background-color: rgba(255,255,255,0.8);
    border-radius: var(--border-radius-md);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
    }

.quote-icon {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    font-weight: 900;
    }
    
.quote-text {
    margin: 0 0 10px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-color);
    padding-left: 30px;
    }
    
.testimonial-author {
    text-align: right;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

/* Features Section Styles */
.features-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.features-headline {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--dark-red);
}

.features-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Value Meter */
.total-value-indicator {
    margin: var(--spacing-lg) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-meter {
    height: 12px;
    background-color: #e6e6e6;
    border-radius: 6px;
    position: relative;
    margin: 40px 0 60px;
}

.value-meter-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #13db00 0%, #ff002f 100%);
    border-radius: 6px;
    clip-path: polygon(0 0, 0.4% 0, 0.4% 100%, 0 100%);
    animation: valueBarAnimation 2s ease-out forwards;
}

@keyframes valueBarAnimation {
    0% {
        clip-path: polygon(0 0, 0.4% 0, 0.4% 100%, 0 100%);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.value-meter-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
margin-top: -70px  ;
}

.value-price {
    background-color: var(--dark-red);
    color: white;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 5px;
    position: relative;
}

.value-price:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--dark-red);
}

.value-price-1 {
    background-color: var(--cta-color);
    color: white;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 5px;
    position: relative;
}

.value-price-1:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--cta-color);
}

.value-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color-light);
}

/* Features List */
.features-list {
    margin-bottom: var(--spacing-xl);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid var(--dark-red);
    opacity: 1;
}

/* Active class removed - features always visible */

.feature-content {
    padding: 0px;
}

.feature-item {
    position: relative;
    padding: 30px;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: -15px;
    width: 50px;
    height: 50px;
    background-color: var(--dark-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    position: relative;
    flex-direction: column-reverse;

}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--black);
    line-height: 1.3;
    font-family: var(--font-body);
}

.feature-value-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 16px;
}

.feature-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.feature-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-highlight {
    background-color: rgba(0, 115, 170, 0.05);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.feature-image-container {
    overflow: hidden;
    padding: 30px;

}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 2px var(--dark-red);
    border-radius: 10px;
}

/* Features Summary and CTA */
.features-summary {
    background-color: var(--background-color);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--primary-color);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) auto;
    max-width: 700px;
}

.summary-container {
    text-align: center;
}

.total-value, .your-price, .savings {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.total-value {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.your-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.savings {
    color: var(--dark-red);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.value-label, .price-label, .savings-label {
    font-size: 1rem;
    color: var(--text-color);
}

.value-amount {
    font-size: 1.3rem;
    font-weight: 700;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-red);
}

.savings-amount {
    font-size: 1.3rem;
}

.timer-container {
    background-color: rgba(255, 85, 85, 0.1);
    color: var(--dark-red);
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.timer-label {
    margin-right: 5px;
    font-weight: 600;
}

.countdown-reference {
    font-weight: 800;
    letter-spacing: 1px;
    animation: pulse 1s infinite;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.5);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin-top: 20px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.guarantee-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-headline {
        font-size: 2.2rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-image-container {
        height: 300px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: var(--spacing-lg) 0;
    }
    
    .features-headline {
        font-size: 1.8rem;
    }
    
    .value-meter {
        margin: 30px 0 50px;
    }
    
    .feature-image-container {
        height: 250px;
    }
    
    .feature-header {
        flex-direction: column;
    }
    
    .feature-value-badge {
        margin-top: 5px;
}

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: -20px;
        left: -10px;
    }
    
    .total-value, .your-price, .savings {
        flex-direction: column;
        gap: 5px;
    }
    
    .features-summary {
        padding: var(--spacing-md);
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Model Review Section Styles */
.model-review-section {
    background-color: var(--background-color);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.model-review-headline {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.model-review-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Success Stats */
.success-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-red);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color-light);
    font-weight: 500;
    text-transform: uppercase;
}

/* Review Items */
.model-review-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-lg);
}

.model-review-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

@media (max-width: 767px) {
    .model-review-items {
        grid-template-columns: 1fr;
    }
}

.model-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.review-highlight-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px 5px 15px;
    border-radius: 20px 0 0 20px;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
}

.model-review-image-container {

    overflow: hidden;
}

.model-review-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}



.model-review-text {
    padding: 20px;
}

.model-review-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--black);
}

.model-review-stars {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.review-quote {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
    font-size: 1rem;
}

.model-review-profit {
    background-color: rgba(0, 115, 170, 0.05);
    padding: 12px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.profit-icon {
    font-size: 1.2rem;
}

/* Trustpilot Snippet */
.trustpilot-snippet {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 115, 170, 0.05);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-lg);
    gap: 30px;
}

.trustpilot-stars {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars-container {
    color: #00B67A; /* Trustpilot green */
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.trustpilot-logo img {
    height: 40px;
    width: auto;
}

/* Model Review CTA Section */
.model-review-cta {
    background-color: rgba(0, 115, 170, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 2px dashed var(--primary-color);
}

.cta-header {
    margin-bottom: var(--spacing-sm);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.timer-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--urgency-bg);
    color: white;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.timer-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.start-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-sm) 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 0 var(--cta-shadow);
}

.warranty-section .start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cta-shadow);
    text-decoration: none;
    color: white;
}

.warranty-section .start-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--cta-shadow);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-sm);
    color: var(--text-color-light);
}

.guarantee-icon {
    font-size: 1.1rem;
}

/* Media Queries for Warranty Section */
@media (max-width: 992px) {
    .warranty-headline {
        font-size: 2.4rem;
    }
    
    .warranty-section .section-subheadline {
        font-size: 1.1rem;
    }
    
    .warranty-columns {
        gap: var(--spacing-md);
    }
    
    .warranty-seal {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .warranty-section {
        padding: var(--spacing-md) 0;
    }
    
    .warranty-headline {
        font-size: 2rem;
    }
    
    .warranty-columns {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .warranty-text-column {
        order: 2;
    }
    
    .warranty-image-column {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .warranty-badge {
        width: 70px;
        height: 70px;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .warranty-seal {
        width: 160px;
        height: 160px;

    }
    
    .seal-title {
        font-size: 2rem;
    }
    
    .seal-subtitle {
        font-size: 1.2rem;
    }
    
    .warranty-cta {
        padding: var(--spacing-sm);
    }
    
    .timer-reminder {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .start-button {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .cta-guarantee {
        font-size: 0.9rem;
    }
}

.feature-box {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.feature-box-image {
  
    border: solid 3px var(--accent-color);
    border-radius: 10px;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-box-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
    min-height: auto;
    font-family: var(--font-body);
}

.feature-box-desc {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
}

.feature-tag {
    position: absolute;
    bottom: 10px;
    left: 0;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px 3px 8px;
    border-radius: 0 20px 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* YouTube Section Feature Grid */
.youtube-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

/* CTA Container */
.shop-cta-container {
    background-color: rgba(0, 115, 170, 0.05);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-xl) auto 0;
    max-width: 650px;
    border: 2px dashed var(--primary-color);

}

.price-savings {
    margin-bottom: var(--spacing-md);
}

.normal-cost {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 5px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-color-light);
}

.your-cost {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
}

.highlight-price {
    color: var(--dark-red);
    font-size: 1.5rem;
    font-weight: 800;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-color-light);
    gap: 8px;
}

.guarantee-icon {
    font-size: 1.1rem;
}

/* Shop Screenshots Subsection */
.screenshots-section-title, 
.features-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--dark-red);
    position: relative;
    display: inline-block;
}

.screenshots-section-title:after, 
.features-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: var(--spacing-md) 0 var(--spacing-lg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.screenshot-box {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.screenshot-image-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.screenshot-caption {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* YouTube Features Responsive Adjustments */
@media (max-width: 992px) {
    .youtube-section .features-grid,
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshots-section-title,
    .features-section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .youtube-section .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box-title {
        font-size: 1.1rem;
    }
    
    .feature-icon-wrapper {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .screenshots-section-title,
    .features-section-title {
        font-size: 1.4rem;
    }
}

/* Warranty Section */
.warranty-section {
    padding: var(--spacing-lg) 0;
    background-color: #e0ffdd;
    border-top: 5px dashed var(--cta-color);
    border-bottom: 5px dashed var(--cta-color);

}

.warranty-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.warranty-section .section-preheadline {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.warranty-headline {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.warranty-section .section-subheadline {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin: 0 auto;
}

.warranty-content {
    margin-top: var(--spacing-md);
}

.warranty-columns {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-direction: column-reverse;
}

.warranty-text-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.warranty-image-column {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.warranty-explanation {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.warranty-explanation p {
    margin-bottom: var(--spacing-sm);
}

.warranty-explanation p:last-child {
    margin-bottom: 0;
}

.warranty-explanation strong {
    color: var(--cta-color);
}

.warranty-signature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.signature-image {
    max-width: 120px;
    height: auto;
}

.signature-name {
    font-weight: 600;
    font-size: 1.1rem;
}

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

.warranty-seal {
    position: relative;
    height: 220px;

}

.warranty-seal-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px solid var(--primary-color);
    border-radius: 50%;
    background-color: white;
    transform: rotate(-5deg);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.warranty-seal-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    margin: 8px;
    opacity: 0.6;
}

.seal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-sm);
}

.seal-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.seal-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.seal-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
    line-height: 1.1;
}

.seal-description {
    font-size: 1rem;
    margin-top: 4px;
    color: var(--text-color-light);
}

.seal-days {
    margin-top: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-sm);
    padding: 2px 8px;
}

.warranty-faq {
    margin-bottom: var(--spacing-lg);
}

.warranty-question {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.question-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    font-size: 1.1rem;
}

.question-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.question-answer {
    color: var(--text-color-light);
    font-size: 1rem;
}

.warranty-cta {
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.warranty-section .timer-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--urgency-bg);
    color: white;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.warranty-section .timer-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.warranty-section .start-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-sm) 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 0 var(--cta-shadow);
}

.warranty-section .start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cta-shadow);
    text-decoration: none;
    color: white;
}

.warranty-section .start-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--cta-shadow);
}

.warranty-section .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-sm);
    color: var(--text-color-light);
}

.warranty-section .guarantee-icon {
    font-size: 1.1rem;
}

/* Media Queries for Warranty Section */
@media (max-width: 992px) {
    .warranty-headline {
        font-size: 2.4rem;
    }

    .warranty-columns {
        gap: var(--spacing-md);
    }
    
    .warranty-seal {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .warranty-section {
        padding: var(--spacing-md) 0;
    }
    
    .warranty-headline {
        font-size: 2rem;
    }
  
    .warranty-columns {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .warranty-text-column {
        order: 2;
    }
    
    .warranty-image-column {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .warranty-badge {
        width: 70px;
        height: 70px;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .warranty-seal {
        width: 160px;
        height: 160px;

    }
    
    .seal-title {
        font-size: 2rem;
    }
    
    .seal-subtitle {
        font-size: 1.2rem;
    }
    
    .warranty-cta {
        padding: var(--spacing-sm);
    }
    
    .timer-reminder {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .start-button {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .cta-guarantee {
        font-size: 0.9rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.reviews-section .section-preheadline {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.reviews-headline {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
}

.reviews-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.reviews-section .section-subheadline {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-lg);
}

.review-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 0px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.review-item.featured {
    border: 2px solid var(--primary-color);
    background-color: rgba(0, 115, 170, 0.03);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--primary-color);
    color: white;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
    gap: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.reviewer-business {
    font-size: 0.8rem;
    color: var(--text-color-light);
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    color: #FFD700;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: 1px;
}

.rating-date {
    font-size: 0.8rem;
    color: var(--text-color-light);
    margin-top: 5px;
}

/* Review Content */
.review-content {
    flex: 1;
    margin-bottom: var(--spacing-sm);
}

.review-content p {
    margin: 0;
    font-style: italic;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: -8px;
    top: -5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Review Footer */
.review-footer {
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.review-stats {
    display: flex;
    justify-content: flex-start;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark-red);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-color-light);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin: var(--spacing-lg) 0;
    background-color: rgba(0,0,0,0.02);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.indicator-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.indicator-label {
    font-size: 1rem;
    color: var(--text-color-light);
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    background-color: rgba(0,0,0,0.02);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
    border: 2px dashed var(--primary-color);
}

.reviews-section .timer-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--urgency-bg);
    color: white;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.reviews-section .timer-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.reviews-section .start-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-sm) 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 0 var(--cta-shadow);
}

.reviews-section .start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cta-shadow);
    text-decoration: none;
    color: white;
}

.reviews-section .start-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--cta-shadow);
}

.reviews-section .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-sm);
    color: var(--text-color-light);
}

.reviews-section .guarantee-icon {
    font-size: 1.1rem;
}

/* Media Queries for Reviews Section */
@media (max-width: 992px) {
    .reviews-headline {
        font-size: 2.4rem;
    }
    
    .reviews-section .section-subheadline {
        font-size: 1.1rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indicator-value {
        font-size: 1.8rem;
    }
    
    .indicator-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: var(--spacing-md) 0;
    }
    
    .reviews-headline {
        font-size: 2rem;
    }
    
    .reviews-section .section-subheadline {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .reviews-cta {
        padding: var(--spacing-md);
    }
    
    .reviews-section .timer-reminder {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .reviews-section .start-button {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
    }
    
    .reviews-section .cta-guarantee {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .review-rating {
        align-items: flex-start;
    }
}

/* Summary Section */
.summary-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.summary-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.summary-section .section-preheadline {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.summary-headline {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
}

.summary-headline:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.summary-section .section-subheadline {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Total Value Banner */
.total-value-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.02), rgba(0,0,0,0.05), rgba(0,0,0,0.02));
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.value-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

.value-label, .price-label, .savings-label {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 5px;
}

.value-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-red);
}

.savings-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cta-color);
}

/* Summary Image */
.summary-image-container {
    position: relative;
    margin: var(--spacing-lg) 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.summary-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 10px solid white;
}

.summary-tag {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transform: rotate(-3deg);
}

/* Summary Boxes */
.summary-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: var(--spacing-lg);
}

.summary-box {
    position: relative;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
}

.summary-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.box-number {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: absolute;
    top: -35px;
    left: -15px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.box-content {
    padding: var(--spacing-md);
    padding-left: var(--spacing-lg);
    width: 100%;
}

/* Highlight Box */
.highlight-box {
    border: 2px solid var(--dark-red);
    background-color: rgba(133, 20, 41, 0.03);
}

.highlight-box .box-number {
    background-color: var(--dark-red);
}

.highlight-flag {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--dark-red);
    color: white;
    transform: rotate(45deg);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* Guarantee Box */
.guarantee-box {
    border: 2px solid var(--accent-color);
    background-color: rgba(248, 146, 44, 0.03);
}

.guarantee-box .box-number {
    background-color: var(--accent-color);
}

.guarantee-stamp {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 110px;
    height: 90px;
    background-color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.stamp-text {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.stamp-subtext {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Box Content Elements */
.summary-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-family: var(--font-body);
}

.summary-box-desc {     
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 15px;
}

.box-features {
    margin: 0 0 15px 0;
    padding-left: 20px;
    list-style: none;
}

.box-features li {
    margin-bottom: 8px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-color);
    padding-left: 5px;
}

.box-features li:before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--cta-color);
    font-weight: 700;
}

.summary-box-value {
    font-weight: 600;
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

.summary-box-value span {
    font-weight: 800;
    color: var(--dark-red);
    font-size: 1.1rem;
}

/* Final Value Summary */
.final-value-summary {
    background-color: rgba(0,0,0,0.02);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.final-value-top {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.final-value-top h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.final-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
}

.final-value-bottom h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.highlight-price {
    font-weight: 800;
    color: var(--dark-red);
    font-size: 1.8rem;
    }
    
.discount-info {
    font-size: 1.1rem;
    color: var(--dark-red);
    margin-top: 5px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--urgency-bg);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    margin: 30px auto;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timer-icon {
        font-size: 2rem;
    }
    
.timer-text {
    display: flex;
    flex-direction: column;
}

.timer-display {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    animation: pulse 1s infinite;
}

/* CTA Section */
.summary-cta {
    text-align: center;
    margin: var(--spacing-lg) 0;
    }
    
.summary-section .start-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 40px;
    border-radius: var(--border-radius-md);
    margin: var(--spacing-sm) 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 0 var(--cta-shadow);
}

.button-arrow {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.summary-section .start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cta-shadow);
    text-decoration: none;
    color: white;
}

.summary-section .start-button:hover .button-arrow {
    transform: translateX(5px);
}

.summary-section .start-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--cta-shadow);
}

.summary-section .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-sm);
    color: var(--text-color-light);
}

.summary-section .guarantee-icon {
    font-size: 1.1rem;
}

/* Media Queries for Summary Section */
@media (max-width: 992px) {
    .summary-headline {
        font-size: 2.4rem;
}

    .summary-section .section-subheadline {
        font-size: 1.1rem;
    }
    
    .summary-boxes {
        grid-template-columns: 1fr;
}

    .guarantee-stamp {
        bottom: 20px;
        right: 20px;
    width: 110px;
    height: 80px;
    }
    
    .final-amount {
        font-size: 2.5rem;
}

    .highlight-price {
        font-size: 1.6rem;
}

    .timer-display {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .summary-section {
        padding: var(--spacing-md) 0;
    }
    
    .summary-headline {
        font-size: 2rem;
    }
    
    .summary-section .section-subheadline {
        font-size: 1rem;
    }
    
    .total-value-banner {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .value-divider {
        width: 80%;
        height: 1px;
    }
    
    .summary-box {
        flex-direction: column;
    }
    
    .box-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
        left: -10px;
    }
    
    .box-content {
        padding: var(--spacing-sm);
        padding-top: var(--spacing-md);
    }
    
    .summary-box-title {
        font-size: 1.2rem;
    }
    
    .summary-box-desc {
        font-size: 0.9rem;
    }
    
    .final-amount {
        font-size: 2rem;
    }
    
    .final-value-bottom h3 {
        font-size: 1.2rem;
}
    
    .highlight-price {
        font-size: 1.4rem;
    }
    
    .countdown-timer {
        padding: 10px 20px;
        gap: 10px;
}
    
    .timer-icon {
        font-size: 1.5rem;
}
    
    .timer-display {
        font-size: 1.2rem;
}

    .summary-section .start-button {
        font-size: 1.1rem;
        padding: 15px 25px;
        width: 100%;
    }
    
    .summary-section .cta-guarantee {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* Mobile warranty seal override */
@media (max-width: 767px) {
    .warranty-image-column {
        width: 100%;
    }
    
    .warranty-seal {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

/* Video placeholder pulsate animation */
@keyframes video-pulsate {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.video-placeholder {
    animation: video-pulsate 2.5s infinite ease-in-out;
} 

/* Video Wrapper Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin-bottom: 20px;
}

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

/* Video Loading Message Styles */
.video-loading-message {
    background-color: #ffd700;
    color: black;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 3px dashed var(--black);
}

/* What Do You Choose Section */
.what-do-you-choose-section {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
}

.what-do-you-choose-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.what-do-you-choose-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.what-do-you-choose-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 900px;
}

.what-do-you-choose-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .what-do-you-choose-headline {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .what-do-you-choose-headline {
        font-size: 1.8rem;
    }
    
    .what-do-you-choose-section {
        padding: var(--spacing-lg) 0;
    }
}