/* Navigation */
.navbar.transparent {
    background-color: var(--color-bg-primary-light);
    color: var(--color-text-white);
    box-shadow: none;
}

.navbar-link-dropdown-menu.transparent {
    background-color: var(--color-bg-primary-light);
    color: var(--color-text-white);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--color-bg-primary-light);
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    opacity: 0.1;
    pointer-events: none;
}

.container.hero__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    max-height: 300px;
    width: auto;
}

/* Main Section */
.main-section-wrapper {
    position: relative; 
    background-image: var(--main-bg-image);
    background-repeat: repeat;
    background-size: 200px;
}

/* Main - Promo Video */
.promo-section {
    position: relative;
    z-index: 2; /* Sits on top of the hero */
    margin-top: -20px; /* Pulls the section up for the overlap */

    /* The torn paper background and shadow */
    background-image: var(--video-bg-image);
    background-size: 101% 101%;
    background-repeat: no-repeat;
    background-position: center center;
    filter: drop-shadow(0px -10px 10px rgba(0, 0, 0, 0.12));
}

.container.promo-section__container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.promo-section__left {
    display: flex;
    flex-direction: column;
    width: 500px;
    gap: 20px;
}

.btn-group.promo-section__btn-group {
    justify-content: flex-start;
}

.promo-section__right {
    width: 450px;
    height: auto;
    aspect-ratio: 16 / 9;
    background-color: #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main - Benefits */
.benefits-section {
    position: relative; /* Anchor for the decorative lightbulbs */
}

.benefits-section::before {
    /* Left Side Bulb */
    content: '';
    position: absolute;
    z-index: 1;

    background-image: var(--benefits-lightbulbs-left-image);
    background-size: contain;
    background-repeat: no-repeat;
    
    width: 200px;
    aspect-ratio: 645 / 1251; 
    
    top: 80%;
    left: 0;  /* Pin it to the left edge */
    transform: translate(-35%, -50%); 
    
    pointer-events: none;
}

.benefits-section::after {
    /* Right Side Bulb */
    content: '';
    position: absolute;
    z-index: 1;

    background-image: var(--benefits-lightbulbs-right-image);
    background-size: contain;
    background-repeat: no-repeat;
    
    width: 200px;
    aspect-ratio: 645 / 1251; 
    
    top: 62%;
    right: 0; /* Pin it to the right edge */
    transform: translate(35%, -50%);
    
    pointer-events: none;
}

.container.benefits-section__container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    gap: 40px;
}

.benefits-section__header {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 40px;
}

.benefits-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    color: var(--color-text-default);
}

.benefits-section__grid > :last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
    border-radius: 10px;
    background-color: var(--color-bg-white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}

.benefit-card img {
    width: 150px;
    height: 150px;
}

.benefit-card__text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

/* Main - How It Works */
/* In a dedicated css file */

/* Main - Subscription */
.subscription-section {
    position: relative;
    z-index: 1;
}

.container.subscription-section__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.subscription-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.btn-group.subscription__btn-group {
    justify-content: center;
}

.btn-group.subscription__btn-group .btn {
    min-width: 395px;
    padding: 10px 20px;
    justify-content: center;
}

.subscription-section__mascot {
    margin: 0 auto;
    max-width: 400px;
    position: relative;
    margin-bottom: -130px; 
    z-index: 1; 
}

/* Testimonials Section */
.testimonials {
    position: relative;
    z-index: 2;
    overflow: visible;
    background: linear-gradient(to bottom, var(--color-bg-primary) 0%, #96EBFF 100%);
}

.testimonials__clipper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; 
}

.testimonials__clipper::before {
    /* Left Quote */
    content: '\f10d'; 

    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    
    font-size: 300px; 
    color: var(--color-text-white); 
    opacity: 0.1; 
    
    position: absolute;
    top: -15%;
    left: 0;
    transform: translate(-15%, 0);
    z-index: 1;
    pointer-events: none;
}

.testimonials__clipper::after {
    /* Right Quote */
    content: '\f10e'; 

    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    
    font-size: 300px; 
    color: var(--color-text-white); 
    opacity: 0.1; 
    
    position: absolute;
    bottom: -15%;
    right: 0;
    transform: translate(15%, 0);
    z-index: 1;
    pointer-events: none;
}

.container.testimonials__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 280px;
    gap: 40px;
}

.testimonials__header {
    display: flex;
    flex-direction: column;
    color: var(--color-text-white);
    align-items: center;
    text-align: center;
    gap: 20px
}

.testimonials__title {
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
    margin-bottom: 5px;
}

.testimonials__stars {
    font-size: 32px;
}

.new-testimonial-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 20px;
}

.new-testimonial-card {
    display: flex;
    flex-direction: column;
    min-width: 350px;
    max-width: 100%;
    height: auto; 
    background-color: var(--color-bg-white);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.new-testimonial-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.new-testimonial-card__stars {
    display: flex;
    color: var(--color-brand-yellow);
    align-self: center;
    gap: 10px;
}

.new-testimonial-card__more {
    margin-top: auto;
    align-self: flex-end;
}

.new-testimonial-footer {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px;

    border-radius: 0 0 10px 10px;
    background-color: #F0F0F0;
}

.modal-content.testimonial-modal-content {
    padding: 0;
}

.modal-close.testimonial-modal-close {
    top: 5px;
    right: 10px;
    color: var(--color-text-default);
    z-index: 1;
}

.modal-close.testimonial-modal-close:hover {
    color: var(--color-border-default);
}

.bridge-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 100%;
    max-width: 1000px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* CTA Section */
.cta {
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-primary);
    color: var(--color-text-white);
}

.container.cta__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 320px;
    padding-bottom: 100px;
    gap: 20px;
}

.cta__image {
    max-width: 850px;
    height: auto;
}

.cta__socials-box {
    width: 800px;
    margin-top: 80px;
}

.cta__socials {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 100px;
}

.cta__social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta__social i {
    font-size: 45px;
}

/* Responsive Styles */
/* Mobile-only: 320px – 767px */
@media (max-width: 767px) {
    .navbar.transparent {
        background-color: var(--color-bg-white);
        color: var(--color-text-gray);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .benefits-background {
        display: none;
    }

    .benefits-section__header {
        gap: 20px;
    }

    .benefits-section__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .new-testimonial-card {
        flex: 0 0 100%;
    }
}

/* Mobile and Tablet: 1365px below */
@media (max-width: 1365px) {
}