body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f6f6;
    color: #111;
}

.landing-page {
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(90deg, #a90000, #d91515);
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-logo {
    height: 96px;
    width: auto;
    object-fit: contain;
}

.insta-btn {
    background: white;
    color: #d50000;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.hero-main {
    max-width: 1650px;
    margin: auto;
    padding: 45px 55px 35px;
    display: grid;
    grid-template-columns: 0.85fr 1.65fr 470px;
    gap: 0;
    align-items: center;
}

.hero-copy {
    z-index: 3;
}

.hero-copy h1 {
    font-size: 78px;
    line-height: .88;
    margin: 0 0 18px;
    font-weight: 950;
    letter-spacing: -2px;
}

.hero-copy strong {
    color: #d40000;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.hero-points li {
    margin-bottom: 12px;
    font-size: 25px;
    font-weight: 900;
}

.hero-copy p {
    font-size: 21px;
    line-height: 1.45;
    color: #444;
    margin-bottom: 26px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(90deg, #e50914, #a90000);
    color: white;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(201, 0, 0, .28);
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -170px;
    margin-right: -120px;
    z-index: 1;
}

.desktop-hero-img {
    width: 138%;
    max-width: 1220px;
    display: block;
}

.mobile-hero-img {
    display: none;
}

.signup-card {
    background: white;
    border-radius: 34px;
    padding: 32px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
    z-index: 5;
    transform: translateY(-18px);
}

.signup-card h2 {
    font-size: 36px;
    text-align: center;
    margin: 0 0 10px;
    font-weight: 950;
    line-height: 1.05;
}

.signup-card h2 span {
    color: #d40000;
}

.signup-card p {
    text-align: center;
    color: #666;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.signup-card input[type=text],
.signup-card input[type=email],
.signup-card input[type=tel] {
    width: 100%;
    padding: 17px;
    border-radius: 15px;
    border: 1px solid #ddd;
    margin-bottom: 14px;
    font-size: 16px;
    box-sizing: border-box;
}

.signup-card h3 {
    margin-top: 22px;
    margin-bottom: 18px;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 14px;
    cursor: pointer;
}

.category-option img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.category-option span {
    flex: 1;
    font-weight: 800;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin: 15px 0;
}

.main-cta {
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #ef1010, #a90000);
    color: white;
    padding: 19px;
    border-radius: 17px;
    font-size: 19px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(201, 0, 0, .22);
}

.privacy-note {
    font-size: 13px;
    text-align: center;
    margin-top: 16px;
}

.trust-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
    padding: 0 55px;
}

.trust-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.trust-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-card h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    color: #111;
}

.trust-card p {
    margin: 6px 0 0;
    color: #666;
    font-size: 18px;
}

.find-section {
    max-width: 1450px;
    margin: auto;
    padding: 45px 55px;
}

.find-section h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 38px;
}

.find-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.find-grid div {
    background: white;
    border-radius: 28px;
    padding: 38px;
    text-align: center;
}

.find-grid strong {
    display: block;
    color: #d40000;
    font-size: 22px;
    margin-bottom: 10px;
}

.coming-soon-banner {
    background: url('/static/images/footer_red_bg.png') center/cover no-repeat;
    padding: 95px 80px;
    margin-top: 45px;
    display: flex;
    justify-content: center;
}

.coming-content {
    max-width: 1150px;
    width: 100%;
    color: white;
    text-align: center;
}

.coming-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 20px;
    border-radius: 999px;
}

.coming-content h2 {
    font-size: 72px;
    line-height: .95;
    margin: 32px 0;
}

.coming-content h2 span {
    color: #ffe46b;
}

.coming-content p {
    font-size: 24px;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 32px;
}

.coming-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.coming-list div {
    background: rgba(255, 255, 255, .12);
    padding: 18px;
    border-radius: 16px;
}

.footer {
    background: #8f0000;
    color: white;
    text-align: center;
    padding: 42px 20px;
}

.footer img {
    height: 95px;
    margin-bottom: 14px;
}

.footer p {
    font-size: 22px;
    font-weight: 900;
    margin: 8px 0;
}

.footer small {
    display: block;
    font-size: 14px;
    opacity: .9;
}

/* ERROR MODAL */

.error-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.error-modal {
    background: white;
    border-radius: 28px;
    max-width: 460px;
    width: 100%;
    padding: 34px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    position: relative;
    border: 3px solid #d40000;
}

.error-modal h2 {
    color: #d40000;
    font-size: 28px;
    margin: 0 0 16px;
    font-weight: 950;
}

.error-modal p {
    color: #111;
    font-size: 18px;
    font-weight: 800;
    margin: 10px 0;
}

.error-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    border: none;
    background: none;
    font-size: 34px;
    font-weight: 900;
    cursor: pointer;
    color: #d40000;
}

.error-modal-btn {
    margin-top: 22px;
    background: linear-gradient(90deg, #ef1010, #a90000);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
}

/* SUCCESS PAGE */

.success-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f5f5f5;
}

.success-card {
    background: white;
    border-radius: 32px;
    padding: 60px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.success-icon {
    font-size: 70px;
    margin-bottom: 20px;
}

.success-card h1 {
    font-size: 54px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #c51414;
}

.success-text {
    font-size: 26px;
    line-height: 1.5;
    color: #111;
    margin-bottom: 14px;
}

.success-subtext {
    color: #666;
    margin-bottom: 35px;
    font-size: 20px;
}

.instagram-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4d, #c51414);
    color: white;
    padding: 18px 34px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 20px;
}

.back-home-btn {
    display: block;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .top-bar {
        padding: 14px 22px;
        height: auto;
    }

    .top-logo {
        height: 74px;
    }

    .insta-btn {
        display: none;
    }

    .hero-main {
        display: flex;
        flex-direction: column;
        padding: 28px 20px;
        gap: 18px;
    }

    .hero-copy {
        text-align: center;
        order: 1;
    }

    .hero-copy h1 {
        font-size: 48px;
        line-height: .9;
    }

    .hero-points li {
        font-size: 18px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-image-wrap {
        order: 2;
        margin: -10px 0 0;
        width: 100%;
    }

    .desktop-hero-img {
        display: none;
    }

    .mobile-hero-img {
        display: block;
        width: 100%;
        border-radius: 28px;
    }

    .hero-form {
        order: 3;
        width: 100%;
        transform: none;
        margin-top: -12px;
    }

    .signup-card {
        padding: 22px;
        border-radius: 26px;
    }

    .signup-card h2 {
        font-size: 28px;
    }

    .form-grid,
    .category-grid,
    .find-grid,
    .coming-list {
        grid-template-columns: 1fr;
    }

    .trust-section {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 20px;
        margin-top: 22px;
    }

    .trust-card {
        padding: 22px;
        border-radius: 24px;
    }

    .trust-card img {
        width: 62px;
        height: 62px;
    }

    .trust-card h4 {
        font-size: 24px;
    }

    .trust-card p {
        font-size: 16px;
    }

    .find-section,
    .coming-soon-banner {
        padding: 34px 20px;
    }

    .coming-content h2 {
        font-size: 40px;
    }

    .footer img {
        height: 72px;
    }

    .success-card {
        padding: 40px 28px;
        border-radius: 26px;
    }

    .success-card h1 {
        font-size: 42px;
    }

    .success-text {
        font-size: 22px;
    }
}