/* MHP Store - Mobile First High Performance Design */
:root {
    --lime: #7CFF00;
    --lime-dark: #62cc00;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --grey-light: #f3f4f6;
    --grey-medium: #e2e8f0;
    --white: #ffffff;

    --font: 'Outfit', sans-serif;

    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glow-lime: 0 0 20px rgba(124, 255, 0, 0.5);

    --radius-box: 16px;
    --radius-btn: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.4;
    overflow-x: hidden;
    padding-bottom: 90px;
}

/* Utilities */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ANIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 255, 0, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(124, 255, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 255, 0, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse 1.5s infinite;
}

.floating-element {
    animation: float 4s ease-in-out infinite;
}

/* HERO SECTION */
.hero {
    background: radial-gradient(circle at 50% 0%, #f9fafb 0%, #ffffff 100%);
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--grey-medium);
}

.badge-hero {
    display: inline-block;
    background: var(--grey-light);
    color: var(--dark-soft);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    border: 1px solid var(--grey-medium);
}

.logo-img {
    height: 150px;
    margin: 0 auto 1rem;
}

.impact-line {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lime-dark);
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.subheadline {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

/* HERO VIDEO */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 240px;
    /* Optimal size for mobile hero */
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.video-frame {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(124, 255, 0, 0.5);
    /* Glowing border */
    background: #000;
    aspect-ratio: 9 / 16;
    /* TikTok/Reels Format */
    transform: rotateY(-5deg) rotateX(2deg);
    /* Subtle 3D tilt */
    transition: transform 0.3s ease;
}

.video-frame:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 0 5px;
}

/* Adjust Glow position */
.visual-glow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    /* Larger glow behind video */
    height: 80%;
}

.interactive-ball {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.ball-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(5px);
    animation: shadow-scale 6s ease-in-out infinite;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.25;
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes float-3d {

    0%,
    100% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-20px) rotateZ(2deg);
    }
}

@keyframes shadow-scale {

    0%,
    100% {
        transform: translateX(-50%) rotateX(90deg) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-50%) rotateX(90deg) scale(0.8);
        opacity: 0.2;
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.btn-primary {
    display: block;
    width: 100%;
    background: var(--lime);
    color: var(--dark);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.1rem;
    border-radius: var(--radius-btn);
    text-transform: uppercase;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(124, 255, 0, 0.4);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
    text-align: center;
}

.bullet-item .icon {
    color: var(--lime-dark);
    margin-right: 5px;
}

/* PAIN POINTS */
.pain-points {
    padding: 3rem 0;
    background: #fff;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
    line-height: 1.1;
}

.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pain-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--grey-light);
    padding: 1rem;
    border-radius: var(--radius-box);
    text-align: left;
}

.pain-icon {
    font-size: 1.5rem;
}

.pain-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-soft);
    margin: 0;
}

.highlight-pain {
    background: #fff0f0;
    border: 1px solid #fed7d7;
}

.pain-card-mini {
    background: #fff;
    border: 1px solid var(--grey-medium);
    padding: 0.8rem;
    border-radius: var(--radius-box);
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.pain-closing {
    margin-top: 2rem;
    text-align: center;
}

.txt-highlight {
    font-weight: 900;
    color: var(--dark);
    font-size: 1.2rem;
    margin-top: 5px;
    text-transform: uppercase;
    background: linear-gradient(180deg, transparent 60%, var(--lime) 60%);
    display: inline-block;
}

/* SOLUTION */
.solution {
    padding: 3rem 0;
    background: white;
    /* Changed to white for cleaner look */
    color: var(--dark);
    text-align: center;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sol-card {
    background: var(--grey-light);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-box);
    text-align: center;
    border: 1px solid var(--grey-medium);
}

.sol-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.sol-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}

.sol-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.2;
}

/* SYSTEM VISUAL */
.system-visual {
    padding: 2rem 0;
    background: var(--grey-light);
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1rem;
}

.sys-item {
    background: white;
    padding: 10px 5px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.system-tagline {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--lime-dark);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* AUTHORITY */
.authority {
    padding: 3rem 0;
    text-align: center;
    background: white;
}

.authority-card {
    border: 2px solid var(--grey-medium);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-box);
    position: relative;
}

.icon-check-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.authority-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: 10px;
}

.authority-card p {
    font-size: 0.95rem;
    color: #64748b;
}

.auth-divider {
    height: 1px;
    background: var(--grey-medium);
    margin: 1.5rem 0;
}

.highlight-text {
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* PROCESS */
.process {
    padding: 3rem 0;
    background: #fff;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.p-step {
    background: var(--grey-light);
    padding: 1rem;
    border-radius: var(--radius-btn);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.p-step .num {
    background: var(--dark);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.process-final {
    font-weight: 800;
    color: var(--lime-dark);
    margin-bottom: 2rem;
}

.delivery-notice {
    font-size: 0.85rem;
    background: #f0fdf4;
    color: #166534;
    padding: 1rem;
    border-radius: var(--radius-btn);
    border: 1px solid #bbf7d0;
    display: inline-block;
    width: 100%;
}

/* OFFERS - PLAN HIERARCHY */
.offers {
    padding: 3rem 0 5rem;
    background: var(--grey-light);
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s;
}

/* PRO PLAN STYLES */
.plan-pro {
    border: 2px solid var(--lime);
    box-shadow: var(--shadow-elevated);
    z-index: 10;
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(124, 255, 0, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-name {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.plan-tag {
    background: var(--dark);
    color: var(--lime);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.plan-desc {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.price-box {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.plan-features li span {
    color: var(--lime-dark);
}

.pro-note {
    font-size: 0.8rem;
    text-align: center;
    color: #0f172a;
    background: #f0fdf4;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-btn);
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-featured {
    background: var(--lime);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(124, 255, 0, 0.3);
}

/* MASTER PLAN STYLES */
.plan-master {
    background: var(--dark);
    color: white;
}

.plan-master .plan-name {
    color: white;
}

.plan-master .price-box {
    color: white;
}

.plan-master .plan-tag-gold {
    background: linear-gradient(45deg, #ffd700, #ffaa00);
    color: black;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.plan-master .btn-card {
    background: white;
    color: var(--dark);
}

.plan-note {
    font-size: 0.8rem;
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* START PLAN STYLES */
.plan-start .plan-name {
    color: #64748b;
}

.plan-tag-gray {
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--grey-medium);
    color: #64748b;
}

/* FINAL CTA */
.final-cta {
    padding: 4rem 0 6rem;
    text-align: center;
    background: white;
}

.final-cta h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.final-tags {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-large {
    display: block;
    width: 100%;
    padding: 1.2rem;
    border-radius: var(--radius-btn);
    background: var(--dark);
    color: var(--lime);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
    background: #f8fafc;
    padding: 2rem 0 6rem;
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* FIXED CTA */
.fixed-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-top: 1px solid var(--grey-medium);
}

.fixed-cta-mobile a {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--lime);
    color: var(--dark);
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    box-shadow: var(--shadow-card);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 360px;
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #cbd5e1;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-txt {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary-modal {
    background: var(--lime);
    color: var(--dark);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-outline-modal {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
}

/* SOCIAL PROOF & SECURITY STYLES */
.social-proof-hero {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: var(--radius-box);
    border: 1px solid var(--grey-medium);
    backdrop-filter: blur(5px);
}

.social-proof-hero .stars {
    font-weight: 800;
    color: #166534;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.social-proof-hero .testimonial {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--dark-soft);
    margin-bottom: 6px;
    line-height: 1.3;
}

.authority-reinforce {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
    background: #f0fdf4;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.security-intro {
    background: #ffffff;
    border: 1px solid #bbf7d0;
    padding: 1.5rem;
    border-radius: var(--radius-box);
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.security-intro h4 {
    color: #166534;
    margin-bottom: 1rem;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-list {
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}

.security-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark-soft);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-social {
    margin-top: -10px;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ca8a04;
    /* Darker yellow for visibility */
    text-align: center;
    background: #fefce8;
    padding: 5px;
    border-radius: 6px;
}

.trust-final {
    margin: 1.5rem auto;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-box);
    max-width: 400px;
}

.trust-final h4 {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--dark);
    text-transform: uppercase;
}

.trust-final p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}