:root {
    /* Color Palette */
    --bg-dark: #0a0a0c;
    --bg-surface: #121215;
    --bg-surface-elevated: #1a1a20;
    --primary-emerald: #00FF87;
    --secondary-cyan: #00E5FF;
    --text-main: #FAFAFA;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 255, 135, 0.3);
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--primary-emerald) 0%, var(--secondary-cyan) 100%);
    --gradient-glass: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows & Glows */
    --glow-emerald: 0 0 20px rgba(0, 255, 135, 0.2), 0 0 40px rgba(0, 255, 135, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-snappy: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Elements */
.bg-nodes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px, 100px 100px;
    background-position: -25px -25px, 0 0, 0 0;
    opacity: 0.4;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 135, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Typography Defaults */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- Hero Section --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 32px 0;
    z-index: 100;
}

.brand-logo {
    max-height: 56px;
    width: auto;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 60px;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-section.fade-out {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 600px;
}

/* Banner Image */
.hero-banner-wrapper {
    margin: 48px 0 0;
    width: 100%;
    max-width: 900px;
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), var(--glow-emerald);
    border: 1px solid var(--border-color);
    transition: var(--transition-snappy);
    display: block;
}

.hero-banner:hover {
    border-color: var(--primary-emerald);
    transform: translateY(-4px);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--bg-dark);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-snappy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-emerald);
}

.cta-button:active {
    transform: translateY(1px);
}

.secondary-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 18px 40px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition-snappy);
}

.secondary-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--secondary-cyan);
    color: var(--secondary-cyan);
    transform: translateY(-2px);
}

.glow-effect {
    position: relative;
    z-index: 1;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: var(--gradient-accent);
    z-index: -1;
    border-radius: 10px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.6;
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 32px auto 0;
    max-width: fit-content;
}

.trust-bar-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-bar-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* --- Form Section --- */
.form-section, .results-section {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none !important;
}

.form-container {
    max-width: 800px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Progress bar inside form */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-surface-elevated);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    width: 33%;
    transition: width 0.5s ease;
}

/* Step Cards Logic */
.step-card {
    display: none;
    animation: slideInUp 0.5s ease forwards;
}

.step-card.active {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back Button */
.back-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 24px;
    transition: var(--transition-snappy);
    padding: 0;
}

.back-btn:hover {
    color: var(--text-main);
    transform: translateX(-4px);
}

.results-back-btn {
    position: absolute;
    top: 40px;
    left: 40px;
}

.step-label {
    display: inline-block;
    color: var(--secondary-cyan);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Option Grid (Step 1 & 3) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.option-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-snappy);
    position: relative;
    overflow: hidden;
}

.option-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-glass);
    pointer-events: none;
}

.option-card:hover {
    border-color: var(--primary-emerald);
    transform: translateY(-4px);
    box-shadow: var(--glow-emerald);
}

.option-card.selected {
    border-color: var(--primary-emerald);
    background: rgba(0, 255, 135, 0.05);
}

.option-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-cyan);
    transition: var(--transition-snappy);
}

.option-card:hover .option-icon {
    background: rgba(0, 229, 255, 0.1);
    transform: scale(1.1);
}

/* Option List (Step 2) */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.option-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.option-row:hover {
    border-color: var(--secondary-cyan);
    transform: translateX(4px);
}

.option-row.selected {
    border-color: var(--secondary-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.option-row .option-icon {
    margin: 0;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.option-icon.warning { color: #FFB020; }
.option-icon.error { color: #FF4D4D; }
.option-icon.info { color: var(--primary-emerald); }

.option-text h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.option-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Results Section --- */
.results-container {
    text-align: center;
    max-width: 700px;
}

.shield-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--primary-emerald);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.results-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.results-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.solution-card {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-elevated) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
    box-shadow: var(--glow-emerald);
    position: relative;
}

/* Dynamic content styles injected via JS */
.pkg-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.pkg-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pkg-features {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.pkg-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pkg-features li:last-child {
    border-bottom: none;
}

.pkg-features li svg {
    color: var(--primary-emerald);
    flex-shrink: 0;
}

.final-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.product-info-wrapper {
    position: relative;
    cursor: pointer;
    margin-bottom: 12px;
}

.tap-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px auto 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 100px;
    transition: opacity 0.3s ease;
}

.tap-indicator svg {
    color: var(--primary-emerald);
}

@media (hover: hover) and (pointer: fine) {
    .product-info-wrapper:hover .tap-indicator {
        opacity: 0;
        pointer-events: none;
    }
}

.product-info-wrapper.tooltip-active-mobile .tap-indicator {
    opacity: 0;
    pointer-events: none;
}

.tooltip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(0, 255, 135, 0.2);
}

@media (hover: hover) and (pointer: fine) {
    .product-info-wrapper:hover .tooltip-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.product-info-wrapper.tooltip-active-mobile .tooltip-overlay {
    opacity: 1;
    visibility: visible;
}

.tooltip-text {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    margin: 0;
    max-height: 100%;
    overflow-y: auto;
}
.tooltip-text::-webkit-scrollbar {
    width: 4px;
}
.tooltip-text::-webkit-scrollbar-thumb {
    background: var(--primary-emerald);
    border-radius: 4px;
}

.scarcity-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.view-all-products-link {
    color: var(--secondary-cyan);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 8px;
    transition: var(--transition-snappy);
}

.view-all-products-link:hover {
    color: var(--primary-emerald);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .form-container {
        padding: 32px 24px;
        border-radius: 16px;
    }
    .option-row {
        flex-direction: column;
        text-align: center;
    }
    .option-row .option-icon {
        margin: 0 auto;
    }
    .solution-card {
        padding: 24px;
    }
    .results-back-btn {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 32px;
        justify-content: center;
        width: 100%;
    }

    .bg-visual-asset {
        display: none;
    }
    .floating-wa-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .floating-wa-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .live-stock-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
}

/* --- UI/UX Enhancements --- */
.live-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 135, 0.1);
    border: 1px solid rgba(0, 255, 135, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-emerald);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInDown 0.5s ease;
}

.live-indicator {
    font-size: 0.7rem;
    animation: pulse-live-indicator 1.5s infinite;
}

@keyframes pulse-live-indicator {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.sub-cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 400;
}

.bg-visual-asset {
    position: fixed;
    top: 50%;
    right: -100px;
    transform: translateY(-50%) rotate(-5deg);
    width: 350px;
    height: 250px;
    z-index: -2;
    opacity: 0.08;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.floating-wa-wrapper {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 999;
}

.floating-wa-bubble {
    background: rgba(20, 20, 24, 0.95);
    border: 1px solid #25D366;
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
    position: relative;
    margin-right: 12px;
    font-size: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.floating-wa-bubble:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}
.floating-wa-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #25D366;
}
.floating-wa-bubble::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(20, 20, 24, 0.95);
    z-index: 2;
}

.floating-wa-btn {
    background: var(--bg-surface-elevated);
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(255, 77, 77, 0.15);
    transition: var(--transition-snappy);
    backdrop-filter: blur(10px);
}

.floating-wa-btn:hover {
    border-color: #FF4D4D;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 77, 77, 0.3);
}

.floating-wa-btn .wa-indicator {
    animation: pulse-live-indicator 2s infinite;
}

/* --- About Us Section --- */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 135, 0.03) 100%);
    position: relative;
}

.about-container {
    max-width: 800px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 56px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-shield-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-emerald);
    margin: 0 auto 24px;
    animation: float 4s ease-in-out infinite;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 32px;
}

.about-content {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    color: var(--text-main);
}

.about-highlight {
    font-weight: 600;
    color: var(--secondary-cyan) !important;
    border-left: 4px solid var(--primary-emerald);
    padding-left: 16px;
    margin-top: 32px;
    font-size: 1.2rem;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0 120px;
}

.faq-container {
    max-width: 900px;
}

.faq-main-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-snappy);
}

.faq-item:hover {
    border-color: rgba(0, 255, 135, 0.3);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition-snappy);
}

.faq-icon {
    color: var(--primary-emerald);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item.active {
    border-color: var(--primary-emerald);
    background: rgba(0, 255, 135, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-container {
        padding: 32px 24px;
    }
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }
}

/* ===== Blur Gate (Phone Capture on Results) ===== */

/* Blurred solution card */
.blurred-content {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    transition: filter 0.7s ease, opacity 0.5s ease;
    margin-bottom: 0;
}

.blurred-content.revealed {
    filter: blur(0);
    pointer-events: auto;
    user-select: auto;
    margin-bottom: 48px;
}

/* Phone gate card */
.phone-gate-wrapper {
    background: linear-gradient(135deg, rgba(0,255,135,0.06) 0%, rgba(0,229,255,0.04) 100%);
    border: 1px solid rgba(0, 255, 135, 0.25);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.phone-gate-wrapper.hidden-gate {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    display: none;
}

.phone-gate-icon {
    font-size: 2.2rem;
    line-height: 1;
    animation: float 3s ease-in-out infinite;
}

.phone-gate-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin: 0;
}

.phone-gate-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.phone-gate-inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin-top: 4px;
}

.phone-gate-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.05rem;
    text-align: center;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-gate-input:focus {
    border-color: var(--primary-emerald);
    box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.15);
}

.phone-gate-input.error {
    border-color: #FF4D4D;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

#reveal-solution-btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 24px;
    text-transform: none;
    letter-spacing: 0;
}

/* Reveal animation for final CTA */
#final-cta {
    animation: none;
}

#final-cta.revealed {
    display: flex !important;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .phone-gate-wrapper {
        padding: 24px 16px;
    }
    .phone-gate-title {
        font-size: 1.2rem;
    }
}

/* ===== Social Proof Image (About Section) ===== */
.social-proof-wrapper {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.social-proof-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 135, 0.08);
    border: 1px solid rgba(0, 255, 135, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-emerald);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-dot {
    font-size: 0.7rem;
    animation: pulse-live-indicator 1.5s infinite;
}

.social-proof-img {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 135, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 135, 0.08);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 135, 0.15);
}
