/* General Styles & Variables */
:root {
    --primary-color: #0d041a; /* Even deeper base purple */
    --secondary-color: #1f0a3b; /* Slightly lighter purple */
    --accent-color: #ff00ff; /* Vibrant Magenta */
    --accent-hover: #e600e6;
    --text-color: #f0f0f0; /* Light grey/white text */
    --text-muted: #b0a0c0; /* Lighter purple-grey for muted text */
    --card-bg: rgba(31, 10, 59, 0.7); /* Slightly adjusted card bg opacity */
    --border-color: rgba(255, 0, 255, 0.3);
    --highlight-gradient: linear-gradient(90deg, var(--accent-color), #c700c7);

    --font-primary: 'Poppins', sans-serif;

    --border-radius: 8px;
    --border-radius-large: 12px;
    --spacing-unit: 1rem; /* Base spacing unit (16px default) */
    --container-padding: calc(var(--spacing-unit) * 1.5);
    --section-padding: calc(var(--spacing-unit) * 4) 0; /* Increased section padding */
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    /* New Complex Background */
    background: var(--primary-color); /* Fallback */
    background-image: radial-gradient(ellipse at top center, rgba(255, 0, 255, 0.15) 0%, transparent 40%),
                      linear-gradient(160deg, var(--secondary-color) 0%, var(--primary-color) 80%);
    background-attachment: fixed; /* Keep gradient fixed during scroll */
}

h1, h2, h3 {
    line-height: 1.3;
    margin-bottom: calc(var(--spacing-unit) * 1); /* Adjusted spacing */
    font-weight: 600; /* Slightly bolder headings */
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem); /* Fluid typography */
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

h3 {
    font-size: clamp(1.2rem, 2vw + 0.8rem, 1.5rem);
    color: var(--text-color); /* Ensure headings are bright */
}

p {
    margin-bottom: var(--spacing-unit);
    color: var(--text-muted); /* Muted default paragraph color */
}

p.subtitle, .section-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.7rem, 1.2rem);
    color: var(--text-muted);
    max-width: 650px; /* Limit subtitle width */
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Center subtitles by default */
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.hero p.subtitle {
    text-align: left; /* Override for hero */
    margin-left: 0;
    margin-right: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px; /* Slightly wider max width */
    margin: 0 auto;
    padding: var(--section-padding);
}

.highlight {
    /* Apply gradient to highlighted text */
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.highlight-price {
    color: var(--accent-color); /* Simpler highlight for price */
    font-weight: 700;
    font-size: 1.2em;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 400;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.9) calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    font-weight: 600; /* Slightly bolder */
    font-size: calc(var(--spacing-unit) * 1); /* Base font size */
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: calc(var(--spacing-unit) * 1.1) calc(var(--spacing-unit) * 2.5);
    font-size: calc(var(--spacing-unit) * 1.1);
}

.btn-primary {
    background: var(--highlight-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.04); 
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.55); 
    background: linear-gradient(90deg, var(--accent-hover), #b300b3);
    color: white;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 0, 255, 0.6);
    }
    100% {
        box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
    }
}

/* Neural Network Canvas Styling */
#neural-network-canvas {
    position: absolute; /* Position INSIDE the card */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind card content, but covers card bg */
    opacity: 0.7; /* Increased opacity further */
    pointer-events: none;
    border-radius: inherit; /* Inherit card border radius */
}

/* --- Hero Section --- */
.hero {
    /* REMOVED - Inherit body background */
    padding-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    overflow: visible; /* Allow potential 3D overflow */
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: calc(var(--spacing-unit) * 2.5); /* Slightly increased gap */
    perspective: 1500px; /* Add perspective for 3D child */
}

.hero-content {
    max-width: 600px; /* Limit text width */
}

.hero h1 {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.hero .subtitle {
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center; /* Keep centered on mobile */
    color: var(--text-color); /* Brighter subtitle in hero */
}

.hero .btn {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.badges {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: var(--spacing-unit);
    justify-content: center;
    margin-top: calc(var(--spacing-unit) * 1.5);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badges span {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    padding: calc(var(--spacing-unit) * 0.3) calc(var(--spacing-unit) * 0.8);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.badges svg {
    /* Style placeholder SVGs if added */
    width: 1em;
    height: 1em;
    fill: var(--accent-color);
}

.hero-visual {
    width: 100%;
    max-width: 450px;
    margin-top: var(--spacing-unit);
    perspective: 1000px; 
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; 
}

.animated-placeholder {
    background-color: transparent; /* Make card background transparent */
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 1.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0,0,0,0.4);
    text-align: center;
    position: relative; /* Container for absolute canvas */
    transform-style: preserve-3d;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    overflow: hidden; /* Clip the canvas to the card bounds */
}

.animated-placeholder:hover {
    transform: rotateY(5deg) rotateX(-3deg) scale(1.04) translateZ(15px); 
    /* Ensure this is the correct purple glow */
    box-shadow: 0 18px 55px rgba(255, 0, 255, 0.35), inset 0 0 20px rgba(0,0,0,0.3); 
}

/* Ensure card content is above the canvas */
.animated-placeholder p,
.animated-placeholder .screen-simulation,
.animated-placeholder .progress-bar-container,
.animated-placeholder .caption {
    position: relative;
    z-index: 1;
}

.animated-placeholder p {
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 600;
    color: var(--text-color);
    /* Add subtle background/shadow to make text more readable over canvas */
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.screen-simulation {
    background: rgba(13, 4, 26, 0.85);
    color: var(--text-muted);
    font-family: var(--font-primary);
    padding: calc(var(--spacing-unit) * 1.2);
    border-radius: var(--border-radius);
    text-align: left;
    min-height: 80px; /* Optional: Set a minimum height */
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    line-height: 1.5;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Remove terminal cursor */
.screen-simulation span::after {
    content: none;
}

@keyframes blink { 
    50% { opacity: 0; }
}

/* Progress Bar Styles */
.progress-bar-container {
    width: 90%;
    height: 10px;
    background-color: rgba(13, 4, 26, 0.8); /* Dark background */
    border-radius: 5px;
    margin: 0 auto; /* Center the bar */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-bottom: calc(var(--spacing-unit) * 1.5); */ /* REMOVED - Space handled below */
}

.progress-bar-fill {
    height: 100%;
    width: 0%; /* Starts at 0% */
    background: var(--highlight-gradient);
    border-radius: inherit;
    transition: width 0.5s ease-out; /* Smooth transition for JS updates (modal) */
    /* --- CORRIGINDO A DURAÇÃO PARA HERO --- */
    animation: fill-progress 2.5s linear 0.5s forwards; /* Revertendo para 2.5s */
}

@keyframes fill-progress {
    from { width: 0%; }
    to { width: 100%; } /* Animate to 100% */
}

/* NEW: Style for percentage display in hero card */
.percentage-display {
    display: block; /* Position it on its own line */
    text-align: right; /* Align to the right */
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: calc(var(--spacing-unit) * 0.5); /* Space above the caption */
    /* Align roughly with the end of the bar (which is 90% width) */
    width: 90%; 
    margin-left: auto; /* Push to right */
    margin-right: auto; /* Center container */
    padding-right: 5%; /* Add padding to align text with bar end */
    position: relative;
    z-index: 1; /* Ensure it's above canvas */
    text-shadow: 0 1px 3px rgba(0,0,0,0.7); /* Match other text */
}

.animated-placeholder .caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: calc(var(--spacing-unit) * 1.2); /* Adjusted margin */
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* --- CTA Buttons Inserted Between Sections --- */
.section-cta {
    text-align: center;
    padding: calc(var(--spacing-unit) * 1) 0 calc(var(--spacing-unit) * 3); /* Space around button */
    /* Optionally add a subtle background or border */
    /* background-color: rgba(255, 0, 255, 0.03); */
}

/* --- Benefits Section --- */
.benefits {
    background-color: var(--primary-color); /* Slightly different bg if needed */
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column mobile */
    gap: calc(var(--spacing-unit) * 1.5);
}

.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added base shadow */
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(255, 0, 255, 0.15), 0 8px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5rem; /* Adjust size if needed */
    margin-bottom: var(--spacing-unit);
    /* Remove fixed color if it exists */
    /* color: var(--accent-color); */
}

.benefit-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Mechanism Highlight Section --- */
.mechanism-highlight {
    padding: var(--section-padding);
    position: relative; /* Needed for absolute canvas */
    overflow: hidden;
    /* Removed background style, relies on body + canvas */
}

/* Style for the 3D canvas filling the section */
#brain-canvas {
    width: 100%;  /* Fill its container */
    height: 100%; /* Fill its container */
    opacity: 1.0; /* Reset opacity, control via materials/lights */
    display: block;
}

.mechanism-content {
    display: flex;
    flex-direction: column; /* Start stacked on mobile */
    gap: calc(var(--spacing-unit) * 2.5); /* Gap between text and visual on mobile */
    align-items: center;
}

.mechanism-text {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    max-width: 600px;
    background-color: rgba(13, 4, 26, 0.92);
    padding: calc(var(--spacing-unit) * 2.2);
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 0, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added purple glow */
    text-shadow: none;
    width: 100%; /* Take full width on mobile stack */
}

/* Style H2 inside the text card */
.mechanism-text h2 {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

/* Re-add styles for the visual container */
.mechanism-visual {
    width: 100%;
    max-width: 400px; 
    aspect-ratio: 1 / 1; 
    display: flex; 
    justify-content: center;
    align-items: center;
    perspective: 800px; 
    background-color: rgba(0,0,0,0.2); 
    border-radius: var(--border-radius); 
    position: relative; 
    overflow: hidden; 
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added base shadow */
}

/* Styles for the video element - Direct Filter Only */
.mechanism-visual video {
    width: 100%;  
    height: 100%; 
    object-fit: cover; 
    display: block; 

    /* Keep mask commented for sharp edges */
    /* mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%); */
    /* -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%); */

    /* Direct Filter - Keep 30deg, no blur */
    filter: 
        hue-rotate(30deg) 
        saturate(1.5)      
        brightness(1.05)   
        contrast(1.1);
        /* blur(1px) REMOVED */
        
    opacity: 1; 

    /* Remove Purple Glow Effect */
    /* box-shadow: 0 0 20px 8px rgba(255, 0, 255, 0.5); */ 

    /* ADD subtle purple border like benefit cards */
    border: 1px solid var(--border-color); /* --border-color is rgba(255, 0, 255, 0.3) */
}

.mechanism-item {
    display: flex;
    align-items: flex-start; /* Align icon top */
    gap: calc(var(--spacing-unit) * 1.2);
}

.mechanism-icon {
    font-size: 2.5rem; /* Adjust size if needed */
    margin-right: var(--spacing-unit);
     /* Remove fixed color if it exists */
    /* color: var(--accent-color); */
}

.mechanism-item h3 {
    margin-bottom: calc(var(--spacing-unit) * 0.3);
}

.mechanism-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* === Gradient Icons === */
.benefit-icon i,
.mechanism-icon i,
.step-icon i {
    /* Gradient Background */
    background: linear-gradient(45deg, #2563eb, #d946ef); /* Blue-500 to Fuchsia-500 (Tailwind approx) */
    
    /* Clip background to text */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Make text transparent to show gradient */
    color: transparent;
    /* Fallback for older browsers / ensures transparency */
    -webkit-text-fill-color: transparent;
    
    /* Inherit size from parent container */
    font-size: inherit; 
}

/* --- Social Proof Section --- */
.social-proof {
    background-color: var(--primary-color); /* Optional distinct bg */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: calc(var(--spacing-unit) * 1.5);
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 1.8);
    border-radius: var(--border-radius-large);
    position: relative; /* For quote marks */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added base shadow */
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(255, 0, 255, 0.2); /* Enhanced shadow */
}

/* Adding quote styling */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card blockquote p {
    font-style: italic;
    color: var(--text-color); /* Brighter quote text */
    margin-bottom: var(--spacing-unit);
    position: relative; /* Ensure text is above quote mark */
    z-index: 1;
}

.testimonial-card cite {
    display: flex;
    align-items: center;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: var(--spacing-unit);
}

.avatar {
    display: none; /* Hide the avatar image */
    /* Existing styles below are now inactive */
    /*
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover; 
    background-color: var(--secondary-color); 
    */
}

/* --- Steps Section --- */
.steps {
    background-color: rgba(13, 4, 26, 0.5); /* Use primary with alpha for depth over body gradient */
    padding: var(--section-padding);
    position: relative; /* For perspective */
    perspective: 1200px;
}

.steps h2 {
    color: var(--text-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: calc(var(--spacing-unit) * 2.5);
    position: relative; /* For connecting lines */
    counter-reset: step-counter;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: calc(var(--spacing-unit) * 1.8);
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    z-index: 1;
    transform-style: preserve-3d; /* Enable 3D for children */
    transform: rotateY(0deg); /* Start flat */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added base shadow */
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(255, 0, 255, 0.15), 0 8px 15px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight-gradient);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid var(--secondary-color); /* Match section bg */
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    z-index: 2;
}

.step-icon {
    font-size: 2.8rem; /* Adjust size if needed */
    margin-bottom: var(--spacing-unit);
    /* Remove fixed color if it exists */
    /* color: var(--accent-color); */
}

.step-card:hover .step-icon {
    transform: translateZ(35px) scale(1.1); /* Bring icon further forward on card hover */
}

.step-card h3 {
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--text-color);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Connecting lines (Desktop only idea) */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px; /* Adjust based on number size */
    bottom: 30px;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
    display: none; /* Hide on mobile */
    z-index: 0;
}

/* --- Media Queries (Start adding tablet/desktop overrides later) --- */

/* Example: Tablet and up */
@media (min-width: 768px) {
    .container {
        width: 85%;
    }

    h1 { font-size: clamp(2.5rem, 6vw + 1rem, 4rem); }
    h2 { font-size: clamp(2rem, 5vw + 1rem, 3.5rem); }

    .hero .container {
        flex-direction: row; /* Side-by-side on larger screens */
        text-align: left;
        gap: calc(var(--spacing-unit) * 3);
    }

    .hero-content {
        flex: 1; /* Allow content to take available space */
        max-width: none;
    }

    .hero .subtitle {
        text-align: left;
        margin-left: 0;
    }

     .hero-visual {
        flex-basis: 40%; /* Define size for visual element */
        max-width: 500px;
    }

    .badges {
        justify-content: flex-start; /* Align badges left */
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: calc(var(--spacing-unit) * 2);
    }

    .mechanism-content {
        flex-direction: row; /* Side-by-side on larger screens */
        align-items: center; 
        justify-content: space-between; /* Space between text and visual */
        gap: calc(var(--spacing-unit) * 4); 
    }
    .mechanism-text {
         flex: 1; /* Allow text to take space */
         max-width: 650px; /* Limit text width */
         width: auto; /* Reset width */
    }
    .mechanism-visual {
        flex-basis: 40%; /* Define size for visual */
        max-width: 400px; /* Consistent max width */
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        gap: calc(var(--spacing-unit) * 2);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns */
        gap: calc(var(--spacing-unit) * 2.5);
    }

    .steps-grid::before {
        display: block;
        top: 17.5px;
        left: calc(100% / 3 / 2);
        right: calc(100% / 3 / 2);
        width: auto;
        height: 2px;
        bottom: auto;
        transform: translateY(-50%) translateZ(-50px); /* Push line back */
        background: linear-gradient(to right, transparent, var(--border-color), transparent); /* Fade line ends */
    }

    .step-card:hover {
        transform: translateY(-6px);
    }

    .step-number {
        left: 15px; /* Position number left */
        transform: none;
    }
    .step-icon, .step-card h3, .step-card p {
        text-align: left; /* Align text left */
    }
     .step-icon {
         margin-left: 0;
     }
}

/* Example: Desktop and up */
@media (min-width: 1024px) {
    .container {
        width: 80%;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns */
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr); /* Four columns */
    }
}

/* Add more specific styles for sections and media queries below */

/* --- Offer Section --- */
#offer { /* Using ID for anchor link target */
    background-color: var(--primary-color);
    padding: calc(var(--spacing-unit) * 4) 0;
}

.offer-box {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(255, 0, 255, 0.1); /* Adjusted existing shadow */
    max-width: 850px; /* Limit width */
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: calc(var(--spacing-unit) * 1.5);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.offer-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: calc(var(--spacing-unit) * 0.3) calc(var(--spacing-unit) * 1);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-unit);
    text-transform: uppercase;
}

.offer-header h2 {
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-size: clamp(1.6rem, 4vw + 1rem, 2.5rem); /* Adjust size */
    color: var(--text-color);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.8);
    margin: calc(var(--spacing-unit) * 1) 0;
    font-weight: 600;
}

.time-box {
    background-color: var(--primary-color);
    padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 0.8);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    min-width: 70px; /* Ensure boxes have width */
}

.time-box span {
    display: block;
    font-size: 1.5rem; /* Larger numbers */
    color: var(--accent-color);
    line-height: 1.2;
}

.countdown .separator {
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.urgency-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--spacing-unit);
    margin-bottom: 0;
}

.offer-details {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.offer-includes ul,
.offer-bonuses ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
}

.offer-includes li,
.offer-bonuses li {
    display: flex;
    align-items: flex-start; /* Align check top */
    gap: calc(var(--spacing-unit) * 0.8);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.check-icon {
    color: #00ff7f; /* Bright green check */
    font-weight: bold;
    margin-top: 0.1em; /* Align better */
}

.offer-bonuses h3,
.offer-includes h3 {
    margin-bottom: calc(var(--spacing-unit) * 1.2);
    color: var(--text-color);
    font-size: 1.3rem;
}

.offer-bonuses strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
}

.free-tag {
    display: inline-block;
    background-color: #00ff7f; /* Match check */
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 4px;
    text-transform: uppercase;
}

.offer-cta {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
    perspective: 800px; /* Perspective for the button */
}

.offer-cta .btn {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s ease-out; /* Adjusted timing */
    transform: translateZ(0px) rotateX(0deg); /* Start flat */
    box-shadow: 0 6px 15px rgba(255, 0, 255, 0.4), 0 2px 5px rgba(0,0,0,0.3); /* Add base depth shadow */
}

.offer-cta .btn:hover {
     transform: translateY(-5px) translateZ(20px) rotateX(-10deg); /* Tilt up on hover */
     box-shadow: 0 15px 35px rgba(255, 0, 255, 0.5), 0 5px 10px rgba(0,0,0,0.2); /* More intense shadow */
}

.offer-cta .btn:active {
    transform: translateY(-1px) translateZ(5px) rotateX(-2deg); /* Press down effect, less Z */
    box-shadow: 0 4px 10px rgba(255, 0, 255, 0.4), 0 1px 3px rgba(0,0,0,0.4), inset 0 1px 2px rgba(0,0,0,0.2); /* Inset shadow for press */
}

.payment-info {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 1.5);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-info svg {
    width: 1em;
    height: 1em;
    fill: currentColor; /* Inherit color */
}

.guarantee-box {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 1.5);
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2);
}

.guarantee-box h3 {
    color: #00ff7f; /* Green for guarantee */
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-size: 1.2rem;
}

.guarantee-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --- Bonus Section Styling (match .steps style) --- */
.bonus-section {
    padding: var(--section-padding);
    background-color: rgba(13, 4, 26, 0.5); /* Match steps section background */
    position: relative; 
    perspective: 1200px; /* Add perspective */
    overflow: hidden; 
}

.bonus-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw + 1rem, 2.5rem); 
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--text-color);
}

.offer-bonuses ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr; 
    gap: calc(var(--spacing-unit) * 2.5); /* Match steps gap */
    max-width: 1100px; 
    margin: 0 auto; 
}

.offer-bonuses li {
    background-color: var(--card-bg);
    padding: calc(var(--spacing-unit) * 1.8);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color); /* Standard border */
    position: relative; 
    display: block; /* Change from flex to block for centering */
    text-align: center; /* Center text */
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    z-index: 1;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Updated base shadow */
}

.offer-bonuses li:hover {
    transform: translateY(-10px) rotateY(5deg) translateZ(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 15px 40px rgba(255, 0, 255, 0.25); /* Enhanced hover shadow */
}

.bonus-icon {
    font-size: 3rem; 
    margin: calc(var(--spacing-unit) * 0.5) 0 calc(var(--spacing-unit) * 1); /* Adjusted margin */
    color: var(--accent-color);
    display: inline-block; /* Allow margin auto */
    transition: transform 0.3s ease;
    transform: translateZ(20px); 
    flex-shrink: unset;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.offer-bonuses li:hover .bonus-icon {
    transform: translateZ(35px) scale(1.1); 
}

.bonus-icon svg {
    stroke: var(--accent-color);
    fill: none;
    width: 1em;
    height: 1em;
    stroke-width: 1.5; 
}

.offer-bonuses strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    font-size: 1.2rem; 
}

.offer-bonuses p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: calc(var(--spacing-unit) * 1); 
}

.free-tag {
    display: inline-block;
    background-color: #00ff7f;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-top: calc(var(--spacing-unit) * 0.5);
}

/* Keep media queries for grid */
@media (min-width: 768px) {
    .offer-bonuses ul {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(var(--spacing-unit) * 2);
    }
}

@media (min-width: 1024px) {
    .offer-bonuses ul {
        grid-template-columns: repeat(3, 1fr);
        gap: calc(var(--spacing-unit) * 2.5);
    }
}

/* --- Guarantee Section Styling --- */
.guarantee-section {
    padding: var(--section-padding);
    background-color: var(--secondary-color); /* Match offer box background */
    /* Optional: Add subtle pattern or texture */
    /* background-image: url('subtle-pattern.png'); */
}

.guarantee-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--primary-color); /* Slightly darker inner box */
    padding: calc(var(--spacing-unit) * 2.5);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(255, 0, 255, 0.15); /* Adjusted existing shadow */
    position: relative; /* For icon positioning */
}

.guarantee-icon {
    display: inline-flex; /* Center the icon */
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: var(--highlight-gradient);
    border-radius: 50%;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    /* Position slightly overlapping the top border */
    /* position: absolute; 
    top: -35px; 
    left: 50%; 
    transform: translateX(-50%); 
    border: 4px solid var(--secondary-color); */
}

.guarantee-icon svg {
    stroke: white;
    width: 50%;
    height: 50%;
}

.guarantee-title {
    font-size: clamp(1.6rem, 3.5vw + 1rem, 2.4rem);
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 1);
}

/* Ensure highlight in title uses gradient */
.guarantee-title .highlight {
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 2px; /* Add slight padding if needed */
}

.guarantee-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.underline-highlight {
    /* Underline effect with gradient - more subtle */
    background-image: linear-gradient(to top, rgba(255, 0, 255, 0.3) 20%, transparent 20%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 1px;
    font-weight: 600;
    color: var(--text-color); /* Slightly brighter */
}

.guarantee-badge {
    display: inline-flex; /* Use flex for icon alignment */
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.6);
    /* Changed background and border to match theme */
    background-color: rgba(255, 0, 255, 0.05); /* Subtle magenta bg */
    color: var(--accent-color); /* Magenta text */
    border: 1px solid var(--accent-color);
    padding: calc(var(--spacing-unit) * 0.6) calc(var(--spacing-unit) * 1.3);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Style for the icon inside the badge */
.guarantee-badge i {
    font-size: 1em; /* Match text size or slightly larger */
    /* Color already inherited from parent span */
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--secondary-color);
}

.accordion {
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden; /* Clip content */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Added base shadow */
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: transparent; /* Inherit */
    border: none;
    padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 1.5);
    cursor: pointer;
    text-align: left;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 0, 255, 0.1);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    background-color: var(--primary-color); /* Slightly darker content bg */
    padding: 0 calc(var(--spacing-unit) * 1.5); /* Initially no padding */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
    margin-bottom: var(--spacing-unit);
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: calc(var(--spacing-unit) * 1.5) 0; /* Padding added when open */
}

/* Style for when accordion item is open (add class via JS) */
.accordion-item.open .accordion-header {
    background-color: rgba(255, 0, 255, 0.05);
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.open .accordion-content {
    max-height: 300px; /* Adjust as needed */
    /* Padding applied via transition */
}

/* --- Footer Section --- */
.final-cta {
    background-color: var(--primary-color);
    text-align: center;
    padding: calc(var(--spacing-unit) * 3) 0;
    border-top: 1px solid var(--border-color);
}

.final-cta h2 {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.final-cta .btn {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.small-countdown {
    font-size: 0.9rem;
    gap: calc(var(--spacing-unit) * 0.5);
    margin-bottom: calc(var(--spacing-unit) * 2.5);
    color: var(--text-muted);
}

.small-countdown span {
    font-weight: 400;
}

.small-countdown .time-box {
    background: none;
    border: none;
    padding: 0;
    min-width: auto;
    color: var(--text-color);
}

.small-countdown .time-box span {
    font-size: 1em; /* Match surrounding text */
    color: var(--text-color);
    font-weight: 600;
}

.small-countdown .separator {
    font-size: 1em;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 255, 0.1);
    padding-top: calc(var(--spacing-unit) * 1.5);
    margin-top: calc(var(--spacing-unit) * 1.5);
    font-size: 0.85rem;
    color: var(--text-muted);
    /* Adjust layout for social icons */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-unit); /* Add gap between elements */
}

.footer-bottom p {
    margin-bottom: 0; /* Remove default margin */
    flex-basis: 100%; /* Take full width on small screens */
    text-align: center; /* Center on small screens */
}

.footer-nav {
    /* margin-top: calc(var(--spacing-unit) * 0.5); REMOVED */
    text-align: center; /* Center on small screens */
}

.footer-nav a {
    color: var(--text-muted);
    margin: 0 calc(var(--spacing-unit) * 0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* New styles for Social Icons */
.footer-social-icons {
    display: flex;
    gap: calc(var(--spacing-unit) * 1.2);
    justify-content: center; /* Center on small screens */
}

.footer-social-icons a {
    color: var(--text-muted);
    font-size: 1.3rem; /* Icon size */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.15); /* Grow effect */
}

/* New Styles for Security Badges */
.footer-security-badges {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: calc(var(--spacing-unit) * 1.5);
    justify-content: center; /* Center on small screens */
    align-items: center;
    width: 100%; /* Take full width on small screens initially */
    margin-top: var(--spacing-unit); /* Add some space above */
}

.security-badge {
    display: inline-flex; /* Align icon and text */
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.5);
    font-size: 0.8rem; /* Smaller text */
    color: var(--text-muted);
    /* Optional subtle background/border */
    /* background-color: rgba(255, 255, 255, 0.03); */
    /* padding: 3px 8px; */
    /* border-radius: 3px; */
}

.security-badge i {
    font-size: 1.1rem; /* Slightly larger icon */
    color: var(--text-muted); /* Keep icon color subtle */
    opacity: 0.8;
}

/* Responsive Adjustments for Footer Bottom */
@media (min-width: 768px) { 
    .footer-bottom {
        flex-wrap: nowrap; /* Prevent wrapping on larger screens */
        gap: calc(var(--spacing-unit) * 1); /* Adjust gap if needed */
    }
    .footer-bottom p {
        flex-basis: auto; /* Allow text to shrink */
        text-align: left;
        order: 1; 
    }
    .footer-nav {
        text-align: left;
        order: 2;
    }
    .footer-social-icons {
        justify-content: flex-end; /* Align right */
        order: 3;
    }
    /* Position Security Badges */
    .footer-security-badges {
        order: 4; /* Place badges last */
        width: auto; /* Allow it to shrink */
        justify-content: flex-end; /* Align to the right */
        margin-top: 0;
    }
}

/* --- Modal Form Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 4, 26, 0.85); /* Dark semi-transparent overlay */
    display: flex; /* Use flex to center the modal */
    justify-content: center;
    align-items: center;
    padding: var(--spacing-unit);
    z-index: 1000; /* Ensure it's above everything */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--secondary-color);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius-large);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 95%; /* Responsive width */
    position: relative;
    max-height: 90vh; /* Limit height and allow scroll */
    overflow-y: auto; /* Enable scroll if content overflows */
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28); /* Pop effect */
}

.modal-overlay.visible .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: calc(var(--spacing-unit) * 0.8);
    right: calc(var(--spacing-unit) * 1.2);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.2em;
    transition: color 0.3s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
    padding-bottom: var(--spacing-unit);
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: clamp(1.5rem, 4vw + 0.8rem, 2.2rem);
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.modal-header p {
    color: var(--text-muted);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

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

.progress-indicator span:first-child {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.progress-bar-steps {
    width: 100%;
    height: 12px; /* Increased height slightly */
    background-color: rgba(255, 255, 255, 0.1); /* Darker track */
    border-radius: 10px;
    overflow: hidden;
    position: relative; /* Needed for the animated shine */
}

.progress-fill-steps {
    height: 100%;
    width: 0%; /* Starts at 0 */
    background: linear-gradient(90deg, var(--accent-color), #ff00ff); /* Magenta gradient */
    border-radius: 10px;
    transition: width 0.5s ease-out;
    position: relative; /* Needed for the animated shine */
    overflow: hidden; /* Keep shine contained */
}

/* Animated Shine Effect for Progress Bar */
.progress-fill-steps::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
        -60deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 70%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%; /* Make gradient wider than the bar */
    animation: progress-shine 2s infinite linear;
    opacity: 0.8; /* Adjust shine intensity */
}

@keyframes progress-shine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Form Styling */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.form-row {
    display: flex;
    flex-direction: column; /* Stack by default */
    gap: calc(var(--spacing-unit) * 1.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1; /* Allow growing in rows */
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group label .required {
    color: var(--accent-color);
    margin-left: 4px;
}

.modal-form input[type="text"],
.modal-form select {
    width: 100%;
    padding: calc(var(--spacing-unit) * 0.9) calc(var(--spacing-unit) * 1);
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-form input[type="text"]::placeholder,
.modal-form select option[disabled] {
    color: var(--text-muted);
    opacity: 0.7;
}

.modal-form input[type="text"]:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.modal-form select {
    appearance: none; /* Remove default dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff00ff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Add custom arrow */
    background-repeat: no-repeat;
    background-position: right calc(var(--spacing-unit) * 1) center;
    padding-right: calc(var(--spacing-unit) * 3); /* Make space for arrow */
}

.modal-form select:disabled {
    background-color: rgba(13, 4, 26, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b0a0c0' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Grey arrow when disabled */
}

.input-with-info {
    position: relative;
    display: flex;
}

.input-with-info input {
    padding-right: calc(var(--spacing-unit) * 2.5); /* Space for icon */
}

.info-icon {
    position: absolute;
    right: calc(var(--spacing-unit) * 1);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: help; /* Indicate it's informative */
    font-size: 1.1rem;
    font-style: normal; /* Ensure it's not italic */
    font-weight: bold;
    display: inline-block; /* Needed for positioning */
    line-height: 1;
    user-select: none; /* Prevent text selection */
}

.form-group-optional label {
    font-weight: 400; /* Less emphasis for optional labels */
    color: var(--text-muted);
}

.form-footer {
    margin-top: calc(var(--spacing-unit) * 1.5);
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    gap: var(--spacing-unit);
    padding-top: var(--spacing-unit);
    border-top: 1px solid var(--border-color);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    text-align: center;
}

.form-note .info-icon {
    position: static;
    transform: none;
    font-size: 1em;
    cursor: default;
}

.form-footer .btn {
    width: 100%; /* Full width button on mobile */
    max-width: 300px;
}

/* Responsive adjustments for the form */
@media (min-width: 600px) {
    .form-row {
        flex-direction: row; /* Side-by-side for rows */
    }

    .form-footer {
        flex-direction: row; /* Side-by-side on larger screens */
        justify-content: space-between;
        align-items: center;
    }

    .form-footer .btn {
        width: auto; /* Auto width button */
    }

    .form-note {
        text-align: left;
    }
}

/* --- Modal Processing & Completed Styles --- */

/* Styles for Processing State */
#modal-processing {
    /* Basic container styles */
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1.5);
}

.processing-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.processing-title {
    font-size: clamp(1.6rem, 3.5vw + 1rem, 2.2rem);
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--accent-color);
}

.processing-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Main Progress Bar Styles (Existing, maybe refine) */
.main-progress-bar-container {
    width: 95%;
    margin: 0 auto calc(var(--spacing-unit) * 2.5);
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
}

.main-progress-bar-container .progress-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.main-progress-bar-container .icon {
    color: var(--accent-color);
    margin-right: 5px;
}

.main-progress-bar-container .progress-bar-steps {
    flex-grow: 1;
    height: 12px;
    background-color: rgba(13, 4, 26, 0.9); /* Darker track */
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.main-progress-bar-container .progress-fill-steps {
    height: 100%;
    background: var(--highlight-gradient);
    border-radius: 6px;
    transition: width 0.5s ease-out;
}

.main-progress-bar-container .progress-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    min-width: 40px; /* Ensure space for percentage */
    text-align: right;
}

/* NEW Styles for Central Animation Area */
.processing-animation-area {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    margin: var(--spacing-unit) auto calc(var(--spacing-unit) * 1.5) auto; /* Center and add margin */
    position: relative;
    background-color: rgba(0, 0, 0, 0.1); /* Optional subtle background */
    border-radius: var(--border-radius-large); /* Rounded corners */
    /* Add the magenta glow effect */
    box-shadow: 0 0 25px 5px rgba(255, 0, 255, 0.15), 
                0 0 40px 10px rgba(255, 0, 255, 0.1); 
    overflow: hidden; /* Ensure canvas stays within bounds */
}

#processing-neural-canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-large); /* Match parent radius */
}

/* NEW Style for Status Text */
.processing-status-text {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: calc(var(--spacing-unit) * 1);
    min-height: 1.5em; /* Prevent layout jump */
    font-style: italic;
}

/* Styles for Completed State */
.completed-container {
    text-align: center;
    padding: calc(var(--spacing-unit) * 2) 0;
}

.completed-icon {
    font-size: 4rem;
    color: var(--text-success);
    margin-bottom: var(--spacing-unit);
    animation: popIn 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.completed-title {
     font-size: clamp(1.6rem, 4vw + 1rem, 2.3rem);
     color: var(--text-color);
     margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.completed-subtitle {
     color: var(--text-muted);
     margin-bottom: calc(var(--spacing-unit) * 2);
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Styles for scroll-triggered animation on mobile */
@media (max-width: 767px) { 
    .animated-placeholder {
        opacity: 0; /* Start hidden */
        transform: translateY(30px); /* Start slightly lower */
        transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth transition */
        will-change: opacity, transform; /* Hint for performance */
    }

    .animated-placeholder.visible {
        opacity: 1; /* Fade in */
        transform: translateY(0); /* Slide up to original position */
    }

     /* Adjust hero layout if needed for animation */
     .hero .container {
         /* Maybe add some padding-top if the animation feels cut off initially */
         /* padding-top: var(--spacing-unit); */
     }
}

/* --- Comparison Section --- */
.comparison {
    background-color: var(--primary-color); /* Or secondary, depending on flow */
    padding: var(--section-padding);
}

.comparison h2 {
    margin-bottom: calc(var(--spacing-unit) * 1); /* Standard spacing below h2 */
}

.comparison .section-subtitle {
    margin-bottom: calc(var(--spacing-unit) * 3); /* More space before table */
}

.comparison-table-wrapper {
    max-width: 950px; /* Limit table width */
    margin: 0 auto;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 1.5); /* Inner padding */
    overflow-x: auto; /* Enable horizontal scroll on smaller screens */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(255, 0, 255, 0.1); /* Add the glow effect */
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Prevent table from becoming too narrow */
}

.comparison th,
.comparison td {
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.2);
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 0, 255, 0.15); /* Subtle horizontal lines */
}

.comparison thead th {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(255, 0, 255, 0.05); /* Subtle header bg */
    border-bottom: 2px solid var(--border-color); /* Stronger bottom border for header */
    text-align: center; /* Center header text */
}

.comparison thead th:first-child {
    text-align: left; /* Align first header left */
    border-top-left-radius: var(--border-radius); /* Match wrapper radius */
}

.comparison thead th:last-child {
    border-top-right-radius: var(--border-radius); /* Match wrapper radius */
}

.comparison tbody tr:last-child td {
    border-bottom: none; /* Remove border on last row */
}

.comparison tbody tr:hover {
    background-color: rgba(255, 0, 255, 0.03); /* Subtle hover */
}

.comparison .feature-name {
    color: var(--text-color);
    font-weight: 500;
    display: flex; /* Align icon and text */
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.8);
}

.comparison .info-tooltip {
    color: var(--text-muted);
    font-size: 1rem;
    cursor: help;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.comparison .info-tooltip:hover {
    color: var(--accent-color);
    opacity: 1;
}

.comparison .comparison-icon {
    text-align: center;
    font-size: 1.5rem; /* Icon size */
}

/* Icon Colors */
.comparison .icon-check {
    color: #00ff7f; /* Bright Green */
}

.comparison .icon-cross {
    color: #ff4d4d; /* Red */
}

.comparison .icon-warning {
    color: #ffcc00; /* Orange/Yellow */
}

/* Media query for slightly larger text on desktop */
@media (min-width: 768px) {
    .comparison th,
    .comparison td {
        padding: calc(var(--spacing-unit) * 1.2) calc(var(--spacing-unit) * 1.5);
    }

    .comparison thead th {
        font-size: 1.05rem;
    }

    .comparison .feature-name {
        font-size: 1rem;
    }
}

/* Ensure section respects existing layout */
#comparison {
    /* Ensure it flows correctly with other sections */
}

/* --- Mobile Responsiveness for Comparison Table --- */
@media (max-width: 767px) {
    /* Keep the wrapper scrolling */
    .comparison-table-wrapper {
        overflow-x: auto;
        padding: calc(var(--spacing-unit) * 1);
        background-color: var(--card-bg);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(255, 0, 255, 0.08);
        position: relative; /* Needed for pseudo-element */
    }

    /* Add subtle shadow on the right edge to indicate scroll */
    .comparison-table-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px; /* Width of the shadow effect */
        /* Inner shadow fading from right */
        box-shadow: inset -15px 0 15px -10px rgba(0, 0, 0, 0.4);
        /* Alternative: Gradient fade */
        /* background: linear-gradient(to left, rgba(13, 4, 26, 0.95), rgba(13, 4, 26, 0)); */
        pointer-events: none; /* Allow clicking/scrolling through the shadow */
        z-index: 2; /* Ensure it's above the table content */
        border-top-right-radius: var(--border-radius-large); /* Match parent border radius */
        border-bottom-right-radius: var(--border-radius-large); /* Match parent border radius */
    }

    /* Remove ALL the previous mobile restructuring rules below this point */
    /* No more display:block on table, tr, td */
    /* No more flexbox on tr */
    /* No more ::before pseudo-elements for labels/headers */
    
    /* Optional: Minor adjustments for table appearance on mobile */
    .comparison table {
         /* min-width: 500px; /* Optional: Slightly reduce min-width */ 
    }

    .comparison th,
    .comparison td {
        padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 1); /* Reduce padding */
        font-size: 0.9rem; /* Slightly smaller font */
        white-space: normal; /* Allow text wrapping within cells */
    }

    .comparison thead th {
        font-size: 0.8rem; /* Smaller header font */
        white-space: normal; /* Allow header text to wrap */
    }

    .comparison .feature-name {
        font-size: 0.9rem; /* Ensure feature name font size is consistent */
        gap: calc(var(--spacing-unit) * 0.5); /* Reduce gap */
    }
    
    .comparison .info-tooltip {
        font-size: 0.9rem; /* Adjust info icon size */
    }

    .comparison .comparison-icon {
        font-size: 1.3rem; /* Slightly smaller icons */
    }
}

/* --- Bonus Section --- */
/* ... existing code ... */ 

/* --- Guarantee Section --- */
/* ... existing guarantee styles ... */

/* --- Offer Section (Final Refinement) --- */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
}

.offer-box-main {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--secondary-color); 
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--lp-spacing-unit) * 2.5) calc(var(--lp-spacing-unit) * 2.5); /* Adjusted padding */
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.6), 0 8px 30px rgba(255, 0, 255, 0.2); /* Refined shadow */
    text-align: center;
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--lp-highlight-gradient);
    color: white;
    padding: calc(var(--lp-spacing-unit) * 0.6) calc(var(--lp-spacing-unit) * 1.8); /* Adjusted padding */
    border-radius: var(--lp-border-radius);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: calc(var(--lp-spacing-unit) * 2.2); /* Adjusted spacing */
}

.offer-headline {
    font-size: clamp(1.8rem, 4.5vw + 1rem, 2.8rem); /* Slightly larger */
    font-weight: 700;
    color: var(--lp-text-color);
    margin-bottom: calc(var(--lp-spacing-unit) * 1.5); /* Adjusted spacing */
    text-align: center;
    line-height: 1.3;
}

/* Countdown Timer Styles - Refined */
.countdown {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping unless forced by media query */
    justify-content: center;
    align-items: stretch; /* Align tops of boxes */
    gap: calc(var(--lp-spacing-unit) * 0.9); /* Adjusted gap */
    margin: calc(var(--lp-spacing-unit) * 2.5) 0 calc(var(--lp-spacing-unit) * 2.5) 0; /* Adjusted spacing */
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.6); /* Matching target box bg */
    padding: calc(var(--lp-spacing-unit) * 0.8) calc(var(--lp-spacing-unit) * 1.2);
    border-radius: var(--lp-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px; /* Target width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.4); 
}

.countdown-number {
    display: block;
    font-size: clamp(2rem, 4vw + 1rem, 2.4rem); /* Target size */
    font-weight: 700;
    color: var(--lp-accent-color);
    line-height: 1;
    margin-bottom: 5px; /* Spacing */
}

.countdown-label {
    display: block;
    font-size: 0.7rem; /* Target size */
    text-transform: uppercase;
    color: var(--lp-text-muted);
    line-height: 1;
    letter-spacing: 0.5px; /* Target spacing */
}

.countdown-separator {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    align-self: center;
    padding-bottom: calc(var(--lp-spacing-unit) * 1.2); /* Fine-tuned alignment */
}

.offer-description {
    font-size: 1rem;
    color: var(--lp-text-muted);
    max-width: 600px;
    margin: 0 auto calc(var(--lp-spacing-unit) * 3) auto; /* Adjusted spacing */
    text-align: center;
    line-height: 1.7;
}

/* Includes List Styles - Refined */
.offer-includes {
    margin: calc(var(--lp-spacing-unit) * 3) auto; /* Adjusted spacing */
    max-width: 550px;
    text-align: left;
}

.offer-includes h3 {
    font-size: 1.5rem; /* Target size */
    font-weight: 600;
    color: var(--lp-text-color);
    margin-bottom: calc(var(--lp-spacing-unit) * 2); /* Adjusted spacing */
    text-align: center;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: calc(var(--lp-spacing-unit) * 1.2); /* Target spacing */
}

.offer-includes li {
    display: flex;
    align-items: flex-start; 
    gap: calc(var(--lp-spacing-unit) * 1); /* Target spacing */
    font-size: 1rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    text-align: left;
}

.offer-includes li i.fas.fa-check {
    color: var(--accent-color); /* Correct Magenta check */
    font-size: 1em; /* Adjusted size */
    margin-top: 0.3em; /* Adjusted vertical alignment */
    flex-shrink: 0; 
}

/* CTA Button Specific Margin */
.offer-cta {
    margin-top: calc(var(--lp-spacing-unit) * 3.5); /* Adjusted spacing */
    margin-bottom: calc(var(--lp-spacing-unit) * 1.8);
}

/* Assurances Styles */
.offer-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: calc(var(--lp-spacing-unit) * 1.5) calc(var(--lp-spacing-unit) * 2.5);
    margin-top: calc(var(--lp-spacing-unit) * 2.2); /* Adjusted spacing */
    font-size: 0.9rem;
    color: var(--lp-text-muted);
}

.offer-assurances span {
    display: flex;
    align-items: center;
    gap: calc(var(--lp-spacing-unit) * 0.7);
}

.offer-assurances i {
    font-size: 1.1em;
    color: var(--lp-text-muted);
    opacity: 0.8;
}

/* --- Offer Section Responsiveness (Refined) --- */
@media (max-width: 767px) {
    .offer-box-main {
        padding: calc(var(--lp-spacing-unit) * 2) calc(var(--lp-spacing-unit) * 1.8);
    }
    .offer-headline {
        font-size: clamp(1.6rem, 5vw + 0.8rem, 2.4rem);
    }
    .countdown {
        gap: calc(var(--lp-spacing-unit) * 0.7);
    }
    .countdown-item {
        padding: calc(var(--lp-spacing-unit) * 0.7) calc(var(--lp-spacing-unit) * 1);
        min-width: 65px;
    }
    .countdown-number {
        font-size: clamp(1.6rem, 4vw + 0.7rem, 2rem);
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.6rem;
        padding-bottom: calc(var(--lp-spacing-unit) * 1);
    }
     .offer-includes {
        max-width: 100%;
    }
    .offer-includes h3 {
        font-size: 1.3rem;
        margin-bottom: calc(var(--lp-spacing-unit) * 1.5);
    }
    .offer-includes li {
        font-size: 0.95rem;
    }
     .offer-assurances {
        gap: calc(var(--lp-spacing-unit) * 1.2) calc(var(--lp-spacing-unit) * 2);
        font-size: 0.85rem;
        margin-top: calc(var(--lp-spacing-unit) * 1.8);
     }
     .offer-cta {
         margin-top: calc(var(--lp-spacing-unit) * 2.5);
     }
}

@media (max-width: 480px) { /* Adjusted breakpoint slightly */
    .offer-box-main {
        padding: calc(var(--lp-spacing-unit) * 1.8) calc(var(--lp-spacing-unit) * 1.2);
    }
    .countdown-item {
        min-width: 55px; /* Allow slightly smaller boxes */
        padding: calc(var(--lp-spacing-unit) * 0.6) calc(var(--lp-spacing-unit) * 0.8);
    }
    .countdown-separator {
        display: none; /* Hide separator as per target mobile */
    }
    .countdown-item:not(:last-child) {
         margin-right: 5px; /* Add space if separator is hidden */
    }
    .offer-headline {
        font-size: 1.7rem;
    }
    .offer-includes li {
        font-size: 0.9rem;
        gap: calc(var(--lp-spacing-unit) * 0.8);
    }
    .offer-assurances span {
        font-size: 0.8rem;
        gap: calc(var(--lp-spacing-unit) * 0.5);
    }
}

/* --- FAQ Section --- */
/* ... existing faq styles ... */

/* --- Offer Section (Premium Enhancement) --- */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
}

.offer-box-main {
    max-width: 700px; /* Reduced slightly for better proportions */
    margin: 0 auto;
    background-color: var(--secondary-color); 
    border: 1px solid var(--border-color);
    border-radius: 14px; /* Slightly increased radius */
    padding: calc(var(--spacing-unit) * 2.8) calc(var(--spacing-unit) * 2.8); /* Increased padding */
    box-shadow: 0 15px 55px rgba(0, 0, 0, 0.7), 0 10px 35px rgba(255, 0, 255, 0.25); /* Enhanced shadow */
    text-align: center;
    position: relative;
}

.offer-badge {
    display: inline-block;
    background: var(--highlight-gradient);
    color: white;
    padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1.5); /* Adjusted padding */
    border-radius: 4px; /* More rectangular badge */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: calc(var(--spacing-unit) * 2.5); /* Increased spacing */
}

.offer-headline {
    font-size: clamp(1.9rem, 4.5vw + 1rem, 2.7rem); /* Adjusted size */
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 1.8); /* Adjusted spacing */
    text-align: center;
    line-height: 1.2;
}

/* Premium Countdown Timer Styles */
.countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; /* Better vertical alignment */
    gap: 8px; /* Exact gap size */
    margin: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 3.2) 0; /* Adjusted spacing */
}

.countdown-item {
    background-color: #13051f; /* Exact color match from image */
    padding: 14px 12px; /* Exact padding */
    border-radius: 4px; /* More squared corners */
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 80px; /* Exact width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), 0 3px 6px rgba(0,0,0,0.2); /* Enhanced box shadow */
}

.countdown-number {
    display: block;
    font-size: 2.3rem; /* Exact size */
    font-weight: 700;
    color: #ff00ff; /* Exact magenta */
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b0a0c0; /* Exact muted color */
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 500; /* Slightly bolder */
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 600;
    color: #b0a0c0; /* Match label color */
    align-self: center;
    padding-bottom: 10px; /* Exact alignment */
}

.offer-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto calc(var(--spacing-unit) * 3.5) auto; /* Increased bottom margin */
    text-align: center;
    line-height: 1.7;
}

/* Enhanced horizontal separator */
.offer-box-main hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,255,0.2), transparent);
    margin: calc(var(--spacing-unit) * 2.5) auto;
    width: 90%;
}

/* Refined List Styles */
.offer-includes {
    margin: calc(var(--spacing-unit) * 1) auto calc(var(--spacing-unit) * 2.5) auto; /* Adjusted spacing */
    max-width: 520px; /* Exact width */
    text-align: left;
    padding-left: calc(var(--spacing-unit) * 3); /* Push list further from left edge */
}

.offer-includes h3 {
    font-size: 1.6rem; /* Slightly larger */
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 2.2); /* Increased margin */
    text-align: center;
    padding-right: calc(var(--spacing-unit) * 3); /* Compensate for left padding */
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; /* Exact spacing */
}

.offer-includes li {
    display: flex;
    align-items: flex-start; 
    gap: 14px; /* Increased space between icon and text */
    font-size: 1.05rem; /* Slightly larger text */
    color: var(--text-muted);
    line-height: 1.5;
    text-align: left;
}

.offer-includes li i.fas.fa-check {
    color: #ff00ff; /* Pure magenta */
    font-size: 0.95em; /* Slightly smaller than text */
    margin-top: 0.35em; /* Perfect vertical alignment */
    flex-shrink: 0; 
}

/* Premium CTA Button */
.offer-cta {
    margin-top: calc(var(--spacing-unit) * 3.8); /* Increased top margin */
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.offer-cta .btn {
    padding: 15px 28px; /* Exact padding */
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    border-radius: 6px; /* Slightly more rounded */
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.4), 0 4px 10px rgba(0,0,0,0.3); /* Enhanced glow */
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.offer-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 0, 255, 0.5), 0 8px 20px rgba(0,0,0,0.3);
    background: linear-gradient(90deg, #ff00ff, #cc00cc);
}

/* Refined Assurances */
.offer-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 24px; /* Exact gaps */
    margin-top: calc(var(--spacing-unit) * 1.8);
    font-size: 0.9rem;
    color: #9985b5; /* Slightly lighter than default muted */
}

.offer-assurances span {
    display: flex;
    align-items: center;
    gap: 8px; /* Exact spacing */
}

.offer-assurances i {
    font-size: 1.05em;
    color: inherit;
    opacity: 0.9; /* Slightly more visible */
}

/* --- Offer Section Responsiveness (Premium) --- */
@media (max-width: 767px) {
    .offer-box-main {
        padding: calc(var(--spacing-unit) * 2.2) calc(var(--spacing-unit) * 1.8);
    }
    .offer-headline {
        font-size: clamp(1.7rem, 5vw + 0.8rem, 2.4rem);
        margin-bottom: calc(var(--spacing-unit) * 1.5);
    }
    .countdown {
        gap: 7px; /* Exact mobile gap */
        margin: calc(var(--spacing-unit) * 2.2) 0 calc(var(--spacing-unit) * 2.8) 0;
    }
    .countdown-item {
        padding: 12px 10px; /* Adjusted mobile padding */
        min-width: 70px; /* Slightly larger for mobile */
    }
    .countdown-number {
        font-size: 2rem; /* Slightly smaller for mobile but still prominent */
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    .offer-includes {
        max-width: 100%;
        padding-left: calc(var(--spacing-unit) * 1.5); /* Less padding on mobile */
    }
    .offer-includes h3 {
        font-size: 1.4rem;
        margin-bottom: calc(var(--spacing-unit) * 1.8);
        padding-right: calc(var(--spacing-unit) * 1.5);
    }
    .offer-includes li {
        font-size: 1rem;
    }
    .offer-box-main hr {
        margin: calc(var(--spacing-unit) * 2) auto;
    }
}

@media (max-width: 480px) {
    .offer-box-main {
        padding: calc(var(--spacing-unit) * 1.8) calc(var(--spacing-unit) * 1.4);
        border-radius: 12px; /* Slightly smaller radius on mobile */
    }
    .offer-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: calc(var(--spacing-unit) * 2);
    }
    .countdown-item {
        min-width: 60px; /* Exact mobile width */
        padding: 10px 8px; /* Smaller padding on mobile */
    }
    .countdown-separator {
        display: none; /* Hide separator as per target mobile */
    }
    .countdown-item:not(:last-child) {
        margin-right: 6px; /* Add space if separator is hidden */
    }
    .offer-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .offer-includes li {
        font-size: 0.95rem;
        gap: 12px;
    }
    .offer-cta .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .offer-assurances {
        flex-direction: column; /* Stack on narrow mobile */
        gap: 12px;
    }
}

/* --- FAQ Section --- */
/* ... existing code ... */

/* --- Offer Section (Ultra Premium Enhancement) --- */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Fundo animado sutilmente */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
    animation: subtle-glow 15s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes subtle-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

.offer-box-main {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(18, 8, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 45px 40px;
    box-shadow: 
        0 18px 60px rgba(0, 0, 0, 0.8), 
        0 12px 40px rgba(255, 0, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    backdrop-filter: blur(3px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-box-main:hover {
    transform: translateY(-5px);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff00ff, #b300b3, #ff00ff);
    background-size: 200% auto;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    animation: shimmer 2.5s infinite linear;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.offer-headline {
    font-size: clamp(1.9rem, 4.5vw + 1rem, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Destaque de preço com animação sutil */
.offer-headline .highlight-price {
    background: linear-gradient(90deg, #ff00ff, #ff66ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 5px;
    animation: pulse-text 3s infinite alternate ease-in-out;
}

@keyframes pulse-text {
    0% { text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    100% { text-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 10px rgba(255, 0, 255, 0.4); }
}

/* Premium Countdown Timer Styles */
.countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 45px 0;
}

.countdown-item {
    background-color: #0d0215;
    padding: 15px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 255, 0.15);
    min-width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 5px 15px rgba(0,0,0,0.5),
        0 0 30px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 8px 20px rgba(0,0,0,0.5),
        0 0 40px rgba(255, 0, 255, 0.15);
}

/* Brilho sutil no fundo dos itens do contador */
.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::after {
    opacity: 1;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b0a0c0;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(176, 160, 192, 0.5);
    align-self: center;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.offer-description {
    font-size: 1.05rem;
    color: #c4b8d2;
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.7;
}

/* Enhanced horizontal separator */
.offer-box-main hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,255,0.3), transparent);
    margin: 40px auto;
    width: 85%;
    position: relative;
}

/* Sparkle effect on the separator */
.offer-box-main hr::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff00ff;
    border-radius: 50%;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6);
    animation: glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { opacity: 0.7; box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6); }
    100% { opacity: 1; box-shadow: 0 0 25px 8px rgba(255, 0, 255, 0.9); }
}

/* Refined List Styles */
.offer-includes {
    margin: 0 auto 40px auto;
    max-width: 520px;
    text-align: left;
    padding-left: 45px;
}

.offer-includes h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 45px;
    position: relative;
    display: inline-block;
}

/* Sublinhado animado sob o título */
.offer-includes h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.offer-includes h3:hover::after {
    width: 80%;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-includes li {
    display: flex;
    align-items: flex-start; 
    gap: 14px;
    font-size: 1.05rem;
    color: #daccec;
    line-height: 1.5;
    text-align: left;
    transition: transform 0.3s ease;
    padding: 5px 10px 5px 5px;
    border-radius: 8px;
}

.offer-includes li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 0, 255, 0.05);
}

.offer-includes li i.fas.fa-check {
    color: #ff00ff;
    font-size: 0.95em;
    margin-top: 0.35em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.offer-includes li:hover i.fas.fa-check {
    transform: scale(1.2);
    color: #ff33ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* Premium CTA Button */
.offer-cta {
    margin-top: 55px;
    margin-bottom: 30px;
}

.offer-cta .btn {
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff00ff, #cc00cc);
    color: white;
    border: none;
    box-shadow: 
        0 10px 25px rgba(255, 0, 255, 0.5), 
        0 5px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no botão */
.offer-cta .btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.offer-cta .btn:hover {
    transform: translateY(-7px);
    box-shadow: 
        0 15px 35px rgba(255, 0, 255, 0.6), 
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(90deg, #ff33ff, #ff00ff);
}

.offer-cta .btn:hover::before {
    opacity: 1;
    animation: sheen 1.5s forwards;
}

@keyframes sheen {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0.7; }
    100% { transform: translateX(200%) rotate(45deg); opacity: 0; }
}

/* Refined Assurances */
.offer-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #9985b5;
}

.offer-assurances span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.offer-assurances span:hover {
    transform: translateY(-3px);
    color: #c4b8d2;
    background-color: rgba(255, 255, 255, 0.03);
}

.offer-assurances i {
    font-size: 1.05em;
    color: inherit;
    opacity: 0.9; /* Slightly more visible */
}

.offer-assurances span:hover i {
    transform: scale(1.2);
}

/* --- Offer Section Responsiveness (Ultra Premium) --- */
@media (max-width: 767px) {
    .offer-box-main {
        padding: 35px 25px;
    }
    .offer-headline {
        font-size: clamp(1.7rem, 5vw + 0.8rem, 2.4rem);
        margin-bottom: 25px;
    }
    .countdown {
        gap: 7px;
        margin: 30px 0 35px 0;
    }
    .countdown-item {
        padding: 12px 10px;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    .offer-includes {
        max-width: 100%;
        padding-left: 20px;
    }
    .offer-includes h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-right: 20px;
    }
    .offer-includes li {
        font-size: 1rem;
    }
    .offer-box-main hr {
        margin: 30px auto;
    }
    .offer-cta .btn {
        padding: 15px 28px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .offer-box-main {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .offer-badge {
        font-size: 0.75rem;
        padding: 7px 16px;
        margin-bottom: 25px;
    }
    .countdown-item {
        min-width: 60px;
        padding: 10px 8px;
    }
    .countdown-separator {
        display: none;
    }
    .countdown-item:not(:last-child) {
        margin-right: 6px;
    }
    .offer-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .offer-includes li {
        font-size: 0.95rem;
        gap: 12px;
    }
    .offer-cta .btn {
        padding: 14px 26px;
        font-size: 1rem;
    }
    .offer-assurances {
        flex-direction: column; /* Stack on narrow mobile */
        gap: 12px;
    }
}

/* --- FAQ Section --- */
/* ... existing code ... */

/* --- Offer Section (Ultra Premium Enhancement) --- */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Fundo animado sutilmente */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
    animation: subtle-glow 15s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes subtle-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

.offer-box-main {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(18, 8, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 45px 40px;
    box-shadow: 
        0 18px 60px rgba(0, 0, 0, 0.8), 
        0 12px 40px rgba(255, 0, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    backdrop-filter: blur(3px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-box-main:hover {
    transform: translateY(-5px);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff00ff, #b300b3, #ff00ff);
    background-size: 200% auto;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    animation: shimmer 2.5s infinite linear;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.offer-headline {
    font-size: clamp(1.9rem, 4.5vw + 1rem, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Destaque de preço com animação sutil */
.offer-headline .highlight-price {
    background: linear-gradient(90deg, #ff00ff, #ff66ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 5px;
    animation: pulse-text 3s infinite alternate ease-in-out;
}

@keyframes pulse-text {
    0% { text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    100% { text-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 10px rgba(255, 0, 255, 0.4); }
}

/* Premium Countdown Timer Styles */
.countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 45px 0;
}

.countdown-item {
    background-color: #0d0215;
    padding: 15px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 255, 0.15);
    min-width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 5px 15px rgba(0,0,0,0.5),
        0 0 30px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 8px 20px rgba(0,0,0,0.5),
        0 0 40px rgba(255, 0, 255, 0.15);
}

/* Brilho sutil no fundo dos itens do contador */
.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::after {
    opacity: 1;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b0a0c0;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(176, 160, 192, 0.5);
    align-self: center;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.offer-description {
    font-size: 1.05rem;
    color: #c4b8d2;
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.7;
}

/* Enhanced horizontal separator */
.offer-box-main hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,255,0.3), transparent);
    margin: 40px auto;
    width: 85%;
    position: relative;
}

/* Sparkle effect on the separator */
.offer-box-main hr::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff00ff;
    border-radius: 50%;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6);
    animation: glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { opacity: 0.7; box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6); }
    100% { opacity: 1; box-shadow: 0 0 25px 8px rgba(255, 0, 255, 0.9); }
}

/* Refined List Styles */
.offer-includes {
    margin: 0 auto 40px auto;
    max-width: 520px;
    text-align: left;
    padding-left: 45px;
}

.offer-includes h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 45px;
    position: relative;
    display: inline-block;
}

/* Sublinhado animado sob o título */
.offer-includes h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.offer-includes h3:hover::after {
    width: 80%;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-includes li {
    display: flex;
    align-items: flex-start; 
    gap: 14px;
    font-size: 1.05rem;
    color: #daccec;
    line-height: 1.5;
    text-align: left;
    transition: transform 0.3s ease;
    padding: 5px 10px 5px 5px;
    border-radius: 8px;
}

.offer-includes li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 0, 255, 0.05);
}

.offer-includes li i.fas.fa-check {
    color: #ff00ff;
    font-size: 0.95em;
    margin-top: 0.35em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.offer-includes li:hover i.fas.fa-check {
    transform: scale(1.2);
    color: #ff33ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* Premium CTA Button */
.offer-cta {
    margin-top: 55px;
    margin-bottom: 30px;
}

.offer-cta .btn {
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff00ff, #cc00cc);
    color: white;
    border: none;
    box-shadow: 
        0 10px 25px rgba(255, 0, 255, 0.5), 
        0 5px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no botão */
.offer-cta .btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.offer-cta .btn:hover {
    transform: translateY(-7px);
    box-shadow: 
        0 15px 35px rgba(255, 0, 255, 0.6), 
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(90deg, #ff33ff, #ff00ff);
}

.offer-cta .btn:hover::before {
    opacity: 1;
    animation: sheen 1.5s forwards;
}

@keyframes sheen {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0.7; }
    100% { transform: translateX(200%) rotate(45deg); opacity: 0; }
}

/* Refined Assurances */
.offer-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #9985b5;
}

.offer-assurances span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.offer-assurances span:hover {
    transform: translateY(-3px);
    color: #c4b8d2;
    background-color: rgba(255, 255, 255, 0.03);
}

.offer-assurances i {
    font-size: 1.05em;
    color: inherit;
    opacity: 0.9; /* Slightly more visible */
}

.offer-assurances span:hover i {
    transform: scale(1.2);
}

/* --- Offer Section Responsiveness (Ultra Premium) --- */
@media (max-width: 767px) {
    .offer-box-main {
        padding: 35px 25px;
    }
    .offer-headline {
        font-size: clamp(1.7rem, 5vw + 0.8rem, 2.4rem);
        margin-bottom: 25px;
    }
    .countdown {
        gap: 7px;
        margin: 30px 0 35px 0;
    }
    .countdown-item {
        padding: 12px 10px;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    .offer-includes {
        max-width: 100%;
        padding-left: 20px;
    }
    .offer-includes h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-right: 20px;
    }
    .offer-includes li {
        font-size: 1rem;
    }
    .offer-box-main hr {
        margin: 30px auto;
    }
    .offer-cta .btn {
        padding: 15px 28px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .offer-box-main {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .offer-badge {
        font-size: 0.75rem;
        padding: 7px 16px;
        margin-bottom: 25px;
    }
    .countdown-item {
        min-width: 60px;
        padding: 10px 8px;
    }
    .countdown-separator {
        display: none;
    }
    .countdown-item:not(:last-child) {
        margin-right: 6px;
    }
    .offer-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .offer-includes li {
        font-size: 0.95rem;
        gap: 12px;
    }
    .offer-cta .btn {
        padding: 14px 26px;
        font-size: 1rem;
    }
    .offer-assurances {
        flex-direction: column; /* Stack on narrow mobile */
        gap: 12px;
    }
}

/* --- FAQ Section --- */
/* ... existing code ... */

/* --- Offer Section (Ultra Premium Enhancement) --- */
.offer-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Fundo animado sutilmente */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 255, 0.05) 0%, transparent 60%);
    animation: subtle-glow 15s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes subtle-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

.offer-box-main {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(18, 8, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 45px 40px;
    box-shadow: 
        0 18px 60px rgba(0, 0, 0, 0.8), 
        0 12px 40px rgba(255, 0, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    backdrop-filter: blur(3px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-box-main:hover {
    transform: translateY(-5px);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff00ff, #b300b3, #ff00ff);
    background-size: 200% auto;
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
    animation: shimmer 2.5s infinite linear;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.offer-headline {
    font-size: clamp(1.9rem, 4.5vw + 1rem, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
}

/* Destaque de preço com animação sutil */
.offer-headline .highlight-price {
    background: linear-gradient(90deg, #ff00ff, #ff66ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 5px;
    animation: pulse-text 3s infinite alternate ease-in-out;
}

@keyframes pulse-text {
    0% { text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    100% { text-shadow: 0 0 25px rgba(255, 0, 255, 0.8), 0 0 10px rgba(255, 0, 255, 0.4); }
}

/* Premium Countdown Timer Styles */
.countdown {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 45px 0;
}

.countdown-item {
    background-color: #0d0215;
    padding: 15px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 0, 255, 0.15);
    min-width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 5px 15px rgba(0,0,0,0.5),
        0 0 30px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.6), 
        0 8px 20px rgba(0,0,0,0.5),
        0 0 40px rgba(255, 0, 255, 0.15);
}

/* Brilho sutil no fundo dos itens do contador */
.countdown-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::after {
    opacity: 1;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff00ff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.countdown-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #b0a0c0;
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(176, 160, 192, 0.5);
    align-self: center;
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.offer-description {
    font-size: 1.05rem;
    color: #c4b8d2;
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    line-height: 1.7;
}

/* Enhanced horizontal separator */
.offer-box-main hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,0,255,0.3), transparent);
    margin: 40px auto;
    width: 85%;
    position: relative;
}

/* Sparkle effect on the separator */
.offer-box-main hr::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff00ff;
    border-radius: 50%;
    top: -3.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6);
    animation: glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
    0% { opacity: 0.7; box-shadow: 0 0 15px 5px rgba(255, 0, 255, 0.6); }
    100% { opacity: 1; box-shadow: 0 0 25px 8px rgba(255, 0, 255, 0.9); }
}

/* Refined List Styles */
.offer-includes {
    margin: 0 auto 40px auto;
    max-width: 520px;
    text-align: left;
    padding-left: 45px;
}

.offer-includes h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    padding-right: 45px;
    position: relative;
    display: inline-block;
}

/* Sublinhado animado sob o título */
.offer-includes h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -10px;
    left: 50%;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.offer-includes h3:hover::after {
    width: 80%;
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-includes li {
    display: flex;
    align-items: flex-start; 
    gap: 14px;
    font-size: 1.05rem;
    color: #daccec;
    line-height: 1.5;
    text-align: left;
    transition: transform 0.3s ease;
    padding: 5px 10px 5px 5px;
    border-radius: 8px;
}

.offer-includes li:hover {
    transform: translateX(5px);
    background-color: rgba(255, 0, 255, 0.05);
}

.offer-includes li i.fas.fa-check {
    color: #ff00ff;
    font-size: 0.95em;
    margin-top: 0.35em;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.offer-includes li:hover i.fas.fa-check {
    transform: scale(1.2);
    color: #ff33ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

/* Premium CTA Button */
.offer-cta {
    margin-top: 55px;
    margin-bottom: 30px;
}

.offer-cta .btn {
    padding: 18px 32px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff00ff, #cc00cc);
    color: white;
    border: none;
    box-shadow: 
        0 10px 25px rgba(255, 0, 255, 0.5), 
        0 5px 15px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no botão */
.offer-cta .btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.offer-cta .btn:hover {
    transform: translateY(-7px);
    box-shadow: 
        0 15px 35px rgba(255, 0, 255, 0.6), 
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(90deg, #ff33ff, #ff00ff);
}

.offer-cta .btn:hover::before {
    opacity: 1;
    animation: sheen 1.5s forwards;
}

@keyframes sheen {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0.7; }
    100% { transform: translateX(200%) rotate(45deg); opacity: 0; }
}

/* Refined Assurances */
.offer-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    margin-top: 25px;
    font-size: 0.9rem;
    color: #9985b5;
}

.offer-assurances span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
}

.offer-assurances span:hover {
    transform: translateY(-3px);
    color: #c4b8d2;
    background-color: rgba(255, 255, 255, 0.03);
}

.offer-assurances i {
    font-size: 1.05em;
    color: inherit;
    opacity: 0.9; /* Slightly more visible */
}

.offer-assurances span:hover i {
    transform: scale(1.2);
}

/* --- Offer Section Responsiveness (Ultra Premium) --- */
@media (max-width: 767px) {
    .offer-box-main {
        padding: 35px 25px;
    }
    .offer-headline {
        font-size: clamp(1.7rem, 5vw + 0.8rem, 2.4rem);
        margin-bottom: 25px;
    }
    .countdown {
        gap: 7px;
        margin: 30px 0 35px 0;
    }
    .countdown-item {
        padding: 12px 10px;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
    .countdown-separator {
        font-size: 1.8rem;
        padding-bottom: 10px;
    }
    .offer-includes {
        max-width: 100%;
        padding-left: 20px;
    }
    .offer-includes h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-right: 20px;
    }
    .offer-includes li {
        font-size: 1rem;
    }
    .offer-box-main hr {
        margin: 30px auto;
    }
    .offer-cta .btn {
        padding: 15px 28px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .offer-box-main {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .offer-badge {
        font-size: 0.75rem;
        padding: 7px 16px;
        margin-bottom: 25px;
    }
    .countdown-item {
        min-width: 60px;
        padding: 10px 8px;
    }
    .countdown-separator {
        display: none;
    }
    .countdown-item:not(:last-child) {
        margin-right: 6px;
    }
    .offer-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .offer-includes li {
        font-size: 0.95rem;
        gap: 12px;
    }
    .offer-cta .btn {
        padding: 14px 26px;
        font-size: 1rem;
    }
    .offer-assurances {
        flex-direction: column; /* Stack on narrow mobile */
        gap: 12px;
    }
}

/* --- FAQ Section --- */
/* ... existing code ... */

/* --- New Guarantee Section (Based on Image) --- */
.guarantee-section-new {
    padding: var(--section-padding);
    background-color: var(--primary-color); /* Adjust if needed, maybe slightly lighter */
}

.guarantee-box-new {
    max-width: 750px; /* Match FAQ max-width */
    margin: 0 auto;
    background-color: var(--secondary-color); /* Dark purple background */
    padding: calc(var(--spacing-unit) * 2.5) calc(var(--spacing-unit) * 2); /* Vertical and horizontal padding */
    border-radius: var(--border-radius-large); /* Rounded corners */
    border: 1px solid var(--border-color); /* Subtle border */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(255, 0, 255, 0.15); /* Adjusted shadow */
    text-align: center;
    position: relative;
}

.guarantee-icon-new {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px; /* Adjust size as needed */
    height: 65px;
    background: var(--accent-color); /* Magenta background for icon */
    border-radius: 50%;
    margin-bottom: calc(var(--spacing-unit) * 1.8);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

.guarantee-icon-new i {
    color: white; /* White icon color */
    font-size: 2rem; /* Adjust icon size */
}

.guarantee-title-new {
    font-size: clamp(1.6rem, 4vw + 1rem, 2.4rem); /* Responsive title size */
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 1.2);
    line-height: 1.3;
}

/* Ensure .highlight within the new title works */
.guarantee-title-new .highlight {
    background: var(--highlight-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 0 2px;
    font-weight: 700; /* Ensure highlight is bold */
}

.guarantee-text-new {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px; /* Limit text width */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.guarantee-text-new .underline-highlight {
    font-weight: 600;
    color: var(--text-color); /* Slightly brighter */
    /* Optional: Add a subtle underline or background */
    padding-bottom: 1px;
    border-bottom: 1px solid var(--accent-color);
}

/* New Button Style: Outline Accent */
.btn-outline-accent {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 1.8);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    display: inline-flex; /* Align icon and text */
    align-items: center;
    gap: calc(var(--spacing-unit) * 0.7);
}

.btn-outline-accent i {
    font-size: 1em; /* Icon size relative to text */
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 0, 255, 0.3);
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--primary-color); /* Ensure FAQ background is correct */
}

/* ======================
   Scroll Reveal Animation
   ====================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* Start slightly lower */
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: opacity, transform; /* Hint for performance */
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}