:root {
    --bg-color: #030303;
    --text-color: #ffffff;
    --brand-gradient: linear-gradient(90deg, #dfff11 0%, #45e14f 100%);
    --brand-color: #9bf32b;
    --card-bg: #0d0d0d;
    --card-border: #911F2166;
}

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


.glow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

.top-glow {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 100vw);
    height: 400px;
    background: linear-gradient(180deg, #4ce75a 0%, transparent 70%);
}

.bottom-glow {
    bottom: -150px;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #e2ff2b 0%, transparent 70%);
    opacity: 0.15;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 20px;
    margin: -30px -20px 40px -20px;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-white {
    color: white;
}

.logo-green {
    background: linear-gradient(to right, #E3F01F, #2BC764);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.btn {
    background: var(--brand-gradient);
    border: none;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-large {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.2;
}

.arrow {
    font-weight: 400;
    font-size: 18px;
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(3, 3, 3, 0.98) 65%, rgba(3, 3, 3, 0));
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky-cta .btn-large {
    max-width: 480px;
    margin: 0 auto;
}


.hero-title {
    font-size: 26px;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
    margin-bottom: 35px;
}

.highlight {
    color: var(--brand-color);
}


.main-video-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 35px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 255, 43, 0.2);
}

.main-video {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.main-video-wrap.is-playing .main-video {
    cursor: pointer;
}

.main-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2;
}

.main-video-play::before {
    content: '';
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.75);
    border: 2px solid rgba(155, 243, 43, 0.6);
    box-shadow: 0 0 24px rgba(155, 243, 43, 0.25);
    position: absolute;
}

.main-video-play svg {
    position: relative;
    z-index: 1;
    color: var(--brand-color);
    margin-left: 4px;
}

.main-video-wrap.is-ready:not(.is-playing) .main-video-play {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.main-video-wrap.is-playing .main-video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


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

.avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    background-color: #333;
    margin-left: -12px;
    object-fit: cover;
}

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

.social-text {
    font-size: 14px;
    color: #7a7a7a;
}

.highlight-green {
    color: var(--brand-color);
    font-weight: 700;
}


.features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 12px;
    color: #4ce75a;
    font-weight: 500;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.check {
    color: #888888;
    display: flex;
    align-items: center;
}


.stats-cards {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.card {
    flex: 1;
    background-color: var(--card-bg);
    border: 1px solid #434343;
    border-radius: 12px;
    padding: 10px 10px;
    text-align: center;
}

.card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #FFFFFF, #AAAAAA 30%, #434343);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.card p {
    font-size: 11px;
    color: #7a7a7a;
    line-height: 1.3;
}


.pain-points {
    margin-top: 60px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.quotes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.quote-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 2px solid #ff2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    font-style: italic;
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.4;
}

.pain-summary {
    text-align: center;
    font-size: 18px;
    color: #888;
    line-height: 1.6;
}


.why-us {
    text-align: center;
    margin-bottom: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
    color: var(--brand-color);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(to bottom, #2BD66A, #E9F11C);
    border-radius: 50%;
}

.why-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.why-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}


.methodology {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.method-card {
    background-color: #0a0b0a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: 1px solid rgba(226, 255, 43, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.icon-box {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(226, 255, 43, 0.6);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background-color: rgba(226, 255, 43, 0.05);
}

.method-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.method-desc {
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-hood {
    padding: 10px 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
}

.hood-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.btn-hood.active .hood-arrow {
    transform: rotate(180deg);
}

.hood-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.hood-content.active {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
}

.hood-video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(226, 255, 43, 0.2);
}

.hood-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(226, 255, 43, 0.2);
}

.hood-text {
    font-size: 12px;
    color: #7a7a7a;
    line-height: 1.4;
}


.reviews {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.review-img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
}


.final-cta {
    text-align: center;
    margin-bottom: 30px;
}

.cta-card {
    background: linear-gradient(180deg, #0f1f12 0%, #060a06 100%);
    border: 1px solid rgba(76, 231, 90, 0.2);
    border-radius: 24px;
    padding: 35px 20px 20px 20px;
    margin-top: 20px;
    text-align: left;
}

.cta-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 25px;
}

.cta-video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(226, 255, 43, 0.2);
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.cta-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(76, 231, 90, 0.08);
    color: var(--brand-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(76, 231, 90, 0.15);
}

.cta-text {
    font-size: 13px;
    color: #a0a0a0;
    line-height: 1.4;
}

.cta-bonus {
    background-color: rgba(76, 231, 90, 0.05);
    border: 1px solid rgba(76, 231, 90, 0.12);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.bonus-title {
    font-size: 11px;
    font-weight: 700;
    color: #5cb85c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bonus-text {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.cta-social {
    margin-bottom: 15px;
}

.cta-features {
    margin-bottom: 0;
}


.footer {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow: hidden;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
}


.modal-content {
    background-color: #0c0d0c;
    border: 1px solid #7AB822;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 30px 25px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: auto 0;
    box-shadow: 0 0 20px rgba(226, 255, 43, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #1a2414;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: #243419;
}

.btn-large {
    font-size: 16px;
    font-weight: 700;
    padding: 20px;
    width: 100%;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e2ff2b, #4ce75a);
    color: #0c0d0c;
    border: none;
    border-radius: 40px;
    cursor: pointer;
}

.modal-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    padding-right: 40px;
}

.modal-desc {
    font-size: 13px;
    color: #CFD8D3;
    line-height: 1.5;
    margin-bottom: 25px;
}

.modal-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #7AAA50;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.label-gradient {
    background: linear-gradient(to bottom, #2BD66A, #E9F11C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.text-gradient-vertical {
    background: linear-gradient(to bottom, #2BD66A, #E9F11C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}


.dates-row {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.date-chip {
    width: 42px;
    flex: 0 0 42px;
    background-color: #161B11;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.date-chip:hover {
    border-color: rgba(226, 255, 43, 0.3);
}

.date-chip.selected {
    border-color: rgba(226, 255, 43, 0.8);
    background-color: rgba(226, 255, 43, 0.05);
}

.date-chip.selected .date-num {
    color: #fff;
}

.date-day {
    font-size: 10px;
    color: #8AAA68;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.date-num {
    font-size: 20px;
    font-weight: 800;
    color: #8AAA68;
    margin-bottom: 4px;
}

.date-month {
    font-size: 10px;
    color: #8AAA68;
    text-transform: uppercase;
}


.roles-row {
    display: flex;
    gap: 8px;
}

.role-chip {
    flex: 1;
    text-align: center;
    background-color: #161B11;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: #4A6838;
    cursor: pointer;
    transition: all 0.2s;
}

.role-chip:hover {
    border-color: rgba(226, 255, 43, 0.3);
}

.role-chip.selected {
    border-color: rgba(226, 255, 43, 0.8);
    background-color: rgba(226, 255, 43, 0.05);
    color: #fff;
}


.form-input {
    width: 100%;
    background-color: #161B11;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: #2E4224;
}

.form-input:focus {
    border-color: rgba(226, 255, 43, 0.4);
}

.form-input:disabled {
    color: #4A6838;
    cursor: not-allowed;
}

.form-input:disabled::placeholder {
    color: #3D5530;
}


.time-select-disabled {
    width: 100%;
    background-color: #161B11;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    color: #4A6838;
    font-size: 14px;
    text-align: center;
    font-style: italic;
    margin-bottom: 10px;
}

.time-note {
    font-size: 11px;
    color: #3D5530;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.time-note .dot {
    background-color: #7AB822;
    width: 6px;
    height: 6px;
}


.checkbox-group {
    margin-bottom: 25px;
    margin-top: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox {
    display: none;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #4A6838;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s;
}

.form-checkbox:checked + .custom-checkbox {
    background-color: var(--brand-color);
    border-color: var(--brand-color);
}

.form-checkbox:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 9px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 11px;
    color: #4A6838;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .header {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: -20px;
        padding: 15px;
    }
    
    .btn-small {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .btn-large {
        font-size: 14px;
        padding: 16px;
    }
    
    .stats-cards {
        gap: 8px;
    }
    
    .card {
        padding: 15px 5px;
    }
    
    .card h3 {
        font-size: 18px;
    }
    
    .card p {
        font-size: 10px;
    }
    
    .section-title, .why-title, .cta-title, .modal-title {
        font-size: 22px;
    }
    
    .method-title {
        font-size: 18px;
    }
    
    .badge {
        font-size: 14px;
    }
    
    .quote-card {
        font-size: 12px;
        padding: 14px 16px;
    }
    
    .dates-row, .roles-row {
        flex-wrap: wrap;
    }
    
    .date-chip, .role-chip {
        flex: 0 0 auto;
    }
    
    .date-chip {
        width: 42px;
        flex: 0 0 42px;
    }
    
    .modal-content {
        padding: 25px 20px;
        max-width: 95%;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 20px;
    }
    
    .card h3 {
        font-size: 16px;
    }
    
    .card p {
        font-size: 9px;
    }
    
    .btn-large {
        font-size: 13px;
    }
}

.lego {
    position: relative;
    height: auto;
    margin-top: 4px;
    overflow: hidden;
    border-radius: 10px;
}
.lego-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lego-full {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: 1px solid rgba(226, 255, 43, 0.2);
    z-index: 6;
}
.hood-content.active .lego-full {
    animation: fullPulse 11s ease-in-out infinite;
}
.piece-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 5;
}
.hood-content.active .piece-wrap {
    animation: pieceFly 11s ease-in-out infinite;
}
.piece-img {
    width: 180px;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid rgba(226, 255, 43, 0.4);
    box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}
.atom-small { width: 180px; }

.piece-wrap .lbl {
    position: absolute;
    top: -16px;
    left: -7px;
    background: #E9F11C;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}
.piece-wrap.p1 { animation-delay: 0s; --tx: -85px; --ty: -110px; }
.piece-wrap.p2 { animation-delay: 0.1s; --tx: 95px; --ty: -110px; }
.piece-wrap.p3 { animation-delay: 0.2s; --tx: -85px; --ty: 15px; }
.piece-wrap.p4 { animation-delay: 0.3s; --tx: 95px; --ty: 15px; }
.piece-wrap.p5 { animation-delay: 0.4s; --tx: 0px; --ty: 120px; }

@keyframes fullPulse {
    0%, 28% { opacity: 1; transform: scale(1); }
    38%, 74% { opacity: 0; transform: scale(0.55); }
    86%, 100% { opacity: 1; transform: scale(1); }
}

@keyframes pieceFly {
    0%, 26% { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
    40%, 70% { opacity: 1; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1); }
    84%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
}

.lego-cap {
    text-align: center;
    color: #9a9a9a;
    font-size: 11.5px;
    margin-top: 6px;
}

@media (max-width: 400px) {
    .piece-img, .atom-small {
        width: 140px;
    }
    .piece-wrap.p1 { --tx: -70px; --ty: -80px; }
    .piece-wrap.p2 { --tx: 70px; --ty: -80px; }
    .piece-wrap.p3 { --tx: -70px; --ty: 10px; }
    .piece-wrap.p4 { --tx: 70px; --ty: 10px; }
    .piece-wrap.p5 { --tx: 0px; --ty: 90px; }
    .piece-wrap .lbl {
        font-size: 9px;
        padding: 2px 6px;
        top: -12px;
    }
}

@media (max-width: 340px) {
    .piece-img, .atom-small {
        width: 115px;
    }
    .piece-wrap.p1 { --tx: -55px; --ty: -65px; }
    .piece-wrap.p2 { --tx: 55px; --ty: -65px; }
    .piece-wrap.p3 { --tx: -55px; --ty: 5px; }
    .piece-wrap.p4 { --tx: 55px; --ty: 5px; }
    .piece-wrap.p5 { --tx: 0px; --ty: 75px; }
    .piece-wrap .lbl {
        font-size: 8px;
        padding: 1px 5px;
        top: -10px;
    }
}
