/* --- 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;
}

/* --- CSS VARIABLES --- */
: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;
    top: 15px;
    left: 0;
    right: 0;
    height: 75px;
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 0 0 50px;
    transition: background-color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

#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: 40px;
}

#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:hover {
    color: var(--orange);
}

.logo {
    height: 48px;
    margin-right: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- HERO SECTION --- */
#hero-section {
    margin-top: 0;
    padding-top: 0;
    line-height: 0;
}

.hero-main {
    display: flex;
    height: 103vh;
    min-height: 600px;
    align-items: stretch;
    margin-top: 0;
}

.hero-left {
    width: 55%;
    position: relative;
    background: url('/images/lp/hero_10.png') no-repeat center 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: 640px;
}

.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-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-stats {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-height: 150px;
    margin-top: 42px;
    margin-bottom: 38px;
    padding: 18px 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(9, 67, 106, .06), inset 0 1px 0 rgba(255, 255, 255, .45);
    opacity: .8;
}

.hero-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, .22) 0%,
            rgba(255, 255, 255, .06) 100%
    );
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: auto;
}

.stat-num {
    display: flex;
    align-items: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: .95;
    color: #0A4974;
}

.stat-num span {
    display: inline-block;
    margin-left: 2px;
    font-family: 'Open Sans', sans-serif;
    font-size: .95em;
    font-weight: 700;
    line-height: 0.8;
    color: #F57C20;
    transform: translateY(2px);
}

.stat-label {
    margin-top: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #7C97AC;
}

.stat-divider {
    position: relative;
    width: 1px;
    margin: -6px 6px;
    background: linear-gradient(
            to bottom,
            rgba(9, 67, 106, 0) 0%,
            rgba(9, 67, 106, .12) 15%,
            rgba(9, 67, 106, .12) 85%,
            rgba(9, 67, 106, 0) 100%
    );
}

a.hero-btn-link {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-decoration: none;
}

a.hero-btn-link:hover, a.hero-btn-link:focus {
    color: #fff;
}

.hero-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 25.5px 36px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background .2s;
    width: 100%;
}

.hero-btn:hover {
    background: #d96a12;
}

.hero-right {
    width: 45%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 255px 255px 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-4 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1.01);
}

/* --- 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;
}

.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;
}

.section-lead.light {
    color: var(--light-blue);
}

.section-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--orange);
    margin-bottom: 8px;
    padding-top: 4px;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* --- WHY US --- */
#whyus {
    background: var(--navy);
    padding: 80px 0;
}

#whyus .section-h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.18;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background: none;
    margin-bottom: 0;
}

#whyus .section-eyebrow {
    display: block;
    margin-bottom: 0;
}

#whyus .section-vline {
    display: none;
}

#whyus .section-heading-block {
    padding-left: 0;
}

#whyus .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 14px;
}

#whyus .section-subtitle {
    order: -1;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--orange);
    margin: 0 0 9px 0;
}

#whyus .section-lead {
    color: var(--light-blue);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    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: 18px;
    font-weight: 600;
    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;
}

.why-card .card-footer {
    margin-top: 20px;
}

.why-card .card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 16px;
}

.why-card .card-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--orange);
    line-height: 1.3;
    margin-bottom: 4px;
}

.why-card .card-highlight-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* --- SERVICES --- */
.services {
    background: linear-gradient(to bottom, #F7FCFF, #F7FCFF 50%, #FFF8F3);
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    padding-top: 4px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    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, #FFF8F3, #F7FCFF 50%, #F7FCFF);
    padding: 19px 0;
}

#nationwide h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    padding-top: 4px;
}

#nationwide .section-lead {
    color: #748D9E;
}

#nationwide .map-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

#nationwide .map-left {
    flex: 0 0 450px;
}

#nationwide .map-left .about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    color: var(--navy);
}

#nationwide .map-left .about-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.8;
    color: #748D9E;
    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 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    padding-top: 4px;
}

/* --- TECH --- */
.tech {
    padding: 70px 80px;
    background: var(--gray-bg);
}

.tech-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tech h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    padding-top: 4px;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.tech-card-img {
    height: 220px;
    overflow: hidden;
}

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

.tech-card-body {
    padding: 20px 22px 22px;
}

.tech-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    padding-top: 0;
}

.tech-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
}

.tech-card-link {
    display: inline-block;
    background: var(--bg-category);
    color: var(--orange);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 20px;
    text-decoration: none;
    text-transform: uppercase;
}

/* --- SEND US --- */
.contact-section {
    background: linear-gradient(135deg, #0D2F5C 0%, #1A4480 60%, #1B4F96 100%);
    padding: 75px 100px;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.contact-left {
    color: #fff;
    padding-top: 8px;
}

.contact-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
}

.contact-quote {
    border-left: 3px solid var(--orange);
    padding-left: 16px;
    margin: 0 0 36px 0;
}

.contact-quote p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.contact-phone-block {
    margin-bottom: 24px;
}

.contact-phone-label {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: .3px;
}

.contact-phone {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.contact-phone a {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-decoration: none;
}

a.contact-email-btn-link {
    display: block;
    text-decoration: none;
}

a.contact-email-btn:hover {
    color: #fff;
}

.contact-email-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 13px 60px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
}

.contact-email-btn:hover {
    background: #d96a12;
}

.contact-right {
    text-align: left;
}

.contact-right h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-align: left;
}

.form-label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 0;
    text-align: left;
}

.form-label:hover {
    color: rgba(255, 255, 255, 0.85);
}

.form-row {
    text-align: left;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.form-row input,
.form-row textarea {
    width: 100%;
    margin-bottom: 6px;
    padding: 7px 14px;
    background: #236EA5;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    font-size: 13px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color .2s, background .2s;
    text-align: left;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: transparent;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--orange);
    background: #236EA5;
}

.form-row textarea {
    height: 100px;
    resize: vertical;
}

.form-file-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
    text-align: left;
}

.form-submit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.form-submit-captcha {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.form-submit-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-submit-row .field-error {
    text-align: center;
}

.form-file-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
}

.form-file-btn {
    display: inline-block;
    padding: 6px 18px;
    background: #236EA5;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
    width: fit-content;
    line-height: 1.5;
}

.form-file-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    background: #236EA5;
    border-color: var(--orange);
}

.form-submit {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 14px 60px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
}

.form-submit:hover {
    background: #d96a12;
}

.contact-phone-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.field-error {
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 11.5px;
    color: var(--orange);
    line-height: 1.3;
}

#err-file {
    flex-basis: 100%;
    margin-top: 5px;
}

.form-row input.input-error,
.form-row textarea.input-error {
    border-color: #FF7B7B !important;
    background: rgba(255, 80, 80, 0.12) !important;
}

.form-file-name {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 10px;
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- RESPONSIVE --- */
/* ── 1600px+: large desktop / 27" ── */
@media (min-width: 1600px) {
    .hero-content-inner {
        max-width: 720px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        min-height: 170px;
    }

    .stat-num {
        font-size: 44px;
    }

    .stat-label {
        font-size: 14px;
    }

    .hero-left {
        padding-left: 120px;
    }
}

/* ── 1366px: small desktop / laptop ── */
@media (max-width: 1366px) {
    .section-inner {
        padding: 0 40px;
    }

    .hero-title h1 {
        font-size: 42px;
    }

    .hero-content-inner {
        max-width: 540px;
    }

    .hero-stats {
        min-height: 120px;
        margin-top: 28px;
        margin-bottom: 24px;
    }

    .stat-num {
        font-size: 30px;
    }

    .stat-item {
        padding: 8px 16px;
        margin: 0 auto;
    }

    .hero-left {
        padding-left: 60px;
        padding-top: 32px;
    }

    .hero-right {
        grid-template-rows: 200px 200px 252px;
    }

    .tech, .contact-section {
        padding: 70px 40px;
    }

    .contact-email-btn {
        padding: 14px 40px;
    }

    .form-submit {
        padding: 14px 0;
    }
}

/* ── 992px+: tablet ── */
@media (max-width: 1024px) {
    .hero-main {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-left {
        width: 100%;
        padding: 80px 40px 48px;
    }

    .hero-title h1 {
        font-size: 36px;
    }

    .hero-content-inner {
        max-width: 100%;
    }

    .hero-stats {
        max-width: 100%;
        min-height: unset;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .hero-right {
        width: 100%;
        height: 360px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 360px;
    }

    .hero-right .img-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .hero-right .img-2 {
        grid-column: 3;
        grid-row: 1;
    }

    .hero-right .img-3,
    .hero-right .img-4 {
        display: none;
    }
}

@media (max-width: 992px) {
    .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: 110px 24px 40px;
    }

    .hero-right {
        width: 100%;
        height: 400px;
    }

    .bottom-row {
        height: 200px;
    }

    #newsletter .nl-inner {
        flex-direction: column;
        text-align: center;
    }

    .cb-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cb-divider {
        width: 100%;
        height: 1px;
    }

    #header {
        padding: 20px;
    }

    #header nav {
        gap: 15px;
    }

    .logo {
        align-items: center;
        display: flex;
        margin-left: -5px;
        margin-right: 10px;
    }

    .logo img {
        width: auto !important;
        height: auto !important;
        max-height: none !important;
        max-width: 100% !important;
    }

    .hero-main {
        height: auto;
        flex-direction: column;
    }

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

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        max-width: 100%;
        min-height: unset;
        margin-top: 28px;
        margin-bottom: 28px;
        padding: 14px 8px;
    }

    .stat-num {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-item {
        padding: 8px 12px;
    }

    .hero-right {
        height: 220px;
        width: 100%;
        grid-template-rows: 220px 180px;
    }

    .hero-right .img-3,
    .hero-right .img-4 {
        display: none;
    }

    .hero-right .img-2 {
        grid-column: 2;
        grid-row: 1;
    }

    .hero-right .img-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    #whyus .section-h2 {
        font-size: 24px;
    }

    .tech {
        padding: 48px 24px;
    }

    .tech-cards {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 56px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left h2 {
        font-size: 24px;
    }

    .form-submit {
        width: 60%;
    }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
    .section-h2,
    .report-h2 {
        font-size: 36px;
    }

    .why-cards,
    .service-grid,
    .report-cards,
    .wp-cards {
        grid-template-columns: 1fr;
    }

    .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-stats {
        flex-wrap: wrap;
        border-radius: 12px;
        padding: 12px 6px;
    }

    .stat-item {
        flex: 0 0 33.333%;
        padding: 8px 6px;
    }

    .stat-num {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10.5px;
    }

    .stat-divider {
        display: none;
    }

    .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;
    }

    #whyus .section-h2 {
        font-size: 22px;
    }

    #whyus .section-lead {
        font-size: 13px;
    }

    .why-card .card-img {
        height: 165px;
    }

    .services h2,
    #nationwide h2,
    .clients h2,
    .tech h2 {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .tech-card-img {
        height: 165px;
    }

    .contact-left h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .contact-quote {
        margin-bottom: 24px;
    }

    .contact-phone {
        font-size: 18px;
    }

    .contact-phone-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .contact-email-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .contact-right h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit {
        width: 75%;
        padding: 15px 24px;
    }

    .main-nav {
        display: none;
    }

    .logo img {
        height: 30px;
    }
}

/* ── 480px: small phone ── */
@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-stats {
        padding: 10px 4px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .stat-num {
        font-size: 20px;
    }

    .stat-label {
        font-size: 10px;
        margin-top: 4px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 20px;
    }

    #whyus {
        padding-top: 60px;
    }

    #whyus .section-h2 {
        font-size: 20px;
    }

    #whyus .section-subtitle {
        font-size: 12px;
    }

    .why-card .card-title {
        font-size: 15px;
    }

    .why-card .card-body {
        padding: 16px 18px 20px;
    }

    #nationwide {
        padding-top: 0;
    }

    #nationwide h2 {
        margin-bottom: 0;
    }

    #nationwide .map-section {
        margin-top: 10px;
    }

    #nationwide .toggle-btn {
        font-size: 11px;
    }

    .contact-inner {
        gap: 10px;
    }

    .form-submit {
        width: 100%;
        padding: 14px 20px;
    }

    .form-submit-row {
        grid-template-columns: 1fr;
    }

    .form-submit-captcha {
        justify-content: center;
    }
}
