/* ============================================
   ATR GROWTH BUSINESS - LANDING PAGE STYLES
   Agreessive Conversion, High Impact, Dark Premium
   ============================================ */

/* Page Specific Overrides */
.growth-body {
    background: #000;
    /* Pitch black for LP */
}

.growth-main {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.growth-main.blurred {
    filter: blur(8px) brightness(0.5);
    transform: scale(0.98);
    pointer-events: none;
}

/* Mini Header */
.growth-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .header-status {
        display: none;
    }

    .header-inner {
        justify-content: center;
        width: 100%;
    }

    .logo {
        margin: 0 auto;
    }
}

/* VSL Hero */
.vsl-hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

.vsl-content {
    margin: 0 auto;
    max-width: 900px;
}

.vsl-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.vsl-wrapper {
    margin: 40px auto;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.vsl-placeholder {
    color: var(--gray-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--gold-glow);
}

.play-button:hover svg {
    fill: #000;
    stroke: #000;
}

/* Glowing Button CTA */
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: btn-pulse 2.5s infinite;
    font-size: 1.2rem;
    padding: 18px 36px;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 10px rgba(212, 175, 55, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

.cta-subtext {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-dark);
}

/* VSL Delay Logic (Hidden until video finishes) */
.hidden-initially {
    display: none;
    opacity: 0;
}

.hidden-initially.unlocked {
    display: block;
    animation: fadeInVSL 1.5s forwards;
}

@keyframes fadeInVSL {
    to {
        opacity: 1;
    }
}

/* Transformation Section - Lists */
.gold-text {
    color: var(--gold);
}

.bad-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: #ff6b6b;
}

.bad-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
}

.good-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.good-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Time Effort Section */
.time-effort-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .time-effort-layout {
        grid-template-columns: 1fr;
    }
}

.timeline {
    margin-top: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212, 175, 55, 0.2);
}

.timeline-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
}

.timeline-step .dot {
    width: 16px;
    height: 16px;
    background: var(--black);
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 4px;
}

.timeline-step h4 {
    margin-bottom: 8px;
    color: var(--gold);
}

.dashboard-mockup {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    min-height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mockup-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 16px;
    width: 100%;
}

.mockup-line.short {
    width: 60%;
}

.mockup-chart {
    flex: 1;
    margin: 24px 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.mockup-alert {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Value Stacking */
.value-stack-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--black-surface);
    border-radius: 16px;
    overflow: hidden;
}

.stack-list {
    padding: 40px;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
}

.value-strike {
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

.total-item {
    margin-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.offer-box {
    background: rgba(212, 175, 55, 0.05);
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.offer-box h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

/* ========================================================================= */
/* TYPEFORM-STYLE OVERLAY */
/* ========================================================================= */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    /* Semi trans back */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.form-container {
    width: 100%;
    max-width: 800px;
    height: 100%;
    max-height: 100vh;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* Soft gold glow inside the modal area */
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.close-form {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.close-form:hover {
    color: var(--white);
}

.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
}

.form-step.active {
    display: block;
    animation: slideUpFade 0.5s forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 32px;
    line-height: 1.3;
}

/* Inputs form */
.form-step input[type="text"],
.form-step input[type="tel"],
.form-step input[type="email"],
.form-step textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    font-size: 2rem;
    padding: 16px 0;
    font-family: var(--font-heading);
    transition: border-color 0.3s ease;
}

.form-step input:focus,
.form-step textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-step input::placeholder,
.form-step textarea::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.form-step textarea {
    font-size: 1.5rem;
    resize: none;
}

.next-btn {
    margin-top: 32px;
    font-size: 1.2rem;
    padding: 12px 32px;
    opacity: 0.5;
    /* hidden or disabled until input */
    pointer-events: none;
    transition: all 0.3s ease;
}

.next-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Radio Buttons styled as Cards */
.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.options-grid.vertical {
    flex-direction: column;
}

.option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.option-btn input[type="radio"] {
    display: none;
    /* hide standard radio */
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.option-btn.selected {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Progress bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--gold);
}

/* Submitting state */
.submitting {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 32px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.success-msg {
    text-align: center;
}