:root {
    --bg: #f7f9fc;
    --fg: #15243d;
    --card: #fff;
    --primary: #1464c9;
    --primary-dark: #0d4fa7;
    --secondary: #edf4fc;
    --muted: #607086;
    --border: #dbe4ef;
    --danger: #b42318;
    --radius: 14px;
    --shadow: 0 18px 45px rgba(20, 100, 201, .11)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: auto
}

.narrow {
    max-width: 820px
}

.disclosure {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 650
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 249, 252, .96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px)
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: var(--primary);
    color: #fff
}

.nav nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted)
}

.nav nav a:hover,
.footer-grid a:hover {
    color: var(--primary)
}

.search-link {
    font-size: 25px
}

.menu {
    display: none;
    border: 0;
    background: transparent;
    font-weight: 700
}

.page-hero {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 54px 0
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 52px);
    line-height: 1.08;
    margin: 8px 0 0;
    max-width: 760px
}

.eyebrow {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 20px 0 0
}

.content {
    padding: 44px 0 70px
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px
}

.breadcrumbs strong {
    color: var(--fg)
}

.hero {
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 74px 0 82px
}

.pill {
    display: inline-block;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: #fff;
    padding: 7px 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800
}

.hero h1 {
    font-size: clamp(40px, 7vw, 64px);
    line-height: 1.05;
    max-width: 850px;
    margin: 22px auto
}

.hero h1 span {
    color: var(--primary)
}

.hero .lead {
    margin: 0 auto
}

.search-form {
    display: flex;
    max-width: 680px;
    margin: 34px auto 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow)
}

.search-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 13px;
    outline: 0
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    padding: 11px 18px;
    font-weight: 750;
    cursor: pointer
}

.button:hover {
    background: var(--primary-dark)
}

.button.outline {
    background: #fff;
    color: var(--fg);
    border-color: var(--border)
}

.trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
    margin-top: 22px
}

.section {
    padding: 58px 0
}

.section.alt {
    background: var(--secondary)
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px
}

.section h2 {
    font-size: 30px;
    margin: 4px 0
}

.grid {
    display: grid;
    gap: 16px
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr)
}

.cards-2 {
    grid-template-columns: repeat(2, 1fr)
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px
}

.card:hover {
    border-color: #8eb8e9
}

.company-card {
    display: flex;
    gap: 16px;
    align-items: center
}

.initials {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 800
}

.muted {
    color: var(--muted)
}

.small {
    font-size: 14px
}

.directory-filters {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 12px;
    margin-bottom: 26px
}

.field {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 13px 15px;
    outline: none
}

.field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 100, 201, .12)
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px
}

.pagination a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fff;
    font-weight: 700
}

.pagination a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 44px
}

.detail-grid h1 {
    font-size: clamp(38px, 6vw, 54px);
    line-height: 1.08;
    margin: 9px 0
}

.notice {
    display: flex;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--secondary);
    padding: 16px;
    margin-top: 28px
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.detail-section {
    margin-top: 44px
}

.faq-list {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    padding: 0 22px
}

.faq-list details {
    padding: 19px 0;
    border-bottom: 1px solid var(--border)
}

.faq-list details:last-child {
    border: 0
}

.faq-list summary {
    font-weight: 750;
    cursor: pointer
}

.aside {
    position: sticky;
    top: 94px;
    height: max-content
}

.contact-item {
    display: block;
    margin: 18px 0
}

.contact-item small {
    display: block;
    color: var(--muted)
}

.legal section {
    margin-bottom: 34px
}

.legal h2 {
    font-size: 20px;
    margin-bottom: 8px
}

.form-card {
    max-width: 820px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-card label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 18px
}

.checkbox {
    display: flex !important;
    gap: 10px;
    align-items: flex-start
}

.status {
    border-radius: 11px;
    padding: 13px;
    margin-top: 18px
}

.success {
    background: #e7f7ee;
    color: #146c3a
}

.error {
    background: #fff0ef;
    color: var(--danger)
}

footer {
    margin-top: 70px;
    border-top: 1px solid var(--border);
    background: var(--secondary)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
    padding: 45px 0
}

.footer-grid p {
    max-width: 470px;
    color: var(--muted);
    font-size: 14px
}

.footer-grid h2 {
    font-size: 14px
}

.footer-grid>div>a,
.link-button {
    display: block;
    margin: 8px 0;
    color: var(--muted);
    font-size: 14px
}

.link-button {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding: 18px;
    font-size: 12px;
    color: var(--muted)
}

.consent {
    position: fixed;
    z-index: 50;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 760px;
    margin: auto;
    display: flex;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .18)
}

.consent[hidden] {
    display: none
}

.consent p {
    font-size: 14px;
    color: var(--muted);
    margin: 6px 0
}

.consent-actions {
    display: flex;
    gap: 8px
}

.center {
    text-align: center
}

@media(max-width:800px) {
    .menu {
        display: block
    }

    .search-link {
        display: none
    }

    .nav nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        flex-direction: column;
        gap: 6px
    }

    .nav nav.open {
        display: flex
    }

    .nav nav a {
        padding: 10px
    }

    .cards-3,
    .cards-2,
    .detail-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .directory-filters,
    .form-row {
        grid-template-columns: 1fr
    }

    .aside {
        position: static
    }

    .support-grid {
        grid-template-columns: 1fr
    }

    .consent {
        display: block
    }

    .consent-actions {
        margin-top: 14px
    }

    .hero {
        padding: 56px 0
    }

    .section {
        padding: 44px 0
    }
}
.page-popup{
    position:fixed;
    inset:0;
    z-index:9999;

    display:grid;
    place-items:center;

    padding:20px;

    background:rgba(22,40,74,.18);

    visibility:hidden;
    opacity:0;
    pointer-events:none;

    transition:.3s;
}

.page-popup.open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
}

.page-popup-backdrop{
    position:absolute;
    inset:0;
    background:rgba(22,40,74,.18);
}

.page-popup-panel{
    position:relative;
    z-index:2;

    /* width chhoti ki */
    width:min(420px,92%);

    background:#ffffff;

    border-radius:24px;

    padding:28px 24px;

    border:1px solid #d9e4f3;

    box-shadow:
        0 20px 60px rgba(27,56,106,.12);

    text-align:center;
}

.page-popup-close{
    position:absolute;

    top:14px;
    right:14px;

    width:34px;
    height:34px;

    border:none;

    border-radius:50%;

    background:#edf3fb;

    color:#42608f;

    cursor:pointer;

    display:grid;
    place-items:center;

    font-size:18px;
}

.page-popup-icon{
    width:74px;
    height:74px;

    margin:auto;

    border-radius:50%;

    background:#2563eb;

    color:white;

    display:grid;
    place-items:center;

    font-size:30px;

    box-shadow:
        0 12px 35px rgba(37,99,235,.25);
}

.page-popup-content h2{
    margin:18px 0 10px;

    font-size:30px;

    color:#16274a;

    line-height:1.2;
}

.page-popup-content p{
    color:#667085;

    font-size:16px;

    line-height:1.6;

    margin-bottom:22px;
}

.page-popup-button{
    width:100%;

    padding:15px;

    border:none;

    border-radius:16px;

    background:#2563eb;

    color:white;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.page-popup-button:hover{
    transform:translateY(-2px);

    background:#1d4ed8;
}

.page-popup-later{
    margin-top:14px;

    background:none;

    border:none;

    color:#7485a3;

    cursor:pointer;

    font-size:14px;
}

@media(max-width:640px){

    .page-popup-panel{
        width:95%;
        padding:22px;
    }

    .page-popup-content h2{
        font-size:24px;
    }

}