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

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
    width: 100%;
}

/* Root Variables */
:root {
    --color-white: #FFFFFF;
    --color-light-blue: #0B2238;
    --color-orange: #E88F31;
    --color-dark-blue: #05121F;
    --color-cream: #FFF5EB;
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-orange-50: rgba(232, 143, 49, 0.5);
    --color-orange-40: rgba(232, 143, 49, 0.4);
}

.ytp-title-link {
    display: none !important;
}

/* Body */
body {
    font-family: 'SUSE', sans-serif;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Header */
.header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    padding: 0 125px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    font-size: 1.25rem;
    color: var(--color-white);
    margin: 0;
}

.underline {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(75vh / 3 - 150px);
}

.hero-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-ornament {
    position: absolute;
    top: 492px;
    left: 50%;
    transform: translateX(-50%);
    width: 44.38%;
    aspect-ratio: 1;
    z-index: 2;
}

a {
    color: var(--color-white);
}

.hero-ornament img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: relative;
    font-size: 10.625rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    margin-bottom: 0;
    line-height: 1;
}

.hero-subtitle {
    position: relative;
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0px 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.hero-banner {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 3;
}

.hero-banner img {
    width: 100%;
    height: auto;
}

.hero-description {
    text-align: center;
    padding: 80px 40px;
    white-space: nowrap;
}

.hero-description-main {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0;
}

.hero-description-accent {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-top: 0;
}

/* Hero CTA Section */
.hero-cta-section {
    padding: 40px 40px 80px;
    background: var(--color-dark-blue);
}

.hero-cta-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-light-blue);
    padding: 40px;
    border-radius: 0 24px 24px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-cta-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-cta-price-old {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.hero-cta-price-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-orange);
}

.hero-cta-value {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-white);
    opacity: 0.7;
    margin-bottom: 20px;
}

.hero-cta-urgency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.hero-cta-promo {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 28px;
}

.hero-cta-promo .promo-code {
    font-weight: 700;
    color: var(--color-orange);
    background: rgba(232, 143, 49, 0.15);
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-cta-card .btn {
    margin-bottom: 20px;
}

.hero-cta-guarantee {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    max-width: 450px;
    margin: 0 auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 275px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.content-grid.reverse {
    grid-template-columns: 1fr 275px;
}

/* Profile Card */
.profile-card {
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    width: 275px;
    height: 491px;
}

.profile-image {
    position: absolute;
    top: 15px;
    left: 7px;
    width: 275px;
    height: 491px;
    border-radius: 40px;
    object-fit: cover;
    opacity: 0.5;
    background-color: var(--color-light-blue);
}

.profile-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 491px;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.profile-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 275px;
    height: 491px;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.profile-image-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

/* Content Text */
.content-text {
    flex: 1;
}

.section-title {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title-center {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 60px;
}

.text-white {
    color: var(--color-white);
}

.text-orange {
    color: var(--color-orange);
}

.text-content {
    font-size: 1.25rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
}

.text-content p {
    margin-bottom: 15px;
}

.text-bold {
    font-weight: 700;
}

.intro-section {
    padding: 40px 0px;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    margin-top: 100px;
}

.pricing-content {
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.pricing-label-small {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-white);
    opacity: 0.5;
}

.pricing-label {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.price-current {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-orange);
}

.price-original {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-orange-50);
    text-decoration: line-through;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 16px 16px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #d17e28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 143, 49, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-orange);
    color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 143, 49, 0.3);
}

.promo-code {
    font-size: 1.125rem;
    color: var(--color-orange);
    margin-bottom: 12px;
    font-weight: 400;
}

.promo-code strong {
    font-weight: 700;
}

.promo-code-text {
    font-size: 0.875rem;
    color: var(--color-white-90);
    margin-top: 8px;
    text-align: center;
    font-weight: 400;
    opacity: 0.85;
}

.delivery-info {
    font-size: 1rem;
    color: var(--color-white-90);
    margin-bottom: 15px;
    opacity: 0.85;
}

.guarantee {
    font-size: 0.9375rem;
    color: var(--color-white-70);
    opacity: 0.85;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.cta-left {
    margin-top: 40px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 40px;
    background-color: var(--color-dark-blue);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 60px auto 40px;
    background-color: var(--color-light-blue);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Table Header */
.comparison-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 2px solid var(--color-white-70);
}

.comparison-header-cell {
    padding: 30px 20px;
    text-align: center;
}

.chocolate-header {
    background-color: var(--color-light-blue);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.aspect-header {
    background-color: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ai-header {
    background-color: var(--color-light-blue);
}

.comparison-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.comparison-header-cell h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.aspect-header h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-white-70);
    margin-bottom: 0;
}

.comparison-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white-90);
    margin: 0;
}

.comparison-price.highlighted {
    color: var(--color-orange);
}

/* Comparison Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 80px;
}

.chocolate-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.aspect-cell {
    background-color: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.comparison-cell p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--color-white-90);
    margin: 0;
    text-align: center;
}

.aspect-cell p {
    color: var(--color-orange);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Winner highlighting */
.comparison-cell.winner {
    background-color: rgba(232, 143, 49, 0.06);
}

.comparison-cell.winner p {
    color: var(--color-white);
    font-weight: 600;
}

.comparison-note {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mobile Comparison - Hidden on Desktop */
.comparison-table-mobile {
    display: none;
}

/* Express Section */
.express-section {
    padding: 0px 0px;
    text-align: center;
}

.express-visual {
    max-width: 969px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

.express-image {
    width: 100%;
    height: auto;
}

.express-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
}

.express-description {
    max-width: 789px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 80px 40px;
}

/* Truth Section */
.truth-section {
    padding: 80px 40px;
    text-align: center;
}

.truth-title {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.truth-line {
    white-space: nowrap;
}

.truth-line-indent {
    padding-left: 571px;
}

.truth-strike {
    color: var(--color-orange-40);
    text-decoration: line-through;
}

/* Final CTA Section */
.final-cta-section {
    padding: 0px 40px;
}

/* Quote Section */
.quote-section {
    padding: 80px 40px 120px;
}

.quote-text {
    font-size: 1.875rem;
    color: var(--color-cream);
    text-align: center;
    margin-bottom: 10px;
}

.quote-highlight {
    font-weight: 800;
}

.quote-underline {
    display: flex;
    justify-content: center;
    margin-left: 50px;
}

.quote-underline img {
    width: 175px;
    height: auto;
}

/* Footer */
.footer {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-image {
    width: 100%;
    height: auto;
    display: block;
}

.footer-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 10;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-white-70);
    margin: 0;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--color-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Content Section - What's Included */
.content-section {
    padding: 80px 40px;
}

.content-section .container {
    padding: 0;
}

.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-box {
    background-color: var(--color-light-blue);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(232, 143, 49, 0.3);
}

.feature-box-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-box-description {
    font-size: 1.125rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
}

/* Topics Subsection */
.topics-subsection {
    margin-top: 60px;
}

.subsection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
}

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

.topic-box {
    background-color: var(--color-light-blue);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.topic-box:hover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 20px rgba(232, 143, 49, 0.2);
    border-color: var(--color-orange);
}

.topic-box-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 10px;
    line-height: 1.3;
}

.topic-box-description {
    font-size: 1rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .header {
        padding: 0 40px;
        top: 20px;
    }

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

    .hero {
        height: 75vh;
        min-height: 600px;
        padding-top: calc(75vh / 3 - 100px);
    }

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

    .hero-subtitle {
        font-size: 2.5rem;
        white-space: nowrap;
    }

    .hero-description {
        padding: 60px 30px;
    }

    .hero-description-main,
    .hero-description-accent {
        font-size: 1.875rem;
    }

    .hero-cta-section {
        padding: 30px 30px 60px;
    }

    .hero-cta-card {
        padding: 32px;
    }

    .hero-cta-price-old {
        font-size: 1.75rem;
    }

    .hero-cta-price-new {
        font-size: 3rem;
    }

    .hero-cta-value {
        font-size: 1.25rem;
    }

    .hero-cta-urgency {
        font-size: 1.375rem;
    }

    .container {
        padding: 60px 30px;
    }

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 60px;
        justify-items: center;
    }

    .content-text {
        text-align: center;
        max-width: 600px;
    }

    .section-title,
    .section-title-center {
        text-align: center;
    }

    .cta-left {
        text-align: center;
    }

    .profile-image-wrapper {
        width: 200px;
        height: 356px;
    }

    .profile-image,
    .profile-photo,
    .profile-video {
        width: 200px;
        height: 356px;
    }

    .section-title,
    .section-title-center,
    .truth-title {
        font-size: 2.25rem;
    }

    .truth-line-indent {
        padding-left: 400px;
    }

    .text-content {
        font-size: 1.125rem;
    }

    .pricing-label,
    .pricing-label-small,
    .price-current,
    .price-original {
        font-size: 2.25rem;
    }

    /* Comparison Section - Tablet */
    .comparison-section {
        padding: 20px 0px !important;
    }

    .comparison-table-wrapper {
        margin: 50px auto 30px;
    }

    .comparison-header-cell {
        padding: 25px 15px;
    }

    .comparison-emoji {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .comparison-header-cell h3 {
        font-size: 20px;
    }

    .aspect-header h3 {
        font-size: 0.875rem;
    }

    .comparison-price {
        font-size: 24px;
    }

    .comparison-cell {
        padding: 16px 12px;
        min-height: 70px;
    }

    .comparison-icon {
        font-size: 1.25rem;
    }

    .comparison-cell p {
        font-size: 0.9375rem;
    }

    .aspect-cell p {
        font-size: 0.875rem;
    }

    .comparison-note {
        font-size: 1.0625rem;
    }

    .express-title {
        font-size: 2.625rem;
    }

    .express-description {
        font-size: 1.125rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 60px 30px;
    }

    .feature-boxes-grid {
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-box {
        padding: 30px;
    }

    .feature-box-title {
        font-size: 1.5rem;
    }

    .feature-box-description {
        font-size: 16px;
    }

    .subsection-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .topic-box {
        padding: 25px;
        min-height: 130px;
    }

    .topic-box-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .topic-box-description {
        font-size: 1rem;
    }

    .structure-subsection {
        margin-top: 60px;
    }

    .structure-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .structure-blocks {
        gap: 25px;
    }

    .structure-block {
        padding: 30px;
    }

    .structure-block-number {
        font-size: 0.8125rem;
        margin-bottom: 10px;
    }

    .structure-block-title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }

    .structure-block-description {
        font-size: 0.9375rem;
        margin-bottom: 15px;
    }

    .structure-block-days {
        font-size: 0.8125rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Reduce horizontal animations to prevent overflow */
    .fade-left {
        transform: translateX(-20px);
    }

    .fade-right {
        transform: translateX(20px);
    }

    .fade-up {
        transform: translateY(30px);
    }

    .header {
        padding: 0 20px;
        top: 15px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .header-text {
        font-size: 0.875rem;
    }

    .hero {
        height: 75vh;
        min-height: 500px;
        padding-top: calc(75vh / 3 - 80px);
    }

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

    .hero-subtitle {
        font-size: 2.625rem;
        white-space: normal;
        max-width: 320px;
        line-height: 1.1;
    }

    .hero-ornament {
        width: 60%;
        top: 350px;
    }

    .hero-banner {
        bottom: -20px;
        width: 80%;
        max-width: 320px;
    }

    .hero-description {
        white-space: normal;
        padding: 30px 30px;
        text-align: center;
    }

    .hero-description-main,
    .hero-description-accent {
        font-size: 1.375rem;
    }

    .hero-cta-section {
        padding: 20px 20px 40px;
    }

    .hero-cta-card {
        padding: 28px 20px;
        border-radius: 0 20px 20px 20px;
    }

    .hero-cta-pricing {
        gap: 16px;
        margin-bottom: 16px;
    }

    .hero-cta-price-old {
        font-size: 1.5rem;
    }

    .hero-cta-price-new {
        font-size: 2.75rem;
    }

    .hero-cta-value {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .hero-cta-urgency {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .hero-cta-promo {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-cta-guarantee {
        font-size: 0.8125rem;
    }

    .container {
        padding: 30px 30px;
    }

    .content-grid,
    .content-grid.reverse {
        gap: 30px;
    }

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

    .profile-image-wrapper {
        width: 70vw;
        max-width: 275px;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .profile-image,
    .profile-photo,
    .profile-video {
        width: 100%;
        height: 100%;
    }

    .section-title,
    .section-title-center,
    .truth-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
        text-align: center;
    }

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

    .cta-left {
        text-align: center;
    }

    .truth-line {
        white-space: normal;
    }

    .truth-line-indent {
        padding-left: 0;
        text-align: center;
    }

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

    .pricing-section {
        margin-top: 20px;
        padding: 20px 30px;
    }

    .pricing-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 385px;
        margin: 0 auto;
    }

    .pricing-row {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        align-items: baseline;
        justify-content: center;
    }

    .pricing-row:first-child {
        margin-bottom: 10px;
    }

    .pricing-row:nth-child(2) {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .pricing-label-small {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-white);
        opacity: 0.5;
        line-height: 1;
    }

    .pricing-label {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--color-white);
        line-height: 1;
    }

    .price-current {
        font-size: 2rem;
        font-weight: 700;
        color: var(--color-orange);
        line-height: 1;
        display: block;
        margin-bottom: 30px;
    }

    .price-original {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--color-orange-50);
        text-decoration: line-through;
        line-height: 1;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 385px;
        margin: 0 auto 30px;
        align-items: center;
    }

    .btn {
        width: auto;
        padding: 15px 30px;
        font-size: 1rem;
        text-align: center;
    }

    .btn-primary {
        width: auto;
    }

    .btn-secondary {
        width: auto;
    }

    .promo-code {
        font-size: 1rem;
        padding: 0 20px;
        text-align: center;
        max-width: 385px;
        margin: 0 auto 12px;
    }

    .promo-code-text {
        font-size: 0.8125rem;
        margin-top: 6px;
        margin-bottom: 20px;
        padding: 0 20px;
    }

    .delivery-info {
        font-size: 0.875rem;
        padding: 0 20px;
        text-align: center;
        max-width: 385px;
        margin: 0 auto 15px;
    }

    .guarantee {
        font-size: 0.9375rem;
        padding: 0 20px;
        text-align: center;
        max-width: 385px;
        margin: 0 auto;
        opacity: 0.85;
    }

    /* Hide desktop comparison on mobile */
    .comparison-table-wrapper {
        display: none;
    }

    /* Show mobile comparison */
    .comparison-table-mobile {
        display: block;
        margin: 40px auto 30px;
        background-color: var(--color-light-blue);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Mobile Header */
    .comparison-mobile-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 2px solid var(--color-white-70);
    }

    .comparison-mobile-header-cell {
        padding: 20px 15px;
        text-align: center;
        background-color: var(--color-light-blue);
        border-bottom: 1px solid var(--color-white-70);
    }

    .comparison-mobile-header-cell:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-mobile-header-cell .comparison-emoji {
        font-size: 2.25rem;
        margin-bottom: 8px;
        display: block;
    }

    .comparison-mobile-header-cell h3 {
        font-size: 1.125rem;
        margin: 0 0 8px 0;
        color: var(--color-white);
        font-weight: 700;
    }

    .comparison-mobile-header-cell .comparison-price {
        font-size: 1.375rem;
        font-weight: 800;
        margin: 0;
        color: var(--color-white-90);
    }

    .comparison-mobile-header-cell .comparison-price.highlighted {
        color: var(--color-orange);
    }

    /* Mobile Comparison Rows */
    .comparison-mobile-row {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-mobile-row:last-child {
        border-bottom: none;
    }

    .comparison-mobile-criterion {
        text-align: center;
        font-size: 0.6875rem;
        font-weight: 400;
        padding: 6px 10px;
        background-color: rgba(255, 255, 255, 0.03);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--color-orange);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comparison-mobile-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .comparison-mobile-cell {
        padding: 16px 12px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        min-height: 70px;
    }

    .comparison-mobile-cell:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-mobile-cell.winner {
        background-color: rgba(232, 143, 49, 0.06);
    }

    .comparison-mobile-cell.winner p {
        font-weight: 600;
    }

    .comparison-mobile-cell .comparison-icon {
        font-size: 1.375rem;
        flex-shrink: 0;
    }

    .comparison-mobile-cell p {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.3;
        color: var(--color-white-90);
    }

    .comparison-table-header {
        grid-template-columns: 1fr 1fr;
        border-bottom: none;
    }

    .comparison-header-cell {
        padding: 20px 15px;
        border-bottom: 1px solid var(--color-white-70);
    }

    .chocolate-header {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ai-header {
        border: none;
    }

    .aspect-header {
        display: none;
    }

    .comparison-emoji {
        font-size: 2.25rem;
        margin-bottom: 8px;
    }

    .comparison-header-cell h3 {
        font-size: 1.25rem;
    }

    .comparison-price {
        font-size: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .comparison-cell {
        padding: 16px 12px;
        min-height: 70px;
    }

    .chocolate-cell {
        display: flex;
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .aspect-cell {
        display: flex;
        grid-column: 1 / -1;
        grid-row: 1;
        background-color: rgba(255, 255, 255, 0.05);
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        align-items: center;
        justify-content: center;
        padding: 0px !important;
        margin-bottom: 0;
    }

    .aspect-cell p {
        font-size: 0.75rem !important;
        font-weight: 600;
        text-align: center;
    }

    .ai-cell {
        display: flex;
        grid-column: 2;
        grid-row: 2;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border-left: none;
    }

    .comparison-icon {
        font-size: 1.375rem;
        flex-shrink: 0;
    }

    .comparison-cell p {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .comparison-note {
        font-size: 1rem;
        padding: 0 10px;
    }

    .express-section {
        padding: 30px 0;
    }

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

    .express-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .intro-section {
        padding: 30px 0;
    }

    .final-cta-section {
        padding: 0px;
    }

    .truth-section {
        padding: 30px 30px;
    }

    .quote-section {
        padding: 30px 30px 40px;
    }

    .quote-text {
        font-size: 1.125rem;
        padding: 0 20px;
    }

    .quote-underline {
        margin-left: 30px;
    }

    .quote-underline img {
        width: 120px;
    }

    .footer-content {
        width: 90%;
        max-width: 400px;
    }

    .footer-copyright {
        font-size: 0.75rem;
        line-height: 1.5;
        white-space: normal;
        word-wrap: break-word;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .content-section {
        padding: 30px 30px;
    }

    .feature-boxes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .feature-box {
        padding: 25px;
    }

    .feature-box-title {
        font-size: 1.375rem;
    }

    .feature-box-description {
        font-size: 1rem;
    }

    .subsection-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .topic-box {
        padding: 20px;
        min-height: 110px;
    }

    .topic-box-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .topic-box-description {
        font-size: 0.875rem;
    }

    .structure-subsection {
        margin-top: 50px;
    }

    .structure-intro {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .structure-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .structure-block {
        padding: 25px;
    }

    .structure-block-number {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .structure-block-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .structure-block-description {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .structure-block-days {
        font-size: 0.75rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Fade in from bottom */
.fade-up {
    transform: translateY(50px);
}

/* Fade in from left */
.fade-left {
    transform: translateX(-50px);
}

/* Fade in from right */
.fade-right {
    transform: translateX(50px);
}

/* Scale up */
.scale-up {
    transform: scale(0.95);
}

/* Fade in only */
.fade-in {
    opacity: 0;
}

/* Stagger animation delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Further reduce animations on very small screens */
    .fade-left {
        transform: translateX(-15px);
    }

    .fade-right {
        transform: translateX(15px);
    }

    .fade-up {
        transform: translateY(20px);
    }

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

    .hero-subtitle {
        font-size: 2rem;
        max-width: 280px;
    }

    .hero-description-main,
    .hero-description-accent {
        font-size: 1.125rem;
    }

    .hero-cta-section {
        padding: 16px 16px 32px;
    }

    .hero-cta-card {
        padding: 24px 16px;
        border-radius: 0 16px 16px 16px;
    }

    .hero-cta-pricing {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }

    .hero-cta-price-old {
        font-size: 1.25rem;
    }

    .hero-cta-price-new {
        font-size: 2.25rem;
    }

    .hero-cta-value {
        font-size: 1rem;
        margin-bottom: 14px;
        padding: 6px 16px;
    }

    .hero-cta-urgency {
        font-size: 1.125rem;
    }

    .hero-cta-promo {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .hero-cta-guarantee {
        font-size: 0.75rem;
    }

    .section-title,
    .section-title-center,
    .truth-title {
        font-size: 1.5rem;
    }

    .truth-line-indent {
        padding-left: 0;
    }

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

    .pricing-label-small {
        font-size: 1.25rem;
    }

    .pricing-label {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 1.75rem;
    }

    .price-original {
        font-size: 1.5rem;
    }

    .btn {
        font-size: 0.875rem;
        padding: 12px 24px;
    }

    .promo-code {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }

    .promo-code-text {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    .delivery-info {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .express-title {
        font-size: 1.625rem;
    }

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

    .footer-content {
        width: 95%;
        max-width: 350px;
    }

    .footer-copyright {
        font-size: 0.6875rem;
        line-height: 1.6;
    }

    .footer-link {
        font-size: 0.6875rem;
    }

    .feature-box-title {
        font-size: 1.25rem;
    }

    .feature-box-description {
        font-size: 0.875rem;
    }

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

    .topic-box-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .topic-box-description {
        font-size: 0.8125rem;
    }

    .structure-intro {
        font-size: 0.9375rem;
    }

    .structure-block {
        padding: 20px;
    }

    .structure-block-title {
        font-size: 1.125rem;
    }

    .structure-block-description {
        font-size: 0.8125rem;
    }
}

/* ============================================
   DAY PAGE STYLES
   ============================================ */

/* Day Header */
.day-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 125px;
}

.day-back-link {
    font-size: 1.25rem;
    color: var(--color-white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.day-back-link:hover {
    color: var(--color-orange);
}

/* Day Hero Section */
.day-hero {
    position: relative;
    width: 100%;
    height: 33.33vh;
    min-height: 350px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.day-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.day-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.day-hero-title {
    position: relative;
    font-size: 10.625rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin-bottom: 0;
    line-height: 1;
}

.day-hero-subtitle {
    position: relative;
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.day-hero-banner {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 436px;
    z-index: 3;
}

.day-hero-banner img {
    width: 100%;
    height: auto;
}

/* Day Content Section */
.day-content-section {
    padding: 80px 40px;
}

.day-container {
    max-width: 996px;
    margin: 0 auto;
}

.day-meta {
    margin-bottom: 40px;
}

.day-number {
    font-size: 1.25rem;
    color: var(--color-orange);
    margin-bottom: 10px;
    font-weight: 400;
}

.day-title {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}

/* Day Featured Media */
.day-featured-media {
    width: 100%;
    height: 560px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
    background-color: var(--color-light-blue);
}

.day-featured-media iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.day-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Day Text Content */
.day-text-content {
    font-size: 1.25rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
}

.day-text-content p {
    margin-bottom: 20px;
}

.day-text-content p:last-child {
    margin-bottom: 0;
}

.day-link {
    color: var(--color-orange);
    text-decoration: underline;
    text-underline-position: from-font;
    transition: opacity 0.3s ease;
}

.day-link:hover {
    opacity: 0.8;
}

/* Day CTA Section */
.day-cta-section {
    padding: 80px 40px;
    text-align: center;
}

.day-cta-title {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Day Page Responsive - Tablet */
@media (max-width: 1024px) {
    .day-header {
        padding: 0 40px;
    }

    .day-back-link {
        font-size: 1rem;
    }

    .day-hero {
        height: 33.33vh;
        min-height: 300px;
    }

    .day-hero-title {
        font-size: 7.5rem;
    }

    .day-hero-subtitle {
        font-size: 2.5rem;
    }

    .day-hero-banner {
        max-width: 350px;
        bottom: -20px;
    }

    .day-content-section {
        padding: 60px 30px;
    }

    .day-title {
        font-size: 2.25rem;
    }

    .day-featured-media {
        height: 450px;
        margin-bottom: 50px;
    }

    .day-text-content {
        font-size: 1.125rem;
    }

    .day-cta-section {
        padding: 60px 30px;
    }

    .day-cta-title {
        font-size: 2.25rem;
    }
}

/* Day Page Responsive - Mobile */
@media (max-width: 768px) {
    .day-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        top: 15px;
    }

    .day-back-link {
        font-size: 0.875rem;
        order: 1;
    }

    .day-header .header-text {
        font-size: 0.875rem;
        order: 2;
        align-self: flex-end;
    }

    .day-hero {
        height: 33.33vh;
        min-height: 280px;
    }

    .day-hero-title {
        font-size: 5rem;
    }

    .day-hero-subtitle {
        font-size: 2rem;
        white-space: normal;
        max-width: 280px;
        line-height: 1.1;
    }

    .day-hero-banner {
        max-width: 280px;
        bottom: -15px;
    }

    .day-content-section {
        padding: 40px 20px;
    }

    .day-meta {
        margin-bottom: 30px;
    }

    .day-number {
        font-size: 1.125rem;
    }

    .day-title {
        font-size: 1.75rem;
    }

    .day-featured-media {
        height: 350px;
        border-radius: 30px;
        margin-bottom: 40px;
    }

    .day-text-content {
        font-size: 1rem;
    }

    .day-cta-section {
        padding: 40px 20px;
    }

    .day-cta-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

/* Day Page Responsive - Small Mobile */
@media (max-width: 480px) {
    .day-hero {
        min-height: 350px;
    }

    .day-hero-title {
        font-size: 3.75rem;
    }

    .day-hero-subtitle {
        font-size: 1.75rem;
        max-width: 250px;
    }

    .day-hero-banner {
        max-width: 240px;
    }

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

    .day-featured-media {
        height: 280px;
        border-radius: 20px;
    }

    .day-text-content {
        font-size: 0.875rem;
    }

    .day-cta-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER STYLES
   ============================================ */

/* Cookie Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 440px;
    background: linear-gradient(180deg, var(--color-light-blue) 0%, var(--color-dark-blue) 100%);
    padding: 24px 28px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 12px;
    border: 2px solid var(--color-orange);
}

#cookie-consent-banner.visible {
    opacity: 1;
    transform: translateX(0);
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    display: none;
}

.cookie-banner-text p {
    font-size: 0.9375rem;
    color: var(--color-white-90);
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--color-orange);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 8px 8px 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-family: 'SUSE', sans-serif;
}

.cookie-btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.cookie-btn-primary:hover {
    background-color: #d17e28;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 143, 49, 0.4);
}

.cookie-btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white-70);
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.cookie-btn-text {
    background-color: transparent;
    color: var(--color-orange);
    padding: 12px 20px;
    text-decoration: underline;
}

.cookie-btn-text:hover {
    opacity: 0.8;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(5, 18, 31, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookie-settings-modal.visible {
    opacity: 1;
}

.cookie-settings-content {
    background: linear-gradient(180deg, var(--color-light-blue) 0%, var(--color-dark-blue) 100%);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 2px solid var(--color-orange);
    position: relative;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cookie-settings-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.cookie-settings-close:hover {
    color: var(--color-orange);
}

.cookie-settings-body {
    margin-bottom: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-orange);
    margin: 0;
}

.cookie-category-description {
    font-size: 0.875rem;
    color: var(--color-white-90);
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--color-orange);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-label {
    font-size: 0.75rem;
    color: var(--color-white-70);
    margin-left: 10px;
}

.cookie-settings-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner - Tablet */
@media (max-width: 1024px) {
    #cookie-consent-banner {
        bottom: 15px;
        right: 15px;
        max-width: 400px;
        padding: 20px 24px;
    }

    .cookie-banner-text p {
        font-size: 0.875rem;
    }

    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.8125rem;
    }

    .cookie-settings-content {
        padding: 30px;
    }
}

/* Responsive Cookie Banner - Mobile */
@media (max-width: 768px) {
    #cookie-consent-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 18px 20px;
        transform: translateY(20px);
    }

    #cookie-consent-banner.visible {
        transform: translateY(0);
    }

    .cookie-banner-content {
        gap: 14px;
    }

    .cookie-banner-text p {
        font-size: 0.875rem;
    }

    .cookie-banner-buttons {
        gap: 8px;
    }

    .cookie-btn {
        flex: 1;
        min-width: fit-content;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.8125rem;
    }

    .cookie-btn-text {
        flex-basis: 100%;
        padding: 8px 16px;
    }

    .cookie-settings-content {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .cookie-settings-header h2 {
        font-size: 1.5rem;
    }

    .cookie-category {
        padding: 15px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}

/* Responsive Cookie Banner - Small Mobile */
@media (max-width: 480px) {
    #cookie-consent-banner {
        padding: 16px 18px;
    }

    .cookie-banner-text p {
        font-size: 0.8125rem;
    }

    .cookie-btn {
        font-size: 0.75rem;
        padding: 9px 14px;
    }

    .cookie-btn-text {
        padding: 7px 14px;
    }

    .cookie-settings-header h2 {
        font-size: 1.25rem;
    }

    .cookie-category-header h3 {
        font-size: 1rem;
    }

    .cookie-category-description {
        font-size: 0.8125rem;
    }
}

/* ===================================
   ADVENT CALENDAR STYLES
   =================================== */

/* Calendar Hero Section */
.hero-calendar {
    min-height: 400px;
}

/* Calendar Introduction Section */
.calendar-intro {
    padding: 80px 0 40px;
    background-color: var(--color-dark-blue);
}

.calendar-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 24px;
}

.calendar-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Calendar Section */
.calendar-section {
    padding: 40px 0 40px;
    background-color: var(--color-dark-blue);
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Calendar Window */
.calendar-window {
    aspect-ratio: 1;
    border-radius: 0 16px 16px 16px;
    background:
        linear-gradient(135deg, rgba(11, 34, 56, 0.8) 0%, rgba(5, 18, 31, 0.9) 100%),
        var(--color-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Calendar Window Content */
.calendar-window-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Day Number */
.calendar-window-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
}

/* Window Title */
.calendar-window-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
    margin-top: 4px;
}

/* Locked Icon */
.calendar-window-locked-icon {
    font-size: 1.5rem;
    margin-top: 8px;
    opacity: 0.8;
}

/* Viewed Indicator */
.calendar-window-viewed-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: 700;
}

/* Locked State */
.calendar-window-locked {
    background:
        linear-gradient(135deg, rgba(11, 34, 56, 0.6) 0%, rgba(5, 18, 31, 0.75) 100%),
        var(--color-dark-blue);
    border-color: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}

.calendar-window-locked .calendar-window-number {
    opacity: 0.7;
}

.calendar-window-locked .calendar-window-content {
    opacity: 0.8;
}

/* Unlocked State */
.calendar-window-unlocked {
    background:
        linear-gradient(135deg, rgba(232, 143, 49, 0.15) 0%, rgba(11, 34, 56, 0.9) 100%),
        var(--color-dark-blue);
    border-color: rgba(232, 143, 49, 0.3);
}

.calendar-window-unlocked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(232, 143, 49, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.calendar-window-unlocked .calendar-window-number {
    color: var(--color-orange);
}

.calendar-window-unlocked .calendar-window-title {
    color: var(--color-white);
}

/* Viewed State */
.calendar-window-viewed {
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(11, 34, 56, 0.9) 100%),
        var(--color-dark-blue);
    border-color: rgba(34, 197, 94, 0.2);
}

.calendar-window-viewed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    z-index: 0;
}

/* Clickable Windows Hover Effect */
.calendar-window-clickable {
    cursor: pointer;
}

.calendar-window-clickable:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(232, 143, 49, 0.3);
    border-color: var(--color-orange);
}

.calendar-window-clickable:active {
    transform: translateY(-2px) scale(1.01);
}

/* Calendar Legend */
.calendar-legend {
    padding: 30px 0 50px;
    background-color: var(--color-dark-blue);
}

.calendar-legend-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 32px;
}

.calendar-legend-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendar-legend-icon {
    width: 56px;
    height: 56px;
    border-radius: 0 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
}

.calendar-legend-locked {
    background: linear-gradient(135deg, rgba(11, 34, 56, 0.6) 0%, rgba(5, 18, 31, 0.75) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.calendar-legend-unlocked {
    background: linear-gradient(135deg, rgba(232, 143, 49, 0.15) 0%, rgba(11, 34, 56, 0.9) 100%);
    border: 2px solid rgba(232, 143, 49, 0.3);
}

.calendar-legend-viewed {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(11, 34, 56, 0.9) 100%);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

/* Legend icon content */
.calendar-legend-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    opacity: 0.7;
    margin-bottom: 2px;
}

.calendar-legend-number-orange {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-orange);
}

.calendar-legend-number-white {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
}

.calendar-legend-lock {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 2px;
}

.calendar-legend-check {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

.calendar-legend-text {
    font-size: 0.9375rem;
    color: var(--color-white);
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 60px 0 80px;
    background-color: var(--color-dark-blue);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

/* Test Mode Indicator */
.test-mode-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 12px 20px;
    border-radius: 0 12px 12px 12px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 9999;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ===================================
   RESPONSIVE - CALENDAR
   =================================== */

/* Tablet Landscape (1024px - 1280px) */
@media (max-width: 1280px) {
    .calendar-grid {
        gap: 16px;
    }
    
    .calendar-window-number {
        font-size: 1.75rem;
    }
    
    .calendar-window-title {
        font-size: 0.8125rem;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    .calendar-intro {
        padding: 60px 0 30px;
    }
    
    .calendar-intro-title {
        font-size: 2rem;
    }
    
    .calendar-intro-text {
        font-size: 1rem;
    }
    
    .calendar-section {
        padding: 30px 0 40px;
    }

    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .calendar-legend {
        padding: 25px 0 50px;
    }

    .calendar-legend-items {
        gap: 32px;
    }

    .cta-section {
        padding: 50px 0 70px;
    }

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

    .cta-text {
        font-size: 1.125rem;
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    .hero-calendar {
        min-height: 320px;
    }
    
    .calendar-intro {
        padding: 40px 0 20px;
    }
    
    .calendar-intro-title {
        font-size: 1.75rem;
    }
    
    .calendar-intro-text {
        font-size: 0.9375rem;
    }
    
    .calendar-section {
        padding: 25px 0 30px;
    }

    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .calendar-window-number {
        font-size: 1.5rem;
    }
    
    .calendar-window-title {
        font-size: 0.75rem;
    }
    
    .calendar-window-viewed-indicator {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }
    
    .calendar-legend {
        padding: 20px 0 40px;
    }

    .calendar-legend-title {
        font-size: 1.25rem;
    }

    .calendar-legend-items {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .cta-section {
        padding: 40px 0 60px;
    }

    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .test-mode-indicator {
        top: 60px;
        right: 10px;
        left: 10px;
        text-align: center;
        font-size: 0.8125rem;
        padding: 10px 16px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .calendar-intro {
        padding: 30px 0 15px;
    }
    
    .calendar-intro-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .calendar-intro-text {
        font-size: 0.875rem;
    }
    
    .calendar-section {
        padding: 20px 0 25px;
    }

    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .calendar-window {
        border-radius: 0 12px 12px 12px;
    }
    
    .calendar-window-content {
        padding: 12px;
    }
    
    .calendar-window-number {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    
    .calendar-window-title {
        font-size: 0.6875rem;
    }
    
    .calendar-window-locked-icon {
        font-size: 1.125rem;
    }
    
    .calendar-window-viewed-indicator {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        top: 6px;
        right: 6px;
    }
    
    .calendar-legend {
        padding: 15px 0 30px;
    }

    .calendar-legend-title {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .calendar-legend-icon {
        width: 48px;
        height: 48px;
    }

    .calendar-legend-number,
    .calendar-legend-number-orange,
    .calendar-legend-number-white {
        font-size: 1.125rem;
    }

    .calendar-legend-lock {
        font-size: 0.75rem;
    }

    .calendar-legend-check {
        width: 16px;
        height: 16px;
        font-size: 0.6875rem;
    }

    .calendar-legend-text {
        font-size: 0.875rem;
    }

    .cta-section {
        padding: 30px 0 50px;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .cta-text {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }
}

/* Calendar Window Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   FALLING SNOW ANIMATION
   =================================== */

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 1;
    user-select: none;
    cursor: default;
    animation-name: snowfall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #fff;
    font-size: 1em;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Different snowflake sizes */
.snowflake.small {
    font-size: 0.6em;
    opacity: 0.6;
}

.snowflake.medium {
    font-size: 0.9em;
    opacity: 0.7;
}

.snowflake.large {
    font-size: 1.2em;
    opacity: 0.8;
}

/* ===================================
   PASSWORD PROTECTION OVERLAY
   =================================== */

.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 34, 56, 0.98) 0%, rgba(5, 18, 31, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.password-overlay-exit {
    animation: fadeOut 0.6s ease-out forwards;
}

.password-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    animation: slideUp 0.6s ease-out;
}

.password-content {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-dark-blue) 100%);
    border: 2px solid var(--color-orange);
    border-radius: 0 24px 24px 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.password-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: bounce 1s ease-in-out infinite;
}

.password-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.password-subtitle {
    font-size: 1.125rem;
    color: var(--color-white-90);
    opacity: 0.85;
    margin-bottom: 32px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.password-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.125rem;
    font-family: 'SUSE', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 12px 12px 12px;
    color: var(--color-white);
    transition: all 0.3s ease;
    outline: none;
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.password-input:focus {
    border-color: var(--color-orange);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(232, 143, 49, 0.1);
}

.password-input-shake {
    animation: shake 0.5s ease-in-out;
}

.password-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'SUSE', sans-serif;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    border-radius: 0 12px 12px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(232, 143, 49, 0.3);
}

.password-submit:hover {
    background-color: #d17e28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 143, 49, 0.4);
}

.password-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(232, 143, 49, 0.3);
}

.password-error {
    font-size: 0.9375rem;
    color: #ff6b6b;
    min-height: 24px;
    margin: 0;
    animation: fadeIn 0.3s ease-out;
}

/* Password Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-8px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(8px);
    }
}

/* Password Overlay Responsive - Tablet */
@media (max-width: 1024px) {
    .password-container {
        max-width: 450px;
    }

    .password-content {
        padding: 40px 32px;
    }

    .password-icon {
        font-size: 3.5rem;
    }

    .password-title {
        font-size: 1.75rem;
    }

    .password-subtitle {
        font-size: 1rem;
    }

    .password-input,
    .password-submit {
        font-size: 1rem;
        padding: 14px 18px;
    }
}

/* Password Overlay Responsive - Mobile */
@media (max-width: 768px) {
    .password-container {
        max-width: 90%;
    }

    .password-content {
        padding: 36px 28px;
        border-radius: 0 20px 20px 20px;
    }

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

    .password-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .password-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .password-form {
        gap: 14px;
    }

    .password-input,
    .password-submit {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .password-error {
        font-size: 0.875rem;
    }
}

/* Password Overlay Responsive - Small Mobile */
@media (max-width: 480px) {
    .password-content {
        padding: 32px 24px;
    }

    .password-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .password-title {
        font-size: 1.375rem;
    }

    .password-subtitle {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .password-input,
    .password-submit {
        font-size: 0.9375rem;
        padding: 12px 16px;
    }
}
