* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #111827;
}

.nav {
    background: white;
}

/* HERO */
.hero-bg {
    position: relative;
    background: linear-gradient(135deg, #182268, #182268);
    padding: 120px 20px 135px !important;
    overflow: hidden;
    /* top: 70px; */

}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}

.blur-1 {
    width: 250px;
    height: 250px;
    background: #60a5fa;
    top: -50px;
    right: 10%;
}

.blur-2 {
    width: 220px;
    height: 220px;
    background: #c084fc;
    bottom: 20px;
    left: 10%;
}

.hero-card {
    max-width: 1060px;
    margin: auto;
    background: #ffffff;
    backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    background: #f5f6fb;
    border: 1px solid #d9dce8;
    border-radius: 999px;
    width: fit-content;
}

.badge-icon {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
    padding-left: 10px;
}

.badge span {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    padding: 0 10px;
}

/* App info row */
.hero-app {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 10px;
}

.app-icon {
    width: 125px;
    height: 125px;
    min-width: 95px;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-details {
    flex: 1;
    min-width: 0;
}

/* Tightened title/subtitle spacing */
.app-details h1 {
    font-size: 46px;
    color: #182268;
    margin-bottom: 0px;
    line-height: 1.1;
}

.app-details h3 {
    font-size: 16px;
    color: rgb(33, 54, 238);
    font-weight: 600;
    margin-bottom: 0;
}

/* Small accent divider under the subtitle */
.app-details .divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #B31942, #182268);
    border-radius: 2px;
    margin: 8px 0 14px;
}

.title-dark {
    color: #182268;
}

.title-red {
    color: #B31942;
}

.hero-desc {
    color: #5A6079;
    line-height: 1.7;
    font-size: 15px;
    max-width: 700px;
    margin-top: 4px;
}

/* Bottom row */
.hero-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    border-top: 1px solid #5A6079;
    padding-top: 28px;
    align-items: center;
}

.policy-info h2 {
    color: black;
    font-size: 28px;
    margin-bottom: 12px;
}

.policy-info p {
    color: #5A6079;
    line-height: 1.7;
}

.meta-card {
    max-height: 100px;
    background: #f5f6fb;
    border: 1px solid #d9dce8;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta-card span {
    color: #5A6079;
    font-size: 13px;
    margin-bottom: 8px;
}

.meta-card strong {
    color: #5A6079;
    font-size: 18px;
    font-weight: 700;
}

/* CONTENT */
.container-policy {
    max-width: 1100px;
    margin: -80px auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.content {
    background: white;
    border-radius: 28px;
    padding: 50px 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.section {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
    border-left: 2px solid #e5e7eb;
}

.section h2 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1B2A6E;
}

.section h3 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: #1B2A6E;
}

.section p,
.section li {
    font-size: 15px;
    line-height: 1.9;
    color: #5A6079;
}

ul {
    padding-left: 20px;
    margin-top: 12px;
}

li {
    margin-bottom: 8px;
}

.highlight {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 20px;
    border-radius: 14px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 15px;
    color: #5A6079;
}

.contact-card {
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #dbeafe;
    padding: 30px 30px 25px;
    border-radius: 18px;
}

.contact-card p {
    display: grid;
    grid-template-columns: 90px 15px 1fr;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1.8;
    align-items: start;
    word-break: break-word;
}

.contact-card p strong {
    font-weight: 700;
    color: #111827;
}

.contact-card .colon {
    text-align: center;
    font-weight: 700;
    color: #111827;
}

.contact-card p span:last-child,
.contact-card p a {
    color: #5A6079;
    text-decoration: none;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ===================== RESPONSIVE ===================== */

/* Tablets / small laptops */
@media (max-width: 1024px) {
    .hero-bg {
        padding: 120px 20px 105px !important;
    }

    .hero-card {
        padding: 32px;
    }

    .content {
        padding: 40px 45px;
    }

    .container-policy {
        margin: -60px auto 80px;
    }
}

/* Tablets / large phones (landscape) */
@media (max-width: 768px) {
    .hero-bg {
        padding: 30px 16px 110px;
    }

    .hero-card {
        padding: 28px;
    }

    .hero-app {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .app-icon {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .app-details {
        text-align: center;
    }

    .app-details .divider {
        margin: 8px auto 14px;
    }

    .app-details h1 {
        font-size: 32px;
        margin-bottom: 0;
    }

    .app-details h3 {
        font-size: 15px;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .container-policy {
        margin-top: -50px;
    }

    .content {
        padding: 30px 30px;
    }

    .section h2 {
        font-size: 22px;
    }

    .section h3 {
        font-size: 17px;
    }

    .section p,
    .section li {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card p {
        grid-template-columns: 70px 10px 1fr;
        gap: 6px;
        font-size: 13px;
    }

    .contact-card p strong {
        font-size: 13px;
    }

    .contact-card .colon {
        width: auto;
    }
}

/* Phones */
@media (max-width: 480px) {
    .hero-bg {
        padding: 24px 12px 90px;
    }

    .hero-card {
        padding: 20px;
        border-radius: 20px;
    }

    .badge span {
        font-size: 13px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .app-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 18px;
    }

    .app-details h1 {
        font-size: 26px;
    }

    .app-details h3 {
        font-size: 13px;
    }

    .hero-desc {
        font-size: 14px;
    }

    .policy-info h2 {
        font-size: 22px;
    }

    .meta-card {
        padding: 16px;
    }

    .content {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .section {
        padding-left: 16px;
        margin-bottom: 36px;
    }

    .section h2 {
        font-size: 19px;
    }

    .contact-card p {
        grid-template-columns: 55px 8px 1fr;
        font-size: 12px;
    }
}