/* ==========================================
GLOBAL CSS - other imports @ see bottom 
========================================== */

:root {
    --primary: #0f3d5c;
    --secondary: #1e5f8c;
    --accent: #00aaff;
    --btn-accent: #1b5d87;
    --dark-section: #050b14;
    --dark-card: rgba(255, 255, 255, 0.03);
    --grey: #f4f7fa;
    --grey-dark: #d8dee5;
    --green: #45b263;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

    --radius: 18px;

    /* Trust baner */

    --bg: #d5deed;

    --bg-blue: #e1eeff;

    --panel: #0b1828;

    --red: #d62027;

    --red-dark: #af1018;

    --white: #ffffff;

    --light: #f5f7fa;

    --text: #d9dde6;

    --darker: #4b5563;

    --muted: #9ca5b5;

    --border: #23354d;
}

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

body {
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.75;
}

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

h1 {
    font-size: clamp(1.8rem, 6vw, 5.8rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

p {
    font-size: 1.05rem;
    color: var(--panel);
    margin-bottom: 18px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* ==========================================
HEADER
========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--grey-dark);
}

header .container {
    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 85px;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 0;
}

nav ul li {
    position: relative;
}

/* LINKS */
nav ul li a {
    display: block;

    color: var(--dark);

    font-size: 1.1rem;
    /* bigger text */
    font-weight: 600;
    letter-spacing: 1.12px;

    padding: 0.75rem 1.25rem;

    transition: 0.3s;

    position: relative;
}

/* HOVER */
nav ul li a:hover {
    color: var(--accent);
}

/* DIVIDER LINE (RIGHT SIDE) */
nav ul li:not(:last-child) a::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 18px;

    background: rgba(0, 0, 0, 0.15);
}

/* ================================
   DROPDOWN MENU (VERTICAL SERVICE LIST)
================================ */

.dropdown {
    position: relative;
}

/* hidden state */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 260px;
    width: max-content;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

    padding: 0.7rem 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.25s ease;

    display: flex;
    flex-direction: column;
}

/* show on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* each item aligns perfectly */
.dropdown-menu li {
    list-style: none;
    width: 100%;
}

/* consistent alignment + spacing */
.dropdown-menu a {
    display: block;
    padding: 0.2rem 1.2rem;
    line-height: 2;
    font-size: 1rem;
    letter-spacing: 1.12px;
    color: var(--dark);
    transition: 0.2s;
}

/* hover state */
.dropdown-menu a:hover {
    background: var(--grey);
    color: var(--primary);
}

/* ==================================================
   LOGO
================================================== */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    margin-right: 40px;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* =========================
   PHONE NUMBER (HEADER INLINE)
========================= */

.phone {
    display: flex;
    align-items: center;
}

.phone a {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-decoration: none;

    /* background: var(--primary); */

    padding: 6px 14px;

    border-radius: 3px;

    line-height: 1.3;
}

/* phone number */
.phone-number {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.phone a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.phone a:hover {
    opacity: 0.9;
}

.phone-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* =========================
   FOOTER BUTTON (STICKY MENU)
========================= */

.footer-sticky-menu {
    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 60px;

    display: flex;
    justify-content: center;

    /* padding: 12px; */

    font-size: 1.25rem;

    background: var(--secondary);

    backdrop-filter: blur(10px);

    z-index: 9999;
}

/* hide menu on desktop */
.footer-sticky-menu .menu-toggle {
    display: none;
    background: var(--bg-blue);
}

.footer-sticky-menu a {
    flex: 1;
    /* makes all 3 equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 100%;

    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;

    transition: 0.2s;
}

.footer-sticky-menu img {
    width: 24px;
    height: 24px;
}

.footer-sticky-menu .call {
    background: var(--red-dark);
}

.footer-sticky-menu .book {
    background: var(--btn-accent);
}

.footer-sticky-menu .menu-toggle span {
    color: var(--primary);
    padding-right: 10px;
}

.footer-sticky-menu .menu-toggle span a {
    background: var(--grey);
}

.footer-sticky-menu .menu-toggle img {
    max-width: 25px;
    max-height: 25px;
}

/* Whatsapp Btn */

.whatsapp-btn {
    transition: background-color 0.3s ease;
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
}

/* ==========================================
GENERAL SECTION STYLING
========================================== */

section {
    padding: 5%;
    position: relative;
    overflow: hidden;
}

section h2 {
    text-align: left;
    color: var(--primary);

    font-size: 2.3rem;
    line-height: 1.3;
}

.left-align h2 {
    text-align: left;
    line-height: 1.3;
}

/* ===================================
   MOBILE MENU
=================================== */
/* Hide menu min-width: 768px */

.mobile-menu {
    display: none;
    flex-direction: column;

    position: fixed;

    top: 0;

    right: -100%;

    width: 400px;

    height: 95vh;

    background: var(--light);

    padding-bottom: 90px;

    z-index: 9999;

    border-left: 1px solid rgba(255, 255, 255, 0.08);

    transition: right 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    right: 0;
}

.mobile-menu nav ul li:not(:last-child) a::after {
    content: none;
}

/* close button */

.close-menu {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--bg);
    font-size: 35px;
    cursor: pointer;
    margin: 20px;
    transition: 0.25s;
}

.close-menu:hover {
    background: var(--secondary);
    color: #fff;
}

/* navigation */

.mobile-nav>ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    line-height: 0.8;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #edf2f7;
}

.mobile-nav a,
.mobile-dropdown-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    padding: 10px 0;

    text-decoration: none;

    color: var(--primary);

    font-size: 1rem;
    font-weight: 600;

    background: none;
    border: none;

    cursor: pointer;

    transition: 0.25s;
}

.mobile-nav a:hover,
.mobile-dropdown-btn:hover {
    color: var(--accent);
    padding-left: 12px;
}

.mobile-dropdown-btn.open {
    display: block;
}

.mobile-dropdown-btn span {
    font-size: 1.2rem;
    color: var(--accent);
    padding-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mobile-dropdown-btn.open span {
    transform: rotate(45deg);
}

/* 1. Base Overlay Styles (Hidden State) */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.85);
    z-index: 999;

    /* Flexbox to center links vertically & horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;

    /* Slide Off-Screen Right (Hidden by default) */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Active State (When Menu Opens) */
.mobile-overlay.show {
    transform: translateX(0);
    display: block;
    overflow: hidden;
    pointer-events: auto;
}

/* ===================================
   MOBILE DROPDOWN
=================================== */

/* Hide submenu */
.mobile-submenu {
    display: none;
    padding-left: 18px;
    margin-bottom: 10px;
    transition: max-height 0.35s ease, opacity 0.25s ease,
        margin-bottom 0.35s ease;
}

/* Show submenu */
.mobile-submenu.open {
    display: block;
}

/* submenu */
.mobile-submenu li {
    border: none;
}

.mobile-submenu a {
    font-size: 0.92rem;
    font-weight: 500;

    color: #5b6675;

    padding: 12px 0;
    line-height: 0.8;
}

/* ==========================================
FOOTER
========================================== */

footer {
    background: #111827;

    color: #d1d5db;

    padding: 5rem 1rem;
}

footer a {
    color: #4da3ff;
}

footer a:hover {
    color: white;
}

.footer-container {
    width: min(1200px, 92%);

    margin: auto;

    display: grid;

    /* grid-template-columns:
        1fr 1fr 1fr; */

    grid-template-columns: 0.5fr 1.5fr 1fr;

    gap: 3rem;
}

.footer-column h3 {
    color: white;

    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #d1d5db;
}

.footer-column a:hover {
    color: white;
}

.footer_services {
    padding: 0 1rem;
}

.service-map {
    max-height: 500px;

    border-radius: 12px;
    /* 
    background:
        rgba(255, 255, 255, .08); */

    display: flex;
    align-items: center;
    justify-content: center;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.footer-column .social-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-column .social-links a {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 1.4rem;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-column .social-links a:hover {
    background: var(--electric);
    color: var(--dark);

    transform: translateY(-3px);
}

.footer-column input,
.footer-column textarea {
    padding: 0.9rem;

    border: none;

    border-radius: 8px;
}

.footer-column textarea {
    min-height: 120px;
}

.footer-column p {
    color: white;
    padding: 0 10px;
}

.footer-column button {
    background: var(--accent);

    color: white;

    border: none;

    padding: 14px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 700;
}

.footer-bottom {
    margin-top: 4rem;

    padding: 1.5rem;

    padding-bottom: 8rem;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    font-size: 0.8 rem;
    margin-left: 0.2rem;
    color: white;
}

.footer-bottom p {
    color: white;
}

.contact-info {
    padding-top: 30px;
}

/*==============================
FOOTER CONTACT FORM
==============================*/

#footer-form-section {

    width: min(1200px, 92%);
    margin: 0 auto 5rem;

    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;

    padding: 3rem;

    border-radius: 18px;

    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, .08);


}

.footer-form-intro h2 {

    color: #fff;
    margin-bottom: .75rem;
}

.footer-form-intro p {

    color: #cfd6df;
    line-height: 1.7;
}

.footer-form {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(180px, 1fr));

    gap: 1rem;
}

.footer-form input,
.footer-form select,
.footer-form textarea {

    width: 100%;

    padding: 15px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, .08);

    background: #111827;

    color: #fff;

    font-size: 15px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {

    color: #9ca3af;
}

.footer-form textarea {

    grid-column: 1/-1;

    resize: vertical;

    min-height: 110px;
}

.footer-form button {

    grid-column: 1/-1;

    height: 55px;

    border: none;

    border-radius: 10px;

    background: var(--accent);

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;
}

.footer-form button:hover {

    transform: translateY(-2px);
}

/* Honeypot stays hidden */
.capture {
    display: none;
}

@media (max-width:900px) {

    #footer-form-section {

        grid-template-columns: 1fr;

        padding: 2rem;
    }

    .footer-form {

        grid-template-columns: 1fr;
    }

    .footer-form textarea,
    .footer-form button {

        grid-column: auto;
    }

}

.form-success {

    display: none;

    text-align: center;

    padding: 3rem 2rem;

    background: #1b2431;

    border-radius: 12px;

    color: white;
}

.form-success h3 {

    margin-bottom: 1rem;

    color: #4da3ff;
}

/* ==========================================
    RESPONSIVE  
========================================== */

@media (max-width: 1200px) {
    .phone-number {
        font-size: 1.5rem;
    }

    .footer-column {
        padding-top: 80px;
    }
}

/* ==========================================
   TABLET + MOBILE
========================================== */

@media (max-width: 1100px) {
    /* --------------------
       Header
    -------------------- */

    header .container {
        min-height: 72px;
    }

    /* desktop-nav, */
    #main-nav {
        display: none;
    }

    .logo {
        margin-right: 0;
    }

    .logo img {
        height: 56px;
    }

    /* --------------------
       Bottom Mobile Bar
    -------------------- */

    .footer-sticky-menu .menu-toggle {
        display: flex;

    }

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

@media (max-width: 768px) {
    .phone-number {
        font-size: 1rem;
    }

    .phone-icon {
        width: 38px;
        height: 38px;
    }

    .footer-column {
        padding-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer-sticky-menu a {
        font-size: 0.9rem;
        gap: 5px;
    }

    .mobile-menu {
        width: 85vw;
    }
}

@media (max-width: 340px) {
    .footer-sticky-menu .menu-toggle img {
        max-width: 20px;
        max-height: 20px;
    }
}



/* =========================
   HERO LAYOUT (2/3 + 1/3)
========================= */
#hero {
    margin-top: 45px;
    padding: 30px 0 0 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* height: 90vh; */
    position: relative;

}

/* =========================
   HERO CONTENT (TEXT OVERLAY)
========================= */

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;

    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 3rem;

    max-width: 650px;

    color: white;

    /* optional readability overlay */
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.4),
            transparent);
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    margin-top: 3rem;
    margin-bottom: .5rem;
    line-height: 4rem;
}


.hero-content h2 {
    font-size: clamp(2rem, 3vw, 4rem);
    line-height: clamp(2.6rem, 3vw, 3rem);
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .95);
}

.hero-content p {
    font-size: clamp(1.9vw, 1.4rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .9);
}

/* =========================
   LEFT SIDE: SLIDER (2/3)
========================= */

.hero-slider {
    position: relative;
    grid-column: 1 / 2;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    display: flex;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 3rem;
    color: white;
    font-weight: bold;

}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}



/* =========================
   RESPONSIVE
========================= */

/* ===========================================
   LARGE TABLETS
=========================================== */

@media (max-width:1200px) {

    .hero-content {

        padding-top: 3rem;
    }

}

@media (max-width: 1100px) {

    #hero {
        display: flex;
        flex-direction: column;

        height: auto;
        overflow: visible;

        margin-top: 0;
        padding-top: 0;
    }

    .hero-slider {
        order: 1;

        width: 100%;
        height: 65vh;
        min-height: 480px;
    }


}


/* ===========================================
   TABLETS
=========================================== */

@media (max-width:992px) {

    #hero {

        display: block;
        min-height: auto;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-slider {

        height: 70vh;
        min-height: 520px;
    }

    .hero-content {

        position: absolute;

        padding: 3rem;
    }

}



/* ===========================================
   PHONES
=========================================== */

@media (max-width:768px) {

    .hero-button {

        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-button a {

        width: 100%;
    }

    .hero-content h1 {
        line-height: 3rem;
        margin-top: 3rem;
        font-size: 3rem;

    }

}

/* ===========================================
   SMALL PHONES
=========================================== */

@media (max-width:480px) {

    .hero-content h1 {
        line-height: 2rem;
        font-size: 2rem;

    }


    .hero-content h2 {

        font-size: 1.55rem;
    }

    .hero-content p {

        font-size: 1rem;
    }

}

@media (max-width: 320px) {

    .hero-content {
        padding: 3rem 2rem 0 2rem;
    }

    .hero-slider {
        height: 40vh;
        /* min-height: 680px; */
    }
}


/* =========================
   RIGHT SIDE: TRUST BAR (1/3)
========================= */

#trust-banner {
    background: var(--panel);
    color: #fff;
    display: flex;
    flex-direction: column;

    justify-content: space-between;
    align-items: stretch;

    padding: 1rem .6rem;
    gap: 1rem;
    height: auto;
}


.subtitle {

    font-size: .95rem;
    letter-spacing: 1px;
    text-align: center;

    color: #adb7c8;

    text-transform: uppercase;

}


.line {

    display: block;

    width: 120px;

    height: 5px;

    background: #ff3f46;

    border-radius: 10px;

    width: 70px;
    height: 4px;
    margin: 18px auto;

}

.call-btn {

    display: flex;

    justify-content: center;

    padding: 0 5px;

    margin: 0 40px;

    background: linear-gradient(180deg,

            #e33037,

            #bb151b);

    gap: 14px;

    font-size: 1.45rem;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    font-weight: 800;

    box-shadow:

        0 10px 25px rgba(214, 32, 39, .35);

}

.call-btn img {

    width: 28px;
    height: 28px;
    align-self: center;

}


.cta-button {
    flex: 0 0 auto;

    background: linear-gradient(180deg, #0f2138, #091525);

    border: 1px solid #23354d;

    border-radius: 34px;

    padding: 10px;

    border-radius: 22px;

    position: relative;

    overflow: hidden;

    box-shadow:

        0 30px 70px rgba(0, 0, 0, .45);

}

.cta-button:before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    bottom: 0;

    width: 4px;

    background: #ff4747;

}

.cta-button h2 {
    color: var(--white);
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    padding-top: 15px;
}




/*=========================
BADGES
=========================*/

.badges {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
    margin: .5rem;
    justify-items: center;

    text-align: center;

}

.badges article {
    position: relative;
    object-position: center;
    display: block;
    text-align: center;
}


.badges img {

    max-height: 40px;
    object-position: center;
    margin: 0 auto 5px auto;

}

.badges h2 {
    color: var(--accent);
    font-size: .7rem;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;

}

.badges p {
    font-size: .7rem;
    line-height: 1;
    color: #b6c0cf;
    text-transform: uppercase;
}



/*=========================
CARDS GRID
=========================*/

.trust-cards {

    flex: 0 0 auto;

    border: 1px solid #23354d;

    border-radius: 28px;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;

}

.trust-cards article {

    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: center;
    border-bottom: 1px solid #23354d;
    padding-right: 20px;
    min-width: 0;

}

.trust-cards article:nth-child(odd) {
    border-right: 1px solid #23354d;
}

/* .trust-cards article:nth-last-child(-n+2) {
    border-bottom: none;
} */
/* Removes bottom border ONLY for the last row dynamically */
.trust-cards article:nth-last-child(-n+2):nth-child(odd),
.trust-cards article:last-child {
    border-bottom: none;

}

.trust-cards img {
    width: 34px;
    height: 34px;
    display: block;
    flex-shrink: 0;

}

.trust-cards h3 {

    font-size: .8rem;
    margin-bottom: 4px;

    text-transform: uppercase;

}

.trust-cards p {

    font-size: .82rem;
    line-height: 1.4;
    color: #aeb7c5;
}

.trust-cards article div {
    min-width: 0;
}

.trust-cards h3,
.trust-cards p {
    overflow-wrap: anywhere;
    word-break: break-word;
}




/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    #trust-banner {
        order: 2;

        width: 100%;
        height: auto;

        padding: 1.5rem;

        gap: 1.25rem;
    }

    .cta-button {
        align-self: center;
        max-width: 600px;
        width: 100%;
        z-index: 999;
    }

    .cta-button h2 {
        font-size: 2rem;
    }


    .subtitle {
        font-size: .95rem;
    }


    .call-btn {
        margin: 0 auto;
        padding: 10px;
        max-width: 420px;
        width: 100%;
        font-size: 1.3rem;
    }

    /* --------------------
   Badges 1100px
-------------------- */

    .badges {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 12px;

        margin: 80px 0 0 0;
    }

    .badges article {
        padding: 12px 8px;
    }

    .badges article:not(:last-child):after {
        display: none;
    }

    .badges img {
        max-height: 36px;
    }

    .badges h2 {
        font-size: .75rem;
    }

    .badges p {
        font-size: .7rem;
    }

}

@media (max-width: 980px) {

    .cta-button {
        margin: -60px auto;
    }
}

@media (max-width: 380px) {

    .badges {
        gap: 10px;
    }

    .badges img {
        max-height: 32px;
    }

    .badges h2,
    .badges p {
        font-size: .62rem;
    }

    /* --------------------
   cards
-------------------- */

    .trust-cards article {
        padding: 8px;
        gap: 8px;
    }

    .trust-cards img {
        width: 28px;
        height: 28px;
    }

    .trust-cards h3 {
        font-size: .72rem;
    }

    .trust-cards p {
        font-size: .72rem;
        line-height: 1.3;
    }

    .cta-button {
        margin: -100px auto;

    }

}

@media (max-width: 340px) {

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

    .trust-cards article {
        border-right: none !important;
    }

    .trust-cards article:not(:last-child) {
        border-bottom: 1px solid #23354d;
    }

    .badges {
        padding-top: 40px;
    }

}