/* CSS reset & base settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-gradient: linear-gradient(135deg, #090909 0%, #150000 100%);
    --accent-red: #D90429;
    --accent-light: #EF233C;
    --accent-glow: rgba(217, 4, 41, 0.6);
    --text-light: #F8F9FA;
    --text-muted: #ADB5BD;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --border-radius: 12px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at top right, rgba(217, 4, 41, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(217, 4, 41, 0.05) 0%, transparent 40%);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.container-narrow {
    max-width: 800px;
}

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

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.col-text, .col-img {
    flex: 1 1 300px;
}

.text-center { text-align: center; }
.text-red { color: var(--accent-light); }
.text-green { color: #06D6A0; }
.text-gray { color: var(--text-muted); }
.red-text { color: var(--accent-light); font-weight: bold; }
.w-700 { max-width: 700px; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.highlight-bold { font-weight: 700; color: #fff; font-size: 1.1rem; }

/* Buttons & CTA */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

.btn-primary {
    background: linear-gradient(90deg, #D90429 0%, #EF233C 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.6); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(239, 35, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 35, 60, 0); }
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 41, 0.5);
    background: linear-gradient(90deg, #EF233C 0%, #D90429 100%);
}

.security-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-title span {
    color: var(--accent-light);
}

.section-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.4;
}

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

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glow-border {
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.2);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, transparent, var(--bg-dark)),
                url('https://images.unsplash.com/photo-1510414696678-24152431bcff?q=80&w=1500&auto=format&fit=crop') center/cover no-repeat;
    /* Image related to abstract war/chains/red/darkness. Used a dark landscape here, overlaid with gradient */
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10,10,10,0.4) 0%, rgba(5,5,5,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
}

.badge-top {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(217, 4, 41, 0.1);
    border: 1px solid var(--accent-red);
    color: var(--accent-light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Glitch Title Animation */
.glitch-title {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1;
    position: relative;
    text-shadow: 0 0 20px rgba(217, 4, 41, 0.8);
}

.glitch-title span {
    background: -webkit-linear-gradient(#fff, #ADB5BD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .glitch-title { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .glitch-title { font-size: 2.8rem; }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-md);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* WHAT IS IT */
.what-is {
    background-color: var(--bg-dark);
}

.highlight-box {
    background: rgba(217, 4, 41, 0.05);
    border-left: 4px solid var(--accent-light);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    margin-top: 10px;
    font-size: 1.8rem;
}

.image-glass {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.break-chain-icon {
    font-size: 8rem;
    color: rgba(239, 35, 60, 0.2);
    filter: drop-shadow(0 0 20px rgba(239, 35, 60, 0.5));
}

/* WHY 40 DAYS */
.why-40 {
    background: var(--bg-gradient);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-red);
}

/* TIMELINE (HOW IT WORKS) */
.how-it-works {
    background: var(--bg-dark);
}

.fasting-box {
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.fasting-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media(max-width: 500px) {
    .fasting-list { grid-template-columns: 1fr; }
}

.cycle-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
    font-family: var(--font-heading);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(217, 4, 41, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--bg-dark);
    border: 2px solid var(--accent-red);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--accent-light);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.5);
    font-family: var(--font-heading);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    background-color: rgba(255,255,255,0.03);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.timeline-content h4 {
    margin-top: 0;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-item.special .timeline-content {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.1), rgba(0,0,0,0));
    border-color: var(--accent-red);
}

.timeline-item.special .timeline-icon {
    background: var(--accent-red);
    color: #fff;
    animation: pulse 2s infinite;
}

@media screen and (max-width: 600px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 0; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-icon, .timeline-item:nth-child(even) .timeline-icon {
        left: 11px;
        right: auto;
    }
}

/* WHO IS FOR */
.who-is-for {
    background: var(--bg-gradient);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.who-list li {
    font-size: 1.15rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.target-illustration {
    width: 100%;
    height: 350px;
    border-radius: 50%;
    border: 2px dashed rgba(217, 4, 41, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.target-illustration .main-icon {
    font-size: 5rem;
    color: var(--text-light);
    z-index: 2;
}

.radar {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(217,4,41,0) 70%, rgba(217,4,41,0.5) 100%);
    animation: radar 4s linear infinite;
}

@keyframes radar {
    to { transform: rotate(360deg); }
}

/* TESTIMONIALS */
.testimonials {
    background: var(--bg-dark);
}

.grid-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.t-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 15px;
}

.t-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* DELIVERABLES */
.deliverables {
    background: var(--bg-gradient);
}

.deliverables-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.d-item {
    background: rgba(255,255,255,0.05);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.d-item i {
    color: var(--accent-light);
}

.guarantees-inline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.g-inline-item {
    font-weight: 500;
}

/* CHECKOUT */
.checkout-section {
    background: url('https://images.unsplash.com/photo-1549727494-b77da16dbe53?q=80&w=1500&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.checkout-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10,10,10,0.8) 0%, rgba(5,5,5,0.98) 100%);
}

.checkout-section .container {
    position: relative;
    z-index: 2;
}

.offer-box {
    padding: 40px;
    background: rgba(10, 10, 10, 0.7);
}

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

.price-word {
    font-size: 1rem;
    color: var(--accent-light);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 5px 0;
}

.price-new {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    text-shadow: 0 0 20px rgba(217,4,41,0.5);
    margin-bottom: 10px;
}

.price-conditions {
    font-size: 1rem;
    color: #06D6A0;
    font-weight: 500;
}

.safe-checkout {
    font-size: 0.9rem;
    color: #ADB5BD;
}

/* GUARANTEE */
.guarantee-section {
    background: var(--bg-dark);
}

.guarantee-badge {
    max-width: 250px;
    filter: drop-shadow(0 0 20px rgba(239, 35, 60, 0.4));
    animation: floating 3s ease-in-out infinite;
}

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

/* FAQ */
.faq {
    background: var(--bg-gradient);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-item button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.accordion-item button .icon {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--accent-red);
    border-radius: 22px;
}

.accordion-item button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: var(--accent-light);
}

.accordion-item button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: var(--accent-light);
    transition: transform 0.2s;
}

.accordion-item button[aria-expanded="true"] .icon::after {
    transform: scale(0);
}

.accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion-item button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 200px; /* arbitrary height, adapt as needed */
    transition: all 200ms linear;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* FOOTER */
footer {
    background: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-light);
}
