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

:root {
    --gx-red: #FF1F4B;
    --gx-dark: #1C1C1E;
    --gx-darker: #131315;
    --gx-charcoal: #2C2C2E;
    --gx-light: #F5F5F7;
    --gx-white: #FFFFFF;
    --gx-gray: #86868B;
    --gx-accent: #FF004D;
    --gx-glow: rgba(255, 31, 75, 0.4);
    --shadow-gx: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3);
    --radius: 8px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gx-white);
    background: var(--gx-darker);
    overflow-x: hidden;
}

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

.header {
    background: var(--gx-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gx-charcoal);
    box-shadow: var(--shadow-gx);
}

.logo {
    height: 36px;
    width: auto;
}

.hero {
    background: linear-gradient(135deg, #0a0a0b 0%, var(--gx-darker) 50%, var(--gx-dark) 100%);
    padding: 80px 0;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--gx-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--gx-gray);
}

.hero-subtitle strong {
    color: var(--gx-red);
    font-weight: 700;
}

.hero-image {
    max-height: 400px;
    overflow: hidden;
    border-radius: var(--radius);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gx);
    border: 1px solid var(--gx-charcoal);
}

.cta-button {
    display: inline-block;
    background: var(--gx-red);
    color: var(--gx-white);
    padding: 22px 64px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gx-accent);
}

.cta-button:hover {
    background: var(--gx-accent);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.problem-solution {
    padding: 80px 0;
    background: var(--gx-dark);
}

.ps-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.bridge {
    text-align: center;
    padding: 40px 0;
    margin: 40px 0;
}

.bridge p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gx-white);
    letter-spacing: 0.5px;
}

.ps-content h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--gx-white);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.problem-list,
.solution-list {
    list-style: none;
}

.problem-list li,
.solution-list li {
    padding: 14px 0 14px 36px;
    position: relative;
    font-size: 1.1rem;
    color: var(--gx-gray);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--gx-red);
    font-weight: bold;
    font-size: 1.4rem;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gx-red);
    font-weight: bold;
    font-size: 1.4rem;
}

.ps-image {
    max-height: 350px;
    overflow: hidden;
    border-radius: var(--radius);
}

.ps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gx-charcoal);
}

.benefits {
    padding: 80px 0;
    background: var(--gx-darker);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--gx-white);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--gx-dark);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--gx-charcoal);
}

.benefit-card:hover {
    box-shadow: var(--shadow-gx);
    border-color: rgba(255, 31, 75, 0.5);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--gx-dark) 0%, var(--gx-charcoal) 100%);
    border: 2px solid var(--gx-red);
}

.benefit-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--gx-red);
    color: var(--gx-white);
    border-radius: var(--radius);
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--gx-white);
    font-weight: 700;
}

.benefit-card p {
    color: var(--gx-gray);
    line-height: 1.7;
}

.trust {
    padding: 80px 0;
    background: var(--gx-dark);
}

.trust .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--gx-white);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.trust-content p {
    font-size: 1.1rem;
    color: var(--gx-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--gx-darker);
    border-radius: var(--radius);
    border: 1px solid var(--gx-charcoal);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gx-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gx-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-image {
    max-height: 350px;
    overflow: hidden;
    border-radius: var(--radius);
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gx-charcoal);
}

.how-it-works {
    padding: 80px 0;
    background: var(--gx-darker);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.step {
    background: var(--gx-dark);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 1px solid var(--gx-charcoal);
    transition: var(--transition);
}

.step:hover {
    border-color: rgba(255, 31, 75, 0.5);
    box-shadow: var(--shadow-gx);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--gx-red);
    color: var(--gx-white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--gx-white);
    font-weight: 700;
}

.step p {
    color: var(--gx-gray);
    line-height: 1.7;
}

.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gx-dark) 0%, #0a0a0b 100%);
    text-align: center;
    position: relative;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gx-gray);
}

.final-cta strong {
    color: var(--gx-red);
}

.cta-large {
    font-size: 1.5rem;
    padding: 26px 72px;
}

.disclaimer {
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--gx-gray);
}

.footer {
    background: var(--gx-darker);
    color: var(--gx-gray);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--gx-charcoal);
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-link {
    color: var(--gx-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gx-white);
    text-decoration: underline;
}

.footer-separator {
    color: var(--gx-gray);
    font-size: 0.85rem;
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gx-dark);
    color: var(--gx-white);
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    z-index: 200;
    transition: transform 0.3s ease-in-out;
    border-top: 2px solid var(--gx-red);
}

.sticky-bar.hidden {
    transform: translateY(100%);
}

.sticky-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-size: 1rem;
    font-weight: 600;
}

.sticky-text strong {
    color: var(--gx-red);
}

.cta-small {
    font-size: 1rem;
    padding: 14px 36px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.modal-content {
    position: relative;
    background: var(--gx-dark);
    border: 1px solid var(--gx-charcoal);
    border-radius: var(--radius);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--gx-white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.modal-close:hover {
    background: var(--gx-charcoal);
    color: var(--gx-red);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--gx-white);
    font-weight: 800;
    padding-right: 40px;
}

.modal-content h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--gx-white);
    font-weight: 700;
}

.modal-body {
    color: var(--gx-gray);
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body strong {
    color: var(--gx-white);
}

@media (max-width: 768px) {
    .hero .container,
    .ps-block,
    .trust .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution .ps-image {
        order: -1;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .ps-content h2,
    .trust-content h2,
    .section-title {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sticky-bar .container {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 18px 48px;
        font-size: 1.1rem;
    }

    .cta-large {
        font-size: 1.2rem;
        padding: 20px 56px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-image,
    .ps-image,
    .trust-image {
        max-height: 300px;
    }

    .hero-image img,
    .ps-image img,
    .trust-image img {
        max-height: 300px;
    }

    .modal-content {
        padding: 24px;
        width: 95%;
        max-height: 90vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .footer .container {
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-separator {
        display: none;
    }
}
