html {
    font-size: 90%; 
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

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

body {
    font-family: 'Archivo', sans-serif;
    font-weight: 400; 
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.section {
    padding: 1rem 16rem; 
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 3em;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title .highlight-red {
    color: #d70000;
}

.section-title .highlight-green {
    color: #19c11f;
}

.section-subtitle {
    font-size: 1.3em;
    color: #999;
    max-width: 800px;
    margin: 20px auto 40px;
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1em;
        margin: -15px auto 30px;
    }
}

.section-subtext {
    font-size: 1.2em;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.section-closing-text {
    font-size: 1.5em;
    line-height: 1.8;
    max-width: 900px;
    margin: 10px auto 0px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00c853d5 0%, #00e676 100%);
    border: 1px solid rgb(159, 255, 208);
    color: #fff;
    padding: 1.875rem 12.5rem;
    font-size: 1.4em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin: 0px auto 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6), 
                0 0 60px rgba(0, 230, 118, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: btnShimmer 3s infinite;
    pointer-events: none;
}

@keyframes btnShimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.8), 
                0 0 80px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: #050505;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2.5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/banner-desktop.webp');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.5) 15%, rgba(5, 5, 5, 0.2) 25%, transparent 40%),
                linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(5, 5, 5, 0.5) 90%, rgba(5, 5, 5, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -250px;
    left: -250px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(215, 0, 0, 0.8) 0%, rgba(215, 0, 0, 0.5) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: pulsateGlow 2s ease-in-out infinite;
    filter: blur(50px);
}

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

.hero-roll {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    animation: rotateRoll 8s linear infinite;
}

@media (max-width: 768px) {
    .hero-roll {
        right: auto;
        left: 50%;
        margin-left: -45px;  /* Half of 90px width = perfect center */
        bottom: 20px;
        width: 90px;
    }
}

@keyframes rotateRoll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
    padding-left: 10.25rem;
    padding-right: 10.25rem;
}

.hero h1 {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero .title-red {
    color:#d70000;
}

.accent-line {
    width: 3.5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #d70000, transparent);
    margin: 15px 0;
    border-radius: 2px;
}

.hero p {
    font-size: 1.35em;
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
    color: #ffffff;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
}

/* HERO INITIAL FADE IN */
.hero-content h1,
.hero-content .accent-line,
.hero-content p,
.hero-content .btn-primary {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
}

.hero-content h1 {
    animation: heroFadeIn 1s ease-out 0.3s forwards;
}

.hero-content .accent-line {
    animation: heroFadeIn 1s ease-out 0.6s forwards;
}

.hero-content p {
    animation: heroFadeIn 1s ease-out 0.9s forwards;
}

.hero-content .btn-primary {
    animation: heroFadeIn 1s ease-out 1.2s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .hero-content .accent-line,
    .hero-content p,
    .hero-content .btn-primary {
        transform: translateY(20px);
    }
    
    .hero-content h1 {
        animation: heroFadeIn 0.8s ease-out 0.2s forwards;
    }
    
    .hero-content .accent-line {
        animation: heroFadeIn 0.8s ease-out 0.4s forwards;
    }
    
    .hero-content p {
        animation: heroFadeIn 0.8s ease-out 0.6s forwards;
    }
    
    .hero-content .btn-primary {
        animation: heroFadeIn 0.8s ease-out 0.8s forwards;
    }
}

/* RESPONSIVE HERO */
@media (max-width: 1200px) {
    .hero-content {
        padding-left: 2.5rem;
    }
    
    .hero-glow {
        width: 450px;
        height: 450px;
        top: -120px;
        left: -120px;
    }
    
    .hero-roll {
        width: 130px;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: calc((100vw * 1.727) + 40px);
        align-items: flex-start;
        padding: 0;
    }
    
    .hero-background {
        background-image: url('./assets/banner-mobile.webp');
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .hero-background::after {
        background: linear-gradient(180deg, 
            rgba(5, 5, 5, 0) 0%,
            rgba(5, 5, 5, 0) 50%,
            rgba(5, 5, 5, 0.1) 60%,
            rgba(5, 5, 5, 0.3) 70%,
            rgba(5, 5, 5, 0.5) 77%,
            rgba(5, 5, 5, 0.7) 84%,
            rgba(5, 5, 5, 0.85) 91%,
            rgba(5, 5, 5, 0.95) 100%);
    }
    
    .hero-glow {
        top: -100px;
        left: -100px;
        width: 350px;
        height: 350px;
        filter: blur(45px);
    }
    
    .hero-roll {
        width: 110px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-content {
        position: absolute;
        top: calc((100vw * 1.727) * 0.48);
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        padding: 1.875rem 0.9375rem;
        text-align: center;
        margin: 0;
    }
    
    .hero-content::before {
        content: '';
        position: absolute;
        top: -3.125rem;
        left: 50%;
        transform: translateX(-50%);
        width: 130%;
        height: calc(100% + 6.25rem);
        background: radial-gradient(ellipse at center, 
            rgba(5, 5, 5, 0.9) 0%, 
            rgba(5, 5, 5, 0.6) 35%,
            rgba(5, 5, 5, 0.3) 55%,
            transparent 100%);
        z-index: -1;
        pointer-events: none;
    }
    
    .hero h1 {
        font-size: 2.2em;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 1.15em;
        margin-bottom: 35px;
    }

    .accent-line {
        width: 5.625rem;
        height: 0.1875rem;
        margin: 15px auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1.1em;
    }
    
    .hero-glow {
        width: 280px;
        height: 280px;
        top: -80px;
        left: -80px;
        filter: blur(40px);
    }
    
    .hero-roll {
        width: 90px;
        bottom: 15px;
        right: 15px;
    }
    
    .accent-line {
        width: 5.625rem;
        height: 0.1875rem;
        margin: 15px auto;
    }
}

/* RECOGNITION SECTION */
.recognition {
    background: #0a0a0a;
    text-align: center;
}

.section-image-container {
    text-align: center;
    margin-bottom: 40px;
}

.section-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0px;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}/* RECOGNITION SECTION */
.recognition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    justify-content: center;
}

.recognition-card {
    flex: 1 1 calc(50% - 30px); /* Adjust for gap; ensures two per row on desktop */
    max-width: calc(50% - 30px);
    min-width: 300px; /* Prevent too narrow on smaller desktops */
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-5px);
}

.recognition-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.recognition-card-text {
    padding: 20px;
    font-size: 1.1em;
    color: #ccc;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .recognition-grid {
        gap: 20px;
    }

    .recognition-card {
        flex: 1 1 100%; /* One per row on mobile */
        max-width: 100%;
    }

    .recognition-card-image {
        height: 200px; /* Adjust for mobile */
    }

    .recognition-card-text {
        font-size: 1em;
        padding: 15px;
    }
}

/* VSL SECTION */
.vsl {
    background: #050505;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

/* CRISIS SECTION */
.crisis {
    background: #050505;
    text-align: center;
}

.crisis .section-title {
    margin-bottom: 60px;
}

.carousel-outer-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    flex: 1;
}

.carousel-track {
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.crisis-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    transition: transform 0.3s ease;
}

.crisis-card:hover {
    transform: translateY(-5px);
}

.crisis-card-icon {
    font-size: 4em;
    background: linear-gradient(135deg, #8b0000 0%, #ff0000 25%, #ff9898 50%, #ff0000 75%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    animation: shimmer 2.5s infinite;
    background-size: 200% 200%;
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.crisis-card:hover .crisis-card-icon {
    animation: shimmer 1s infinite;
}

.crisis-card-stat {
    font-size: 1.3em;
    color: #fff;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.carousel-arrow {
    background: #d70000cc;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(215, 0, 0, 1);
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #d70000;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-content {
        padding-left: 2.5rem; 
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: calc((100vw * 1.727) + 40px);
        align-items: flex-start;
        padding: 0;
    }
    
    .hero-background {
        background-image: url('./assets/banner-mobile.jpg'); 
        background-size: 100% auto;
        background-position: top center; 
        background-repeat: no-repeat;
    }

    .hero-background::after {
        background: linear-gradient(180deg, 
            rgba(5, 5, 5, 0) 0%, 
            rgba(5, 5, 5, 0) 60%, 
            rgba(5, 5, 5, 0.4) 75%, 
            rgba(5, 5, 5, 0.85) 90%,
            rgba(5, 5, 5, 0.95) 100%);
    }
    
    .hero-content {
        position: absolute;
        top: calc((100vw * 1.727) * 0.48); 
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 500px;
        padding: 1.875rem 0.9375rem;
        text-align: center;
        margin: 0;
    }
    
    .hero-content::before {
        content: '';
        position: absolute;
        top: -3.125rem;
        left: 50%;
        transform: translateX(-50%);
        width: 130%;
        height: calc(100% + 6.25rem);
        background: radial-gradient(ellipse at center, 
            rgba(5, 5, 5, 0.9) 0%, 
            rgba(5, 5, 5, 0.6) 35%,
            rgba(5, 5, 5, 0.3) 55%,
            transparent 100%);
        z-index: -1;
        pointer-events: none;
    }
    
    .hero h1 {
        font-size: 2.2em;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 1.15em;
        margin-bottom: 35px;
    }

    .accent-line {
        width: 5.625rem;
        height: 0.1875rem;
        margin: 15px auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 1.75rem 1.5625rem;
    }

    .hero h1 {
        font-size: 1.8em; 
    }

    .hero p {
        font-size: 1.1em;
    }
    
    .accent-line {
        width: 5.625rem;
        height: 0.1875rem;
        margin: 15px auto;
    }

    .section-title {
        font-size: 2em !important;
    }

    .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1em;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
    }

    .carousel-outer-container {
        flex-direction: row;
        gap: 5px;
        align-items: center;
    }

    .crisis-card {
        flex: 0 0 100%;
        min-height: 300px;
        padding: 40px 15px;
    }

    .carousel-track {
        margin: 0;
        padding: 0;
    }

    .carousel-wrapper {
        gap: 0;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1em;
        position: relative;
        transform: none;
        flex-shrink: 0;
    }

    .carousel-container {
        position: relative;
        flex: 1;
        min-width: 0;
    }

    .carousel-dots {
        display: flex;
    }
}

/* CRISIS INTRO IMAGE */
.crisis-intro {
    background: #050505;
    padding: 0 !important;
}

.crisis-intro-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

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

.crisis-intro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 5, 0.7) 80%, rgba(5, 5, 5, 1) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .crisis-intro-image-container {
        max-width: 150%;
    }
}

/* BOOK INTRO SECTION */
.book-intro {
    background: #050505;
    text-align: center;
}

.book-intro-text {
    font-size: 1.2em;
    line-height: 1.9;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .book-intro-text {
        font-size: 1.1em;
        line-height: 1.7;
    }
}

.book-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 20px auto 0;
}

.book-topic-card {
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.book-topic-card:hover {
    transform: translateY(-3px);
    border-color: #19c11f;
}

.book-topic-icon {
    font-size: 1.8em;
    color: #19c11f;
    flex-shrink: 0;
}

.book-topic-text {
    font-size: 1.05em;
    color: #fff;
    font-weight: 600;
    text-align: left;
}

@media (max-width: 768px) {
    .book-topics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .book-topic-card {
        padding: 18px 20px;
    }
    
    .book-topic-icon {
        font-size: 1.5em;
    }
    
    .book-topic-text {
        font-size: 1em;
    }
}

/* TESTIMONIALS GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-grid > .testimonial-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-media-card {
    padding: 16px;
}

.testimonial-media-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.testimonial-media-card wistia-player {
    width: 100%;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid > .testimonial-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ULTIMATUM SECTION */
.ultimatum {
    background: #050505;
    text-align: center;
}

.ultimatum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.ultimatum-card {
    border-radius: 8px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    transition: transform 0.3s ease;
}

.ultimatum-card:hover {
    transform: translateY(-5px);
}

.ultimatum-decline {
    background: linear-gradient(135deg, #1a0000 0%, #0f0f0f 100%);
    border: 2px solid #d70000;
}

.ultimatum-accept {
    background: linear-gradient(135deg, #001a00 0%, #0f0f0f 100%);
    border: 2px solid #19c11f;
}

.ultimatum-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ultimatum-decline .ultimatum-icon-container {
    background: rgba(215, 0, 0, 0.2);
    border: 2px solid #d70000;
}

.ultimatum-accept .ultimatum-icon-container {
    background: rgba(25, 193, 31, 0.2);
    border: 2px solid #19c11f;
}

.ultimatum-icon {
    font-size: 2.5em;
}

.ultimatum-decline .ultimatum-icon {
    color: #d70000;
}

.ultimatum-accept .ultimatum-icon {
    color: #19c11f;
}

.ultimatum-choice {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.ultimatum-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #ccc;
    text-align: center;
}

@media (max-width: 768px) {
    .ultimatum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ultimatum-card {
        padding: 40px 30px;
        min-height: 280px;
    }
    
    .ultimatum-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .ultimatum-icon {
        font-size: 2em;
    }
    
    .ultimatum-choice {
        font-size: 1.3em;
    }
    
    .ultimatum-text {
        font-size: 1em;
    }
}

/* PRODUCT SECTION */
.product {
    background: #050505;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: #0f0f0f;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-featured {
    border: 3px solid #19c11f;
    background: linear-gradient(135deg, #001a00 0%, #0f0f0f 100%);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #19c11f;
    color: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.product-price {
    font-size: 3.0em;
    font-weight: 900;
    color: #19c11f;
    margin-bottom: 10px;
}

.product-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin-bottom: 30px;
    width: 100%;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05em;
    color: #ccc;
    border-bottom: 1px solid #222;
    justify-content: flex-start; /* keeps icon + text aligned */
    width: fit-content; /* key line */
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: #19c11f;
    font-size: 1.1em;
    flex-shrink: 0;
}

.btn-product {
    background: linear-gradient(135deg, #00c853d5 0%, #00e676 100%);
    border: 1px solid rgb(159, 255, 208);
    color: #fff;
    padding: 1.875rem 3.125rem;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6), 
                0 0 60px rgba(0, 230, 118, 0.3);
}

.btn-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: btnShimmer 3s infinite;
    pointer-events: none;
}

.btn-product:hover {
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.8), 
                0 0 80px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
}

.btn-product-featured {
    background: linear-gradient(135deg, #00c853d5 0%, #00e676 100%);
}

.btn-product-featured:hover {
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.8), 
                0 0 80px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-product {
        padding: 1.25rem 2.5rem;
        font-size: 1em;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-card {
        padding: 35px 25px;
    }
    
    .product-image {
        max-width: 400px;
    }
    
    .product-title {
        font-size: 1.5em;
    }
    
    .product-price {
        font-size: 3.0em;
    }
    
    .product-features li {
        font-size: 1em;
    }
    
    .btn-product {
        padding: 16px 40px;
        font-size: 1em;
    }
}

/* GUARANTEE SECTION */
.guarantee {
    margin-top: 40px;
    background: #050505;
    text-align: center;
}

.guarantee-shield {
    font-size: 5em;
    background: linear-gradient(150deg, #0d5e0d 0%, #19c11f 25%, #8fff8f 50%, #19c11f 75%, #0d5e0d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    animation: shimmer-guarantee 2.5s infinite;
    background-size: 200% 200%;
}

@keyframes shimmer-guarantee {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.guarantee-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
    margin: 15px auto;
    text-align: center;
}

.guarantee-email {
    font-size: 2.8em;
    font-weight: 700;
    color: #19c11f;
    margin: 25px auto;
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .guarantee-shield {
        font-size: 4em;
    }
    
    .guarantee-text {
        font-size: 1.1em;
        line-height: 1.7;
    }
    
    .guarantee-email {
        font-size: 1.8em;
    }
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    opacity: 0.6;
}

.payment-icons i {
    font-size: 1.8em;
    color: #999;
    transition: opacity 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .payment-icons {
        gap: 10px;
        margin-top: 12px;
    }
    
    .payment-icons i {
        font-size: 1.5em;
    }
}

.product-price-old {
    font-size: 1.5em;
    font-weight: 400;
    color: #666;
    margin-bottom: 1px;
    text-decoration: line-through;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .product-price-old {
        font-size: 1.3em;
    }
}

/* ABOUT AUTHOR SECTION */
.about-author {
    background: #050505;
    text-align: center;
}

.about-author-card {
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 50px 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-author-text {
    font-size: 1.2em;
    line-height: 1.9;
    color: #ccc;
    margin-bottom: 25px;
    text-align: left;
}

.about-author-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-author-card {
        padding: 35px 30px;
    }
    
    .about-author-text {
        font-size: 1.1em;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

/* FAQ SECTION */
.faq {
    background: #050505;
    text-align: center;
}

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

.faq-item {
    background: #0f0f0f;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #666;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: #fff;
    font-size: 1.15em;
    font-weight: 600;
    font-family: 'Archivo', sans-serif;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 0.9em;
    color: #d70000;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #ccc;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px 20px;
        font-size: 1.05em;
    }
    
    .faq-question span {
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 1em;
        line-height: 1.7;
    }
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 50px 20px 40px;
    text-align: center;
    border-top: 1px solid #222;
}

.back-to-top {
    background: #1c1c1c;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-to-top:hover {
    background: #6a6a6a;
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 1.1em;
}

.footer-text {
    font-size: 1em;
    color: #666;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 30px;
    }
    
    .back-to-top {
        padding: 12px 30px;
        font-size: 0.9em;
        margin-bottom: 25px;
    }
    
    .footer-text {
        font-size: 0.9em;
    }
}

/* FADE IN ON SCROLL */
.fade-in-section {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, 
                filter 0.8s ease-out, 
                transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Delay variations for staggered effects */
.fade-in-section.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-section.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-section.delay-3 {
    transition-delay: 0.3s;
}

.fade-in-section.delay-4 {
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    .fade-in-section {
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, 
                    filter 0.6s ease-out, 
                    transform 0.6s ease-out;
    }
}

/* Define the animation for the marquee movement */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    /* FIX: Scroll the content by 100% of its actual width (max-content) for a perfect loop */
    100% { transform: translateX(-100%); } 
}

.marquee-strip {
    width: 100%;
    padding: 0.9375rem 0; 
    background-color: #d70000; /* Red accent color */
    overflow: hidden; /* Crucial: Hides content outside the strip */
    white-space: nowrap; /* Prevents text wrap */
    position: relative;
    border-top: 2px solid #d70000;
    border-bottom: 2px solid #d70000;
}

.marquee-content {
    display: inline-block; /* Allows content to flow horizontally */
    width: max-content; 
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff; 
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Apply the animation: 60s duration, linear speed, infinite loop */
    animation: marquee-scroll 60s linear infinite; 
}


