:root {
    /* Accessible, brand‑aligned palette (coral + blush, strong contrast) */
    --primary: #F5BC00; /* CTA coral */
    --primary-hover: #f5ac00; /* hover coral */
    --ok: #22c55e; /* online indicator green */
    --text: #121316; /* main text */
    --muted: #6b6f76; /* secondary text */
    --surface: #ffffff; /* cards/base */
    --tint: #fef7de; /* blush section bg */
    --tint-2: rgb(254, 241, 199); /* subtle accent line */
    --footer: #101214; /* high-contrast footer */
    --radius: 16px;
    --shadow: 0 6px 28px rgba(17, 19, 22, 0.08);
    --ring: 0 0 0 3px rgba(255, 107, 107, 0.18);
    --container: 1080px;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    background: var(--surface);
    color: var(--text);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Ubuntu,
        Cantarell,
        "Helvetica Neue",
        Arial,
        sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img {
    height: 28px;
}
.brand h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.tagline {
    font-weight: 600;
    color: var(--muted);
    font-size: 14px;
}

/* Hero */
.hero {
    padding: 36px 0;
}
.hero-inner {
    display: grid;
    gap: 24px;
}
.headline {
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 10px;
}
.headline span {
    color: var(--primary);
}
.sub {
    color: var(--muted);
    font-size: clamp(15px, 2.2vw, 18px);
    margin: 0 0 20px;
}
.media-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}
.media-card img {
    width: 100%;
    display: block;
    height: auto;
}
.qualify {
    margin-top: 14px;
    text-align: center;
}
.q {
    color: var(--primary-hover);
    font-weight: 800;
    font-size: clamp(18px, 2.4vw, 22px);
    margin: 12px 0;
}

.btns {
    display: grid;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
}
.btn {
    display: inline-block;
    text-decoration: none !important;
    text-align: center;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        transform 0.04s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    box-shadow: var(--shadow);
    font-size: 15px;
}
.btn:focus-visible {
    outline: none;
    box-shadow: var(--shadow), var(--ring);
}
.btn:active {
    transform: translateY(1px);
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-hover);
}
.btn-secondary {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background: var(--tint);
}

/* Features */
.features {
    background: var(--tint);
    padding: 32px 0;
    border-top: 1px solid var(--tint-2);
    border-bottom: 1px solid var(--tint-2);
}
.features h2 {
    font-size: clamp(20px, 2.6vw, 28px);
    margin: 0 0 18px;
    text-align: center;
}
.bullets {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.bullet {
    background: var(--surface);
    padding: 14px;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--shadow);
}
.icon {
    font-size: 20px;
    line-height: 1.1;
}

/* Gallery */
.gallery {
    padding: 34px 0;
}
.gallery h2 {
    text-align: center;
    margin: 0 0 8px;
    font-size: clamp(20px, 2.6vw, 28px);
}
.gallery p {
    text-align: center;
    color: var(--muted);
    margin: 0 0 18px;
}
.grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}
.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.name {
    padding: 8px 10px;
    font-weight: 700;
}
.online-badge {
    position: absolute;
    top: 136px;
    right: 8px;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    box-shadow: var(--shadow);
    font-size: 12px;
    font-weight: 800;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ok);
}

/* Footer */
.footer {
    background: var(--footer);
    color: #fff;
    text-align: center;
    padding: 36px 0;
    margin-top: 36px;
}
.footer h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 2.6vw, 26px);
}
.footer p {
    margin: 0 0 16px;
    color: #d7dde3;
}

/* Desktop layout */
@media (min-width: 900px) {
    .hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }
}

/* Modals */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: saturate(120%) blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 16px;
}
.modal {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.modal-header {
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
    font-size: 18px;
}
.modal-body {
    padding: 16px 18px;
    color: var(--text);
}
.modal-actions {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.modal .btn {
    width: 100%;
}
.modal-small {
    width: min(420px, 100%);
}
/* Progress bar */
.progress {
    height: 6px;
    background: #f1f2f4;
}
.progress-bar {
    height: 100%;
    background: var(--primary);
    transition: width 0.9s ease;
}

@media screen and (max-width: 767px) {
    .header-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
    .header-inner .brand img {
        width: 180px;
        height: auto;
    }
}

#pmImg {
    max-height: 350px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}



.footer_secondary {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.footer_secondary .footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
}
.footer_secondary .footer__link {
    text-align: center;
    text-decoration: none !important;
    color: #777;
    font-size: 14px;
}

ul {
    padding-left: 0;
}