:root {
    /* Sophisticated Rose/Burgundy Palette */
    --bg-primary: #1c1014;
    /* Deep Warm Brown/Burgundy - derived from background of "Metodo Oculto" */
    --bg-secondary: #2b181e;
    --bg-gradient: linear-gradient(135deg, #1c1014 0%, #3a1e24 100%);

    /* Accent - Rose Gold / Terra Cotta from the book title */
    --accent: #e09499;
    --accent-hover: #c4767b;

    --text-primary: #fff5f6;
    --text-secondary: #d6babb;

    --card-bg: rgba(43, 24, 30, 0.7);
    --border-color: rgba(224, 148, 153, 0.1);

    --glass-bg: rgba(58, 30, 36, 0.4);
    --glass-border: rgba(224, 148, 153, 0.15);

    --font-main: 'Outfit', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Logic */
.glass,
.card,
.bonus-card,
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle radial gradient to highlight the center */
    background: radial-gradient(circle at 60% 40%, rgba(224, 148, 153, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero .content {
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Mobile: Position image between subheadline and stats */
@media (max-width: 991px) {
    .hero .content .hero-top-badge {
        order: 1;
    }

    .hero .content .eyebrow {
        order: 2;
    }

    .hero .content h1 {
        order: 3;
    }

    .hero .content .subheadline {
        order: 4;
    }

    .hero .content .hero-image {
        order: 5;
        padding-top: 12px;
        padding-bottom: 24px;
    }

    .hero .content .hero-stats {
        order: 6;
    }

    .hero .content .cta-wrapper {
        order: 7;
    }

    /* Hide desktop image on mobile */
    .hero-image-desktop {
        display: none !important;
    }
}

/* Desktop: Show image outside content */
@media (min-width: 992px) {

    /* Hide the mobile image (inside content) */
    .hero .content .hero-image {
        display: none !important;
    }

    /* Show the desktop image (outside content) */
    .hero-image-desktop {
        display: block;
    }
}

/* Hero Top Badge - Consolidated Social Proof */
.hero-top-badge {
    margin-bottom: 1.5rem;
}

.hero-top-badge .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(224, 148, 153, 0.2) 0%, rgba(224, 148, 153, 0.1) 100%);
    border: 1px solid rgba(224, 148, 153, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    animation: pulse-subtle 3s ease-in-out infinite;
}

.hero-top-badge .badge-pill i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-top-badge .badge-pill strong {
    color: var(--accent);
}

@keyframes pulse-subtle {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(224, 148, 153, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(224, 148, 153, 0.4);
    }
}

/* Floating Badges */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.float-badge {
    position: absolute;
    background: rgba(224, 148, 153, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 148, 153, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float-gentle 4s ease-in-out infinite;
}

.float-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

.badge-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 45%;
    right: 8%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .floating-elements {
        display: none;
    }
}

.hero .eyebrow {
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(224, 148, 153, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(224, 148, 153, 0.2);
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero .highlight-underline {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero .highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 2px;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-digital-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(224, 148, 153, 0.15);
    border: 1px dashed var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    animation: pulse-subtle 3s infinite;
}

.hero-digital-badge i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Mobile ordering update */
@media (max-width: 991px) {
    .hero .content .subheadline {
        order: 3;
        margin-bottom: 1.5rem;
    }

    .hero .content .hero-image {
        order: 4;
        /* Padding adjustments from previous rule remain effective if not overridden */
    }

    .hero .content .hero-stats {
        order: 5;
        margin-bottom: 1.5rem;
    }

    .hero .content .hero-digital-badge {
        order: 6;
        margin-bottom: 1.5rem;
    }

    .hero .content .cta-wrapper {
        order: 7;
    }
}

/* Hero Stats - Reorganized with Icons */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(224, 148, 153, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(224, 148, 153, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(224, 148, 153, 0.1);
    border-color: rgba(224, 148, 153, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #c4767b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #1c1014;
    font-size: 1.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* CTA Wrapper */
.cta-wrapper {
    margin-bottom: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent);
    color: #1c1014;
    font-weight: 700;
    padding: 1.125rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(224, 148, 153, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent);
}

.cta-button.cta-primary {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(224, 148, 153, 0.5);
    transform: translateY(-3px);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
}

.cta-subtext i {
    color: var(--accent);
    margin: 0 0.25rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }
}

/* Hero Image */
.hero-image {
    display: block;
    position: relative;
    perspective: 1000px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(224, 148, 153, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (min-width: 992px) {
    .hero-image {
        animation: float 6s ease-in-out infinite;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Container for the book grid */
.hero-book-stack {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

/* Common styles for all books in grid */
.hero-book-stack img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 3px solid rgba(0, 0, 0, 0.8);
}

/* Grid positioning - 2x2 layout */
/* Top Left - O Método Oculto (Main) */
.hero-book-stack .book-main {
    grid-column: 1;
    grid-row: 1;
}

/* Top Right - Diário de Reconexão */
.hero-book-stack .book-right {
    grid-column: 2;
    grid-row: 1;
}

/* Bottom Left - Guia de Mindful Eating */
.hero-book-stack .book-left {
    grid-column: 1;
    grid-row: 2;
}

/* Bottom Right - SOS Momentos Críticos */
.hero-book-stack .book-front {
    grid-column: 2;
    grid-row: 2;
}

/* Hover Effects */
.hero-book-stack img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 50px rgba(224, 148, 153, 0.4);
    border-color: var(--accent);
    cursor: pointer;
    z-index: 10;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .hero-book-stack {
        max-width: 400px;
        gap: 1rem;
        padding: 0.5rem;
    }

    .hero-book-stack img {
        border-radius: 15px;
        border-width: 2px;
    }
}


/* Revelation Section (Visual Revamp) */
.revelation {
    padding: 6rem 0;
    position: relative;
    background-color: #0d0608;
    /* Darker than primary for contrast */
    overflow: hidden;
}

.rev-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(224, 148, 153, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(224, 148, 153, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.revelation .container {
    position: relative;
    z-index: 1;
}

.rev-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.problem-grid-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

@media (min-width: 768px) {
    .problem-grid-visual {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card-visual {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 148, 153, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(224, 148, 153, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    transform: scale(0.8);
}

.problem-card-visual:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(224, 148, 153, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.problem-card-visual:hover .card-glow {
    opacity: 1;
    transform: scale(1);
}

.icon-visual {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(224, 148, 153, 0.3));
    transition: transform 0.4s ease;
}

.problem-card-visual:hover .icon-visual {
    transform: scale(1.2);
    color: #fff;
}

.problem-card-visual h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.problem-card-visual p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-card-visual strong {
    color: var(--accent);
    font-weight: 600;
}

/* Verdict Box */
.verdict-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.verdict-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 148, 153, 0.3), transparent);
    width: 100%;
    margin: 1.5rem 0;
}

.verdict-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.verdict-highlight {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(224, 148, 153, 0.4);
    animation: pulse-text 3s infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(224, 148, 153, 0.4);
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(224, 148, 153, 0.2);
    }
}

/* Arrow Animation */
.next-step-visual {
    text-align: center;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.bounce-arrow {
    animation: bounce-vertical 2s infinite;
}

@keyframes bounce-vertical {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}




/* Method Section (Visual Revamp) */
.method-revamp {
    padding: 6rem 0;
    position: relative;
    background: #150b0e;
    /* Slightly lighter than Revelation for variety */
}

.section-tag-visual {
    display: block;
    text-align: center;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.method-title-visual {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.method-subtitle-visual {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 5rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Visual Cards */
.method-cards-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .method-cards-visual {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method-card-visual {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(224, 148, 153, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.method-card-visual:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 148, 153, 0.3);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.icon-visual-large,
.icon-large-visual {
    width: 80px;
    height: 80px;
    background: rgba(224, 148, 153, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent);
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.method-card-visual:hover .icon-visual-large,
.method-card-visual:hover .icon-large-visual {
    transform: rotate(0deg) scale(1.1);
    background: rgba(224, 148, 153, 0.2);
    color: #fff;
    box-shadow: 0 0 20px rgba(224, 148, 153, 0.2);
}

.method-card-visual h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.method-card-visual p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-summary {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Scientific Insight Box */
.scientific-insight {
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    position: relative;
    margin-top: auto;
}

.scientific-insight .insight-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    opacity: 0.9;
}

.scientific-insight p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.scientific-insight strong {
    color: #fff;
    font-weight: 400;
    /* Regular weight for cleaner reading in dense text */
    border-bottom: 1px dashed rgba(224, 148, 153, 0.4);
}

/* Comparison Visual */
.comparison-visual-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .comparison-visual-container {
        flex-direction: row;
        align-items: stretch;
    }
}

.comp-col {
    flex: 1;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Old Way */
.old-way {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.8;
}

.col-header-old {
    text-align: center;
    margin-bottom: 2rem;
    color: #888;
}

.col-header-old i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.comp-list-old {
    list-style: none;
    padding: 0;
}

.comp-list-old li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
}

/* New Way */
.new-way {
    background: rgba(224, 148, 153, 0.05);
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.col-header-new {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
}

.col-header-new i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(224, 148, 153, 0.4));
}

.comp-list-new {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.comp-list-new li {
    background: rgba(224, 148, 153, 0.15);
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 1.05rem;
    border: 1px solid rgba(224, 148, 153, 0.3);
}

.vs-badge {
    background: #fff;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .vs-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -1rem auto;
    }
}

/* Technical Box within Method Cards */
.card {
    padding: 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure cards fill grid height */
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(224, 148, 153, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: var(--font-display);
}

.card p {
    color: var(--text-secondary);
}

.technical-box {
    margin-top: auto;
    /* Pushes box to the bottom */
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(224, 148, 153, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
}

.card:hover .technical-box {
    background: linear-gradient(90deg, rgba(224, 148, 153, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding-left: 2rem;
}

.technical-box .tech-label {
    display: block;
    font-family: var(--font-display);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.technical-box p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.technical-box strong {
    color: #fff;
}

/* Method Comparison Block */
.method-comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 992px) {
    .method-comparison-container {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-col {
    padding: 2.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-col.fail {
    border-left: 4px solid #e04a4a;
    /* Red for failure */
    background: linear-gradient(145deg, rgba(224, 74, 74, 0.05), rgba(43, 24, 30, 0.2));
}

.comparison-col.success {
    border-left: 4px solid #4ae098;
    /* Green for success */
    background: linear-gradient(145deg, rgba(74, 224, 152, 0.05), rgba(43, 24, 30, 0.4));
}

.comparison-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.comparison-intro {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.comparison-col ul {
    list-style: none;
    padding: 0;
}

.comparison-col li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.comparison-col li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-col.fail li::before {
    color: #e04a4a;
}

.comparison-col.success li::before {
    color: #4ae098;
}

.highlight-fail {
    color: #ff8a8a;
    font-weight: 600;
}

.highlight-success {
    color: #8affc1;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #140b0e;
    position: relative;
    overflow: hidden;
}

.benefits h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    position: relative;
    height: 400px;
    /* Fixed height for visual impact */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(28, 16, 20, 0.6) 50%, rgba(28, 16, 20, 0.95) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(28, 16, 20, 0.4) 50%, rgba(28, 16, 20, 0.9) 100%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(224, 148, 153, 0.15);
    border-color: rgba(224, 148, 153, 0.4);
}

/* Background Images */
.benefit-card.bg-guilt {
    background-image: url('assets/img/benefit_no_guilt.jpg');
    background-size: cover;
    background-position: center;
}

.benefit-card.bg-sleep {
    background-image: url('assets/img/benefit_sleep.jpg');
    background-size: cover;
    background-position: center;
}

.benefit-card.bg-freedom {
    background-image: url('assets/img/benefit_freedom.jpg');
    background-size: cover;
    background-position: center;
}

.benefit-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.benefit-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover h3,
.benefit-card:hover p {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .benefit-card.highlight-card {
        transform: scale(1);
    }
}

.card-visual {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.arrow-transform {
    font-size: 1.25rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
}

.benefit-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Bonuses */
/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    /* Further reduced from 4rem */
    background: var(--bg-secondary);
    position: relative;
    border-top: 1px solid rgba(224, 148, 153, 0.05);
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    /* Further reduced from 3rem */
    color: #fff;
    font-family: var(--font-display);
}


/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    /* Ensure all cards have equal height */
}

@media (min-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 15px rgba(224, 148, 153, 0.3);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 148, 153, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reviewer-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.verified-badge {
    font-size: 0.75rem;
    color: #4ae098;
    /* Green for verified */
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    color: #ffc107;
    /* Gold stars */
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    font-size: 1rem;
    /* Increased for better readability */
    margin-bottom: auto;
    /* Push before/after box to bottom */
    padding-bottom: 1.5rem;
    /* 24px spacing below text */
}

/* Before/After Box */
.before-after-box {
    margin-top: auto;
    /* Stick to bottom */
    padding: 2rem;
    /* Increased for extra spacing */
    background: rgba(224, 148, 153, 0.05);
    border: 1px solid rgba(224, 148, 153, 0.1);
    border-radius: 8px;
    width: 100%;
}

.before-after-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    /* Increased for better spacing */
}

.before-after-item:last-child {
    margin-bottom: 0;
}

.before-after-item .label {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 60px;
}

.before-after-item .text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}


/* Reusing bonus styles for next section... */
.bonuses {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #1c1014, #2b181e);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bonuses .subtitle {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(224, 148, 153, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.bonus-img-container {
    width: 100%;
    height: 350px;
    /* Fixed height for uniformity */
    margin-bottom: 1.5rem;
    /* Removed background to avoid borders with contain */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible */
    object-position: center;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    /* Adds depth to the floating book */
}

.bonus-card:hover .bonus-img-container img {
    transform: scale(1.05);
}

.bonus-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers items horizontally */
    text-align: center;
    /* Centers text */
}

.bonus-card .tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-family: var(--font-display);
    line-height: 1.3;
}

.bonus-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Offer Section */
.offer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1c1014 0%, #2b181e 100%);
    text-align: center;
    position: relative;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.7);
    }
}

.offer h2 {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.offer .price-context {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

/* Offer Content Grid */
.offer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 992px) {
    .offer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* What's Included */
.whats-included {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(224, 148, 153, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
}

.whats-included h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
}

.digital-notice {
    text-align: center;
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(224, 148, 153, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(224, 148, 153, 0.2);
    width: 100%;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.included-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.included-list i {
    color: #4ae098;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.included-list div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.included-list strong {
    color: #fff;
    font-size: 1.1rem;
}

.included-list span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.total-value {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(224, 148, 153, 0.1);
}

.total-value .strike {
    text-decoration: line-through;
    color: var(--accent);
    font-weight: 700;
}

/* Price Section */
.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.price-box-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(224, 148, 153, 0.1) 0%, rgba(224, 148, 153, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid var(--accent);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(224, 148, 153, 0.2);
}

.old-price-large {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.7;
}

.new-price-large {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(224, 148, 153, 0.3);
}

.savings {
    font-size: 1rem;
    color: #4ae098;
    font-weight: 600;
    margin-top: 0.5rem;
}

.installment-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0.5rem 0;
}

/* Pulse Animation for CTA */
.cta-button.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Guarantee */
.guarantee-enhanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--accent);
}

.guarantee-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Urgency Text */
.urgency-text {
    font-size: 1rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 1.5rem;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Legacy styles (keeping for compatibility) */
.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(224, 148, 153, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.price-box::before {
    content: 'OFERTA LIMITADA';
    position: absolute;
    top: -12px;
    background: var(--accent);
    color: #1c1014;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-secondary);
    opacity: 0.6;
}

.new-price {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.guarantee {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 2rem;
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    line-height: 1.4;
}

.faq-icon {
    color: var(--accent);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question:hover span {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2b181e 0%, #1c1014 100%);
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 148, 153, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(224, 148, 153, 0.2) 0%, rgba(224, 148, 153, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(224, 148, 153, 0.3);
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--accent);
}

.guarantee-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.guarantee-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.guarantee-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

@media (min-width: 768px) {
    .guarantee-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.guarantee-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-point i {
    color: #4ae098;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.guarantee-point div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guarantee-point strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
}

.guarantee-point span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.guarantee-box {
    background: rgba(224, 148, 153, 0.05);
    border: 1px solid rgba(224, 148, 153, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.guarantee-statement {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.guarantee-statement strong {
    color: var(--accent);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* ========================================
   URGENCY/SCARCITY SECTION
   ======================================== */

.urgency-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1c1014 0%, #2b181e 50%, #1c1014 100%);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(224, 148, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.urgency-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.urgency-header {
    text-align: center;
    margin-bottom: 4rem;
}

.urgency-alert {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.4);
    animation: pulse-alert 2s ease-in-out infinite;
}

@keyframes pulse-alert {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 68, 68, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 68, 68, 0.6);
        transform: scale(1.02);
    }
}

.urgency-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

@media (min-width: 768px) {
    .urgency-header h2 {
        font-size: 3.5rem;
    }
}

.urgency-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Urgency Grid */
.urgency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .urgency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.urgency-card {
    background: rgba(58, 30, 36, 0.6);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(224, 148, 153, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.urgency-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(224, 148, 153, 0.2);
}

.urgency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #c4767b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(224, 148, 153, 0.3);
}

.urgency-icon i {
    font-size: 2.5rem;
    color: #1c1014;
}

.urgency-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #fff;
}

.urgency-warning {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.time-value {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    min-width: 100px;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
    font-family: 'Courier New', monospace;
}

.time-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0.5rem;
}

/* Spots Limited */
.spots-remaining {
    color: var(--accent);
    font-size: 2.5rem;
    font-weight: 700;
}

.spots-bar {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    overflow: hidden;
    margin: 1.5rem 0;
    position: relative;
    border: 1px solid rgba(224, 148, 153, 0.2);
}

.spots-filled {
    height: 100%;
    background: linear-gradient(90deg, #ff4444 0%, var(--accent) 100%);
    border-radius: 50px;
    width: 93%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(224, 148, 153, 0.5);
    animation: pulse-bar 2s ease-in-out infinite;
}

@keyframes pulse-bar {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(224, 148, 153, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(224, 148, 153, 0.8);
    }
}

.spots-text {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

.spots-text span {
    color: var(--accent);
    font-weight: 700;
}

/* Live Activity Feed */
.live-activity {
    background: rgba(58, 30, 36, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 148, 153, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.live-indicator {
    background: #ff4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 200px;
    overflow: hidden;
}

.activity-item {
    background: rgba(224, 148, 153, 0.05);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slide-in 0.5s ease-out;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.activity-item .activity-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.activity-item .activity-text strong {
    color: #fff;
}

.activity-item .activity-time {
    color: var(--accent);
    font-size: 0.85rem;
    font-style: italic;
}

/* Loss Aversion */
.loss-aversion {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(224, 148, 153, 0.05) 100%);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.loss-aversion h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #fff;
}

.loss-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .loss-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.loss-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.loss-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 68, 68, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.loss-item i {
    color: #ff4444;
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.loss-item div {
    flex: 1;
}

.loss-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.loss-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Urgency CTA */
.urgency-cta {
    text-align: center;
}

.urgency-cta .cta-button {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
    margin-bottom: 1rem;
}

.urgency-footer {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Pulse Animation for CTA */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(224, 148, 153, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(224, 148, 153, 0.6);
    }
}

.cta-button.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .countdown-timer {
        gap: 0.5rem;
    }

    .time-value {
        font-size: 2rem;
        padding: 0.75rem 1rem;
        min-width: 70px;
    }

    .time-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }

    .urgency-card {
        padding: 2rem 1.5rem;
    }

    .loss-aversion {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   MAIN FOOTER
   ======================================== */

.main-footer {
    background: linear-gradient(135deg, #0f0809 0%, #1c1014 100%);
    border-top: 1px solid rgba(224, 148, 153, 0.2);
    padding: 6rem 0;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(224, 148, 153, 0.1);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-column h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(224, 148, 153, 0.1);
    border: 1px solid rgba(224, 148, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #1c1014;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 148, 153, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-disclaimer {
    background: rgba(224, 148, 153, 0.05);
    border: 1px solid rgba(224, 148, 153, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.8;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--accent);
    font-weight: 600;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-copyright {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-methods i {
    font-size: 1.75rem;
    color: var(--accent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

/* Section Separator */
.section-separator {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    z-index: 10;
    opacity: 0.8;
}

.section-separator.top {
    top: 0;
}

.section-separator.bottom {
    bottom: 0;
}

.payment-methods span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* ========================================
   CHOICE SECTION
   ======================================== */

.choice-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #1c1014 0%, #251418 100%);
    position: relative;
    overflow: hidden;
}

.choice-header {
    text-align: center;
    margin-bottom: 4rem;
}

.choice-header .eyebrow {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.choice-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.choice-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

/* Choice Grid */
.choice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .choice-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        /* Center cards vertically */
    }
}

@media (max-width: 991px) {
    .choice-card.positive {
        order: -1;
    }
}

/* Choice Card Base */
.choice-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.choice-card .card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.choice-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--font-display);
}

.choice-card .card-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Choice List */
.choice-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    text-align: left;
}

.choice-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.choice-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.choice-list li i {
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Negative Card Styling */
.choice-card.negative {
    opacity: 0.7;
    filter: grayscale(0.8);
    transform: scale(0.95);
}

.choice-card.negative:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(0.98);
}

.choice-card.negative .card-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #999;
}

.choice-card.negative .choice-list li i {
    color: #ff4444;
}

.cta-button.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Positive Card Styling */
.choice-card.positive {
    background: linear-gradient(145deg, rgba(224, 148, 153, 0.08), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 30px rgba(224, 148, 153, 0.2);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(224, 148, 153, 0.2);
        border-color: rgba(224, 148, 153, 0.6);
    }

    50% {
        box-shadow: 0 0 50px rgba(224, 148, 153, 0.5);
        border-color: var(--accent);
    }
}

.choice-card.positive .card-icon {
    background: linear-gradient(135deg, var(--accent), #c4767b);
    color: #fff;
    box-shadow: 0 10px 20px rgba(224, 148, 153, 0.3);
}

.choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(224, 148, 153, 0.4);
    white-space: nowrap;
}

.choice-card.positive .choice-list li i {
    color: #4ae098;
    background: rgba(74, 224, 152, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mini Spots Counter */
.mini-spots-counter {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ff4444;
    font-size: 0.95rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        background: rgba(255, 68, 68, 0.1);
    }

    50% {
        background: rgba(255, 68, 68, 0.2);
    }
}

.pulse-icon {
    font-size: 1.2rem;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

/* Choice Price */
.choice-price {
    margin: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.choice-price .period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.choice-price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 20px rgba(224, 148, 153, 0.3);
}

/* Mini Timer */
.mini-timer {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #ff4444;
    margin-bottom: 2rem;
}

.mini-timer>span:first-child {
    color: #ff4444;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mini-timer .timer-display {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Pulse Aggressive Animation */
.pulse-aggressive {
    animation: heartbeat 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(224, 148, 153, 0.7);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 148, 153, 0.7);
    }

    5% {
        transform: scale(1.05);
    }

    10% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    20% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(224, 148, 153, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(224, 148, 153, 0);
    }
}

/* Scientific Authority Section */
.scientific-authority {
    padding: 6rem 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #2b181e 0%, #1c1014 100%);
    overflow: hidden;
}

.scientific-authority::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 148, 153, 0.3), transparent);
}

.sci-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.sci-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(224, 148, 153, 0.3);
    border-radius: 4px;
    background: rgba(224, 148, 153, 0.05);
}

.sci-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.sci-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sci-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .sci-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sci-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(224, 148, 153, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sci-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(224, 148, 153, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sci-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 148, 153, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sci-card:hover::after {
    opacity: 1;
}

.sci-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(224, 148, 153, 0.1) 0%, rgba(224, 148, 153, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(224, 148, 153, 0.2);
    color: var(--accent);
    font-size: 1.75rem;
    position: relative;
    z-index: 2;
}

.sci-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.sci-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}