:root {
    --primary-blue: #00445E;
    --soft-slate: #61707D;
    --mist-blue: #B1C5CE;
    --snow-mint: #F5FBEF;
    --accent-mint: #40F99B;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --font-main: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Scarcity Banner */
.scarcity-banner {
    background: var(--error);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.scarcity-banner span {
    animation: pulse 2s infinite;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--snow-mint);
    color: var(--primary-blue);
    line-height: 1.6;
    font-size: 18px;
    /* Slightly larger base */
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-size: 20px;
    }

    p {
        font-size: 1.15rem;
        /* Better readability on mobile */
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}


.container {
    width: 100%;
    max-width: 600px;
    /* Mobile focused max width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.3rem;
}

p {
    margin-bottom: 1rem;
}

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

.text-uppercase {
    text-transform: uppercase;
}

.font-black {
    font-weight: 900;
}

/* Utilities */
.highlight-mint {
    background-color: var(--accent-mint);
    color: var(--primary-blue);
    padding: 0.05rem 0.6rem;
    border-radius: 8px;
    font-weight: 900;
    display: inline-block;
    line-height: 1;
    margin: 0 2px;
}

.highlight-red-box {
    background-color: var(--accent-mint);
    color: var(--primary-blue);
    padding: 0.1rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0 0.1rem;
    font-weight: 900;
}

.highlight-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.guarantee-caption {
    display: block !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    margin-top: 0.75rem !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1.4 !important;
    color: #dddddd !important;
}

@media (max-width: 768px) {
    .guarantee-caption {
        font-size: 0.75rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Header */
header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    color: var(--white);
    text-align: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    padding: 4rem 0 10rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 0 10px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -20px;
    background-color: #d1d5db;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.stars {
    color: #f59e0b;
    margin-bottom: 2px;
    font-size: 1.1rem;
    line-height: 1;
}

.social-proof-text {
    color: var(--white);
    font-weight: 900;
    font-size: 0.9rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto 20px;
    padding: 0 5px;
    text-wrap: balance;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--white);
    text-transform: none !important;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (max-width: 768px) {
    .social-proof {
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .avatar {
        width: 48px;
        height: 48px;
        margin-left: -18px;
    }

    .social-proof-text {
        font-size: 0.8rem;
    }

    .hero {
        padding: 0.75rem 0 1rem !important;
        background: radial-gradient(circle at top, var(--primary-blue) 0%, #002D3E 100%) !important;
    }

    .hero .container {
        padding: 0 0.5rem !important;
    }

    .hero .hero-headline {
        font-size: 2rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }

    .subheadline {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.5rem !important;
        opacity: 0.9;
        max-width: 100% !important;
        padding: 0 1rem !important;
        color: var(--white) !important;
        text-transform: none !important;
    }

    .highlight-red-box {
        padding: 0.05rem 0.4rem !important;
        line-height: 1 !important;
        display: inline-block;
        margin-top: 0.2rem;
    }
}

@media (min-width: 993px) {
    .hero {
        padding: 1.5rem 0 4rem;
    }

    .social-proof {
        margin-bottom: 0.75rem;
    }

    .hero-headline {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .subheadline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Video Section */
.video-wrapper {
    margin: -40px 20px 40px;
    position: relative;
    z-index: 10;
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s both;
}

.video-player-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-header-v2 {
    background: var(--accent-mint);
    color: var(--primary-blue);
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Testimonial Cards */
.testimonial-card-v2 {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 68, 94, 0.05);
    position: relative;
}

.testimonial-content-v2 {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.testimonial-footer-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-initials-v2 {
    width: 40px;
    height: 40px;
    background: var(--accent-mint);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.author-name-v2 {
    font-weight: 800;
    font-size: 0.95rem;
}

.verified-badge-v2 {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 30px;
    font-weight: 800;
}

/* Buttons */
.mega-cta,
.btn-primary-v2 {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--accent-mint) 0%, #7ce3cb 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(64, 249, 155, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    -webkit-text-stroke: 1px currentColor;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
}

.mega-cta:hover,
.btn-primary-v2:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .mega-cta,
    .btn-primary-v2 {
        width: 100%;
        padding: 1.6rem 1.5rem;
        font-size: 1.3rem;
        -webkit-text-stroke: 1.5px var(--primary-blue);
    }
}

.btn-primary-v2:active {
    transform: scale(0.98);
}

.btn-icon-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-icon-v2 svg {
    width: 16px;
    height: 16px;
    stroke-width: 3;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer-anim 3s infinite;
}

@keyframes shimmer-anim {
    0% {
        transform: translateX(-150%) rotate(30deg);
    }

    100% {
        transform: translateX(150%) rotate(30deg);
    }
}

.guarantee-label-v2 {
    font-size: 0.8rem;
    color: var(--soft-slate);
    text-align: center;
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

/* Value Stack / Bonus Section Refined */
.value-stack-item {
    background: var(--white);
    border-radius: 24px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 68, 94, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.value-stack-item.main {
    border: 2px solid var(--primary-blue);
}

.value-stack-item.bonus {
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-top: 6px solid var(--accent-mint);
}

.item-badge-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
}

.item-badge-header.bonus {
    background: var(--accent-mint);
    color: var(--primary-blue);
}

.item-title-v2 {
    padding: 24px 20px 10px;
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
    background: transparent;
    line-height: 1.2;
}

.item-body-v2 {
    padding: 0 20px 24px;
    text-align: center;
}

.item-body-v2 p {
    text-align: center;
    font-size: 1.05rem;
}

.item-img-v2 {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.item-value-pill {
    text-align: center;
    font-size: 0.95rem;
    color: var(--soft-slate);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-100);
    display: block;
    width: 100%;
}

.item-value-pill .old-val {
    text-decoration: line-through;
}

.item-value-pill .free-val {
    color: var(--success);
    font-weight: 800;
}

/* Sticky Footer CTA */
.sticky-footer-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px env(safe-area-inset-bottom);
    background: var(--primary-blue);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-footer-v2.visible {
    transform: translateY(0);
}

/* Comparison Table (Us vs Them) */
.comparison-container {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: #f8fafc;
    font-weight: 900;
    font-size: 0.9rem;
}

.comparison-table .feature-col {
    text-align: left;
    background: white;
    width: 38%;
    font-weight: 700;
    font-size: 0.85rem;
}

.comparison-table .us-col {
    background: var(--snow-mint);
    width: 31%;
    border-bottom: 2px solid var(--accent-mint);
}

.comparison-table .them-col {
    background: #fef2f2;
    width: 31%;
    opacity: 0.6;
}

.status-icon {
    font-size: 1.2rem;
}

/* Trust Seals */
.trust-seals-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    width: 100%;
}

.trust-seal {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

/* Countdown Styles */
.cro-timer-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 14px;
    border-radius: 8px;
    margin-left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cro-timer {
    font-family: 'Courier New', Courier, monospace;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    color: var(--error);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.scarcity-banner .cro-timer {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.03);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.03);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

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

    100% {
        background-position: 200% center;
    }
}

.pulse-btn {
    animation: heartBeat 4s infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Price Section */
.price-showcase-v2 {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-mint);
}

.price-old-v2 {
    font-size: 1.1rem;
    color: var(--soft-slate);
    text-decoration: line-through;
    font-weight: 400;
}

.price-new-v2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
    margin: 10px 0;
}

.price-savings-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--error);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 5px;
}

.discount-badge {
    background: var(--error);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Sections */
section {
    padding: 60px 0;
}

.white-section {
    background-color: var(--white);
}

/* Features List */
.feature-list-v2 {
    list-style: none;
    margin: 20px 0;
}

.feature-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
}

.check-icon-v2 {
    color: var(--success);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
}

/* FAQ */
.faq-v2 {
    margin-top: 30px;
}

/* FAQ Accordion */
.faq-accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem !important;
    color: var(--white);
    user-select: none;
}

.faq-icon::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-accordion-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-mint);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 18px;
}

.faq-accordion-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 18px;
}

.faq-answer p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem !important;
    line-height: 1.5;
}

/* Narrative Section Refinement */
.narrative-container {
    padding: 20px 20px;
}

.narrative-block {
    margin-bottom: 80px;
    text-align: center;
}

.narrative-block h2 {
    margin-bottom: 25px;
    color: var(--primary-blue);
    line-height: 1.1;
    text-align: center;
}

.narrative-block p,
.testimonial-card-v2 p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.9;
    text-align: left;
    /* Keep long text left-aligned for readability */
}

.dark-narrative-block {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 25px;
    border-radius: 30px;
    margin: 60px 0;
    /* Removed negative margins */
    text-align: left;
}

.dark-narrative-block h2 {
    color: var(--white);
    text-align: center;
}

.dark-narrative-block p {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 1;
    text-align: left;
}

/* Cinematic Flow (Take 2): The Mental Path */
.cinematic-flow-v2 {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px 0;
}

.flow-step-v2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    z-index: 1;
}

.flow-step-v2:last-child {
    margin-bottom: 0;
}

/* The Connecting Line (Vertical) */
.cinematic-flow-v2::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(16, 185, 129, 0.5),
            rgba(16, 185, 129, 0.1));
    z-index: 0;
}

.node-v2 {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border: 2px solid var(--accent-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--accent-mint);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.text-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .cinematic-flow-v2 {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 60px;
    }

    .flow-step-v2 {
        flex-direction: column;
        flex: 1;
        text-align: center;
        gap: 15px;
        margin-bottom: 0;
    }

    /* Horizontal Line for Desktop */
    .cinematic-flow-v2::before {
        left: 10%;
        right: 10%;
        top: 76px;
        height: 2px;
        width: auto;
        background: linear-gradient(90deg,
                transparent,
                rgba(16, 185, 129, 0.4),
                transparent);
    }
}

/* Wrong Methods Redesign (Take 2): Minimalist Red-Accent */
.error-list-v3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
    padding-left: 10px;
}

.error-item-v3 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-left: 2px solid rgba(239, 68, 68, 0.2);
    padding-left: 20px;
    transition: all 0.3s ease;
}

.error-item-v3:hover {
    border-left-color: #ef4444;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05), transparent);
    transform: translateX(5px);
}

.error-icon-v3 {
    color: #ef4444;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 3px;
    flex-shrink: 0;
}

.error-text-v3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .error-list-v3 {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .error-item-v3 {
        flex: 1;
        border-left: none;
        border-top: 2px solid rgba(239, 68, 68, 0.2);
        padding-left: 0;
        padding-top: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .error-item-v3:hover {
        border-top-color: #ef4444;
        background: linear-gradient(180deg, rgba(239, 68, 68, 0.05), transparent);
        transform: translateY(-5px);
    }
}

/* Pillar Comparison: Forced 2-Column EXACT Match (v26.0) */
.pillar-comparison-v8 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px auto;
    max-width: 1100px;
    padding: 0 5px;
}

.pillar-row-v8 {
    display: flex;
    gap: 8px;
    /* Tight gap like image */
}

.pillar-col-v8 {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 60px;
    /* Brighter tight spacing */
    min-width: 0;
    align-items: center;
    /* Force centering */
}

.pillar-header-v8 {
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    color: white !important;
    margin-bottom: 0;
    /* Let the container handle the gap */
}

.pillar-header-v8 h3 {
    font-size: 1rem;
    /* Base for mobile */
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.pillar-header-v8 p {
    font-size: 0.7rem;
    margin: 4px 0 0;
    font-weight: 700;
    color: white !important;
}

.pillar-col-v8.red .pillar-header-v8 {
    background: #e11d48;
}

.pillar-col-v8.green .pillar-header-v8 {
    background: #16a34a;
}

.pillar-items-v8 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
    z-index: 1;
    margin-top: 12px;
    /* Uniform gap with header */
}

.pillar-col-v8.green .pillar-items-v8 {
    justify-content: space-between;
    /* Align 3 green to 7 red proportionally */
}

.pillar-item-v8 {
    padding: 8px;
    border-radius: 6px;
    color: white;
    font-size: 0.6rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40px;
    line-height: 1.1;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.pillar-col-v8.red .pillar-item-v8 {
    background: #e11d48;
}

.pillar-col-v8.green .pillar-item-v8 {
    background: #16a34a;
}

.pillar-icon-v8 {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

/* Central vertical line and arrow */
.pillar-line-v8 {
    position: absolute;
    left: 50%;
    top: 90px;
    bottom: 40px;
    /* Moved down to meet the arrow */
    width: 2px;
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.5;
    background: currentColor;
    /* Solid line */
}

.pillar-col-v8.red .pillar-line-v8 {
    color: #e11d48;
}

.pillar-col-v8.green .pillar-line-v8 {
    color: #16a34a;
}

.pillar-arrow-v8 {
    position: absolute;
    bottom: 40px;
    /* Moved down closer to emoji */
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.pillar-col-v8.red .pillar-arrow-v8 {
    border-color: #e11d48;
}

.pillar-col-v8.green .pillar-arrow-v8 {
    border-color: #16a34a;
}

.pillar-emoji-v8 {
    position: absolute;
    bottom: -25px !important;
    /* Tight gap from arrow tip, no overlap */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
}

@media (min-width: 768px) {
    .pillar-row-v8 {
        gap: 30px;
    }

    .pillar-header-v8 h3 {
        font-size: 2rem;
    }

    .pillar-header-v8 p {
        font-size: 1.4rem;
    }

    .pillar-item-v8 {
        font-size: 1.2rem;
        padding: 18px;
        min-height: 65px;
        margin-right: 45px;
    }

    .pillar-icon-v8 {
        font-size: 1.6rem;
        right: -40px;
    }

    .pillar-emoji-v8 {
        font-size: 5rem;
    }
}

/* Refined Testimonial Grid for Footer/Core */
.testimonials-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .testimonials-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-compact-v2 {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 68, 94, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-compact-v2 .stars-atf {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-compact-v2 h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-compact-v2 p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Negative Boxes */
.negative-box-v2 {
    background-color: #fff5f5 !important;
    border: 2px solid #feb2b2 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin: 15px 0 !important;
    text-align: left !important;
}

.negative-box-v2 p {
    margin-bottom: 0 !important;
    color: #c53030 !important;
    font-size: 1.15rem !important;
    /* Matching body/p size */
    line-height: 1.5 !important;
    display: block !important;
}

.negative-box-v2 svg {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-top: -2px !important;
    margin-right: 10px !important;
    color: #ef4444 !important;
    width: 22px !important;
    /* Slightly smaller to fit inline better */
    height: 22px !important;
}

.alert-icon-v2 {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.negative-alert-box strong {
    color: #7f1d1d;
}


/* Take 4: Cinematic Benefit Stack */
.cinematic-stack-v7 {
    margin: 60px auto;
    max-width: 600px;
}

.benefit-item-v7 {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.benefit-icon-v7 {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #f0fdf4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.benefit-content-v7 h3 {
    margin: 0 0 6px 0;
    color: #00445e;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.benefit-content-v7 p {
    margin: 0;
    color: #00445e;
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Cinematic Contrast Split */
.split-divider-v7 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 60px 0 40px 0;
}

.split-line-v7 {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 68, 94, 0.1), transparent);
}

.split-label-v7 {
    font-weight: 900;
    font-size: 0.85rem;
    color: #ef4444;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Life Without English: Cinematic Faded */
.limitation-item-v7 {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(0, 68, 94, 0.04);
    border-radius: 16px;
    transition: opacity 0.3s ease;
}

.limitation-icon-v7 {
    flex-shrink: 0;
    color: #ef4444;
    opacity: 0.6;
    margin-top: 3px;
}

.limitation-text-v7 {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* Benefit List: Inline primary blue circle + White Double Arrow (v35.1) */
.benefit-list-v9 {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 650px;
    text-align: left;
}

.benefit-list-v9 li {
    display: block;
    /* NO FLEX - this avoids columns */
    margin-bottom: 18px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-blue);
    text-align: left;
}

.benefit-icon-v9 {
    display: inline-flex;
    /* Becomes part of the text line */
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-top: -3px;
    /* Precise vertical adjustment */
}

.benefit-icon-v9 svg {
    width: 14px;
    height: 14px;
    color: white;
}

.benefit-content-v9 {
    display: inline;
    /* Ensure it doesn't break to new line */
}

@media (max-width: 768px) {
    .benefit-list-v9 li {
        font-size: 1.3rem;
        line-height: 1.6;
    }

    .benefit-icon-v9 {
        width: 24px;
        height: 24px;
    }
}

/* =========================================================================
   ATF SLIDER MOBILE FALLBACK
   Nasconde i controlli dello slider su mobile e ripristina la griglia
   ========================================================================= */
.atf-slider-controls,
.atf-slider-arrow {
    display: none !important;
}

.atf-slider-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .atf-slider-track {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================================
   DESKTOP ONLY OPTIMIZATIONS (SAFE ZONE)
   Bilanciamento perfetto tra il layout classico centrato dell'Hero e le
   griglie affiancate per le nuove recensioni V2, impedendo l'orribile
   allargamento infinito del testo da parte a parte.
   ========================================================================= */
@media (min-width: 1025px) {

    /* 1. Larghezza Massima del Sito */
    .container {
        max-width: 1100px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    /* 2. Respiro Base per Leggibilità */
    body {
        font-size: 18px !important;
    }

    /* 3. HERO: Stile Classico Centrato (Niente asimmetrie sbilenche) */
    .hero {
        padding: 4rem 0 5rem !important;
    }

    .social-proof {
        margin-bottom: 1rem !important;
        justify-content: center !important;
    }

    .hero-headline {
        font-size: 3.4rem !important;
        line-height: 1.15 !important;
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
        /* Resetto l'inline taglia-margine */
        text-align: center !important;
        max-width: 100% !important;
    }

    .subheadline {
        font-size: 1.4rem !important;
        margin-bottom: 2.5rem !important;
        max-width: 850px !important;
        /* Limita l'espansione del sottotitolo */
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .cosa-sblocchi-headline {
        font-size: 3rem !important;
        line-height: 1.2 !important;
    }

    .video-container {
        margin: 0 auto !important;
        max-width: 850px !important;
        /* Limito la grandezza schermo intero inutile */
    }

    /* RISOLTO BUG: Riappare la CTA su Desktop (che era mascherata in mobile-only) */
    .hero .mobile-only {
        display: block !important;
        text-align: center !important;
        margin-top: 2rem !important;
    }

    .mega-cta {
        max-width: 600px !important;
        margin: 0 auto !important;
        font-size: 1.8rem !important;
        padding: 1.8rem 2.5rem !important;
    }

    .trust-seals-row {
        justify-content: center !important;
        margin-bottom: 0 !important;
    }

    .trust-seal {
        max-width: 500px !important;
        margin: 0 auto;
    }

    /* =======================================================
       4. GABBIE DI LETTURABILITÀ E IMPAGINAZIONE BOX-V2
       (Senza questi layout a Grid, i div straripano fino
       a far schifo misurando 1100 pixel di lunghezza riga)
       ======================================================= */

    /* ATF Slider su Desktop */
    #atf-desktop-slider,
    #bottom-desktop-slider {
        display: block !important;
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 650px;
        margin: 40px auto 0 !important;
        padding-bottom: 20px;
    }

    .atf-slider-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        width: 100%;
    }

    .atf-slider-track .testimonial-compact-v2 {
        flex: 0 0 100%;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 0 !important;
        height: auto !important;
    }

    /* Controlli Desktop Slider */
    .atf-slider-controls {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .atf-slider-dots {
        display: flex;
        gap: 12px;
    }

    .atf-slider-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #e2e8f0;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .atf-slider-dot:hover {
        transform: scale(1.2);
    }

    .atf-slider-dot.active {
        background: var(--accent-mint, #40F99B);
        transform: scale(1.2);
    }

    .atf-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--accent-mint, #40F99B);
        color: var(--primary-blue, #00445E);
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 6px 12px rgba(64, 249, 155, 0.2);
        transition: transform 0.2s ease, background 0.3s ease;
    }

    .atf-slider-arrow:hover {
        background: #f0fdf4;
        transform: translateY(-50%) scale(1.05);
    }

    .atf-slider-arrow.left {
        left: -60px;
    }

    .atf-slider-arrow.right {
        right: -60px;
    }

    /* PILLARS DEL METODO (Comparison rosso vs verde) - Affiancati in Flex per logica comparativa */
    .pillar-row-v8 {
        display: flex !important;
        flex-direction: row !important;
        gap: 40px !important;
        align-items: stretch !important;
        max-width: 900px !important;
        margin: 0 auto !important;
    }

    .pillar-col-v8 {
        flex: 1 !important;
        margin-bottom: 0 !important;
    }

    .pillar-emoji-v8 {
        display: none !important;
    }

    /* BONUS E VALUE STACK - Layout a mosaico per contenere lo spazio */
    .white-section .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .white-section .container>* {
        max-width: 650px !important;
        /* Costringe tutti i bonus al centro a banda stretta */
        width: 100% !important;
    }

    #pricing-section .price-showcase-v2,
    .faq-v2 {
        max-width: 650px !important;
        margin: 40px auto !important;
    }

    /* Abilita sticky footer su Desktop */
    .sticky-footer-v2 {
        display: flex !important;
        justify-content: center;
        width: 100% !important;
        max-width: none !important;
        left: 0 !important;
        transform: translateY(100%);
        border-radius: 0;
        bottom: 0;
        padding: 20px;
    }

    .sticky-footer-v2.visible {
        transform: translateY(0) !important;
    }
}
