@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #004aad;
    --primary-dark: #003080;
    --primary-light: #e8f0ff;
    --orange: #f97316;
    --orange-light: #fff4ed;
    --dark: #0c1a2e;
    --gray-100: #f8fafc;
    --gray-200: #f1f5f9;
    --gray-300: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, .13);

    /* Misc */
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --container: 1300px;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -.025em;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ─── CONTAINERS ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.section-bg {
    background: var(--gray-100);
}

/* ─── LABELS ─── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
    display: block;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    padding: .85rem 1.875rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 74, 173, .3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 74, 173, .35);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(249, 115, 22, .3);
}

.btn-orange:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--primary);
    color: white;
}

/* ─── TOP BAR ─── */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    padding: .55rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 1.75rem;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.top-bar-contact svg {
    width: 13px;
    height: 13px;
    opacity: .75;
}

.top-bar-social {
    display: flex;
    gap: .75rem;
}

.top-bar-social a {
    color: rgba(255, 255, 255, .65);
    display: flex;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--orange);
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    padding: .75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.25rem;
}

.nav-links a {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

header.scrolled .nav-links a {
    color: var(--gray-700);
}

header.scrolled .nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .25);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

header.scrolled .mobile-toggle {
    border-color: var(--gray-300);
    color: var(--dark);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--gray-300);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-md);
}

.mobile-menu a {
    padding: .85rem 0;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-200);
    color: var(--dark);
}

.mobile-menu.open {
    display: flex;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding-top: calc(36px + 80px);
    background: linear-gradient(165deg, rgba(0, 48, 128, .88) 0%, rgba(0, 74, 173, .7) 60%, rgba(0, 48, 128, .9) 100%),
        url('../img/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero>.container>.hero-grid>div>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Side Card */
.hero-card {
    background: rgba(255, 255, 255, .97);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.hero-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.qs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.qs:last-child {
    border-bottom: none;
}

.qs-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.qs-lbl {
    font-size: .78rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--primary-dark);
    padding: 4rem 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-block {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, .12);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-desc {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
    margin-top: .5rem;
}

/* ─── ABOUT OVERVIEW (3 cards) ─── */
.overview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ov-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ov-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.ov-img {
    width: 100%;
    height: 190px;
    border-bottom: 3px solid var(--orange);
    position: relative;
}

.ov-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ov-content {
    padding: 2.25rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ov-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ov-card p {
    color: var(--gray-500);
    font-size: .95rem;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-banner h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: .5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, .75);
}

/* ─── FEATURE SPLITS ─── */
.feature-pair {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feat-split.rev {
    direction: rtl;
}

.feat-split.rev>* {
    direction: ltr;
}

.feat-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, transparent 55%, rgba(0, 74, 173, .15));
    z-index: 1;
    pointer-events: none;
}

.feat-badge {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, .3);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .35rem .9rem;
    margin-bottom: 1.5rem;
}

.feat-text h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.feat-text p {
    color: var(--gray-500);
    margin-bottom: 1.75rem;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.25rem;
}

.feat-tag {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    padding: .35rem .85rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

/* ─── BENTO WHY US ─── */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.bento-card:hover::after {
    transform: scaleX(1);
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bento-card h3 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
}

.bento-card p {
    color: var(--gray-500);
    font-size: .88rem;
}

/* ─── GALLERY MASONRY ─── */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.g-thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--gray-200);
}

.g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.g-thumb:hover img {
    transform: scale(1.07);
}

.g-thumb:nth-child(1) {
    grid-row: span 2;
}

.g-thumb:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 48, 128, .75), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.g-thumb:hover .g-overlay {
    opacity: 1;
}

.g-overlay span {
    font-size: .8rem;
    font-weight: 700;
    color: white;
    letter-spacing: .04em;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 16px;
    object-fit: contain;
}

.lb-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lb-close:hover {
    background: var(--orange);
}

/* ─── COVERAGE ─── */
.cov-wrap {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 4rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.cov-left {
    flex: none;
    width: 320px;
}

.cov-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cov-left p {
    color: var(--gray-500);
}

.city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.city-chip {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    padding: .55rem 1.25rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
}

.city-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.ff-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.fg label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-500);
}

.fg input,
.fg textarea {
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    padding: .875rem 1.1rem;
    color: var(--dark);
    font-size: .95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: var(--transition);
    outline: none;
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 74, 173, .08);
}

.fg textarea {
    resize: vertical;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ci-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.ci-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.ci-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.ci-card strong {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
    margin-bottom: .35rem;
}

.ci-card p {
    color: var(--dark);
    font-size: .9rem;
    line-height: 1.6;
}

.map-box {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.map-box iframe {
    display: block;
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, .5);
    font-size: .875rem;
    max-width: 280px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: .75rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.footer-col h4 {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: .875rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .55);
    font-size: .875rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fci {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}

.fci svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
    width: 15px;
    height: 15px;
}

.fci span {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
    line-height: 1.55;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: rgba(255, 255, 255, .3);
}

/* ─── WA FLOAT ─── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: #25d366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(37, 211, 102, .55);
}

/* ─── AOS fix ─── */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

.aos-init.aos-animate {
    opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width:1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }

    .feat-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feat-split.rev {
        direction: ltr;
    }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .cov-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .cov-left {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .overview-row {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-thumb:nth-child(1) {
        grid-row: span 1;
    }

    .g-thumb:nth-child(6) {
        grid-column: span 1;
        aspect-ratio: auto;
    }
}

@media (max-width:768px) {
    .section {
        padding: 5rem 0;
    }

    .nav-links,
    .btn-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .ff-2 {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }

    .top-bar-contact span:nth-child(n+2) {
        display: none;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .stats-strip {
        padding: 3rem 0;
    }

    .stat-num {
        font-size: 2.25rem;
    }
}