:root {
    /* Color Palette */
    --primary-bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --rose-red: #3b82f6; /* Transmuted red to blue */
    --rose-bg: rgba(59, 130, 246, 0.1); 
    --green-bg: rgba(16, 185, 129, 0.1);
    --green-accent: #22c55e;
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover-border: rgba(255, 255, 255, 0.3);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: #000000;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

/* HEADER SECTION */
.main-header {
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--green-accent);
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 32px;
    }
    .main-nav a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 0.9375rem;
        transition: color 0.2s;
    }
    .main-nav a:hover {
        color: var(--text-primary);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: none;
}

@media (min-width: 768px) {
    .login-link { display: inline-block; }
}

.nav-btn {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: background-color 0.2s, color 0.2s;
}

.nav-btn:hover {
    background-color: var(--green-accent);
    color: var(--primary-bg);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 100px 20px 120px;
    background-color: var(--primary-bg);
    overflow: hidden;
}

.hero-background-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--green-bg);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green-accent);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 0 24px 0;
}

.hero-title span {
    background: var(--green-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 40px 0;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-btn {
    font-size: 1.125rem;
    padding: 18px 36px;
    width: auto;
}

.secondary-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.secondary-btn-outline:hover {
    background-color: var(--primary-bg);
    border-color: rgba(255,255,255,0.2);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.hero-trust span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.hero-trust strong {
    color: var(--text-primary);
}

.hero-visual {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.glass-mockup {
    width: 100%;
    max-width: 480px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
    border-radius: 24px;
    overflow: hidden;
}

.mockup-header {
    background: rgba(9, 9, 11, 0.9);
    padding: 16px 20px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.dots span:nth-child(1) { background-color: #fca5a5; }
.dots span:nth-child(2) { background-color: #fcd34d; }
.dots span:nth-child(3) { background-color: #86efac; }

.agent-status {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--green-accent);
    border-radius: 50%;
}

.mockup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.9375rem;
    line-height: 1.5;
    max-width: 85%;
    position: relative;
}

.chat-bubble.incoming {
    background-color: #18181b;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background-color: var(--green-accent);
    color: var(--text-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.system-notification {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    background-color: rgba(16, 185, 129, 0.1);
    padding: 8px 12px;
    border-radius: 100px;
    margin-top: 8px;
    align-self: center;
}

@media (max-width: 900px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch;}
    .hero-btn, .secondary-btn-outline { width: 100%; justify-content: center;}
}

.problem-agitate-section {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography & Headline */
.headline-area {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--rose-red);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.main-headline {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--text-primary);
}

.main-headline span {
    color: var(--rose-red);
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Chaos Grid */
.chaos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.chaos-card {
    position: relative;
    background: #09090b;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

.chaos-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

/* Glow effect on hover tracking mouse */
.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, rgba(59,130,246,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    top: var(--mouse-y);
    left: var(--mouse-x);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.chaos-card:hover .card-glow {
    opacity: 1;
}

.icon-wrapper {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.danger-bg { background: var(--rose-bg); color: var(--rose-red); }
.warning-bg { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.error-bg { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.card-content {
    position: relative;
    z-index: 1;
}

.stat-highlight {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.card-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 12px 0;
    color: var(--text-primary);
}

.card-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* Antes vs Despues Comparison */
.comparison-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-radius: 24px;
    position: relative;
}

.comparison-panel {
    flex: 1;
    min-width: 320px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.panel-antes {
    background-color: var(--rose-bg);
}

.panel-despues {
    background-color: var(--green-bg);
}

.panel-header {
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.danger-badge {
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--rose-red);
}

.success-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--green-accent);
}

.panel-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.02em;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.cross-icon {
    flex-shrink: 0;
    color: var(--rose-red);
    margin-top: 2px;
}

.check-icon {
    flex-shrink: 0;
    color: var(--green-accent);
    margin-top: 2px;
}

.transition-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

@media (max-width: 900px) {
    .main-headline {
        font-size: 2.5rem;
    }
    
    .comparison-container {
        flex-direction: column;
    }
    
    .transition-icon {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
}

.proof-eyebrow {
    color: var(--green-accent);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.proof-card {
    background-color: var(--primary-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.proof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.2);
}

.metric-badge {
    position: absolute;
    top: -16px;
    left: 40px;
    background-color: var(--green-accent);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    margin-top: 10px;
}

.review-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 32px 0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--card-border);
    padding-top: 24px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details strong {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.reviewer-details span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* TRANSFORMATION SECTION */
.transformation-section {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.trans-container {
    max-width: 800px;
    margin: 0 auto;
}

.trans-eyebrow {
    color: var(--green-accent);
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, var(--green-accent) 50%, rgba(255,255,255,0.1) 100%);
}

.timeline-node {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

.node-marker {
    width: 50px;
    height: 50px;
    background-color: var(--text-primary);
    border: 2px solid var(--green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--green-accent);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--primary-bg), 0 0 40px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.timeline-node:hover .node-marker {
    background-color: var(--green-accent);
    color: var(--text-primary);
    transform: scale(1.1);
}

.node-content {
    background: #09090b;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.timeline-node:hover .node-content {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: translateX(8px);
}

.node-time {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--green-bg);
    color: var(--green-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.node-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.node-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 600px) {
    .timeline-node { gap: 16px; flex-direction: column; }
    .timeline-line { left: 40px; }
    .node-marker { align-self: flex-start; margin-left: 15px; }
    .timeline-node:hover .node-content { transform: translateY(-4px); }
}

/* VALUE STACK SECTION */
.value-stack-section {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.value-container {
    max-width: 1000px;
}

.special-eyebrow {
    color: var(--green-accent);
}

.value-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.value-items {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    background: #09090b;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: rgba(255,255,255,0.2);
}

.v-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    flex-shrink: 0;
}

.v-text {
    flex: 1;
}

.v-text h4 {
    margin: 0 0 4px 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.v-text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.v-price {
    text-align: right;
    min-width: 100px;
}

.v-price span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.v-price strong {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--text-primary);
}

.offer-card {
    flex: 0.8;
    min-width: 320px;
    background: #09090b;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    border: 2px solid var(--text-primary);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.total-value-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    margin-bottom: 32px;
}

.total-value-row span:first-child {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.strikethrough {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--rose-red);
    text-decoration: line-through;
    font-weight: 700;
}

.actual-price-area {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 32px;
}

.price-label {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px 0;
    font-size: 0.875rem;
}

.giant-price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    line-height: 1;
    letter-spacing: -0.04em;
}

.giant-price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    vertical-align: baseline;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--green-bg);
    color: var(--green-accent);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.offer-actions {
    position: relative;
    z-index: 1;
    text-align: center;
}

.primary-btn.pulse-btn {
    animation: pulseShadow 2s infinite;
    background-color: var(--green-accent);
    color: var(--primary-bg);
}

.primary-btn.pulse-btn:hover {
    background-color: #16a34a;
    color: var(--text-primary);
}

@keyframes pulseShadow {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.guarantee-text {
    margin: 16px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    .v-price {
        text-align: center;
    }
}

/* SECONDARY CTA SECTION */
.secondary-cta-section {
    padding: 120px 20px;
    background-color: #050505;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-background-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(17,24,39,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-question {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 32px 0;
    color: var(--text-primary); /* overriding any implicit */
}

.cta-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    margin-left: -12px;
    object-fit: cover;
}

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

.avatar-cap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    background-color: var(--rose-red);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    z-index: 2;
}

.cta-social-proof p {
    margin: 0;
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.2);
}

.primary-btn.yes-btn {
    background-color: var(--rose-red);
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 20px 40px;
    box-shadow: 0 10px 15px -3px rgba(59,130,246,0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.primary-btn.yes-btn:hover {
    background-color: #2563eb;
    color: var(--text-primary);
    transform: translateY(-2px) scale(1.02);
}

.cta-reversals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.reversal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #a1a1aa;
}

.reversal-item svg {
    color: var(--green-accent);
}

.scarcity-band {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.scarcity-band span {
    color: #fbbf24;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-question { font-size: 2.25rem; }
    .cta-social-proof { flex-direction: column; text-align: center; gap: 8px;}
    .cta-reversals { flex-direction: column; gap: 12px; }
    .yes-btn { width: 100%; white-space: normal; line-height: 1.3;}
}

/* FOOTER SECTION */
.footer-section {
    background-color: #000000; /* Slate 900 */
    color: #a1a1aa; /* Slate 400 */
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
}

.brand-column {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--green-accent);
}

.brand-desc {
    margin: 0 0 24px 0;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.2);
}

.contact-method svg {
    color: var(--green-accent);
}

.links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    flex: 2;
    justify-content: flex-end;
}

.links-column {
    min-width: 140px;
}

.links-column h4 {
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 20px 0;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column li {
    margin-bottom: 12px;
}

.links-column li:last-child {
    margin-bottom: 0;
}

.links-column a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.links-column a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #a1a1aa;
    transition: color 0.2s, transform 0.2s;
    display: flex;
}

.social-links a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .links-group { justify-content: flex-start; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* SUCCESS SECTION */
.success-section {
    padding: 100px 20px;
    background-color: var(--primary-bg);
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
}

.success-card {
    background: #09090b;
    border: 1px solid var(--green-accent);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2), 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 8px 10px -6px rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--green-accent);
}

.success-icon-wrapper {
    width: 96px;
    height: 96px;
    background-color: var(--green-bg);
    color: var(--green-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.success-check {
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-check .circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCircle 0.6s ease-out 0.2s forwards;
}

.success-check .check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease-out 0.6s forwards;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.success-headline {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.success-subheadline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.deliverables-box {
    background-color: var(--primary-bg);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    margin-bottom: 40px;
}

.deliverables-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 12px;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.deliverables-list li:last-child {
    margin-bottom: 0;
}

.del-icon {
    width: 40px;
    height: 40px;
    background-color: var(--text-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.del-text strong {
    display: block;
    font-family: var(--font-body);
    color: var(--text-primary);
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

.del-text span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.primary-btn {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.primary-btn:hover {
    background-color: #1f2937;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.secondary-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.secondary-link:hover {
    color: var(--text-primary);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
