:root {
    --navy: #054A8A;
    --gold: #F79320;
    --bg: #f7fafc;
    --text: #1f2937;
}

/* ===== Base (desktop / default) ===== */
.hero {
    padding: 0px 0px;
    background: #f7fafc;
}

.heroCanvas {
    position: relative;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: url('../images/finalSSHERO.png') center / cover no-repeat;
    border-radius: 0px;
    overflow: hidden;
}

.heroTitle {
    pointer-events: auto;
    position: absolute;
    left: 7%;
    top: 19%;
    margin: 0;
    color: var(--navy);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
    width: min(48%, 700px);

    /* your original, but smaller */
    font-size: clamp(28px, 3.5vw, 70px);
}

/* Accent text (VoIP) */
.heroAccent {
    color: var(--gold);
    font-weight: 900;
    white-space: nowrap;

    /* keeps “VoIP” together */
}

.heroSub {
    pointer-events: auto;
    position: absolute;
    left: 7%;
    top: 34%;
    margin: 0;
    color: rgba(31, 41, 55, 0.75);
    line-height: 1.7;
    width: min(40%, 470px);
    font-size: clamp(14px, 1.5vw, 30px);
}

.heroCta {
    pointer-events: auto;
    position: absolute;
    left: 7%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    padding: 10px 22px;
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.12s ease, box-shadow 0.18s ease;
    padding: clamp(8px, 1vw, 18px) clamp(16px, 2vw, 30px);
    font-size: clamp(14px, 1.2vw, 18px);
}

.heroCta:hover {
    background: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

/* ===== Mobile (576px and under) ===== */
@media (max-width: 576px) {
    @media (max-width: 576px) {
        .heroCanvas {
            background-size: contain;
            background-repeat: no-repeat;

            /* show the wave */
            background-position: center bottom;

            /* give the image enough vertical room so the bottom isn't cut */
            aspect-ratio: unset;
            padding-bottom: 72%;

            /* increase/decrease until wave is fully visible */
        }
    }

    .heroTitle {
        left: 6%;
        top: 20%;
        width: 60%;
        font-size: clamp(20px, 4vw, 30px);
        line-height: 1.1;
    }

    .heroSub {
        left: 6%;
        top: 36%;
        width: 60%;
        font-size: clamp(13px, 3vw, 15px);
        line-height: 1.6;
    }

    .heroCta {
        left: 6%;
        top: 52%;
        padding: 4px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
}

.heroCta:active {
    background: var(--navy);
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

/* Hero fix ONLY for 511px–574px */
@media (min-width: 511px) and (max-width: 576px) {
    .heroCanvas {
        background-size: contain;
        background-repeat: no-repeat;

        /* show the wave */
        background-position: center bottom;

        /* give the image enough vertical room so the bottom isn't cut */
        aspect-ratio: unset;
        padding-bottom: 72%;

        /* increase/decrease until wave is fully visible */
    }
}

@media (max-width:576px) {
    .heroTitle {
        left: 6%;
        top: 20%;
        width: 60%;
        font-size: clamp(20px, 4vw, 30px);
        line-height: 1.1;
    }
}

@media (max-width:576px) {
    .heroSub {
        left: 6%;
        top: 36%;
        width: 62%;
        font-size: clamp(13px, 3vw, 15px);
        line-height: 1.6;
    }

    .heroCta {
        left: 6%;
        top: 52%;
        padding: 4px 16px;
        font-size: 14px;
        border-radius: 12px;
    }
}

.heroCta:active {
    background: var(--navy);
    transform: translateY(0);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

/* =====================
   GLOBAL FONTS
===================== */
/* Body / default text */
body {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

/* =====================
   HERO TEXT
===================== */
.ss-hero-title {
    color: #054A8A;
    font-weight: 800;
    letter-spacing: -.5px;
    font-size: clamp(2.4rem,4.5vw,4.2rem);
    line-height: 1.05;
}

.ss-hero-sub {
    color: #234b7c;
    font-size: clamp(1.05rem,1.6vw,1.55rem);
    line-height: 1.7;
}

/* =====================
   BOTTOM BAND
===================== */
.ss-hero-band {
    margin-top: 9.5rem;
    padding: 3.25rem 0 1.5rem;
}

.ss-band-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.6rem,2.8vw,3rem);
}

.ss-band-sub {
    color: rgba(255,255,255,.9);
    font-size: 1.05rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width:991px){
    .ss-hero-bg {
        padding: 4rem 0 0;
        background-position: right top;
    }
}

/* =========================
   NAVBAR
========================= */
.ss-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(22,59,115,.10);
    padding: .9rem 0;
}

.ss-logo {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

.ss-navbar .nav-link {
    font-weight: 700;
    color: var(--ss-navy);
    opacity: .92;
    padding: .5rem .85rem;
}

.ss-navbar .nav-link:hover {
    opacity: 1;
}

.ss-btn-quote {
    background: var(--ss-gold) !important;
    color: #ffffff !important;
    font-weight: 800;
    border-radius: 10px;
    padding: .65rem 1.15rem;
    border: none;
    box-shadow: 0 10px 18px rgba(215,154,56,.18);
    text-decoration: none;
}

.ss-btn-quote:hover {
    background: #054A8A;
    color: #fff !important;
}

.ss-nav-toggle {
    border: 1px solid rgba(22,59,115,.18);
    border-radius: 10px;
}

/* =========================
   BENEFITS + STATS SECTION
========================= */
.ss-benefits {
    background: #fff;
}

/* Heading styles */
.ss-benefits-title {
    color: #054A8A;
    font-weight: 800;
    font-size: clamp(1.9rem, 2.6vw, 2.6rem);
}

.ss-benefits-sub {
    color: #2b2b2b;
    font-size: 1.05rem;
    max-width: 52ch;
}

.ss-stats-section {
    padding: 4rem 0;
    font-family: 'Arimo', sans-serif;
    background-color: #fefefe;
}

.ss-title {
    color: #054A8A;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ss-subtitle {
    color: #555;
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.ss-stat-card {
    padding: 2rem 1.5rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e6e8eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ss-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F79320;
    margin-bottom: 0.5rem;
}

.ss-stat-text {
    font-size: 1rem;
    color: #444;
}

/* Checklist */
.ss-checklist {
    max-width: 70ch;
}

.ss-check-ico {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #F79320;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: .15rem;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}

.ss-check-ico .bi {
    font-size: 1.1rem;
    line-height: 1;
}

/* Callout box */
.ss-callout {
    background: #054A8A;
    border-radius: 10px;
    padding: 1.25rem 1.25rem;
    max-width: 720px;
    box-shadow: 0 10px 18px rgba(0,0,0,.08);
}

.ss-callout-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: .25rem;
}

.ss-callout-text {
    color: rgba(255,255,255,.92);
    font-size: 1.05rem;
}

/* Ready line */
.ss-ready {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111;
}

/* Phone image with orange circle */
.ss-phone-wrap {
    position: relative;
    padding: 1.25rem;
}

.ss-phone-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #F79320;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ss-phone-img {
    position: relative;
    z-index: 1;
    max-width: 520px;
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.14));
}

/* Small screens */
@media (max-width: 575px){
    .ss-phone-circle {
        width: 250px;
        height: 250px;
    }
}

/* =================================
   WHY CHOOSE US SECTION
================================= */
.ss-why-choose {
    background-color: #f8fafc;
    padding: 5rem 0;
}

/* Section heading */
.ss-section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #054A8A;
    margin-bottom: 1rem;
    text-align: center;
}

.ss-section-lead {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

/* Feature cards grid */
.ss-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: left;
}

.ss-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

/* Icon images */
.ss-feature-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-bottom: 0.85rem;
}

/* Card text */
.ss-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.35rem;
}

/* Blue cta */
.ss-detp-title {
    color: #f7f7f7;
}

.ss-feature-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* CTA Band */
.ss-cta-band {
    background: #054A8A;
    color: #ffffff;
    border-radius: 18px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

.ss-cta-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.ss-cta-band h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ss-cta-band p {
    color: #dbe6f6;
    max-width: 640px;
    margin: 0 auto 1.5rem;
}

/* Buttons */
.ss-btn-accent {
    background-color: #F79320;
    color: #ffffff;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.75rem 1.6rem;
    border: none;
}

.ss-btn-accent:hover {
    background-color: #F79320;
    color: #ffffff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px){
    .ss-why-choose {
        padding: 4rem 0;
    }

    .ss-feature-card {
        padding: 1.75rem;
    }

    .ss-cta-band {
        padding: 2.75rem 1.75rem;
    }
}

@media (max-width: 575px){
    .ss-section-title {
        font-size: 2rem;
    }

    .ss-cta-band {
        padding: 2.25rem 1.5rem;
    }

    .ss-cta-icon {
        width: 48px;
        height: 48px;
    }
}

/* =================================
   INDUSTRIES WE SERVE
================================= */
.ss-industries {
    background: #ffffff;
}

/* Each industry block */
.ss-industry {
    max-width: 340px;
    margin: 0 auto;
}

/* Circular icon holder (orange ring) */
.ss-industry-iconwrap {
    width: 110px;
    height: 110px;
    border: 2px solid #F79320;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

/* Your icon image */
.ss-industry-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

/* Text */
.ss-industry-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.ss-industry-text {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Responsive spacing */
@media (max-width: 575px){
    .ss-industry {
        max-width: 100%;
    }

    .ss-industry-iconwrap {
        width: 96px;
        height: 96px;
    }

    .ss-industry-icon {
        width: 46px;
        height: 46px;
    }
}

/* ===============================
   TESTIMONIALS (BOXED)
================================ */
.ss-testimonials {
    background: transparent;
}

/* Blue boxed background */
.ss-testimonials-inner {
    background-color: #054A8A;
    border-radius: 24px;
    padding: 4rem 2rem 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Content box */
.ss-testimonial-box {
    max-width: 820px;
    margin: 0 auto;
    color: #ffffff;
}

/* Quote mark */
.ss-quote-mark {
    display: block;
    font-size: 4rem;
    line-height: 1;
    color: #F79320;
    margin-bottom: 1rem;
}

/* Testimonial text */
.ss-testimonial-text {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.45;
    margin-bottom: 2rem;
}

/* Author */
.ss-testimonial-author {
    font-size: 1.1rem;
    font-weight: 500;
}

.ss-testimonial-author span {
    color: #F79320;
}

/* Indicators */
.ss-testimonial-indicators {
    position: static;
    margin-top: 2rem;
}

.ss-testimonial-indicators button {
    width: 36px;
    height: 4px;
    background-color: rgba(255,255,255,.35);
    border-radius: 2px;
    margin: 0 6px;
    border: none;
}

.ss-testimonial-indicators .active {
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px){
    .ss-testimonials-inner {
        padding: 3rem 1.5rem;
    }

    .ss-testimonial-text {
        font-size: 1.35rem;
    }
}

/* =========================
   FOOTER BASE
========================= */
.ss-footer {
    background-color: #054A8A;
    color: #ffffff;
    padding: 4rem 1.5rem 0;
    font-family: "Source Sans 3", sans-serif;
}

/* Inner layout */
.ss-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1px 1.5fr 1px 1fr;
    gap: 2.5rem;
    align-items: stretch;

    /* IMPORTANT */
}

/* Columns */
.ss-footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand */
.ss-footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ss-footer-tagline {
    color: #F79320;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Contact */
.ss-footer-contact p {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ss-footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer-contact a:hover {
    text-decoration: underline;
}

/* ICON IMAGES */
.ss-footer-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Headings */
.ss-footer-heading {
    color: #F79320;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Links */
.ss-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ss-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-footer-links li {
    margin-bottom: 0.75rem;
}

.ss-footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer-links a:hover {
    text-decoration: underline;
}

/* CTA */
.ss-footer-cta {
    align-items: flex-start;
}

.ss-footer-btn {
    background-color: #F79320;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
}

.ss-footer-btn:hover {
    background-color: #F79320;
}

/* DIVIDERS (FIXED) */
.ss-footer-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    align-self: stretch;
}

/* Bottom bar */
.ss-footer-bottom {
    margin-top: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .ss-footer-inner {
        grid-template-columns: 1fr;
    }

    .ss-footer-divider {
        display: none;
    }

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

    .ss-footer {
        text-align: center;
    }

    .ss-footer-contact p {
        justify-content: flex-start;
    }

    .ss-footer-cta {
        align-items: center;
    }
}

/* =========================
   GLOBAL FONTS
========================= */
.ss-h1 {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    color: #054A8A;
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: .5rem;
}

.ss-h2 {
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    color: #054A8A;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

/* =========================
   FOOTER (TIGHTER HEIGHT)
========================= */
.ss-footer {
    background: #1f4f88;
    color: #ffffff;
    font-family: "Arimo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    padding: 1rem 0 0;
    text-align: left;

    /* was 4.25rem */
}

/* inner layout */
.ss-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 0rem;
    justify-items: start;

    /* was 3rem bottom */
    display: grid;
    grid-template-columns: 1.2fr 1px 1.4fr 1px 1fr;
    gap: 1.5rem;

    /* was 3rem */
    align-items: start;
}

.ss-footer-col {
    min-width: 0;
}

.ss-footer-divider {
    width: 1px;
    background: rgba(255,255,255,.25);
    height: 100%;
}

/* BRAND BLOCK */
.ss-footer-brandblock {
    display: flex;
    gap: .85rem;
    align-items: center;
    margin-bottom: .65rem;

    /* was .9rem */
}

.ss-footer-brandblock--stack {
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;

    /* was .85rem */
}

.ss-footer-brandblock--row {
    flex-direction: row;
    align-items: center;
}

.ss-footer-logo {
    width: 100px;

    /* was 80px */
    height: auto;
    display: block;
    flex-shrink: 0;
}

/* Brand name */
.ss-footer-title {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;

    /* was 3.1rem */
    line-height: 1.05;
    margin: 0;
    letter-spacing: .4px;
}

/* tagline */
.ss-footer-tagline {
    color: #f0a13e;
    font-size: 1.05rem;

    /* was 1.25rem */
    margin: 0 0 1.4rem 0;

    /* was 2rem */
}

/* contact items */
.ss-footer-contact p {
    display: flex;
    align-items: start;
    gap: .85rem;
    margin: 0 0 .95rem 0;
    justify-items: start;

    /* was 1.2rem */
    font-size: 1.05rem;

    /* was 1.25rem */
}

.ss-footer-icon {
    width: 22px;

    /* was 26px */
    height: 22px;
    object-fit: contain;
    display: block;
}

.ss-footer a {
    color: #ffffff;
    text-decoration: none;
}

.ss-footer a:hover {
    text-decoration: underline;
}

/* headings */
.ss-footer-heading {
    font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 900;
    color: #f0a13e;
    letter-spacing: .6px;
    margin: 0 0 1.05rem 0;

    /* was 1.5rem */
    font-size: 1.55rem;

    /* was 2rem */
    text-transform: uppercase;
}

/* links columns */
.ss-footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;

    /* was 2.5rem */
}

.ss-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;

    /* was 1.4rem */
}

.ss-footer-links a {
    font-size: 1.15rem;

    /* was 1.4rem */
    line-height: 1.35;
}

/* CTA */
.ss-footer-cta .ss-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F79320;
    color: #fff;
    font-weight: 900;
    border-radius: 16px;
    padding: .95rem 1.4rem;

    /* was 1.2rem 2rem */
    font-size: 1.15rem;

    /* was 1.35rem */
    margin-top: 1rem;

    /* was 1.25rem */
    box-shadow: 0 14px 22px rgba(0,0,0,.18);
    text-decoration: none;
    width: min(320px, 100%);
    text-align: center;
}

.ss-footer-cta .ss-footer-btn:hover {
    background: #c88722;
    text-decoration: none;
}

/* bottom bar */
.ss-footer-bottom {
    border-top: 2px solid rgba(255,255,255,.20);
    padding: .5rem 2rem;

    /* was 1.8rem */
    text-align: center;
    font-size: 1rem;

    /* was 1.35rem */
    color: rgba(255,255,255,.92);
}

/* responsive */
@media (max-width: 991.98px){
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 1.5rem;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-title {
        font-size: 2.1rem;
    }

    .ss-footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    /* Center the grid itself */
    .ss-footer-inner {
        justify-items: center;
        text-align: center;
    }

    /* Brand / logo block */
    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Contact rows */
    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Headings */
    .ss-footer-heading {
        text-align: center;
    }

    /* quick links: keep 2 columns but center them */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem 1.25rem;
        justify-items: center;

        /* FIX */
        text-align: center;

        /* FIX */
    }

    .ss-footer-links ul {
        text-align: center;

        /* FIX */
        gap: 0.75rem;
    }

    .ss-footer-links a {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    /* CTA section */
    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Fold unfolded / tablets / small laptops: use centered stacked footer */
@media (max-width: 1100px) {
    .ss-footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        justify-items: center;

        /* center the stacked blocks */
        text-align: center;
    }

    .ss-footer-divider {
        display: none;
    }

    .ss-footer-brandblock,
    .ss-footer-brandblock--stack {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .ss-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    /* Keep quick links in 2 columns for wider unfolded screens */
    .ss-footer-links {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        text-align: center;
        gap: 1rem 2rem;
    }

    .ss-footer-links ul {
        text-align: center;
    }

    .ss-footer-cta {
        text-align: center;
    }

    .ss-footer-cta .ss-footer-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =====================
   FORCE BUTTON STYLES
===================== */
a.btn {
    text-decoration: none;
}

.ss-btn-accent {
    background-color: #F79320 !important;
    border-color: #F79320 !important;
    color: #fff !important;
}

.ss-btn-primary {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
    color: #fff !important;
}

.ss-btn-accent:hover {
    background-color: #054A8A !important;
    border-color: ##054A8A !important;
}

.ss-btn-primary:hover {
    background-color: #054A8A !important;
    border-color: #054A8A !important;
}


