:root {
    /* Colors - Dark Premium Tech Theme */
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --primary: #818CF8;
    --primary-glow: rgba(129, 140, 248, 0.4);
    --accent: #C084FC;
    --accent-glow: rgba(192, 132, 252, 0.4);
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --success: #34D399;
    --danger: #F87171;
    --warning-bg: rgba(251, 191, 36, 0.1);
    --warning-text: #FCD34D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Background Effects */
.background-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    z-index: -2;
    pointer-events: none;
}

.neural-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -20%;
    left: -20%;
    animation: float 15s infinite alternate ease-in-out;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -10%;
    right: -10%;
    animation: float 20s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, 30px);
    }
}

/* Layout & Views */
.app {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 600px;
    /* Mobile focused max-width */
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.view {
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.active-view {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Components: Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

/* Typography */
h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

h3 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.cta-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.2;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(129, 140, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(129, 140, 248, 0);
    }
}

/* Landing Page Specifics */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.hero-image-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(129, 140, 248, 0.2);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.benefits-grid {
    text-align: left;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.check {
    font-size: 1.2rem;
}

.target-audience {
    margin-top: 3rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.target-audience ul {
    list-style-position: inside;
    color: var(--text-muted);
}

.target-audience li {
    margin-bottom: 0.5rem;
}

/* Quiz Specifics */
.progress-box {
    margin-bottom: 2rem;
    width: 100%;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    /* Sleeker height */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--success);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
    /* Glow effect */
}

#progress-text {
    display: none;
    /* User requested no text */
}

/* Video Overlay Button */
.video-overlay-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    /* Ensure clickable */
}

/* Ensure container allows interactions */
.video-container {
    pointer-events: auto;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.quiz-option:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
}

.micro-insight {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #FCD34D;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-size: 0.9rem;
    animation: fadeIn 0.5s;
}

.micro-insight.hidden {
    display: none;
}

/* Capture */
.capture-form {
    margin-top: 1.5rem;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.spinner circle {
    stroke: var(--primary);
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Results */
.tag-pill {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-block {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-block:last-child {
    border-bottom: none;
}

.warning-bg {
    background: linear-gradient(90deg, rgba(248, 113, 113, 0.1), transparent);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid var(--danger);
}

.plan-list {
    list-style: none;
}

.plan-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    display: flex;
    gap: 10px;
}

.bridge-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid var(--primary);
}

.discount-tag {
    font-size: 0.7rem;
    background: white;
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    right: 5px;
}

/* Sales Page */
.authority-card {
    border-left: 4px solid var(--primary);
    background: linear-gradient(90deg, rgba(129, 140, 248, 0.05), transparent);
}

.authority-content h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.authority-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.authority-content strong {
    color: var(--primary);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.features-list li {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
}

.features-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(192, 132, 252, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.features-list div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.features-list strong {
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.features-list span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comp-col h4 {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
}

.comp-col.bad h4 {
    color: var(--danger);
}

.comp-col.good h4 {
    color: var(--success);
}

.comp-col ul {
    list-style: none;
    font-size: 0.9rem;
}

.comp-col li {
    margin-bottom: 0.5rem;
}

.offer-box {
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.1), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin: 10px 0;
}

.scarcity-alert {
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.faq-section details {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.faq-section summary {
    font-weight: 600;
}

.faq-section p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .big-price {
        font-size: 3rem;
    }
}

/* =========================================
   MOBILE OPTIMIZATION & RESPONSIVENESS
   ========================================= */

/* Default Desktop Styles for New Elements */
.sales-headline {
    font-size: 2.2rem;
    font-weight: 800;
}

.deliverables-grid {
    grid-template-columns: 1fr 1fr;
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .sales-headline {
        font-size: 1.6rem;
        /* Significantly smaller */
    }

    .sales-sub {
        font-size: 1rem !important;
    }

    .glass-panel {
        padding: 1.2rem;
    }

    .big-price {
        font-size: 2.8rem;
    }

    /* Better Text Handling */
    p,
    li {
        word-wrap: break-word;
        /* Allow break only if necessary */
        overflow-wrap: break-word;
        hyphens: manual;
        /* Disable auto hyphenation */
        font-size: 0.95rem;
        /* Slightly smaller body text */
    }

    h1,
    h2,
    h3,
    h4 {
        word-wrap: normal;
        /* Headings prefer not to break words */
        overflow-wrap: normal;
        hyphens: manual;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        /* Maximize width */
    }

    .sales-headline {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .bridge-box div {
        padding: 1rem !important;
        /* Reduce internal padding of the highlighted box */
    }

    .bridge-box p {
        font-size: 0.95rem !important;
        /* Smaller text inside box */
        line-height: 1.4;
    }

    .bridge-box strong {
        font-size: 1rem !important;
        /* Ensure highlighted text isn't huge */
        display: inline;
        /* Ensure it flows */
        word-break: normal;
        /* NEVER break words mid-word */
    }

    .deliverables-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .deliverables-grid .glass-panel {
        padding: 0.8rem 0.5rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1rem;
    }

    .features-list li {
        padding: 0.8rem;
        gap: 10px;
    }

    .big-price {
        font-size: 2.5rem;
    }

    .cta-button.big-cta {
        font-size: 1rem;
        padding: 1rem;
        width: 100%;
        white-space: normal;
        /* Allow button text to wrap if needed */
    }

    .warning-banner {
        font-size: 0.8rem;
        padding: 8px;
    }
}

/* =========================================
   NEW SALES PAGE DESIGN (2026 OVERHAUL)
   Premium Neuroscience & CRO Optimization
   ========================================= */

/* --- Typography & Utilities --- */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.animate-up {
    animation: fadeInUp 0.8s ease-out;
}

.sales-container {
    width: 100%;
    max-width: 900px;
    /* Wider for desktop sales page */
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
}

/* --- 1. Hero Section --- */
.sales-hero {
    padding: 2rem 0 3rem 0;
    /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-neuro {
    background: rgba(129, 140, 248, 0.15);
    color: var(--primary);
    border: 1px solid rgba(129, 140, 248, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(129, 140, 248, 0.2);
}

.hero-benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    /* Align to top of text */
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: left;
    line-height: 1.4;
    /* Ensure line height matches icon vertical center visually or close to it */
}

.hero-benefits i {
    color: var(--success);
    margin-top: 4px;
    /* Push icon slightly down to match text baseline if needed */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* --- 2. Concept Card (Glass) --- */
.concept-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-icon {
    font-size: 2.5rem;
    color: var(--accent);
    background: rgba(192, 132, 252, 0.1);
    padding: 1rem;
    border-radius: 16px;
    flex-shrink: 0;
}

.lead-text {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.concept-highlight {
    background: rgba(129, 140, 248, 0.05);
    border-left: 3px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 12px 12px 0;
}

.check-list {
    list-style: none;
    margin-top: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.neuro-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.8;
}

/* --- 3. Before vs After Grid --- */
.comparison-section {
    margin: 4rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.state-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s;
}

.state-card.before {
    border-top: 4px solid var(--danger);
}

.state-card.after {
    border-top: 4px solid var(--success);
    background: linear-gradient(180deg, rgba(52, 211, 153, 0.05), rgba(15, 23, 42, 0.6));
}

.card-header-state {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.state-card.before h3 {
    color: var(--danger);
    margin: 0;
}

.state-card.before i {
    color: var(--danger);
    font-size: 1.5rem;
}

.state-card.after h3 {
    color: var(--success);
    margin: 0;
}

.state-card.after i {
    color: var(--success);
    font-size: 1.5rem;
}

.state-list {
    list-style: none;
}

.state-list li {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    text-align: left;
}

.state-card.before .state-list li::before {
    content: "•";
    color: var(--danger);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.state-card.after .state-list li::before {
    content: "•";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.transition-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.comparison-footer {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- 4. Course Content --- */
.content-highlight {
    border: 1px solid var(--primary);
    background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.1), transparent), var(--glass-bg);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.features-grid i {
    font-size: 2rem;
    color: var(--primary);
}

.features-grid span {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-grid strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

/* --- 5. Three Phases --- */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.phase-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary);
}

.phase-number {
    position: absolute;
    top: -20px;
    right: 0px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
}

.phase-card {
    position: relative;
    /* ... other props ... */
    overflow: hidden;
    z-index: 1;
}

/* Ensure content is above the number */
.phase-card h4,
.phase-card p,
.phase-icon {
    position: relative;
    z-index: 2;
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.phase-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.phase-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 6. Pricing Card (Major) --- */
.offer-container {
    margin: 5rem 0;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #020617;
    /* Darker bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    max-width: 600px;
    width: 100%;
}

.pricing-card.premium-border {
    border: 2px solid var(--primary);
    box-shadow: 0 0 50px rgba(129, 140, 248, 0.15);
}

/* Pseudo element for glow */
.pricing-card.premium-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--accent));
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.offer-tag {
    background: var(--success);
    color: #020617;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.price-box {
    margin: 2rem 0;
    color: #fff;
}

.price-box .currency {
    font-size: 1.5rem;
    vertical-align: top;
    opacity: 0.7;
}

.price-box .amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.price-box .cents {
    font-size: 1.5rem;
    vertical-align: top;
    opacity: 0.7;
}

.price-box.small .amount {
    font-size: 3rem;
}

.big-cta {
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    opacity: 0.5;
    font-size: 1.5rem;
}

/* --- 7. Differentials & Trap --- */
.differentials-box {
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
}

.box-title {
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-align: center;
}

.differentials-list {
    list-style: none;
}

.differentials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.differentials-list i {
    color: var(--accent);
}

.trap-box {
    margin-top: 4rem;
    border: 1px solid rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
}

.trap-title {
    color: var(--danger);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    justify-content: center;
}

.trap-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.trap-grid {
    display: grid;
    gap: 1.5rem;
}

.trap-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
}

.trap-item i {
    color: var(--danger);
    font-size: 1.2rem;
    margin-top: 5px;
}

.trap-item strong {
    color: var(--danger);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
    text-align: left;
}

.trap-item p {
    text-align: left;
    margin-bottom: 0;
}

/* --- 8. Guarantee --- */
.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(52, 211, 153, 0.05);
    border: 1px dashed var(--success);
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
}

.guarantee-badge i {
    font-size: 3rem;
    color: var(--success);
}

.guarantee-text h3 {
    color: var(--success);
    margin: 0 0 0.5rem 0;
}

.guarantee-text p {
    margin: 0;
}

/* --- 9. FAQ --- */
.faq-section {
    max-width: 700px;
    width: 100%;
    margin: 4rem auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item summary {
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
    text-align: left;
}


.small-currency {
    font-size: 1.2rem !important;
    /* Smaller text for 'Por apenas R$' */
    font-weight: 500;
    vertical-align: middle;
    margin-right: 5px;
}

.panel-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 8px;
    margin-right: 8px;
    vertical-align: middle;
    transform: translateY(-2px);
}

.panel-icon-inline i {
    color: var(--accent);
    font-size: 1.2rem;
}

.phase-card.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.phase-card.center-content .phase-icon {
    margin: 0 auto 1.5rem auto;
    /* Ensure centering */
}

/* --- Mobile Responsiveness (Overrides) --- */
@media (max-width: 768px) {
    .sales-hero {
        padding-top: 2rem;
    }

    .hero-headline {
        font-size: 1.8rem;
        /* Better fit for mobile */
        line-height: 1.25;
    }

    .concept-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .panel-icon {
        padding: 0.8rem;
        font-size: 1.8rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .transition-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .phases-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-box .amount {
        font-size: 4rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .sales-container {
        padding: 0 1rem 4rem 1rem;
        /* Maximize width on mobile */
    }

    .highlight-cta {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .highlight-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6) !important;
    }
}