:root {
    /* Premium Color Palette based on logo #fbd6bf */
    --brand-peach: #fbd6bf;
    --brand-peach-light: #ffebd9;
    --brand-peach-dark: #e8bd9f;
    
    --primary: #d97a6c; /* Warm terracotta for high-contrast CTAs */
    --primary-hover: #c56557;
    
    --secondary: #2b2726; /* Warm charcoal for text/headings */
    --secondary-light: #4a4543;
    
    --accent: #d4af37; /* Soft gold for trust badges/stars */
    
    --bg-light: #fffcfb; /* Very warm off-white */
    --bg-peach: #fff4ed; /* Soft section background */
    --bg-white: #ffffff;
    
    --text-main: #3a3534;
    --text-muted: #7a706e;
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 10px 40px rgba(43, 39, 38, 0.06);
    --shadow-hover: 0 15px 45px rgba(217, 122, 108, 0.2);
    
    --container-width: 1300px; /* Increased from 1100px for a more spacious feel */
    
    /* Fluid Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 1.05rem; /* Slightly larger for readability */
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* 700 is more elegant than 800 */
    color: var(--secondary);
}

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

/* Sektion 1: Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--brand-peach-dark), var(--brand-peach));
    color: var(--secondary);
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown {
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, var(--brand-peach-light) 0%, var(--bg-light) 60%);
    padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 8vw, 80px);
    position: relative;
    overflow: hidden; /* Contain glow elements */
}

.navbar {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.navbar a {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.navbar a:hover {
    transform: scale(1.02);
}

.logo {
    height: clamp(60px, 8vw, 100px); /* Larger, responsive logo */
    width: auto;
    display: block; /* Helps with centering inside the anchor */
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr; /* 80% image dominance on desktop */
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    margin-top: 40px;
}

.headline {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-main {
    display: block;
    white-space: nowrap;
}

.headline-subtitle {
    display: block;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    color: var(--secondary-light);
    margin-top: 12px;
    white-space: nowrap;
}

.subline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--secondary-light);
    margin-bottom: 40px;
    max-width: 100%;
    line-height: 1.7;
}

/* Hero Feature List */
.hero-feature-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-feature-list li {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-light);
    line-height: 1.5;
    padding: 4px 0;
}

/* Hero Hint Box */
.hero-hint {
    background: linear-gradient(135deg, var(--brand-peach-light), rgba(255, 255, 255, 0.8));
    border: 1px solid var(--brand-peach);
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 0.92rem;
    color: var(--secondary-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-hint strong {
    color: var(--secondary);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(217, 122, 108, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(43, 39, 38, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(43, 39, 38, 0.3);
}

.btn-large {
    font-size: 1.1rem;
    padding: 20px 32px;
    width: 100%;
    white-space: nowrap;
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-light);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.8);
    white-space: nowrap;
}

.badge svg {
    color: var(--primary);
}

.hero-image-container {
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--brand-peach-light) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.8;
}

.hero-img {
    width: 100%;
    max-width: none; /* Let it fill the 80% grid cell completely */
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Amazon-style Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    background: white;
    padding: 0; /* Minimal padding to use every pixel for the image */
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden; /* Ensure rounded corners for the image */
}

.thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: white;
    padding: 2px;
}

.thumb:hover {
    border-color: var(--brand-peach);
}

.thumb.active {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(217, 122, 108, 0.2);
}

/* Common Section Styles */
section {
    padding: var(--section-padding) 0;
}

.bg-white { background: var(--bg-white); }
.bg-peach { background: var(--bg-peach); }

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.pricing-headline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}

.items-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.03);
    border-radius: 8px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
}

/* Glass Card Premium */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: var(--shadow-soft);
    border: var(--glass-border);
}

/* Pricing Anchor */
.pricing-anchor {
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-card {
    position: relative;
    border: 1px solid var(--brand-peach);
    background: linear-gradient(145deg, #ffffff, var(--bg-light));
    text-align: center;
}

.card-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(217, 122, 108, 0.4);
}

.price-comparison {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.new-price {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.savings {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b05c4f; /* Darker terracotta */
    background: var(--brand-peach-light);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.items-list h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}

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

.item .uvp {
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Product Story */
.product-story {
    background: var(--bg-peach);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.rounded-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.story-text h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    margin-bottom: 24px;
    line-height: 1.25;
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-list svg {
    color: var(--primary);
    background: white;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Social Proof */
.social-proof {
    background: var(--bg-white);
}

.proof-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.rating-num {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
}

.stars {
    color: var(--accent);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.reviews-marquee-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-wrapper-static {
    mask-image: none;
    -webkit-mask-image: none;
}

.reviews-marquee {
    overflow: hidden;
}

.reviews-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.reviews-track-static {
    width: 100%;
    animation: none;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reviews-track-static:hover {
    animation-play-state: running;
}

.reviews-track-static .review-card {
    width: auto;
    max-width: none;
    flex: 1 1 0;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    flex: 0 0 340px !important;
    width: 340px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
}

.review-card .review-text {
    flex: 1;
}

.review-card .review-footer {
    margin-top: auto;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.verified-badge {
    font-size: 0.75rem;
    color: #2e8b57;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(46, 139, 87, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--secondary-light);
}

.review-author {
    font-weight: 600;
    color: var(--secondary);
}

/* USPS */
.usps {
    background: var(--bg-peach);
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.usp-card {
    background: var(--bg-white);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-8px);
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    background: var(--brand-peach-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.usp-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.usp-card p {
    color: var(--text-muted);
}

/* Purchase Module */
.purchase-module {
    background: var(--bg-white);
}

.purchase-card {
    padding: clamp(40px, 6vw, 80px);
    background: linear-gradient(135deg, var(--bg-white), var(--brand-peach-light));
    border: 1px solid rgba(251, 214, 191, 0.5);
}

.purchase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.purchase-info h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin-bottom: 16px;
}

.deadline-reminder {
    background: rgba(217, 122, 108, 0.1);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0 30px;
    border: 1px solid rgba(217, 122, 108, 0.2);
}

.price-stack {
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.price-stack .price {
    font-size: clamp(3rem, 5vw, 4rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--secondary);
}

.price-stack .old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.bullets {
    list-style: none;
}

.bullets li {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullets li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
}

.payment-methods {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 16px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.payment-methods:hover {
    opacity: 1;
}

.pay-logo {
    height: 28px;
    width: 70px;
    flex: 0 0 70px;
    display: block;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-intro {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: rgba(251, 214, 191, 0.08);
}

.faq-question {
    width: 100%;
    padding: 26px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.faq-question .icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 122, 108, 0.1);
    border-radius: 50%;
    line-height: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 8px 26px;
    color: var(--secondary-light);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Guarantee */
.guarantee {
    background: var(--bg-white);
}

.guarantee-box {
    background: var(--secondary);
    color: white;
    padding: clamp(40px, 6vw, 70px);
    border-radius: 32px;
    display: flex;
    gap: clamp(30px, 6vw, 50px);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.guarantee-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 214, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.guarantee-badge {
    min-width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-peach), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.guarantee-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.guarantee-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Final CTA */
.final-cta {
    background: var(--bg-white);
    padding-bottom: 120px; /* Extra padding before footer */
}

.cta-banner {
    background: linear-gradient(135deg, var(--brand-peach), var(--brand-peach-dark));
    padding: clamp(60px, 10vw, 100px) 20px;
    border-radius: 40px;
    color: var(--secondary);
    text-align: center;
    box-shadow: 0 20px 50px rgba(251, 214, 191, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--secondary);
    line-height: 1.05;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--secondary-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#finalCountdown {
    background: rgba(255,255,255,0.4);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    max-width: 300px;
}

.logo-small {
    height: 35px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-peach);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

/* Sticky Purchase CTA */
.sticky-purchase-cta {
    position: fixed;
    bottom: 24px;
    left: 0;
    width: 100%;
    z-index: 999;
    pointer-events: none; /* Let clicks pass through to container */
    display: flex;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.sticky-purchase-cta .container {
    max-width: 600px; /* Constrain width even on desktop for a centered 'pill' look */
    width: calc(100% - 40px);
    pointer-events: auto; /* Re-enable clicks */
}

.cta-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12), 0 5px 15px rgba(217, 122, 108, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-purchase-cta .old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    text-decoration-color: #ff4d4d; /* Premium red for strikethrough */
    text-decoration-thickness: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

.sticky-purchase-cta .current-price {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

.sticky-purchase-cta .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 50px;
}

/* Scroll behavior for sticky CTA */
.sticky-purchase-cta.hidden {
    transform: translateY(150%);
    opacity: 0;
}

@media (max-width: 600px) {
    .cta-inner {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .sticky-purchase-cta .old-price {
        font-size: 0.9rem;
    }

    .sticky-purchase-cta .current-price {
        font-size: 1.3rem;
    }
    
    .sticky-purchase-cta .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .hero-grid, .pricing-grid, .story-grid, .purchase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content, .story-text {
        text-align: center;
        order: -1; /* Text on top for mobile */
    }
    
    .hero-actions {
        align-items: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .subline, .story-text p, .section-header p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .proof-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .overall-rating {
        align-items: center;
    }
    
    .usps-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 16px auto 0;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Mobile (Tablets & Phones) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(50px, 8vw, 80px);
    }

    body {
        font-size: 1rem;
        padding-bottom: 90px; /* Space for sticky CTA */
    }

    .container {
        padding: 0 20px;
    }

    /* Announcement Bar - stack cleanly on mobile */
    .announcement-bar {
        padding: 10px 0;
    }
    .announcement-bar .shipping-info {
        display: none;
    }
    .announcement-bar .container {
        gap: 8px 12px;
    }

    .announcement-bar .timer-text {
        flex-basis: 100%;
        text-align: center;
    }

    .countdown {
        font-size: 0.95rem;
        padding: 3px 12px;
    }

    .announcement-bar .shipping-info {
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        padding: clamp(100px, 20vw, 130px) 0 50px;
    }

    .navbar {
        top: 24px;
    }

    .logo {
        height: clamp(48px, 14vw, 70px);
    }

    /* Hero - Direct Response Mobile Layout */
    .hero-grid {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        gap: 0; /* Gap managed by individual margins for more control */
    }

    .hero-content {
        display: contents;
    }

    .headline {
        order: 1;
        text-align: center;
        margin-bottom: 16px;
    }

    .hero-image-container {
        order: 2;
        margin-bottom: 24px;
    }

    .hero-actions {
        display: contents;
    }

    .hero-actions .btn-primary {
        order: 3;
        margin-bottom: 20px;
        width: 100%;
        display: block;
    }

    .trust-badges {
        order: 4;
        margin-bottom: 32px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-feature-list {
        order: 5;
        margin-bottom: 32px;
    }

    .subline {
        order: 6;
        margin-bottom: 20px;
        text-align: left;
        font-size: 1rem;
    }

    .hero-hint {
        order: 7;
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    /* Trust badges - allow wrap on mobile since 3 badges won't fit */
    .trust-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 7px 12px;
    }

    /* Primary CTAs in content areas: full-width for thumb-friendly tap */
    .hero-actions .btn,
    .cta-banner .btn,
    .final-cta .btn {
        width: 100%;
        max-width: 380px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 18px 24px;
        font-size: 1.1rem;
    }

    /* Sticky CTA button stays compact */
    .sticky-purchase-cta .btn {
        width: auto;
    }

    /* Product gallery */
    .main-image {
        padding: 14px;
        border-radius: 18px;
    }

    .thumb {
        width: 56px;
        height: 56px;
    }

    /* Pricing */
    .pricing-grid {
        gap: 32px;
    }

    .main-card {
        padding: 40px 24px;
    }

    .items-list h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .item {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    /* Story */
    .feature-list li {
        font-size: 1rem;
        gap: 12px;
    }

    .feature-list svg {
        width: 36px;
        height: 36px;
    }

    /* Social Proof */
    .rating-num {
        font-size: 2.8rem;
    }

    .review-card {
        padding: 28px;
    }

    .review-text {
        font-size: 1rem;
    }

    /* USPS */
    .usps-grid {
        gap: 20px;
    }

    .usp-card {
        padding: 36px 24px;
    }

    .usp-icon {
        width: 68px;
        height: 68px;
        line-height: 68px;
        font-size: 2.4rem;
        margin-bottom: 18px;
    }

    /* Purchase */
    .purchase-card {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .deadline-reminder {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin: 16px 0 24px;
    }

    .price-stack {
        justify-content: center;
        gap: 14px;
        margin-bottom: 28px;
    }

    .price-stack .old {
        font-size: 1.2rem;
    }

    .bullets {
        display: inline-block;
        text-align: left;
    }

    .bullets li {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .payment-methods {
        gap: 14px;
    }

    /* FAQ */
    .faq-intro {
        font-size: 0.95rem;
    }

    .faq-container {
        margin-top: 32px;
    }

    .faq-question {
        padding: 20px 4px;
        font-size: 0.95rem;
        gap: 12px;
    }

    .faq-answer p {
        padding: 0 4px 22px;
        font-size: 0.95rem;
    }

    /* Guarantee */
    .guarantee-badge {
        min-width: 100px;
        height: 100px;
        font-size: 2.4rem;
    }

    .guarantee-content h3 {
        font-size: 1.6rem;
    }

    .guarantee-content p {
        font-size: 1rem;
    }

    /* Final CTA */
    .final-cta {
        padding-bottom: 80px;
    }

    .cta-banner {
        padding: 56px 20px;
        border-radius: 28px;
    }

    .cta-banner h2 {
        font-size: clamp(1.8rem, 6vw, 2.3rem);
        line-height: 1.05;
    }

    .cta-banner p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    #finalCountdown {
        font-size: 1rem;
        padding: 6px 18px;
        margin-bottom: 28px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        padding-bottom: 40px;
        gap: 28px;
    }

    .footer-links {
        gap: 20px 28px;
    }
}

/* --- Small Phones --- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .headline {
        font-size: clamp(1.6rem, 7.5vw, 2rem);
    }

    .headline-subtitle {
        font-size: clamp(0.95rem, 4.2vw, 1.2rem);
    }

    .new-price {
        font-size: clamp(2.8rem, 14vw, 3.5rem);
    }

    .price-stack .price {
        font-size: clamp(2.4rem, 12vw, 3rem);
    }

    .guarantee-box {
        padding: 40px 22px;
    }

    .cta-banner {
        padding: 44px 18px;
    }
}

/* =====================================================
   NEW SECTION STYLES (How-It-Works, Extended Pricing,
   Reviews, Urgency, Guarantee, Footer, Final CTA)
   ===================================================== */

/* Pricing — Mini bullets, stock note, items total */
.pricing-mini-bullets {
    list-style: none;
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-mini-bullets li {
    font-size: 0.95rem;
    color: var(--secondary-light);
    font-weight: 500;
}

.stock-note {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.items-total {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed rgba(217, 122, 108, 0.25);
}

.items-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    font-weight: 600;
}

.items-total-row.highlight {
    background: linear-gradient(90deg, var(--brand-peach-light), transparent);
    padding: 14px 16px;
    border-radius: 14px;
    margin-top: 8px;
}

.items-total-row .total-sum {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 500;
}

.items-total-row .total-now {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

/* How-It-Works */
.how-it-works {
    background: var(--bg-peach);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--bg-white);
    padding: 48px 30px 36px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: -76px auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--brand-peach-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 20px rgba(217, 122, 108, 0.35);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Feature list items with structured span (title + desc) */
.feature-list li span {
    flex: 1;
}

/* Social Proof — extended */
.proof-header > div:first-child {
    flex: 1;
    min-width: 280px;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-peach), var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.review-footer p {
    margin: 0;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 2px;
}

.proof-trust-bar {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, var(--bg-peach), var(--brand-peach-light));
    border-radius: 24px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.trust-item span {
    color: var(--secondary-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Purchase module — enhanced */
.purchase-info .eyebrow {
    margin-bottom: 8px;
}

.price-stack {
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.price-stack-main {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.discount-badge {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 16px rgba(217, 122, 108, 0.3);
}

.urgency-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217, 122, 108, 0.08);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: var(--secondary-light);
    border: 1px solid rgba(217, 122, 108, 0.15);
}

.urgency-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.6s ease-in-out infinite;
}

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

.purchase-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.ssl-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.ssl-note svg {
    color: #2e8b57;
}

.klarna-badge {
    background: #ffa8cd;
    color: #17120f;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: -0.02em;
}

/* Guarantee — enhanced */
.guarantee-eyebrow {
    color: var(--brand-peach) !important;
    margin-bottom: 10px !important;
}

.guarantee-badge {
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.guarantee-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.guarantee-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.guarantee-content p strong {
    color: white;
}

.guarantee-signature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.guarantee-signature svg {
    color: var(--brand-peach);
}

/* Final CTA — enhanced */
.cta-eyebrow {
    color: var(--primary) !important;
    margin-bottom: 16px !important;
}

.cta-countdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.cta-countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-light);
}

.cta-microcopy {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--secondary-light);
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-prominent {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    padding: 22px 36px;
}

/* Footer — enhanced */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: flex-start;
}

.footer-column h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-column .footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--brand-peach);
}

.footer-link-button {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link-button:hover {
    color: var(--brand-peach);
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 16px;
}

.footer-trust-item {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-payments {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 24px));
    z-index: 1200;
}

.cookie-consent__inner {
    background: rgba(43, 39, 38, 0.96);
    color: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(43, 39, 38, 0.25);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent__copy {
    max-width: 700px;
}

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.cookie-consent__copy p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-consent__link {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.cookie-consent__button {
    padding: 14px 22px;
    font-size: 0.95rem;
}

/* Section header inside USPs: bring onto dark peach bg */
.usps .section-header {
    margin-bottom: 50px;
}

.usps .section-header h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    white-space: nowrap;
}

/* Mobile adjustments for all new elements */
@media (max-width: 768px) {
    .reviews-track-static {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .step-card {
        padding: 44px 24px 28px;
    }

    .step-number {
        margin-top: -72px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .items-total-row .total-now {
        font-size: 1.4rem;
    }

    .pricing-mini-bullets {
        max-width: 260px;
    }

    .proof-header {
        text-align: center;
    }

    .proof-header > div:first-child {
        text-align: center;
    }

    .rating-meta {
        align-items: center;
    }

    .review-footer {
        gap: 12px;
    }

    .proof-trust-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 20px;
        margin-top: 40px;
    }

    .trust-item strong {
        font-size: 1.7rem;
    }

    .price-stack {
        justify-content: center;
        gap: 12px;
    }

    .price-stack-main {
        gap: 12px;
    }

    .discount-badge {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .urgency-box {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .guarantee-number {
        font-size: 2.4rem;
    }

    .guarantee-signature {
        justify-content: center;
    }

    .cta-countdown-label {
        font-size: 0.75rem;
    }

    .cta-microcopy {
        font-size: 0.82rem;
        gap: 8px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 32px;
    }

    .footer-trust {
        margin-top: 12px;
    }

    .cookie-consent {
        width: calc(100% - 20px);
        bottom: 80px;
    }

    .cookie-consent__inner {
        padding: 18px;
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-consent__button {
        width: 100%;
    }
}

.w-full { width: 100%; }
.text-center { text-align: center; }
