:root {
    --bg: #f7f9fc;
    --white: #fff;
    --text: #162033;
    --muted: #65738a;
    --line: #e7edf4;
    --soft: #f0f5fb;
    --blue: #1e63c6;
    --blue-soft: #edf4ff;
    --red: #d90f0f;
    --gold: #c89a5b;
    --dark: #0c1422;
    --shadow: 0 18px 50px rgba(18,31,53,.08);
    --shadow-lg: 0 24px 70px rgba(18,31,53,.12);
    --container: min(1280px,92%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg,#fff 0%,#f8fbff 100%);
    overflow-x: hidden;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.container-wide {
    width: min(1500px,96%);
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.section-tight {
    padding: 32px 0;
}

.section-head {
    text-align: center;
    max-width: 830px;
    margin: 0 auto 42px;
}

    .section-head span {
        display: inline-block;
        padding: 9px 14px;
        border-radius: 999px;
        background: #eef4fb;
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 14px;
    }

    .section-head h1, .section-head h2 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 14px;
        font-weight: 900;
    }

    .section-head p {
        font-size: 16px;
        line-height: 1.85;
        color: var(--muted);
    }

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

    .topbar .inner {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .topbar .left, .topbar .right {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

.badge-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
}

.phone {
    font-weight: 800;
    color: #a33d3d;
}

.mini-divider {
    width: 1px;
    height: 18px;
    background: var(--line);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .social-links a {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f3f6fb;
        border: 1px solid var(--line);
        font-size: 12px;
        font-weight: 800;
    }

header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,32,51,.06);
}

.navbar {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    position: relative;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-wrap: nowrap;
}

    .brand-logos img {
        display: block;
        height: 52px;
        width: auto;
        max-width: min(42vw, 220px);
        object-fit: contain;
    }

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #364255;
    min-width: 0;
}

    .menu > li {
        list-style: none;
        position: relative;
    }

        .menu > li > a {
            padding: 8px 0;
            display: block;
            white-space: nowrap;
        }

            .menu > li > a:hover {
                color: var(--blue);
            }

        .menu > li.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s ease;
}

    .dropdown-menu a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        color: #31415a;
        white-space: normal;
    }

        .dropdown-menu a:hover {
            background: var(--soft);
            color: var(--blue);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    margin-left: auto;
    width: 50px;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    box-shadow: var(--shadow);
}

    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--text);
        transition: .25s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 16px;
    padding: 13px 18px;
    font-weight: 800;
    transition: .25s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 34px rgba(30,99,198,.24);
}

    .btn-primary:hover, .btn-outline:hover {
        transform: translateY(-2px);
    }

.btn-light {
    background: #f6f8fb;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-outline {
    background: #fff;
    border: 1px solid #cfe0fb;
    color: var(--blue);
}

.follow-tab {
    position: fixed;
    left: -62px;
    top: 46%;
    transform: rotate(-90deg);
    z-index: 990;
    background: #b21f24;
    color: #fff;
    padding: 13px 20px;
    border-radius: 14px 14px 0 0;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.wp-float {
    position: fixed;
    right: 26px;
    bottom: 24px;
    z-index: 995;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 18px 34px rgba(37,211,102,.32);
}

.wp-panel {
    position: fixed;
    right: 26px;
    bottom: 100px;
    z-index: 994;
    width: 310px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.wp-panel p {
    font-size: 13px;
    line-height: 1.6;
    color: #4a5870;
}

.hero-wrap {
    padding: 24px 0 14px;
    background: linear-gradient(180deg,#fff 0%,#f6faff 100%);
}

.hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0f1b2f;
}

    .hero.with-photo::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--hero-image,linear-gradient(135deg,#10203a,#1e63c6)) center/cover no-repeat;
        filter: brightness(.45) saturate(.95);
        transform: scale(1.02);
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(8,17,32,.66) 0%,rgba(8,17,32,.24) 34%,rgba(8,17,32,.12) 50%,rgba(8,17,32,.24) 66%,rgba(8,17,32,.66) 100%),linear-gradient(180deg,rgba(8,17,32,.1) 0%,rgba(8,17,32,.28) 100%);
    }

.hero-slash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(101deg,transparent 48.5%,rgba(255,255,255,.12) 49.2%,rgba(255,255,255,.98) 50%,rgba(255,255,255,.12) 50.8%,transparent 51.5%);
    opacity: .98;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding: 0;
}

.hero-side {
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 23px 44px 25px;
    position: relative;
}

    .hero-side::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(90deg,rgba(255,255,255,.06),transparent 68%);
    }

    .hero-side.right {
        text-align: right;
        justify-content: flex-end;
    }

        .hero-side.right::before {
            background: linear-gradient(270deg,rgba(255,255,255,.06),transparent 68%);
        }

.hero-card {
    width: min(100%,480px);
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg,rgba(255,255,255,.18),rgba(255,255,255,.12));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 30px;
    padding: 34px 30px;
    box-shadow: 0 24px 50px rgba(6,16,28,.22);
}

.hero-side h1 {
    font-size: 56px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -2.4px;
    margin-bottom: 18px;
}

.hero-side p {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 22px;
    color: #f2f6fb;
}

.hero-list {
    display: grid;
    gap: 12px;
}

    .hero-list div {
        padding: 14px 18px;
        border-radius: 18px;
        background: rgba(255,255,255,.16);
        border: 1px solid rgba(255,255,255,.12);
        font-weight: 800;
        font-size: 17px;
    }

.hero-center-badge {
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    z-index: 3;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    color: var(--blue);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid #dce7f3;
    box-shadow: var(--shadow);
}

.hero-bottom {
    grid-template-columns: 1.25fr .95fr;
    gap: 18px;
    align-items: start;
}

.refs-strip, .action-strip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 18px 20px;
}

    .refs-strip h3 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.1px;
        color: #50617a;
        margin-bottom: 16px;
    }

.refs-marquee {
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.logo-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: scrollRefs 28s linear infinite;
}

.refs-marquee:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scrollRefs {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    width: 180px;
    height: 80px;
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all .25s ease;
}

    /* LOGO */
    .logo-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.8;
        transition: all .25s ease;
    }

    /* HOVER */
    .logo-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    .logo-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

@media (max-width: 768px) {
    .logo-item {
        width: 140px;
        height: 70px;
        padding: 8px 12px;
    }
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.action-btn {
    height: 98px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    box-shadow: var(--shadow);
}

    .action-btn .icon {
        width: 56px;
        height: 56px;
        border: 3px solid rgba(255,255,255,.92);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        flex-shrink: 0;
    }

    .action-btn.blue {
        background: #1258c7;
    }

    .action-btn.red {
        background: #d41207;
    }

    .action-btn.gold {
        background: #c89a5b;
    }

.hero-statbar {
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
}

.hero-stat {
    padding: 22px 20px;
    border-right: 1px solid var(--line);
}

    .hero-stat:last-child {
        border-right: none;
    }

    .hero-stat strong {
        display: block;
        font-size: 30px;
        line-height: 1;
        font-weight: 900;
        color: #13253f;
        margin-bottom: 8px;
    }

    .hero-stat span {
        display: block;
        font-size: 13px;
        line-height: 1.6;
        color: var(--muted);
        font-weight: 600;
    }

.services-grid, .blog-grid, .testimonials, .page-card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.service-card, .blog-card, .t-card, .page-card, .side-panel, .content-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.service-card {
    padding: 28px;
}

    .service-card:hover, .blog-card:hover, .page-card:hover {
        transform: translateY(-6px);
        transition: .25s ease;
    }

    .service-card .tag, .blog-chip, .meta-pill {
        display: inline-block;
        padding: 8px 12px;
        border-radius: 999px;
        background: #edf4ff;
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .service-card h3, .blog-card h3, .page-card h3 {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 12px;
        font-weight: 900;
    }

    .service-card p, .blog-card p, .page-card p, .page-body, .rich-text p {
        font-size: 15px;
        line-height: 1.85;
        color: var(--muted);
    }

.cover-thumb {
    height: 220px;
    background: linear-gradient(135deg,#10203a,#1e63c6);
    border-radius: 22px 22px 0 0;
    background-size: cover;
    background-position: center;
}

.blog-card {
    overflow: hidden;
}

.blog-body {
    padding: 22px;
}

.blog-date {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 10px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
}

.field-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: var(--shadow-lg);
    background: #142742;
}

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

    .field-card .overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: 22px;
        background: linear-gradient(180deg,transparent,rgba(12,20,34,.76));
        color: #fff;
    }

    .field-card h3 {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .field-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #eef3f9;
    }

.corporate-grid, .accredit-grid, .two-col {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
}

.corp-panel, .process-panel, .accredit-card, .offer-band, .cta-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.corp-panel, .process-panel, .accredit-card, .cta-box {
    padding: 30px;
}

    .corp-panel h3, .process-panel h3, .accredit-card h3, .offer-band h3, .cta-box h2, .page-hero h1 {
        font-size: 34px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 14px;
        letter-spacing: -1.2px;
    }

.highlight-list, .accredit-badges {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin-top: 20px;
}

.highlight-item, .accredit-badge, .mini-card {
    background: #fbfdff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}

    .highlight-item strong, .accredit-badge strong, .process-step strong {
        display: block;
        font-size: 16px;
        margin-bottom: 7px;
    }

    .highlight-item span, .accredit-badge span, .process-step span, .muted {
        font-size: 13px;
        line-height: 1.7;
        color: var(--muted);
    }

.process-steps {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: #fbfdff;
    border: 1px solid var(--line);
}

.step-no {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.accredit-side, .dark-panel {
    background: linear-gradient(135deg,#0f213d,#17345e);
    color: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    height:fit-content;
}

    .accredit-side p, .dark-panel p, .cta-box p {
        color: #d7e4f3;
    }

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

    .mini-list div {
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.08);
        font-weight: 700;
        font-size: 14px;
    }

.offer-band {
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

    .offer-band p {
        font-size: 15px;
        line-height: 1.8;
        color: var(--muted);
        max-width: 700px;
    }

.bottom-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-box {
    background: linear-gradient(135deg,#10203a,#172a49);
    color: #fff;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
}

.contact-panel {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 24px;
}

    .contact-panel h3 {
        font-size: 22px;
        margin-bottom: 12px;
        font-weight: 900;
    }

    .contact-panel div {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
        color: #eef4f9;
    }

.page-hero {
    padding: 60px 0 34px;
}

.page-hero-box {
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg,#10203a,#172a49);
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

.page-hero-content {
    padding: 42px;
}

.page-hero-media {
    min-height: 240px;
    background: linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.02));
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    left: 0;
}

    .page-hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(16,32,58,.16),rgba(16,32,58,.44));
    }

.breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #c7d6ea;
    font-weight: 700;
    font-size: 13px;
}

    .breadcrumb a {
        color: #fff;
        opacity: .86;
    }

.title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.sidebar-list {
    display: grid;
    gap: 12px;
}

    .sidebar-list a {
        padding: 14px 16px;
        border-radius: 18px;
        border: 1px solid var(--line);
        background: #fff;
        font-weight: 700;
        color: #31415a;
    }

        .sidebar-list a:hover {
            border-color: #cfe0fb;
            color: var(--blue);
        }

.list-check {
    display: grid;
    gap: 10px;
}

    .list-check li {
        list-style: none;
        position: relative;
        padding-left: 28px;
        color: var(--muted);
        line-height: 1.8;
    }

        .list-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--blue);
            font-weight: 900;
        }

.two-col-article {
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(280px,1fr);
    gap: 26px;
}

.content-box {
    padding: 28px;
}

.rich-text h2, .rich-text h3 {
    font-size: 28px;
    margin: 26px 0 12px;
    letter-spacing: -.8px;
}

.rich-text ul {
    display: grid;
    gap: 10px;
    margin: 14px 0;
}

.rich-text li {
    margin-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.aside-sticky {
    position: sticky;
    top: 110px;
}

footer {
    background: #0f1726;
    color: #dbe5f0;
    padding: 52px 0 26px;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr .9fr;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-brand p, .footer-col a {
    font-size: 14px;
    line-height: 1.9;
    color: #b8c5d4;
}

.footer-col h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 14px;
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 28px;
    padding-top: 18px;
    font-size: 13px;
    color: #9db0c3;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: all .8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: none;
    }

@media (max-width: 1200px) {
    .nav-actions {
        display: none;
    }

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

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

        .field-grid .field-card:first-child {
            grid-column: span 2;
        }

    .footer-grid, .cta-box, .hero-bottom, .two-col, .two-col-article, .page-hero-box, .corporate-grid, .accredit-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        padding: 56px 34px 34px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        min-height: 78px;
        padding: 12px 0;
    }

    .brand-logos {
        gap: 10px;
        overflow: hidden;
    }

        .brand-logos img {
            height: 44px;
            max-width: 40vw;
        }

    .nav-shell {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 1200;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(14px);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

        .nav-shell.open {
            display: flex;
        }

    .menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
    }

        .menu > li > a {
            padding: 14px 14px;
            border-radius: 14px;
            background: #f8fbff;
            border: 1px solid var(--line);
            white-space: normal;
        }

        .menu > li.dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 8px;
        border-radius: 16px;
        display: block;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .nav-actions .btn {
            width: 100%;
        }

    .hero {
        min-height: 700px;
    }

    .hero-overlay {
        grid-template-columns: 1fr;
    }

    .hero-side, .hero-side.right {
        text-align: left;
        justify-content: flex-start;
        padding: 34px 24px;
    }

    .hero-center-badge {
        top: 18px;
    }

    .action-buttons, .services-grid, .testimonials, .blog-grid, .field-grid, .page-card-grid, .highlight-list, .accredit-badges, .hero-bottom {
        grid-template-columns: 1fr;
    }

    .hero-statbar {
        grid-template-columns: 1fr 1fr;
    }

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

    .offer-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .wp-panel, .follow-tab {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 100%);
    }

    .topbar .inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
    }

    .topbar .right, .topbar .left {
        width: 100%;
        gap: 10px;
    }

    .navbar {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand-logos {
        gap: 8px;
    }

        .brand-logos img {
            height: 36px;
            max-width: 38vw;
        }

    .nav-shell {
        padding: 14px;
        border-radius: 20px;
    }

    .nav-actions {
        grid-template-columns: 1fr;
    }

    .hero-side h1, .section-head h1, .section-head h2, .page-hero h1 {
        font-size: 34px;
        line-height: 1.02;
    }

    .hero {
        min-height: 760px;
    }

    .hero-statbar, .footer-grid {
        grid-template-columns: 1fr;
    }

    .action-btn {
        height: auto;
        min-height: 88px;
        font-size: 16px;
    }

        .action-btn .icon {
            width: 46px;
            height: 46px;
            font-size: 20px;
        }

    .page-hero-content {
        padding: 28px 20px;
    }

    .page-hero-media {
        min-height: 180px;
    }

    .content-box, .corp-panel, .process-panel, .accredit-card, .cta-box, .offer-band {
        padding: 22px 18px;
    }

    .wp-float {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 420px) {
    .brand-logos img {
        height: 32px;
        max-width: 34vw;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .hero-card {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .hero-side p, .page-body, .rich-text p {
        font-size: 14px;
        line-height: 1.75;
    }
}

.blog-article {
    line-height: 1.85;
}

    .blog-article > :first-child {
        margin-top: 0;
    }

    .blog-article h1, .blog-article h2, .blog-article h3, .blog-article h4 {
        color: #14233b;
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -.03em;
    }

    .blog-article h2 {
        font-size: 34px;
        margin: 30px 0 14px;
    }

    .blog-article h3 {
        font-size: 26px;
        margin: 24px 0 12px;
    }

    .blog-article p {
        margin: 14px 0;
        color: var(--muted);
        font-size: 17px;
    }

    .blog-article ul, .blog-article ol {
        margin: 16px 0 16px 22px;
        display: block;
    }

    .blog-article li {
        margin: 8px 0;
        color: var(--muted);
    }

    .blog-article blockquote {
        margin: 24px 0;
        padding: 18px 22px;
        border-left: 4px solid var(--blue);
        background: #f7fbff;
        border-radius: 0 18px 18px 0;
        color: #31415a;
        font-weight: 600;
    }

    .blog-article img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        border: 1px solid var(--line);
        margin: 22px 0;
        box-shadow: var(--shadow-lg);
    }

    .blog-article table {
        width: 100%;
        border-collapse: collapse;
        margin: 24px 0;
        overflow: hidden;
        border-radius: 18px;
        border: 1px solid var(--line);
    }

        .blog-article table th, .blog-article table td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--line);
            text-align: left;
        }

    .blog-article a {
        color: var(--blue);
        font-weight: 700;
    }

    .blog-article hr {
        border: none;
        border-top: 1px solid var(--line);
        margin: 28px 0;
    }

    .blog-article figure.table {
        overflow: auto;
    }


.wp-panel {
    position: relative;
}

.wp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    background: #fff;
    color: #516177;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

    .wp-close:hover {
        background: #f3f6fb;
        color: var(--text);
    }
