:root {
    /* Color Palette - Premium Dark Gold */
    --color-primary: #0a0a0a;
    /* Deep Black Background */
    --color-primary-dark: #000000;

    --color-secondary: #b8860b;
    /* Dark Matte Gold */
    --color-secondary-hover: #dafa60;
    /* Slightly lighter gold for interaction */

    --color-accent-red: #8b0000;
    /* Darker Red for elegance */

    --color-text-main: #e0e0e0;
    /* Off-white text */
    --color-text-light: #aaaaaa;
    /* Grey text */

    --color-bg-light: #0a0a0a;
    /* Main Page BG (Black) */
    --color-bg-white: #151515;
    /* Card BG (Dark Grey) */
    --color-bg-dark: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(184, 134, 11, 0.2);
    /* Gold Glow */
    --radius-sm: 8px;
    --radius-md: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-secondary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-secondary), #FFC66C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
    border: 2px solid var(--color-secondary);
}

.btn-primary:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-bg-white);
    border: 2px solid var(--color-bg-white);
}

.btn-secondary:hover {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

/* Header */
.header {
    background: rgba(26, 77, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--color-secondary);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding-top: calc(var(--spacing-xl) + 60px);
    padding-bottom: var(--spacing-xl);
    text-align: center;
    overflow: hidden;
    /* Video BG setup */
    background: #000 url('hero_background.png') center/cover no-repeat;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%);
    /* Center horizontally only */
    object-fit: cover;
    object-position: center top;
    /* Ensure top is prioritized */
    /* Removed brightness filter for 100% visibility as requested */
    /* filter: brightness(0.4); */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much lighter gradient, just enough for text readability at bottom/top */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(26, 77, 46, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* ... existing styles ... */

/* Authority Section */
.authority-section {
    background: #fff;
    padding: var(--spacing-lg) 0;
    overflow: visible;
    /* Fixed clipping issue */
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    /* Image Left, Text Right */
    gap: var(--spacing-lg);
    align-items: center;
}

.authority-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
}

.authority-content {
    grid-area: content;
}

.authority-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.authority-checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-text-main);
}

.check-item i {
    color: var(--color-secondary);
}

/* Authority Visual Composition */
.authority-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-card-stacked {
    position: relative;
    width: 300px;
    height: 400px;
}

.back-texture {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    opacity: 0.6;
    transform: rotate(5deg);
    z-index: 1;
    filter: sepia(0.5) contrast(1.2);
    /* Stylized effect */
    border: 2px solid var(--color-secondary);
}

.front-image {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    border: 4px solid #fff;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-proof-strip {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--color-bg-light);
    padding: 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.social-proof-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}


/* Responsive Authority */
@media (max-width: 768px) {
    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .authority-checklist {
        display: inline-block;
        text-align: left;
    }

    .image-card-stacked {
        margin: 0 auto;
        width: 250px;
        height: 330px;
    }
}


/* Problem Section */
.problem {
    background: var(--color-bg-dark);
    color: #fff;
    text-align: center;
}

.problem h2 {
    color: var(--color-accent-red);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

/* Solution Section - Features */
.solution {
    background: var(--color-bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-bottom: 4px solid var(--color-primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    display: block;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, var(--color-bg-light), #e8f0eb);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    align-items: center;
    /* Align for different heights */
}

.price-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--color-secondary);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-featured {
    background: var(--color-secondary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: block;
    margin: var(--spacing-sm) 0;
}

.price-amount small {
    font-size: 1rem;
    color: #333;
    /* Darker grey */
    font-weight: 400;
}

.price-features {
    text-align: left;
    margin: var(--spacing-md) 0;
    color: #000;
    /* Pure Black Features */
    font-weight: 500;
}

.price-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: var(--color-primary);
    font-weight: bold;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

/* Footer */
footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md) 0;
    font-size: 0.9rem;
}

/* Floating Testimonial "Balloons" - Redesign */
.float-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    bottom: auto;
    left: auto;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    align-items: flex-end;
    /* Align right */
}

.float-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--color-secondary);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 300px;
    transform: translateX(120%);
    /* Start off-screen right */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
}

.float-toast.show {
    transform: translateX(0);
    /* Slide in */
    opacity: 1;
}

.float-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.float-toast-content strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.float-toast-content p {
    font-size: 0.75rem;
    color: #555;
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive & Mobile Optimization */
@media (max-width: 768px) {

    /* Make header button visible but smaller */
    .header .btn {
        display: inline-flex;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
        /* Shrink logo slightly to fit button */
    }

    /* Tighter Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pulse-badge {
        margin-bottom: 1rem;
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    /* Floating position adjust on mobile */
    .float-toast-container {
        top: 80px;
        /* Below header */
        right: 0;
        bottom: auto;
        /* Reset bottom */
        left: auto;
        /* Reset left */
        width: auto;
        padding-right: 10px;
    }

    .float-toast {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        /* Align right */
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .float-toast img {
        width: 32px;
        height: 32px;
    }

    /* 2 Columns for Mobile Density */
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .sticky-cta-bar {
        padding: 8px 15px;
    }

    .desktop-only {
        display: none !important;
    }

    /* Reset previous toast container adjustments since we moved it to top */
    .float-toast-container {
        bottom: auto;
    }

    /* Adjust feature cards for 2-col density */
    .feature-card {
        padding: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Avatar Stack */
.avatar-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    margin-left: -10px;
    position: relative;
    z-index: 1;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.count-circle {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

/* Testimonial Infinite Carousel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    will-change: transform;
    /* Hint for GPU acceleration */
    animation: scroll 25s linear infinite;
    padding: 10px 0;
    /* Space for shadows */
    pointer-events: none;
    /* DISABLE INTERACTION */
}

/* Pause on hover REMOVED for continuous flow */
/* .testimonial-track:hover {
    animation-play-state: paused;
} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Moves half way (assuming duplicated content) */
}

/* Original Testimonial Style Restoration */
.testimonial-section-original {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: white;
}

.testimonial-card-original {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
}

.testimonial-card-original:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card-original p {
    color: #e0e0e0;
}

.testimonial-card-original strong {
    color: #fff;
}

/* Sticky CTA Bar (Glassmorphism) */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Neutral Translucent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-info {
    color: var(--color-text-main);
    font-size: 0.9rem;
}

.sticky-timer {
    color: var(--color-accent-red);
    font-weight: 700;
}



/* Enable Swipe on Mobile */
.pricing-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    /* Peeking effect */
    margin: 0 -20px;
    /* Negative margin to span full width */
}

/* Fan Effect for Doenças Section */
.image-card-fan {
    position: relative;
    width: 100%;
    max-width: 320px;
    /* Fluid width for small screens */
    height: 420px;
    perspective: 1000px;
}

.fan-page {
    position: absolute;
    top: 5%;
    /* Center vertically (100 - 90 / 2) */
    left: 5%;
    /* Center horizontally */
    width: 90%;
    /* Significantly smaller than cover (100%) to ensure cover dominance */
    height: 90%;
    background-size: cover;
    background-position: center;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    transition: transform 0.5s ease;
}

.image-card-fan:hover .p1 {
    transform: rotate(-15deg) translateX(-30px);
}

.image-card-fan:hover .p2 {
    transform: rotate(-5deg) translateX(-10px);
}

.image-card-fan:hover .p3 {
    transform: rotate(5deg) translateX(10px);
}

.p1 {
    transform: rotate(-10deg) translateX(-20px);
    z-index: 1;
}

.p2 {
    transform: rotate(-3deg) translateX(-5px);
    z-index: 2;
}

.p3 {
    transform: rotate(8deg) translateX(15px);
    z-index: 3;
}

.front-image-fan {
    position: absolute;
    /* Changed to absolute to match pages */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    /* Ensure it fills nicely */
    transform: rotate(0deg);
    /* Main cover is straight */
    transition: transform 0.3s ease;
}

.image-card-fan:hover .front-image-fan {
    transform: translateY(-5px);
    /* Subtle lift */
}

/* Combo Visual for Offers */
.combo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    height: 140px;
}

.combo-img {
    height: 120px;
    border-radius: 4px;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.combo-img:first-child {
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
}

.combo-img:last-child {
    transform: rotate(5deg) translateX(-10px);
    z-index: 2;
}

.badge-right {
    left: auto;
    right: -10px;
    background: var(--color-accent-red);
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly transparent */
    backdrop-filter: blur(10px);
    /* Glass effect */
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 4px solid var(--color-secondary);
    /* Accent top */
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.close-popup:hover {
    background: #ff4757;
    color: white;
    transform: rotate(90deg);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--color-accent-red);
    color: #fff;
}

.popup-tag {
    background: var(--color-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.combo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.combo-img-1 {
    width: 100px;
    transform: rotate(-10deg) translateX(10px);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.combo-img-2 {
    width: 100px;
    transform: rotate(10deg) translateX(-10px);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.plus-sign {
    position: absolute;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    color: var(--color-primary);
}

.popup-price {
    margin: 1.5rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.new-price {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .image-card-fan {
        margin: 0 auto 3rem;
        /* Added margin bottom to prevent overlap/clipping */
        width: 100%;
        max-width: 280px;
        height: 380px;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        text-align: center;
    }

    .authority-content {
        text-align: center;
        padding: 0 1rem;
    }

    .popup-content {
        padding: 1.5rem;
        max-width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }

    .new-price {
        font-size: 1.8rem;
    }
}

/* Dual Product Showcase */
.product-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-col {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #eee;
}

.product-visual-mini {
    position: relative;
    height: 420px;
    /* HUGE INCREASE (was 320) */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-img-dual {
    max-height: 400px;
    /* HUGE INCREASE (was 280) */
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}


/* QUARANTEE GRID */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-content {
    text-align: left;
}

.guarantee-Visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.guarantee-img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    border: 4px solid #fff;
}

.guarantee-badge-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #FFD700, #FDB931, #C08200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    margin-bottom: 1.5rem;
    display: inline-block;
    opacity: 0;
    /* Hidden initially for animation */
    transform: translateY(-50px);
}

.guarantee-badge-icon.shield-animate {
    animation: shieldDrop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes shieldDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-content {
        text-align: center;
    }

    .guarantee-img {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
}

.small-fan {
    transform: scale(0.6);
    /* reusing fan component but smaller */
    width: 280px;
    /* Force width for scale to work relative to center */
}

/* Mini List for Dual Cards */
.mini-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    padding-left: 0.5rem;
}

.mini-list li {
    margin-bottom: 0.5rem;
}

.mini-list i {
    color: var(--color-secondary);
    margin-right: 5px;
}

/* MOBILE OVERRIDES (Force Swipe + Dual Grid) */
@media (max-width: 768px) {

    /* 1. Dual Products Side-by-Side */
    .product-grid-dual {
        grid-template-columns: 1fr 1fr;
        /* Force 2 cols */
        gap: 0.5rem;
        /* Tight gap */
    }

    .product-col {
        padding: 0.8rem 0.5rem;
        /* Compact padding */
    }

    .product-visual-mini {
        height: 240px;
        /* INCREASED from 180px */
        margin-bottom: 1rem;
    }

    .product-img-dual {
        max-height: 220px;
        /* INCREASED from 160px */
    }

    .small-fan {
        transform: scale(0.45);
        /* INCREASED from 0.35 */
        transform-origin: center;
        width: 250px;
        /* INCREASED from 200px */
    }

    .product-info-dual h3 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 0.3rem;
    }

    .product-info-dual p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.2;
        display: none;
        /* Hide desc on super small screens if needed, keeping for now */
    }

    .mini-list {
        font-size: 0.7rem;
    }

    /* 2. Swipeable Pricing */
    .pricing-wrapper {
        display: flex;
        /* Horizontal Layout */
        overflow-x: auto;
        /* Scrollable */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        gap: 1rem;
        padding-bottom: 1.5rem;
        /* Space for scrollbar/touch */
        padding-left: 1rem;
        /* Start padding */
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll iOS */
    }

    .pricing-grid {
        display: contents;
        /* Let children directly participate in wrapper flex */
    }

    .price-card {
        min-width: 80vw;
        /* Card takes 80% screen width to show peeking next card */
        margin-right: 0;
        scroll-snap-align: center;
        flex-shrink: 0;
        /* Don't shrink */
    }
}