:root {
    --gp-teal: #008b8b;
    --gp-teal-dark: #006666;
    --gp-teal-mid: #009090;
    --gp-mint: #e0f7fa;
    --gp-mint-soft: #b2ebf2;
    --gp-text: #1f2a2d;
    --gp-muted: #5c6b70;
    --gp-border: #e4ecee;
    --gp-radius-sm: 8px;
    --gp-radius-md: 12px;
    --gp-radius-lg: 16px;
    --gp-radius-pill: 999px;
    --gp-shadow-card: 0 4px 18px rgba(0, 0, 0, 0.08);
    --gp-max: 1200px;
    --gp-page-pad: 24px;
}

* {
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    margin: 0;
    background: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    color: var(--gp-text);
    font-size: 15px;
    line-height: 1.45;
    overflow-x: hidden;
}

.page {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: none;
}

.container {
    width: min(1280px, calc(100% - var(--gp-page-pad) * 2));
    margin: 0 auto;
}

.hero-stack {
    position: relative;
    overflow: visible;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--gp-border);
}

.topbar-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gp-teal);
}

.brand-mark {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(200px, 46vw);
    object-fit: contain;
}

.top-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gp-border);
    background: #fff;
    font-size: 16px;
    color: #4a6066;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.icon-btn:hover {
    background: #f5f9fa;
}

.mohap-license {
    font-size: 11px;
    color: var(--gp-muted);
    font-weight: 500;
    white-space: nowrap;
    padding: 0 8px;
    display: flex;
    align-items: center;
}

.hero {
    position: relative;
    z-index: 3;
    padding-top: 10px;
    min-height: 267px;
    color: #fff;
    background-color: var(--gp-teal-mid);
}

.hero-separator {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    color: var(--gp-teal-mid);
    pointer-events: none;
}

.hero-separator svg {
    display: block;
    width: 100%;
    height: clamp(80px, 12vw, 160px);
}

.hero-inner {
    position: relative;
    z-index: 3;
    /* min-height: 520px; */
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
    padding: 0;
}

.hero-copy {
    grid-column: 1 / span 6;
    max-width: 100%;
    margin-left: 150px;
}

.hero-people {
    grid-column: 7 / span 6;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    max-height: min(580px, 80vh);
    height: auto;
    align-self: end;
    object-fit: contain;
    object-position: center bottom;
    margin-bottom: clamp(-160px, -3vw, -50px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero p {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    gap: 12px 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gp-radius-sm);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-hero-solid {
    color: var(--gp-teal-mid);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 14px;
    background: rgb(255, 255, 255);
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-hero-outline {
    color: #fff;
    border: none;
    background: transparent;
}

.hero-chat-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    gap: 8px;
    transition: opacity 0.2s;
}

.hero-chat-link:hover {
    opacity: 0.85;
}

.hero-chat-logo {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-stats-grid {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    max-width: fit-content;
}

.hero-stats-item {
    text-align: left;
}

.hero-stats-item strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stats-item span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.stats {
    background: #fff;
    padding: 160px 0 25px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
    margin-top: -28px;
    padding: 1px 0px;
}

.stats strong {
    display: block;
    color: var(--gp-teal);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stats span {
    display: block;
    margin-top: 6px;
    color: var(--gp-teal);
    font-weight: 600;
    font-size: 13px;
    opacity: 0.95;
}

.categories {
    --categories-teal: #0097a7;
    background: #fff;
    padding: clamp(40px, 6vw, 56px) 0 64px;
    margin-top: 5px;
}

.categories h2 {
    text-align: center;
    margin: 58px 0 5px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1120px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.cat-card-media {
    background: #cfe8e8;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-body {
    padding: 24px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card h3 {
    margin: 0;
    color: var(--categories-teal);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.cat-card-hit {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.brands {
    background: #fff;
    padding: 44px 0 48px;
}

.brands h2 {
    text-align: center;
    margin: 0 0 32px;
    color: var(--gp-teal);
    font-size: 24px;
    font-weight: 700;
}

.brand-marquee-viewport {
    width: 100%;
    padding: 4px 0;
}

.brand-marquee-track {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.brand-marquee-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(32px, 6vw, 71px) !important;
    padding: 0 !important;
}

.brand-logo img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
}

.support {
    position: relative;
    padding: 52px 0 60px;
    background-color: #e0f7f9;
    background-size: auto, cover;
    background-position: center;
    overflow: hidden;
}

.support-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: auto;
    opacity: 0.95;
    z-index: 0;
}

.support-decor--left {
    left: 0;
    top: auto;
    bottom: -20px;
    transform: translateY(0);
    width: 200px;
}

.support-decor--right {
    right: 0px;
}

.support-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.support h2 {
    margin: 0 0 10px;
    color: var(--gp-teal);
    font-size: 28px;
    font-weight: 700;
}

.support-tagline {
    margin: 0 auto 36px;
    max-width: 40ch;
    color: var(--gp-teal);
    font-size: 15px;
    font-weight: 500;
}

.support-visual-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.support-visual-link {
    display: block;
    transition: transform 0.3s ease;
}

.support-visual-link:hover {
    transform: scale(1.015);
}

.support-composite-img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
}

.catalog {
    padding: 34px 0 44px;
    background: #fafbfc;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 24px;
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    background: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: minmax(220px, 26%) 1fr;
    gap: 24px;
}

.filters {
    position: sticky;
    top: 40px;
    align-self: start;
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    padding: 24px 28px 32px;
    background: #fff;
}

.filters__trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.filters label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin: 14px 0;
    color: #647481;
    font-weight: 500;
    cursor: pointer;
}

.filters input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #8498a4;
    border-radius: 4px;
}

.filters input[type="checkbox"]:checked {
    background: var(--gp-teal-mid);
    border-color: var(--gp-teal-mid);
}

.products {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card {
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    padding: 12px;
    background: #fff;
    height: 100%;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pimg {
    height: 212px;
    border-radius: var(--gp-radius-sm);
    background-repeat: no-repeat;
    margin-bottom: 12px;
    background-color: #fff;
    border: 1px solid #eaedf0;
    background-size: contain;
    background-position: center;
}

.stars {
    font-size: 12px;
    color: #e6a800;
    margin-bottom: 6px;
}

.product-card h5 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #121c21;
}

.product-card .desc {
    margin: 0 0 12px;
    color: #647481;
    font-size: 12px;
    line-height: 1.45;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #121c21;
}

.cart-fab {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gp-teal-mid);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.promo {
    min-height: 440px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #fff;
}

.promo-copy {
    width: min(1280px, calc(100% - var(--gp-page-pad) * 2));
    margin: 0 auto;
    padding: 0 var(--gp-page-pad);
    max-width: 600px;
    margin-left: max(5%, calc((100% - 1280px)/2 + 24px));
}

.promo h2 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    font-weight: 700;
    max-width: 18ch;
    margin: 0px 0px 12px;
}

.promo p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.96;
    max-width: 42ch;
    margin: 0px 0px 20px;
}

.promo-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--gp-radius-pill);
    padding: 12px 28px;
    text-decoration: none;
}

.promo-catalog-btn:hover {
    background: #fff;
    color: var(--gp-teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newsletter {
    background: #e1f5f7;
    padding: 64px 0 0;
    border-top: 1px solid #d5e9ed;
}

.news-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 56px;
}

.news-actions {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
}

.news-text {
    flex-shrink: 0;
}

.news-text h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #1a2a2d;
}

.news-text .sub {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a2a2d;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 380px;
}

.subscribe-form__field input {
    height: 44px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 10px;
    width: 100%;
    border-radius: var(--gp-radius-pill);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px 24px;
}

.btn-notify {
    height: 48px;
    padding: 0 32px;
    border-radius: var(--gp-radius-pill);
    background: transparent;
    color: var(--gp-teal-mid);
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid var(--gp-teal-mid);
    cursor: pointer;
    width: fit-content;
    transition: all 0.2s;
}

.btn-notify:hover {
    background: var(--gp-teal-mid);
    color: #fff;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.app-links span {
    font-weight: 800;
    color: #1a2a2d;
    font-size: 14px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-badges img {
    height: 40px;
    width: auto;
}

.newsletter-divider {
    border: none;
    border-top: 1px solid #c9dfe3;
    margin: 0;
}

.features-bar {
    padding: 64px 0 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #4a6066;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1a2a2d;
}

.feature-item strong {
    display: block;
    font-weight: 800;
    color: #1a2a2d;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item span {
    color: var(--gp-text);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.footer {
    background: var(--gp-teal-mid);
    color: #fff;
    padding: 24px 0;
}

.footer-inner {
    width: min(1280px, calc(100% - var(--gp-page-pad) * 2));
    margin: 0 auto;
}

.footer-links {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin: 0 4px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-apps {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-apps span {
    font-weight: 700;
    font-size: 13px;
}

.footer-apps img {
    height: 32px;
    width: auto;
    display: block;
}

.is-hidden {
    display: none !important;
}

label.search-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
}

@media (max-width: 900px) {
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 40px;
        gap: 40px;
    }

    .hero-copy {
        margin-bottom: 0px;
        max-width: 100%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .btn-hero-solid {
        width: 100%;
        max-width: 280px;
    }

    .hero-people {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        margin-top: 0px;
    }

    .hero-stats-grid {
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-top: 32px;
        margin-left: 0;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 40px 0;
        text-align: center;
    }

    .stats {
        background: #fff;
        padding: 86px 0 11px;
        position: relative;
        z-index: 1;
    }

    .stats-grid div strong {
        font-size: 24px;
    }

    .stats-grid div span {
        font-size: 10px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .filters {
        display: none !important;
    }

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

    .newsletter-inner {
        flex-direction: column;
        text-align: left;
        padding: 48px var(--gp-page-pad);
    }

    .news-actions {
        width: 100%;
        justify-content: flex-start;
        display: block;
    }

    .subscribe-form,
    .app-links {
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .subscribe-form__field input {
        width: 100%;
    }

    .store-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo {
        min-height: auto;
        text-align: center;
        padding: 60px 20px;
    }

    .promo-copy h2 {
        font-size: 28px;
    }

    .brand-marquee-track {
        width: 100%;
        animation: none;
        justify-content: center;
    }

    .brand-marquee-group {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px !important;
        padding: 0 14px !important;
    }

    .brand-marquee-viewport {
        mask-image: none;
        -webkit-mask-image: none;
        padding: 0;
    }

    .brand-item img, .brand-logo img {
        height: auto;
        max-width: 120px;
        max-height: 40px;
        object-fit: contain;
    }

    h2#catalog-heading {
        text-align: center;
        font-weight: 800;
        font-size: 21px;
        margin: 0 0 8px;
    }

    .support-composite-img {
        width: 100%;
    }

    .support-decor {
        display: none !important;
    }

    .faq-section {
        padding: 48px 0;
    }

    .faq-toggle {
        font-size: 15px;
    }

    .faq-container {
        max-width: 100%;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 64px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaedf0;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-toggle:hover {
    color: var(--gp-teal-mid);
}

.faq-toggle svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gp-teal-mid);
}

.faq-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 16px 0;
    color: #647481;
    font-weight: 500;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer-info {
    background: var(--gp-teal-mid);
    color: #fff;
    padding: 64px 0;
    margin-top: 10px;
}

.info-column-left .footer-info-logo img {
    height: 56px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: flex-start;
}

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
    line-height: 1.5;
}

.info-item-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.info-social strong {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: #fff;
    color: var(--gp-teal-mid);
}

.info-column-middle .info-disclaimer {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.info-disclaimer strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-copy-wrap {
        flex-direction: column;
        text-align: center;
        gap: 32px !important;
    }
    
    .brand-mark {
        display: block;
        height: 36px;
        width: auto;
        max-width: min(200px, 46vw);
        object-fit: contain;
        margin: 0 auto;
    }

    .topbar-inner {
        flex-direction: column;
        gap: 12px;
        padding: 12px var(--gp-page-pad);
        text-align: center;
    }

    .top-icons {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin: 0;
    }

    .mohap-license {
        font-size: 11px;
        padding: 0;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
    }

    .footer-links {
        order: 2;
    }

    .footer-apps {
        order: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats-grid {
        flex-wrap: wrap;
    }
    
    .hero-stats-item {
        flex: 0 0 45%;
    }
    
    .faq-section {
        padding: 40px 0;
    }
 
    .faq-item {
        padding: 16px 0;
    }
 
    .faq-toggle {
        font-size: 14px;
    }
 
    .faq-answer {
        padding: 12px 0;
        font-size: 14px;
    }
}
 
/* ── Lead Generation Popup ── */
.gp-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gp-popup-overlay.show {
    display: flex;
    opacity: 1;
}
.gp-popup-box {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 440px;
    padding: 36px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gpFadeUp 0.3s forwards;
}
.gp-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gp-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.gp-popup-close:hover {
    color: var(--gp-text);
}
.gp-popup-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gp-text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.gp-popup-subtitle {
    font-size: 13px;
    color: var(--gp-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}
.gp-popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gp-popup-input {
    width: 100%;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: var(--gp-text);
}
.gp-popup-input:focus {
    border-color: var(--gp-teal);
    box-shadow: 0 0 0 3px rgba(0, 139, 139, 0.12);
}
.gp-popup-phone-row {
    display: flex;
    gap: 8px;
}
.gp-popup-country-select {
    width: 80px;
    padding: 12px 6px;
    font-family: inherit;
    font-size: 14px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    background: #f7fafb;
    outline: none;
    cursor: pointer;
    text-align: center;
}
.gp-popup-submit {
    background: #1f2a2d;
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    padding: 13px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 6px;
}
.gp-popup-submit:hover {
    background: #0d1214;
}
.gp-popup-submit:active {
    transform: scale(0.98);
}
.gp-popup-privacy {
    font-size: 11px;
    color: var(--gp-muted);
    line-height: 1.4;
    margin-top: 12px;
}
.gp-popup-privacy a {
    color: var(--gp-teal);
    text-decoration: underline;
}

@keyframes gpFadeUp {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

