/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html,
body,
blockquote {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #333;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    color: #f37c20;
    text-decoration: none;
    outline: none;
}

img {
    border: 0;
    display: block;
    max-width: 100%;
    -ms-interpolation-mode: bicubic;
}

h1, h2, h3 {
    margin: 0;
    padding: 5px 0;
}

:root {
    --blue: #2D87C4;
    --blue-bg: #1A3C6E;
    --gray-bg: #f8f9fc;
    --navy: #09436A;
    --navy-dark: #132d52;
    --orange: #F57C20;
    --light-blue: #B8CFE9;
    --white: #fff;
    --subtitle-blue: #8BA8CC;
    --text-body: #444;
    --text-dark: #1a1a2e;
    --text-gray: #748D9E;
    --text-light: #666;
    --text-light-gray: #7E96A6;
    --border: #DBDBDB;
    --bg-blue: #F2F8FB;
    --bg-category: #FFEFE3;
    --section-label-color: #F47920;
    --gradient-navy: linear-gradient(-87deg, #09436A 0%, #084697 86%);
}

/* --- HEADER --- */
#header {
    position: fixed;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 0 0 35px;
    transition: background-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
    justify-content: space-between;
    padding-right: 40px;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    opacity: 0.8;
    display: none; /* comment this to enable sticky header */
}

#header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

#header nav a {
    color: var(--navy);
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

#header nav a.active, #header nav a:hover {
    color: var(--orange);
}

#header .header-right {
    display: flex;
    height: 55px;
    align-items: stretch;
}

#header .header-right button,
#header .header-right .btn,
#header .header-right a {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    vertical-align: middle;
}

#header .header-right .btn-newsletter span {
    text-transform: none;
}

.logo {
    height: 48px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.btn-newsletter {
    background-color: #09436A;
    color: #fff;
    padding: 0 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
    margin: 15px 0;
    font-weight: 600;
}

.btn-newsletter:hover {
    background-color: #062f4a;
}

.btn-newsletter span {
    font-size: 12px;
}

.btn-contact-header {
    background-color: #F57C20;
    color: #fff;
    padding: 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
    margin: 15px 50px 15px 0;
}

.btn-contact-header:hover {
    background-color: #e06a10;
}

.btn-contact-header a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* --- HERO SECTION --- */
#hero-section {
    margin-top: 0;
    padding-top: 0;
    line-height: 0;
}

.hero-main {
    display: flex;
    height: 668px;
    align-items: stretch;
}

.hero-left {
    width: 55%;
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5)), url(/images/top/hero_10.png) no-repeat left center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    padding-top: 90px;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.hero-title h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 59px;
    line-height: 1.1;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title img {
    width: 100%;
    max-width: 580px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px;
}

.hero-subtitle img {
    width: 100%;
    max-width: 500px;
}

.hero-right {
    width: 45%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 1fr;
    background: rgba(255, 255, 255, .9);
    overflow: hidden;
    align-self: stretch;
}

.hero-right .grid-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.hero-right .img-1 {
    grid-column: 1 / 3;
    grid-row: 1;
}

.hero-right .img-2 {
    grid-column: 1;
    grid-row: 2;
}

.hero-right .img-3 {
    grid-column: 2;
    grid-row: 2;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1.01);
}

.bottom-row {
    display: flex;
    height: 400px;
}

.bottom-row .bottom-item {
    flex: 1;
    overflow: hidden;
}

.bottom-row .bottom-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SECTION COMMON --- */
.section-wrap {
    padding: 80px 0;
}

.section-inner {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 100px;
}

.section-eyebrow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 28px;
}

.section-vline {
    width: 1px;
    height: 120px;
    background: var(--blue);
    border-radius: 2px;
    margin-right: 0;
    flex-shrink: 0;
}

.section-heading-block {
    padding-left: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 1;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
}

.section-h2.white-text {
    -webkit-text-fill-color: #fff;
    background: none;
    color: #fff;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--subtitle-blue);
    margin: 4px 0 0 0;
}

.section-lead {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
    margin-top: 10px;
    max-width: 580px;
}

.section-lead.light {
    color: var(--light-blue);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.btn-view {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 12px 80px;
    border-radius: 40px;
    margin-top: 40px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
    text-transform: capitalize;
}

.btn-view:visited,
.btn-view:active,
.btn-view:focus {
    color: #fff;
    text-decoration: none;
}

.btn-view:hover {
    background: #e06a10;
    color: #fff;
    text-decoration: none;
}

/* --- WHY US --- */
#whyus {
    background: var(--navy);
    padding: 80px 0;
}

#whyus .section-h2 {
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    margin-bottom: 0;
}

#whyus .section-subtitle {
    color: var(--subtitle-blue);
}

#whyus .section-lead {
    color: var(--light-blue);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 15px;
    margin-top: 36px;
}

.why-card {
    background: #0E3D5F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.why-card .card-img {
    height: 220px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.why-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.why-card:hover .card-img img {
    transform: scale(1.04);
}

.why-card .card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.why-card .card-num {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--subtitle-blue);
    line-height: 1;
    margin-bottom: 12px;
}

.why-card .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 12px;
}

.why-card .card-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--light-blue);
    flex: 1;
}

/* --- SERVICES --- */
#services {
    background: linear-gradient(to bottom, #FFF8F3, #F7FCFF);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.service-card {
    cursor: pointer;
    text-align: center;
}

.service-card .img-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 165px;
    background: #f0f4f7;
    position: relative;
}

.service-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .img-wrap img {
    transform: scale(1.05);
}

.service-card .service-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: -1px;
    margin-top: 9px;
}

/* --- NATIONWIDE --- */
#nationwide {
    background: linear-gradient(to bottom, #F7FCFF, #F7FCFF 50%, #FFF8F3);
    padding: 19px 0 0;
}

#nationwide .map-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#nationwide .map-left {
    flex: 0 0 450px;
}

#nationwide .map-left .about-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 37px;
    line-height: 1.3;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    color: var(--navy);
}

#nationwide .map-left .about-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

#nationwide .map-toggle {
    display: inline-flex;
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: 40px;
    overflow: hidden;
    width: fit-content;
    background: #fff;
}

#nationwide .toggle-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 26px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

#nationwide .toggle-btn + .toggle-btn {
    border-left: 1px solid var(--border);
}

#nationwide .toggle-btn.active {
    background: var(--orange);
    color: #fff;
}

#nationwide .toggle-btn.active:hover {
    background: #e06a10;
}

#nationwide .toggle-btn:not(.active) {
    background: #fff;
    color: #acacac;
}

#nationwide .toggle-btn:hover:not(.active) {
    background: #f5f5f5;
    color: var(--text-gray);
}

#nationwide .map-right {
    flex: 1;
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nationwide .map-right img.map-bg {
    width: 520px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* --- CLIENTS --- */
.clients {
    background: #fff;
    overflow: hidden;
}

/* --- REPORT --- */
#report {
    background: linear-gradient(to bottom, #F7FCFF, #FFF8F3);
    padding: 80px 0 100px;
}

.report-eyebrow {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.report-vline {
    width: 1px;
    min-height: 90px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
    margin-right: 0;
    margin-top: 8px;
}

.report-heading-block {
    padding-left: 16px;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.report-h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 1;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.report-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--subtitle-blue);
}

.report-lead {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin: 8px 0 20px;
}

.report-latest-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    margin: 30px 0 16px;
}

.report-latest-label::before {
    content: "";
    width: 18px;
    height: 4px;
    background: var(--subtitle-blue);
    border-radius: 2px;
}

.report-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.report-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

.report-card:hover {
    box-shadow: 0 8px 30px rgba(9, 67, 106, 0.12);
    transform: translateY(-3px);
}

.report-card .rc-img {
    height: 165px;
    overflow: hidden;
}

.report-card .rc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.report-card:hover .rc-img img {
    transform: scale(1.04);
}

.report-card .rc-body {
    padding: 12px 14px 16px;
}

.rc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.rc-category {
    background: var(--bg-category);
    color: var(--orange);
    font-weight: 600;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
}

.rc-date {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #9d9d9d;
}

.rc-title a {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.45;
}

.rc-excerpt {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #333;
    line-height: 1.55;
    margin: 6px 0;
}

/* --- WHITEPAPER --- */
#whitepaper {
    background: linear-gradient(to bottom, #FFF8F3, #F7FCFF);
    padding: 80px 0 40px;
}

.wp-header {
    text-align: center;
    margin-bottom: 40px;
}

.wp-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 43px;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 10px 0 0;
}

.wp-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--subtitle-blue);
}

.wp-line {
    border-bottom: 2px solid #2D87C4;
    margin: 25px auto;
    width: 30px;
}

.wp-lead {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}

.wp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
}

.wp-card:hover {
    box-shadow: 0 8px 30px rgba(9, 67, 106, 0.12);
    transform: translateY(-3px);
}

.wp-card .wc-img {
    height: 180px;
    overflow: hidden;
}

.wp-card .wc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.wp-card:hover .wc-img img {
    transform: scale(1.04);
}

.wp-card .wc-body {
    padding: 14px;
}

.wc-cat {
    display: inline-block;
    background: var(--bg-category);
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.wc-date {
    float: right;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: #9d9d9d;
}

.wc-title a {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 6px;
}

/* --- CAPABILITIES --- */
#capabilities {
    background: linear-gradient(to bottom, #F7FCFF, #FFF8F3);
    padding: 50px 0 100px;
}

.cap-header {
    text-align: center;
    margin-bottom: 50px;
}

.cap-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 43px;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 10px 0 0;
}

.cap-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--subtitle-blue);
}

.cap-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cap-card {
    background: var(--gradient-navy);
    border-radius: 15px;
    cursor: pointer;
    padding: 30px 34px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.cap-card .cap-card-img {
    position: absolute;
    right: 3em;
    top: 50px;
    width: 35%;
    height: 50%;
}

.cap-card .cap-card-body {
    position: relative;
    z-index: 1;
    max-width: 55%;
}

.cap-card .cap-card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.cap-card .cap-card-text {
    font-weight: 400;
    font-size: 13px;
    color: var(--light-blue);
    line-height: 1.65;
    width: 97%;
}

/* --- NEWSLETTER BANNER --- */
#newsletter {
    background: var(--gradient-navy);
    padding: 50px 0;
}

#newsletter .nl-inner {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#newsletter .nl-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

#newsletter .nl-icon {
    font-size: 22px;
    color: var(--subtitle-blue);
}

#newsletter .nl-eyebrow {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    font-weight: 700;
    font-size: 10px;
    color: var(--subtitle-blue);
    margin-bottom: 4px;
}

#newsletter .nl-eyebrow span {
    text-transform: uppercase;
}

#newsletter .nl-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3em;
}

/* --- CONTACT BAND --- */
.contact-band {
    background: var(--gradient-navy);
    padding: 50px 0;
}

.cb-inner {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.cb-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cb-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.cb-eyebrow {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    font-weight: 700;
    font-size: 10px;
    color: var(--subtitle-blue);
    margin-bottom: 8px;
}

.cb-eyebrow span {
    text-transform: uppercase;
}

.cb-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.cb-text {
    font-weight: 400;
    font-size: 14px;
    color: var(--light-blue);
    line-height: 1.65;
}

.cb-text:not(:empty) {
    margin-bottom: 28px;
}

.btn-orange-lg,
.btn-orange-lg:visited,
.btn-orange-lg:active,
.btn-orange-lg:focus {
    align-self: flex-start;
    background: var(--orange);
    border-radius: 40px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    padding: 15px 125px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-orange-lg:hover {
    background: #e06a10;
    color: #fff;
}

/* --- RESPONSIVE --- */
/* ── 1600px+: large desktop / 27" ── */
@media (min-width: 1600px) {
    .hero-subtitle {
        font-size: 16px;
    }

    .hero-left {
        padding-left: 120px;
    }
}

/* ── 1366px: small desktop / laptop ── */
@media (max-width: 1366px) {
    #header {
        padding-left: 20px;
        padding-right: 20px;
    }

    #header nav {
        gap: 20px;
    }

    .mega-content {
        width: auto;
    }

    .hero-left {
        padding-left: 60px;
        padding-top: 32px;
    }

    .hero-title h1 {
        font-size: 42px;
    }

    .section-inner {
        padding: 0 50px;
    }
}

/* ── 992px+: tablet ── */
@media (max-width: 1024px) {
    #header .header-right {
        display: none;
    }
}

@media (max-width: 992px) {
    #header .header-right {
        display: none;
    }

    .section-inner {
        padding: 0 24px;
    }

    .section-h2,
    .report-h2 {
        font-size: 48px;
    }

    .why-cards,
    .service-grid,
    .report-cards,
    .wp-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .cap-cards {
        grid-template-columns: 1fr;
    }

    .hero-main {
        height: auto;
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        padding: 120px 24px 60px;
    }

    .hero-right {
        width: 100%;
        height: 400px;
    }

    .bottom-row {
        height: 200px;
    }

    #nationwide {
        padding: 50px 0;
    }

    #newsletter .nl-inner {
        flex-direction: column;
        text-align: center;
    }

    .cb-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cb-divider {
        width: 100%;
        height: 1px;
    }

    #header {
        padding: 0 15px;
    }

    #header nav {
        gap: 15px;
    }

    .logo {
        align-items: center;
        display: flex;
        margin-left: -5px;
    }

    .logo img {
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        max-width: 100% !important;
    }

    .mega-content {
        width: calc(100vw - 55vw);
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .mega-inner {
        max-height: 70vh;
        overflow-y: auto;
        padding: 5px 25px;
    }

    .mega-row {
        flex-direction: column;
    }

    .mega-col {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .lang-selector .mega-content {
        width: 140px;
        left: 0 !important;
        transform: none !important;
    }

    .hero-main {
        height: auto;
        flex-direction: column;
    }

    .hero-left {
        width: 100%;
        padding: 100px 24px 48px;
    }

    .hero-title h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-right {
        height: 220px;
        width: 100%;
        grid-template-rows: 220px 180px;
    }

    .hero-right .img-3 {
        display: none;
    }

    .hero-right .img-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-right .img-1 {
        grid-column: 1;
        grid-row: 1;
    }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
    .logo-row,
    .logo-marquee,
    .subscribe_fix,
    .banner_top_main,
    .div_industory,
    .div_research_solution,
    .div_research_solution_left,
    .div_industory_left {
        max-width: 100vw;
    }

    .mega-list li a:hover {
        transform: none;
    }

    .mega-content,
    .modal {
        -webkit-overflow-scrolling: touch;
    }

    .section-h2,
    .report-h2 {
        font-size: 36px;
    }

    .why-cards,
    .service-grid,
    .report-cards,
    .wp-cards {
        grid-template-columns: 1fr;
    }

    .why-card .card-img {
        height: 165px;
    }

    .section-wrap {
        padding: 50px 0;
    }

    #nationwide .map-section {
        flex-direction: column;
    }

    #nationwide .map-left {
        flex: none;
        width: 100%;
    }

    .hero-right {
        height: 300px;
    }

    .bottom-row {
        height: 150px;
    }

    .hero-title h1 {
        font-size: 32px;
    }

    .hero-left {
        padding: 120px 20px 40px;
    }

    .hero-right {
        height: 240px;
        grid-template-columns: 1fr;
        grid-template-rows: 240px;
    }

    .hero-right .img-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-right .img-2 {
        display: none;
    }

    .services h2,
    #nationwide h2,
    .clients h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .main-nav {
        display: none;
    }

    .logo img {
        height: 30px;
    }
}

/* ── 480px: small phone ── */
@media (max-width: 480px) {
    .nav-item, #header .header-right {
        display: none;
    }

    .hero-title h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-left {
        padding: 100px 16px 36px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 20px;
    }

    #whyus, #nationwide, #report, #whitepaper {
        padding: 60px 0;
    }

    #newsletter .nl-inner, .cb-inner {
        gap: 20px;
        padding: 0 20px;
        text-align: left;
    }

    #capabilities {
        padding: 0 0 60px;
    }

    .cap-h2 {
        font-size: 41px;
    }

    .cap-card {
        padding: 20px 30px;
    }

    .cap-card .cap-card-img {
        right: 2em;
    }

    .cb-half {
        width: 100%;
    }

    .btn-orange-lg,
    .btn-orange-lg:visited,
    .btn-orange-lg:active,
    .btn-orange-lg:focus {
        width: 100%;
    }
}
