/* =========================================
   SafeMax - Main Stylesheet
   ========================================= */

:root {
    --sm-red: #FF0000;
    --sm-blue: #07172F;
    --sm-dark-blue: #061422;
    --sm-cream: #fef5ee;
    --sm-dark: #111111;
    --sm-dark2: #1a1a1a;
    --sm-gray: #f5f5f5;
    --sm-text: #444444;
    --sm-white: #ffffff;
    --sm-border: #e0e0e0;
    --sm-font-title: 'Poppins', sans-serif;
    --sm-font-body: 'Montserrat', sans-serif;
    --sm-container: 1200px;
}

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

body {
    font-family: var(--sm-font-body);
    color: var(--sm-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}


/* Global text safety — prevents any text from breaking layout */

* {
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sm-hero__title,
.sm-section-title,
.sm-service-card__title,
.sm-footer__col-title,
.sm-page-hero__title,
.sm-cta__text h2,
.sm-videos__header h2 {
    font-family: var(--sm-font-title);
}

p,
a,
li,
span,
td,
th,
input,
textarea,
button,
label {
    font-family: var(--sm-font-body);
}

.sm-container {
    max-width: var(--sm-container);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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


/* =========================================
   TOPBAR
   ========================================= */

.sm-topbar {
    background: var(--sm-dark-blue);
    color: var(--sm-white);
    font-size: 13px;
    padding: 8px 0;
}

.sm-topbar .sm-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.sm-topbar__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sm-topbar__left a,
.sm-topbar__left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--sm-white);
    transition: color .2s;
}

.sm-topbar__left a:hover {
    color: var(--sm-cream);
}

.sm-topbar__left a:hover svg {
    fill: var(--sm-cream);
}

.sm-topbar__left svg {
    width: 14px;
    height: 14px;
    fill: var(--sm-red);
    flex-shrink: 0;
    transition: fill .2s;
}

.sm-topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sm-topbar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--sm-red);
    transition: background .2s;
}

.sm-topbar__social:hover {
    background: var(--sm-cream);
}

.sm-topbar__social:hover svg {
    fill: var(--sm-blue);
}

.sm-topbar__social svg {
    width: 14px;
    height: 14px;
    fill: var(--sm-white);
}


/* =========================================
   HEADER / NAV
   ========================================= */

.sm-header {
    background: var(--sm-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sm-header .sm-container {
    padding-top: 0;
    padding-bottom: 0;
}

.sm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    position: relative;
}

.sm-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.sm-logo span {
    font-size: 22px;
    font-weight: 800;
    color: var(--sm-red);
    letter-spacing: 1px;
}

.sm-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sm-nav__list>li {
    position: relative;
}

.sm-nav__list>li>a {
    display: block;
    padding: 26px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    color: #222;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}

.sm-nav__list>li>a:hover,
.sm-nav__list>li>a.active {
    color: var(--sm-red);
    border-bottom-color: var(--sm-red);
}

.sm-nav__list>li>a.active:hover {
    color: #cc0000;
    border-bottom-color: #cc0000;
}

.sm-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--sm-white);
    min-width: 220px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    border-top: 3px solid var(--sm-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 100;
}

.has-dropdown:hover .sm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sm-dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s, color .2s, padding-left .2s;
}

.sm-dropdown li:last-child a {
    border-bottom: none;
}

.sm-dropdown li a:hover {
    background: #fafafa;
    color: var(--sm-red);
    padding-left: 24px;
}

.sm-dropdown li a.active {
    color: var(--sm-red);
    font-weight: 600;
    background: #fafafa;
}

.sm-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.sm-nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}


/* =========================================
   BUTTONS
   ========================================= */

.sm-btn {
    display: inline-block;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .15s;
    border: 2px solid transparent;
}

.sm-btn:hover {
    transform: translateY(-1px);
}

.sm-btn--red {
    background: var(--sm-red);
    color: var(--sm-white);
    border-color: var(--sm-red);
}

.sm-btn--red:hover {
    background: #cc0000;
    border-color: #cc0000;
}

.sm-btn--outline {
    background: transparent;
    color: var(--sm-white);
    border-color: var(--sm-white);
}

.sm-btn--outline:hover {
    background: var(--sm-white);
    color: #111;
}

.sm-btn--hero {
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px 10px 20px;
}

.sm-btn--hero .sm-btn__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm-btn--hero .sm-btn__icon svg {
    width: 14px;
    height: 14px;
}

.sm-btn--red.sm-btn--hero .sm-btn__icon {
    background: #fff;
    color: var(--sm-red);
}

.sm-btn--outline.sm-btn--hero .sm-btn__icon {
    background: rgba(255, 255, 255, 0.2);
}

.sm-btn--outline-red {
    background: transparent;
    color: var(--sm-red);
    border-color: var(--sm-red);
}

.sm-btn--outline-red:hover {
    background: var(--sm-red);
    color: var(--sm-white);
}

.sm-btn--white {
    background: var(--sm-white);
    color: var(--sm-red);
    border-color: var(--sm-white);
}

.sm-btn--white:hover {
    background: transparent;
    color: var(--sm-white);
}


/* =========================================
   SHARED SECTION LABELS
   ========================================= */

.sm-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--sm-red);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sm-section-label span {
    color: var(--sm-red);
}

.sm-section-title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}


/* =========================================
   PAGE HERO BANNER (inner pages)
   ========================================= */

.sm-page-hero {
    background: var(--sm-dark2);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sm-page-hero__bg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    opacity: .25;
}

.sm-page-hero .sm-container {
    position: relative;
    z-index: 1;
}

.sm-page-hero__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--sm-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sm-page-hero__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--sm-white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.sm-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}

.sm-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.sm-page-hero__breadcrumb a:hover {
    color: var(--sm-white);
}

.sm-page-hero__breadcrumb span {
    color: var(--sm-red);
}


/* =========================================
   HOME - HERO
   ========================================= */

.sm-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.sm-hero__image {
    position: absolute;
    inset: 0;
    background: #111 var(--hero-bg) center/cover no-repeat;
    z-index: 0;
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), var(--hero-bg); */
}

@media (max-width: 768px) {
    .sm-hero__image {
        background-image: var(--hero-bg-mobile);
        background-position: center top;
    }
}


/* Video background (desktop only) */

.sm-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    z-index: 0;
    background-color: #0E1218;
}

.sm-hero__video-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}


/* Mobile fallback image when video is active */

.sm-hero__image--mobile {
    display: none;
    position: absolute;
    inset: 0;
    background: #111 var(--hero-bg-mobile) center top / cover no-repeat;
    z-index: 0;
}

@media (max-width: 768px) {
    .sm-hero__video,
    .sm-hero__video-overlay {
        display: none;
    }
    .sm-hero__image--mobile {
        display: block;
    }
}

.sm-hero__image::before {
    display: none;
}

.sm-hero__image::after {
    display: none;
}

.sm-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
}

.sm-hero__split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 24px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-hero__tagline {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.sm-hero__badge-line {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    margin-top: 60px;
}

@media (max-width: 600px) {
    .sm-hero__split {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
    }
    .sm-hero__badge-line {
        text-align: left;
        margin-top: 0;
    }
}

.sm-hero__content .sm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 30px;
}

.sm-hero__text {
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.sm-hero__eyebrow {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.sm-hero__title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--sm-white);
    line-height: 1.1;
    text-transform: uppercase;
}

.sm-hero__title span {
    color: var(--sm-red);
}

.sm-hero__subtitle {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.6;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.sm-hero__desc {
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.sm-hero__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sm-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sm-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sm-white);
}

.sm-hero__badge-icon {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm-hero__badge-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--sm-red);
}

.sm-hero__badge-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 80px;
}


/* =========================================
   HOME - CLIENTS CAROUSEL
   ========================================= */

.sm-clients {
    background: var(--sm-white);
    border-bottom: 1px solid var(--sm-border);
    padding: 0;
}

.sm-clients__inner {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 80px;
}

.sm-clients__label-col {
    flex-shrink: 0;
    width: 200px;
    padding: 20px 0px 20px 0px;
    border-right: 2px solid var(--sm-border);
}

.sm-clients__label {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.5;
}

.sm-clients__label span {
    color: var(--sm-red);
}

.sm-certs-section .sm-clients__label {
    color: #fff;
}


/* Carousel wrapper */

.sm-clients__marquee-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}


/* Scrollable track */

.sm-clients__track {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
    cursor: grab;
}

.sm-clients__track.dragging {
    cursor: grabbing;
}

.sm-clients__track::-webkit-scrollbar {
    display: none;
}

.sm-clients__marquee {
    display: flex;
    align-items: center;
    width: max-content;
}

.sm-clients__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    border-right: 1px solid var(--sm-border);
    flex-shrink: 0;
    min-width: calc((100vw - 200px) / 5);
    max-width: calc((100vw - 200px) / 5);
}

.sm-cert-label {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--sm-white);
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
}

.sm-clients__item:last-child {
    border-right: none;
}

.sm-clients__logo {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform .3s, filter .3s;
}

.sm-clients__item:hover .sm-clients__logo {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.sm-clients__logo-text {
    font-size: 17px;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color .3s, transform .3s;
}

.sm-clients__item:hover .sm-clients__logo-text {
    color: var(--sm-red);
    transform: scale(1.08);
}


/* =========================================
   HOME - ABOUT
   ========================================= */

.sm-about {
    background: var(--sm-gray);
    padding: 70px 0;
}

.sm-about .sm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sm-about__text p {
    font-size: 14px;
    color: var(--sm-blue);
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.75;
}

.sm-about__text span {
    color: var(--sm-blue);
    font-weight: 500;
}

.sm-about__text .sm-btn {
    margin-top: 10px;
}

.sm-about__image {
    position: relative;
}

.sm-about__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
}

.sm-about__badge {
    position: absolute;
    bottom: 30px;
    left: 10px;
    background: rgba(10, 10, 10, .88);
    backdrop-filter: blur(6px);
    color: var(--sm-white);
    padding: 16px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 200px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}

.sm-about__badge-icon {
    width: 48px;
    height: 48px;
    background: var(--sm-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm-about__badge-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.sm-about__badge-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}


/* =========================================
   HOME - SERVICES GRID
   ========================================= */

.sm-services {
    background: var(--sm-blue);
    padding: 70px 0;
}

.sm-services__header {
    text-align: center;
    margin-bottom: 50px;
}

.sm-services__header .sm-section-label {
    display: block;
}

.sm-services__header .sm-section-title {
    color: var(--sm-white);
}

.sm-about .sm-section-title {
    color: var(--sm-blue);
}

.sm-about__text .sm-section-label {
    color: var(--sm-red);
    font-weight: 700;
}

.sm-services__desc {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin: 12px auto 0;
}

.sm-services__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.sm-service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #0d1e35;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
}

.sm-service-card:hover {
    border-color: var(--sm-red);
}

.sm-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.sm-service-card__img {
    width: 100%;
    height: 180px;
    background: #1a2a3a center/cover no-repeat;
    transition: transform .4s;
    flex-shrink: 0;
}

.sm-service-card:hover .sm-service-card__img {
    transform: scale(1.05);
}

.sm-service-card__content {
    padding: 20px 16px;
    flex: 1;
    border-top: 3px solid var(--sm-red);
}

.sm-service-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sm-white);
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: uppercase;
}

.sm-service-card__desc {
    font-size: 12px;
    color: #fff;
    line-height: 1.7;
}

.sm-services__footer {
    text-align: center;
    margin-top: 40px;
}


/* =========================================
   HOME - VIDEO GALLERY
   ========================================= */

.sm-videos {
    background: var(--sm-gray);
    padding: 70px 0;
}

.sm-videos__header {
    text-align: center;
    margin-bottom: 40px;
}

.sm-videos__desc {
    font-size: 15px;
    color: var(--sm-blue);
    line-height: 1.7;
    max-width: 650px;
    margin: 12px auto 0;
}

.sm-videos__header h2 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-blue);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.sm-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.sm-video-card {
    position: relative;
    background: var(--sm-dark);
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.sm-video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.sm-video-card__thumb {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    cursor: pointer;
}

.sm-video-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
    transition: opacity .3s;
}

.sm-video-card__thumb:hover img {
    opacity: .8;
}

.sm-video-card__play {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: var(--sm-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.sm-video-card__thumb:hover .sm-video-card__play {
    transform: scale(1.1);
    background: #cc0000;
}

.sm-video-card__play svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 4px;
}

.sm-video-card__label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}

.sm-video-card__yt {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 1;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sm-video-card__yt svg {
    width: 14px;
    height: 14px;
    fill: #ff0000;
}


/* =========================================
   CTA BANNER
   ========================================= */

.sm-cta {
    background: var(--sm-red);
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.sm-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(180, 10, 10, 0.82);
    z-index: 0;
}

.sm-cta .sm-container {
    position: relative;
    z-index: 1;
}

.sm-cta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sm-cta__title {
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    line-height: 1.1;
}

.sm-cta__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--sm-white);
    line-height: 1.3;
}

.sm-cta__desc {
    font-size: 14px;
    color: #fff;
    max-width: 580px;
    line-height: 1.7;
}

.sm-btn--cta-outline {
    background: var(--sm-white);
    color: var(--sm-red);
    border: 2px solid var(--sm-white);
    margin-top: 8px;
    letter-spacing: 1.5px;
}

.sm-btn--cta-outline:hover {
    background: transparent;
    color: var(--sm-white);
}


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

.sm-footer {
    background: var(--sm-dark-blue);
    padding: 70px 0 0;
    color: #fff;
    font-size: 13px;
}

.sm-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.sm-footer__col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--sm-white);
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: capitalize;
}

.sm-footer__about {
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 12px;
}

.sm-footer__social {
    display: flex;
    gap: 8px;
}

.sm-footer__social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.sm-footer__social-link:hover {
    background: var(--sm-red);
}

.sm-footer__social-link svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.sm-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sm-footer__links a {
    color: #fff;
    font-size: 13px;
    transition: color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sm-footer__links a::before {
    content: '›';
    color: var(--sm-red);
    font-size: 16px;
    line-height: 1;
}

.sm-footer__links a:hover {
    color: var(--sm-white);
    padding-left: 4px;
}

.sm-footer__services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sm-footer__services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sm-footer__services-list li::before {
    content: '•';
    color: var(--sm-red);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.sm-footer__services-list span {
    color: #fff;
    font-size: 13px;
}

.sm-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sm-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.sm-footer__contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--sm-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.sm-footer__contact-item a {
    color: #fff;
    transition: color .2s;
}

.sm-footer__contact-item a:hover {
    color: var(--sm-white);
}

.sm-footer__hours {
    font-size: 14px;
    color: var(--sm-white);
    font-weight: 600;
    margin-bottom: 6px;
}

.sm-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.sm-footer__bottom a {
    color: var(--sm-red);
}


/* =========================================
   RESPONSIVE
   4K · Laptop L · Laptop · Tablet · Mobile L · Mobile M · Mobile S
   ========================================= */


/* ── 4K (2560px+) ── */

@media (min-width: 2560px) {
     :root {
        --sm-container: 1800px;
    }
    body {
        font-size: 18px;
    }
    .sm-topbar {
        font-size: 15px;
        padding: 10px 0;
    }
    .sm-logo img {
        height: 70px;
    }
    .sm-nav__list>li>a {
        font-size: 15px;
        padding: 30px 18px;
    }
    .sm-hero {
        min-height: 900px;
    }
    .sm-about {
        padding: 120px 0;
    }
    .sm-about__image img {
        height: 560px;
    }
    .sm-services {
        padding: 120px 0;
    }
    .sm-services__grid {
        gap: 28px;
    }
    .sm-service-card__img {
        height: 200px;
    }
    .sm-videos {
        padding: 120px 0;
    }
    .sm-videos__grid {
        gap: 32px;
    }
    .sm-cta {
        padding: 90px 0;
    }
    .sm-footer {
        padding: 100px 0 0;
    }
}


/* ── Laptop L (1440px – 2559px) ── */

@media (min-width: 1440px) and (max-width: 2559px) {
     :root {
        --sm-container: 1360px;
    }
    .sm-hero {
        min-height: 768px;
    }
    .sm-about__image img {
        height: 480px;
    }
    .sm-service-card__img {
        height: 180px;
    }
}


/* ── Tablet (769px – 1024px) ── */

@media (max-width: 1024px) {
    .sm-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .sm-service-card__img {
        height: 160px;
    }
    .sm-about .sm-container {
        gap: 36px;
    }
    .sm-about__image img {
        height: 360px;
    }
    .sm-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .sm-footer__col:first-child {
        grid-column: 1 / -1;
    }
    .sm-videos__grid {
        gap: 16px;
    }
    .sm-about {
        padding: 70px 0;
    }
    .sm-services {
        padding: 70px 0;
    }
    .sm-videos {
        padding: 70px 0;
    }
}


/* ── Mobile (max 768px) ── */

@media (max-width: 768px) {
    /* Topbar */
    .sm-topbar {
        font-size: 12px;
        padding: 7px 0;
    }
    .sm-topbar__left {
        gap: 12px;
    }
    .sm-topbar__left .topbar-hide {
        display: none;
    }
    /* Nav */
    .sm-nav__toggle {
        display: flex;
    }
    .sm-nav__list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--sm-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
        z-index: 200;
        border-top: 3px solid var(--sm-red);
        max-height: 70vh;
        overflow-y: auto;
    }
    .sm-nav__list.open {
        display: flex;
    }
    .sm-nav__list>li>a {
        padding: 14px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }
    .sm-nav__list>li>a:hover {
        background: #fafafa;
    }
    .sm-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: #f5f5f5;
        display: none;
    }
    .has-dropdown.open .sm-dropdown {
        display: block;
    }
    /* Hero */
    .sm-hero {
        min-height: 520px;
    }
    .sm-hero__content .sm-container {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .sm-hero__text {
        max-width: 100%;
    }
    .sm-hero__subtitle {
        font-size: 14px;
    }
    .sm-hero__btns {
        gap: 10px;
        flex-wrap: wrap;
    }
    .sm-hero__badges {
        gap: 14px;
    }
    .sm-hero__badge-text {
        font-size: 11px;
        max-width: 80px;
    }
    /* Clients */
    .sm-clients__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .sm-clients__label-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--sm-border);
        padding: 16px 0;
    }
    .sm-clients__label {
        font-size: 12px;
    }
    .sm-clients__marquee-wrap {
        width: 100%;
    }
    .sm-clients__item {
        min-width: calc(100vw / 3);
        max-width: calc(100vw / 3);
    }
    /* About */
    .sm-about {
        padding: 30px 0;
    }
    .sm-about .sm-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sm-about__image img {
        height: 280px;
    }
    .sm-about__badge {
        left: 10px;
        bottom: 16px;
    }
    /* Services — keep 2 columns on tablet-mobile */
    .sm-services {
        padding: 30px 0;
    }
    .sm-services__desc {
        text-align: start;
        margin: 12px 0 0;
    }
    .sm-services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .sm-service-card__img {
        height: 140px;
    }
    /* Videos */
    .sm-videos {
        padding: 30px 0;
    }
    .sm-videos__desc {
        text-align: start;
        margin: 12px 0 0;
    }
    .sm-videos__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* CTA */
    .sm-cta {
        padding: 50px 0;
    }
    .sm-cta .sm-container {
        flex-direction: column;
        text-align: center;
    }
    .sm-cta__subtitle {
        font-size: 17px;
    }
    .sm-cta__desc {
        text-align: start;
    }
    /* Footer */
    .sm-footer {
        padding: 50px 0 0;
    }
    .sm-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .sm-footer__col:first-child {
        grid-column: 1 / -1;
    }
}


/* ── Mobile L (≤ 425px) ── */

@media (max-width: 425px) {
    .sm-container {
        padding: 0 16px;
    }
    .sm-hero {
        min-height: 480px;
    }
    .sm-hero__content .sm-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .sm-hero__subtitle {
        font-size: 13px;
    }
    .sm-hero__badges {
        gap: 10px;
    }
    .sm-hero__badge-icon {
        width: 38px;
        height: 38px;
    }
    .sm-btn {
        padding: 11px 22px;
        font-size: 12px;
    }
    .sm-services__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .sm-service-card__img {
        height: 130px;
    }
    .sm-video-card__play {
        width: 48px;
        height: 48px;
    }
    .sm-video-card__play svg {
        width: 20px;
        height: 20px;
    }
    .sm-cta__text p {
        font-size: 13px;
    }
    .sm-footer__grid {
        grid-template-columns: 1fr;
    }
    .sm-footer__col:first-child {
        grid-column: auto;
    }
    .sm-topbar__right {
        display: none;
    }
    .sm-clients__label {
        font-size: 11px;
        letter-spacing: .3px;
    }
    .sm-clients__logo-text {
        font-size: 14px;
    }
    .sm-clients__item {
        padding: 0 24px;
        min-width: calc(100vw / 2);
        max-width: calc(100vw / 2);
    }
}


/* ── Mobile M (≤ 375px) ── */

@media (max-width: 375px) {
    .sm-container {
        padding: 0 14px;
    }
    .sm-hero {
        min-height: 460px;
    }
    .sm-hero__subtitle {
        font-size: 12px;
        margin-bottom: 24px;
    }
    .sm-hero__badges {
        flex-direction: column;
        gap: 10px;
    }
    .sm-hero__btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .sm-hero__btns .sm-btn {
        text-align: center;
    }
    .sm-logo img {
        height: 44px;
    }
    .sm-header__inner {
        min-height: 64px;
    }
    .sm-about__badge {
        max-width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0 0 6px 6px;
    }
    .sm-clients__label {
        font-size: 11px;
    }
    .sm-clients__logos {
        gap: 12px;
    }
    .sm-clients__logo-text {
        font-size: 13px;
    }
    .sm-footer__grid {
        gap: 20px;
    }
    .sm-cta__text h2 {
        font-size: 22px;
    }
    .sm-footer__col-title {
        font-size: 13px;
    }
}


/* ── Mobile S (≤ 320px) ── */

@media (max-width: 320px) {
    .sm-container {
        padding: 0 12px;
    }
    .sm-hero {
        min-height: 440px;
    }
    .sm-hero__eyebrow {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .sm-hero__subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }
    .sm-hero__badge-text {
        font-size: 10px;
        max-width: 70px;
    }
    .sm-logo img {
        height: 38px;
    }
    .sm-logo span {
        font-size: 16px;
    }
    .sm-header__inner {
        min-height: 58px;
    }
    .sm-topbar {
        display: none;
    }
    .sm-btn {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: .3px;
    }
    .sm-service-card__img {
        height: 120px;
    }
    .sm-service-card__title {
        font-size: 14px;
    }
    .sm-service-card__desc {
        font-size: 11px;
    }
    .sm-about__badge {
        position: static;
        margin-top: 12px;
        max-width: 100%;
        border-radius: 6px;
    }
    .sm-clients__label {
        font-size: 10px;
        letter-spacing: .2px;
    }
    .sm-clients__logo-text {
        font-size: 12px;
    }
    .sm-cta__text h2 {
        font-size: 19px;
    }
    .sm-cta__text p {
        font-size: 12px;
    }
    .sm-footer__col-title {
        font-size: 13px;
    }
    .sm-footer__links a {
        font-size: 12px;
    }
    .sm-footer__contact-item {
        font-size: 12px;
    }
    .sm-video-card__play {
        width: 42px;
        height: 42px;
    }
    .sm-video-card__play svg {
        width: 16px;
        height: 16px;
    }
}


/* =========================================
   ABOUT PAGE
   ========================================= */

.sm-red-text {
    color: var(--sm-red);
}


/* --- About Hero --- */

.sm-about-hero {
    background: var(--sm-blue);
    overflow: hidden;
}

.sm-about-hero__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    min-height: 420px;
}

.sm-about-hero__left {
    display: flex;
    align-items: center;
    background: var(--sm-blue);
    padding: 60px 0 60px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-about-hero__left-inner {
    max-width: 480px;
}

.sm-about-hero__title {
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    margin-bottom: 14px;
}

.sm-about-hero__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 20px;
}

.sm-about-hero__subtitle {
    font-size: clamp(15px, 1.6vw, 20px);
    color: var(--sm-white);
    line-height: 1.7;
}

.sm-about-hero__right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
}

.sm-about-hero__inner {
    position: relative;
}

.sm-about-hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    clip-path: polygon( calc(37.5% - 3px) 0%, calc(37.5% + 3px) 0%, calc(37.5% + 203px) 100%, calc(37.5% + 197px) 100%);
    background: var(--sm-cream);
}

.sm-about-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}


/* --- Who We Are --- */

.sm-who {
    background: var(--sm-cream);
    overflow: hidden;
}

.sm-who__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.sm-who__left {
    display: flex;
    align-items: center;
    padding: 35px 40px 0 max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-who__left-inner {
    max-width: 560px;
}

.sm-who__right {
    position: relative;
    background: transparent;
    padding-left: 10px;
    align-self: start;
    margin-top: 10px;
}

.sm-who__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    background: #e8d4be;
    border-radius: 30% 0 0 30% / 50% 0 0 50%;
    z-index: 0;
}

.sm-who__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sm-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sm-who__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-blue);
    margin-bottom: 14px;
    line-height: 1.25;
}

.sm-who__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 22px;
}

.sm-who__text {
    font-size: 14px;
    color: var(--sm-blue);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 14px;
}

.sm-who__img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30% 12px 12px 30% / 50% 12px 12px 50%;
    display: block;
}

.sm-who__img-placeholder {
    width: 100%;
    height: 420px;
    background: #ccc;
    border-radius: 30% 12px 12px 30% / 50% 12px 12px 50%;
}


/* --- Our Mission --- */

.sm-mission-section {
    background: var(--sm-cream);
    padding: 70px 0 0;
}

.sm-mission__card {
    background: var(--sm-blue);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    overflow: hidden;
}

.sm-mission__left {
    position: relative;
    min-height: 360px;
}

.sm-mission__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.sm-mission__img-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
}

.sm-mission__right {
    padding: 50px 44px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.sm-mission__content {
    flex: 1;
}

.sm-mission__icon {
    width: 52px;
    height: 52px;
    background: var(--sm-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm-mission__icon svg {
    width: 26px;
    height: 26px;
    color: var(--sm-blue);
}

.sm-mission__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-white);
}

.sm-mission__line {
    width: 40px;
    height: 3px;
    background: var(--sm-red);
    margin: 8px 0 20px;
}

.sm-mission__text {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 14px;
}


/* --- Core Values + Quality Assurance --- */

.sm-values-qa {
    background: var(--sm-cream);
    padding: 70px 0;
}

.sm-values-qa__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sm-values-qa__col {
    background: #fdf0e4;
    border: 2px solid #e8d4be;
    border-radius: 10px;
    padding: 32px 28px;
}

.sm-values-qa__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.sm-values-qa__icon {
    width: 52px;
    height: 52px;
    background: var(--sm-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sm-values-qa__icon svg {
    width: 24px;
    height: 24px;
    color: var(--sm-white);
}

.sm-values-qa__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-blue);
}

.sm-values-qa__line {
    width: 40px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 24px;
}


/* Core Values list */

.sm-core-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sm-core-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--sm-blue);
    line-height: 1.6;
}

.sm-core-list__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-top: 2px;
}

.sm-core-list__icon svg {
    width: 44px;
    height: 44px;
}


/* QA list */

.sm-qa-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sm-qa-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--sm-blue);
    line-height: 1.6;
}

.sm-qa-list__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--sm-blue);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.sm-qa-list__icon svg {
    width: 16px;
    height: 16px;
}


/* Certifications carousel — larger logos than home page clients section */

.sm-certs-section .sm-clients__logo {
    height: 90px;
    max-width: 200px;
}


/* About Page Responsive */


/* 4K (≥2560px) */

@media (min-width: 2560px) {
    /* sm-about-hero__title uses clamp — no override needed */
    .sm-about-hero__subtitle {
        font-size: 24px;
    }
    .sm-about-hero__inner {
        min-height: 600px;
    }
    .sm-about-hero__img {
        min-height: 600px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 600px;
    }
    .sm-mission__left {
        min-height: 500px;
    }
    .sm-mission__right {
        padding: 70px 60px;
    }
    .sm-core-list__item,
    .sm-qa-list__item {
        font-size: 16px;
    }
}


/* Laptop L (1440px–2559px) */

@media (min-width: 1440px) and (max-width: 2559px) {
    .sm-about-hero__inner {
        min-height: 500px;
    }
    .sm-about-hero__img {
        min-height: 500px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 500px;
    }
    .sm-mission__left {
        min-height: 420px;
    }
}


/* Tablet (769px–1024px) */

@media (max-width: 1024px) {
    .sm-about-hero__inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .sm-about-hero__inner::after {
        display: none;
    }
    .sm-about-hero__left {
        padding: 50px 20px;
    }
    .sm-about-hero__left-inner {
        max-width: 100%;
    }
    .sm-about-hero__right {
        clip-path: none;
    }
    .sm-about-hero__img {
        min-height: 280px;
        height: 280px;
    }
    .sm-who__inner,
    .sm-values-qa__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sm-who__left {
        padding: 0 20px;
    }
    .sm-who__left-inner {
        max-width: 100%;
    }
    .sm-mission__card {
        grid-template-columns: 1fr;
    }
    .sm-mission__left {
        min-height: 260px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sm-who__left {
        padding-top: 30px;
    }
    .sm-certs-section .sm-clients__logo {
        height: 70px;
        max-width: 150px;
    }
}


/* Mobile L (≤768px) */

@media (max-width: 768px) {
    .sm-about-hero__left {
        padding: 40px 20px;
    }
    .sm-about-hero__img {
        min-height: 220px;
        height: 220px;
    }
    .sm-who {
        padding: 30px 0;
    }
    .sm-mission-section {
        padding: 30px 0;
    }
    .sm-certs-section {
        padding: 30px 0 !important;
    }
    .sm-certs-section .sm-clients__item {
        min-width: calc(100vw / 2);
        max-width: calc(100vw / 2);
    }
    .sm-certs-section .sm-clients__logo {
        height: 60px;
        max-width: 130px;
    }
    .sm-mission__right {
        padding: 28px 20px;
        flex-direction: column;
    }
    .sm-mission__icon {
        align-self: flex-start;
    }
    .sm-values-qa__col {
        padding: 20px 20px;
    }
    .sm-values-qa {
        padding: 30px 0;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        border-radius: 30% 12px 12px 30% / 50% 12px 12px 50%;
        height: 250px;
    }
    .sm-values-qa__grid {
        gap: 40px;
    }
}


/* Mobile M (≤425px) */

@media (max-width: 425px) {
    .sm-about-hero__left {
        padding: 30px 16px;
    }
    .sm-about-hero__img {
        min-height: 180px;
        height: 180px;
    }
    .sm-mission__right {
        padding: 24px 18px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 220px;
    }
    .sm-core-list__item,
    .sm-qa-list__item {
        font-size: 13px;
    }
    .sm-mission__title {
        font-size: 18px;
    }
}


/* Mobile M (≤375px) */

@media (max-width: 375px) {
    .sm-about-hero__img {
        height: 160px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 200px;
    }
    .sm-mission__right {
        padding: 20px 16px;
    }
    .sm-core-list__item,
    .sm-qa-list__item {
        font-size: 12px;
        gap: 8px;
    }
}


/* Mobile S (≤320px) */

@media (max-width: 320px) {
    .sm-about-hero__img {
        height: 140px;
    }
    .sm-who__img,
    .sm-who__img-placeholder {
        height: 180px;
    }
    .sm-mission__right {
        padding: 18px 14px;
    }
    .sm-values-qa__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .sm-core-list__item,
    .sm-qa-list__item {
        font-size: 11px;
    }
}


/* ==========================================================
   FIRE & SAFETY SYSTEMS PAGE
========================================================== */


/* Hero */

.sm-fss-hero {
    background: var(--sm-blue);
    overflow: hidden;
}

.sm-fss-hero__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    min-height: 480px;
    position: relative;
}

.sm-fss-hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    clip-path: polygon( calc(37.5% - 3px) 0%, calc(37.5% + 3px) 0%, calc(37.5% + 203px) 100%, calc(37.5% + 197px) 100%);
    background: var(--sm-cream);
}

.sm-fss-hero__left {
    display: flex;
    align-items: center;
    padding: 60px 30px 60px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-fss-hero__left-inner {
    max-width: 400px;
}

.sm-fss-hero__label {
    display: block;
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--sm-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sm-fss-hero__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    line-height: 1.1;
    margin: 0 0 14px;
}

.sm-fss-hero__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 16px;
}

.sm-fss-hero__line--sm {
    margin-top: 4px;
}

.sm-fss-hero__subtitle {
    font-family: var(--sm-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--sm-white);
    margin: 0 0 12px;
}

.sm-fss-cream-text {
    color: var(--sm-cream);
}

.sm-fss-hero__desc {
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-white);
    line-height: 1.7;
    margin: 0 0 32px;
}

.sm-fss-hero__stats {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.sm-fss-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.sm-fss-hero__stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sm-white);
}

.sm-fss-hero__stat-icon svg,
.sm-fss-hero__stat-icon img {
    width: 22px;
    height: 22px;
}

.sm-fss-hero__stat-num {
    font-family: var(--sm-font-title);
    font-size: 17px;
    font-weight: 800;
    color: var(--sm-white);
    line-height: 1;
}

.sm-fss-hero__stat-label {
    font-family: var(--sm-font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--sm-white);
    line-height: 1.3;
}

.sm-fss-hero__right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
}

.sm-fss-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 480px;
}


/* Who We Are */

.sm-fss-who {
    background: var(--sm-cream);
    padding: 70px 0;
}

.sm-fss-who__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.sm-fss-who__left {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 460px;
}

.sm-fss-who__img,
.sm-fss-who__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 460px;
    border-radius: 10px;
}

.sm-fss-who__img-placeholder {
    background: #c8d0da;
}

.sm-fss-who__right {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sm-fss-who__label {
    display: block;
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--sm-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sm-fss-who__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-blue);
    line-height: 1.2;
    margin: 0 0 14px;
}

.sm-fss-who__line {
    width: 40px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 20px;
}

.sm-fss-who__text {
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-blue);
    line-height: 1.75;
    margin: 0 0 32px;
}


/* Cert badges row */

.sm-fss-who__certs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
}

.sm-fss-who__cert {
    background: var(--sm-blue);
    border-radius: 8px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.sm-fss-who__cert-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sm-white);
}

.sm-fss-who__cert-icon svg,
.sm-fss-who__cert-icon img {
    width: 18px;
    height: 18px;
}

.sm-fss-who__cert-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sm-fss-who__cert-title {
    font-family: var(--sm-font-title);
    font-size: 12px;
    font-weight: 700;
    color: var(--sm-white);
    line-height: 1.3;
}

.sm-fss-who__cert-sub {
    font-family: var(--sm-font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--sm-white);
}


/* Services section */

.sm-fss-services {
    background: var(--sm-blue);
    padding: 70px 0 70px;
    scroll-margin-top: 80px;
}

.sm-fss-services__header {
    margin-bottom: 40px;
}

.sm-fss-services__label {
    display: block;
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--sm-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sm-fss-services__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-white);
    margin: 0 0 14px;
}

.sm-fss-services__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
}

.sm-fss-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Service card */

.sm-fss-svc-card-wrap {
    position: relative;
    padding-top: 26px;
    display: flex;
    flex-direction: column;
}

.sm-fss-svc-card-wrap .sm-fss-svc-card__icon {
    position: absolute;
    top: 0;
    left: 35px;
    transform: none;
    width: 52px;
    height: 52px;
    background: var(--sm-blue);
    border: 2px solid #e8d4be;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: var(--sm-white);
}

.sm-fss-svc-card__icon svg,
.sm-fss-svc-card__icon img {
    width: 24px;
    height: 24px;
}

.sm-fss-svc-card {
    background: #fdf0e4;
    border: 2px solid #e8d4be;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(7, 23, 47, 0.08);
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sm-fss-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(7, 23, 47, 0.14);
}

.sm-fss-svc-card__top {
    position: relative;
}

.sm-fss-svc-card__img,
.sm-fss-svc-card__img-placeholder {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.sm-fss-svc-card__img-placeholder {
    background: #c8d0da;
}

.sm-fss-svc-card__body {
    padding: 18px 16px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sm-fss-svc-card__title {
    font-family: var(--sm-font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--sm-blue);
    margin: 0;
}

.sm-fss-svc-card__desc {
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.sm-fss-svc-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    align-self: flex-start;
}


/* FSS Responsive */

@media (min-width: 2560px) {
    /* sm-fss-hero__title uses clamp — no override needed */
    .sm-fss-hero__inner {
        min-height: 600px;
    }
    .sm-fss-hero__img {
        min-height: 600px;
    }
    .sm-fss-who__left,
    .sm-fss-who__img,
    .sm-fss-who__img-placeholder {
        min-height: 560px;
    }
}

@media (min-width: 1440px) and (max-width: 2559px) {
    .sm-fss-hero__inner {
        min-height: 520px;
    }
    .sm-fss-hero__img {
        min-height: 520px;
    }
}

@media (max-width: 1200px) {
    .sm-fss-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .sm-fss-hero__inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .sm-fss-hero__inner::after {
        display: none;
    }
    .sm-fss-hero__left {
        padding: 50px 20px;
    }
    .sm-fss-hero__left-inner {
        max-width: 100%;
    }
    .sm-fss-hero__right {
        clip-path: none;
    }
    .sm-fss-hero__img {
        min-height: 300px;
        height: 300px;
    }
    .sm-fss-who__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sm-fss-who__left {
        min-height: 320px;
    }
    .sm-fss-who__img,
    .sm-fss-who__img-placeholder {
        min-height: 320px;
        height: 320px;
    }
    .sm-fss-who__right {
        padding: 0;
    }
    .sm-fss-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sm-fss-hero__subtitle {
        font-size: 16px;
    }
    .sm-fss-hero__img {
        min-height: 220px;
        height: 220px;
    }
    .sm-fss-hero__stats {
        gap: 16px;
    }
    .sm-fss-hero__stat-num {
        font-size: 18px;
    }
    .sm-fss-who {
        padding: 30px 0;
    }
    .sm-fss-who__left {
        min-height: 260px;
    }
    .sm-fss-who__img,
    .sm-fss-who__img-placeholder {
        min-height: 260px;
        height: 260px;
    }
    .sm-fss-services {
        padding: 30px 0;
    }
    .sm-fss-services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .sm-fss-hero__left {
        padding: 30px 16px;
    }
    .sm-fss-hero__stat-num {
        font-size: 16px;
    }
    .sm-fss-who__certs {
        gap: 6px;
        flex-wrap: wrap;
    }
    .sm-fss-who__cert {
        flex: 1 1 calc(50% - 6px);
    }
    .sm-fss-services__grid {
        grid-template-columns: 1fr;
    }
    .sm-fss-svc-card__img,
    .sm-fss-svc-card__img-placeholder {
        height: 160px;
    }
}

@media (max-width: 375px) {
    .sm-fss-hero__stats {
        flex-wrap: wrap;
        gap: 12px;
    }
    .sm-fss-hero__stat {
        flex: 0 0 calc(50% - 6px);
    }
    .sm-fss-hero__stat:nth-child(n+3) {
        margin-top: 8px;
    }
}


/* ==========================================================
   CLIENTS PAGE
========================================================== */


/* --- Hero --- */

.sm-cl-hero {
    background: var(--sm-blue);
    overflow: hidden;
    padding-bottom: 70px;
}

.sm-cl-hero__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    min-height: 460px;
    position: relative;
}

.sm-cl-hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    clip-path: polygon( calc(37.5% - 3px) 0%, calc(37.5% + 3px) 0%, calc(37.5% + 203px) 100%, calc(37.5% + 197px) 100%);
    background: var(--sm-cream);
}

.sm-cl-hero__left {
    display: flex;
    align-items: center;
    padding: 60px 30px 60px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-cl-hero__left-inner {
    max-width: 440px;
}

.sm-cl-hero__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    margin: 10px 0 16px;
    line-height: 1.2;
}

.sm-cl-hero__line {
    width: 48px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 18px;
}

.sm-cl-hero__subtitle {
    font-family: var(--sm-font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-weight: 500;
}

.sm-cl-hero__right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
    min-height: 460px;
}

.sm-cl-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --- Client Logos (dark blue bg + cream card) --- */

.sm-cl-logos {
    background: var(--sm-blue);
    padding: 0 20px 0;
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.sm-cl-logos__card {
    background: #fdf0e4;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1160px;
    margin: 0 auto;
}

.sm-cl-logos__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.sm-cl-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-right: 1px solid #e0cfbe;
    border-bottom: 1px solid #e0cfbe;
    min-height: 120px;
    transition: background 0.2s;
}

.sm-cl-logos__item:hover {
    background: #f5e6d5;
}

.sm-cl-logos__item:nth-child(5n) {
    border-right: none;
}

.sm-cl-logos__img {
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: none;
    transition: transform 0.2s;
}

.sm-cl-logos__item:hover .sm-cl-logos__img {
    transform: scale(1.05);
}

.sm-cl-logos__empty {
    text-align: center;
    color: #999;
    font-size: 15px;
    padding: 40px;
}


/* --- Project Highlights --- */

.sm-cl-ph {
    background: var(--sm-blue);
    padding: 60px 0 70px;
}

.sm-cl-ph__header {
    margin-bottom: 36px;
}

.sm-cl-ph__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--sm-white);
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.sm-cl-ph__line {
    width: 48px;
    height: 3px;
    background: var(--sm-red);
}

.sm-cl-ph__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    overflow: hidden;
}

.sm-cl-ph__card {
    padding: 36px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sm-cl-ph__card:last-child {
    border-right: none;
}

.sm-cl-ph__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sm-cl-ph__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.sm-cl-ph__icon svg {
    width: 70px;
    height: 70px;
    color: var(--sm-red);
}

.sm-cl-ph__card-title {
    font-family: var(--sm-font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--sm-white);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.sm-cl-ph__card-desc {
    font-size: 13px;
    color: var(--sm-white);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}


/* --- Responsive --- */

@media (max-width: 1024px) {
    .sm-cl-logos__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .sm-cl-logos__item:nth-child(5n) {
        border-right: 1px solid #e0cfbe;
    }
    .sm-cl-logos__item:nth-child(4n) {
        border-right: none;
    }
    .sm-cl-ph__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sm-cl-ph__card:nth-child(2) {
        border-right: none;
    }
    .sm-cl-ph__card:nth-child(1),
    .sm-cl-ph__card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }
}

@media (max-width: 768px) {
    .sm-cl-hero__inner {
        grid-template-columns: 1fr;
    }
    .sm-cl-hero__inner::after {
        display: none;
    }
    .sm-cl-hero__right {
        clip-path: none;
        min-height: 240px;
    }
    .sm-cl-hero__left {
        padding: 44px 20px;
    }
    .sm-cl-logos {
        padding: 0 16px 50px;
        margin-top: -50px;
    }
    .sm-cl-logos__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sm-cl-logos__item:nth-child(4n) {
        border-right: 1px solid #e0cfbe;
    }
    .sm-cl-logos__item:nth-child(3n) {
        border-right: none;
    }
    .sm-cl-ph__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sm-cl-hero__left {
        padding: 30px 16px;
    }
    .sm-cl-logos {
        padding: 0 16px 30px;
    }
    .sm-cl-ph {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .sm-cl-logos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sm-cl-logos__item:nth-child(3n) {
        border-right: 1px solid #e0cfbe;
    }
    .sm-cl-logos__item:nth-child(2n) {
        border-right: none;
    }
    .sm-cl-ph__grid {
        grid-template-columns: 1fr;
    }
    .sm-cl-ph__card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    }
    .sm-cl-ph__card:last-child {
        border-bottom: none;
    }
}


/* =====================================================
   SECURITY SYSTEMS PAGE
===================================================== */


/* --- Hero --- */

.sm-ss-hero {
    position: relative;
    background: var(--sm-blue);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sm-ss-hero__overlay {
    display: none;
}

.sm-ss-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 70px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-ss-hero__left-inner {
    max-width: 520px;
}

.sm-ss-hero__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    line-height: 1.1;
    margin: 0 0 14px;
}

.sm-ss-hero__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
    margin-bottom: 20px;
}

.sm-ss-hero__subtitle {
    font-family: var(--sm-font-body);
    font-size: clamp(15px, 1.6vw, 20px);
    color: var(--sm-white);
    line-height: 1.7;
}


/* --- Stats Bar --- */

.sm-ss-stats {
    background: var(--sm-blue);
}

.sm-ss-stats__inner {
    display: flex;
    align-items: stretch;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 max(20px, calc((100vw - 1200px) / 2));
}

.sm-ss-stats__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sm-ss-stats__item:last-child {
    border-right: none;
}

.sm-ss-stats__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sm-red);
}

.sm-ss-stats__icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.sm-ss-stats__icon svg {
    width: 42px;
    height: 42px;
}

.sm-ss-stats__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sm-ss-stats__num {
    font-family: var(--sm-font-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--sm-white);
    line-height: 1.2;
}

.sm-ss-stats__label {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-white);
    line-height: 1.3;
}


/* --- Services Section (numbered rows) --- */

.sm-ss-services {
    background: #fff;
    padding: 20px 0 20px;
}

.sm-ss-services__header {
    margin-bottom: 40px;
}

.sm-ss-services__label {
    display: block;
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--sm-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sm-ss-services__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: var(--sm-blue);
    margin: 0 0 14px;
}

.sm-ss-services__line {
    width: 50px;
    height: 3px;
    background: var(--sm-red);
}

.sm-ss-svc-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid #e8e0d8;
}

.sm-ss-svc-row:last-child {
    border-bottom: none;
}

.sm-ss-svc-row__hd {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 14px;
}

.sm-ss-svc-row__num {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: var(--sm-red);
    color: #fff;
    font-family: var(--sm-font-title);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: 3px;
}

.sm-ss-svc-row__title {
    font-family: var(--sm-font-title);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    color: var(--sm-blue);
    text-transform: uppercase;
    line-height: 1.25;
    margin: 0;
}

.sm-ss-svc-row__subtitle {
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sm-red);
    line-height: 1.5;
    margin: 10px 0 10px;
}

.sm-ss-svc-row__desc {
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-blue);
    line-height: 1.75;
    margin: 0 0 20px;
}

.sm-ss-svc-row__list-label {
    font-family: var(--sm-font-title);
    font-size: 12px;
    font-weight: 700;
    color: var(--sm-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 12px;
}

.sm-ss-svc-row__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sm-ss-svc-row__list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sm-font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--sm-blue);
}

.sm-ss-svc-row__check {
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.sm-ss-svc-row__media {
    position: relative;
}

.sm-ss-svc-row__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.sm-ss-svc-row__img-placeholder {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, var(--sm-blue), #0d1e35);
    border-radius: 16px;
}


/* --- Responsive --- */

@media (min-width: 1440px) and (max-width: 2559px) {
    .sm-ss-hero__inner {
        min-height: 500px;
    }
    .sm-ss-hero__img {
        min-height: 500px;
    }
    .sm-ss-who__img,
    .sm-ss-who__img-placeholder {
        min-height: 500px;
    }
}

@media (min-width: 2560px) {
    .sm-ss-hero__inner {
        min-height: 600px;
    }
    .sm-ss-hero__img {
        min-height: 600px;
    }
    .sm-ss-who__img,
    .sm-ss-who__img-placeholder {
        min-height: 560px;
    }
}

@media (max-width: 1024px) {
    .sm-ss-hero__inner {
        min-height: 360px;
        padding: 60px 20px;
    }
    .sm-ss-hero__left-inner {
        max-width: 100%;
    }
    .sm-ss-svc-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sm-ss-svc-row__img,
    .sm-ss-svc-row__img-placeholder {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .sm-ss-hero {
        background-size: cover;
        background-position: center;
    }
    .sm-ss-hero__inner {
        min-height: 300px;
        padding: 50px 20px;
    }
    .sm-ss-stats__inner {
        flex-wrap: wrap;
        padding: 0 16px;
    }
    .sm-ss-stats__item {
        flex: 1 1 calc(33.33% - 1px);
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 16px 12px;
    }
    .sm-ss-services {
        padding: 0;
    }
    .sm-ss-svc-row {
        padding: 30px 0;
    }
    .sm-ss-svc-row__list {
        grid-template-columns: 1fr;
    }
    .sm-ss-svc-row__img,
    .sm-ss-svc-row__img-placeholder {
        height: 220px;
    }
}

@media (max-width: 425px) {
    .sm-ss-hero__inner {
        padding: 30px 16px;
    }
    .sm-ss-stats__item {
        flex: 1 1 calc(50% - 1px);
    }
    .sm-ss-svc-row__num {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }
}


/* ============================================================
   WHATSAPP FIXED BUTTON
   ============================================================ */

.sm-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: sm-wa-pulse 2.5s infinite;
}

.sm-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
    animation: none;
}

.sm-wa-btn svg {
    width: 30px;
    height: 30px;
}

@keyframes sm-wa-pulse {
    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.75);
    }
}


/* ============================================================
   CONTACT US PAGE
   ============================================================ */


/* Hero */

.sm-ct-hero {
    position: relative;
    background: var(--sm-blue);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sm-ct-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(7, 23, 47, 0.55);
}

.sm-ct-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 70px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-ct-hero__left-inner {
    max-width: 560px;
}

.sm-ct-hero__title {
    font-family: var(--sm-font-title);
    font-size: clamp(20px, 2.8vw, 36px);
    font-weight: 800;
    color: var(--sm-white);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 16px;
}

.sm-ct-hero__line {
    width: 60px;
    height: 4px;
    background: var(--sm-red);
    margin: 0 0 20px;
}

.sm-ct-hero__subtitle {
    font-family: var(--sm-font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0;
}


/* Body */

.sm-ct-body {
    background: var(--sm-blue);
    padding: 60px max(20px, calc((100vw - 1200px) / 2 + 20px));
}

.sm-ct-body__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}


/* Section heading */

.sm-ct-section-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.sm-ct-section-hd::before {
    content: '';
    display: block;
    width: 4px;
    min-height: 26px;
    background: var(--sm-red);
    flex-shrink: 0;
    align-self: stretch;
}

.sm-ct-section-hd h2 {
    font-family: var(--sm-font-title);
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    color: var(--sm-white);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}


/* Form fields */

.sm-ct-form__field {
    margin-bottom: 18px;
}

.sm-ct-form__label {
    display: block;
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--sm-white);
    margin-bottom: 7px;
}

.sm-ct-form__input,
.sm-ct-form__textarea {
    width: 100%;
    background: var(--sm-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px 14px;
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sm-blue);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sm-ct-form__input::placeholder,
.sm-ct-form__textarea::placeholder {
    color: rgba(7, 23, 47, 0.4);
}

.sm-ct-form__input:focus,
.sm-ct-form__textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
}

.sm-ct-form__textarea {
    resize: vertical;
    min-height: 130px;
}


/* Phone field */

.sm-ct-form__field-error {
    display: block;
    color: #ff8080;
    font-family: var(--sm-font-body);
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
}


/* intl-tel-input overrides */

.sm-ct-form .iti {
    width: 100%;
}

.sm-ct-form .sm-ct-phone-input {
    padding-left: 14px;
}

.sm-ct-form .iti__selected-flag {
    background: transparent;
    border-right: 1px solid rgba(7, 23, 47, 0.15);
    padding: 0 10px 0 12px;
    border-radius: 4px 0 0 4px;
}

.sm-ct-form .iti__selected-flag:hover,
.sm-ct-form .iti__selected-flag:focus {
    background: rgba(7, 23, 47, 0.05);
}

.sm-ct-form .iti__selected-dial-code {
    color: var(--sm-blue);
    font-family: var(--sm-font-body);
    font-size: 14px;
    font-weight: 500;
}

.sm-ct-form .iti__arrow {
    border-top-color: var(--sm-blue);
}

.sm-ct-form .iti__arrow--up {
    border-bottom-color: var(--sm-blue);
}

.sm-ct-form .iti__country-list {
    background: var(--sm-white);
    border: 1px solid rgba(7, 23, 47, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    color: var(--sm-blue);
    font-family: var(--sm-font-body);
    font-size: 13px;
    z-index: 100;
}

.sm-ct-form .iti__country:hover,
.sm-ct-form .iti__country.iti__active {
    background: rgba(7, 23, 47, 0.07);
}

.sm-ct-form .iti__dial-code {
    color: var(--sm-blue);
    opacity: 0.7;
}

.sm-ct-form .iti__divider {
    border-bottom-color: rgba(7, 23, 47, 0.1);
}

.sm-ct-form .iti__search-input {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-blue);
    border-bottom: 1px solid rgba(7, 23, 47, 0.1);
    padding: 8px 10px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}


/* Submit button */

.sm-ct-form__submit {
    width: 100%;
    background: var(--sm-red);
    color: var(--sm-white);
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-family: var(--sm-font-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}

.sm-ct-form__submit:hover {
    background: #c00;
}


/* Notices */

.sm-ct-form__success,
.sm-ct-form__error {
    margin-top: 14px;
}

.sm-ct-form__success {
    background: rgba(0, 180, 0, 0.12);
    border: 1px solid rgba(0, 180, 0, 0.3);
    color: #7dff7d;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: var(--sm-font-body);
    font-size: 14px;
    margin-bottom: 20px;
}

.sm-ct-form__error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff9090;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: var(--sm-font-body);
    font-size: 14px;
    margin-bottom: 20px;
}


/* Info — top phone/email row */

.sm-ct-info__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.sm-ct-info__top-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sm-ct-info__top-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sm-red);
}

.sm-ct-info__top-icon svg {
    width: 32px;
    height: 32px;
}

.sm-ct-info__top-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sm-ct-info__top-label {
    font-family: var(--sm-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--sm-white);
    margin: 0;
}

.sm-ct-info__top-value {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-white);
    text-decoration: none;
    margin: 0;
}


/* Offices */

.sm-ct-offices {
    display: flex;
    flex-direction: column;
}

.sm-ct-office {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

.sm-ct-office:last-child {
    border-bottom: none;
}

.sm-ct-office__icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    color: var(--sm-red);
    margin-top: 2px;
}

.sm-ct-office__icon svg {
    width: 32px;
    height: 32px;
}

.sm-ct-office__title {
    font-family: var(--sm-font-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--sm-white);
    margin: 0 0 5px;
}

.sm-ct-office__addr {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-white);
    line-height: 1.65;
    margin: 0 0 4px;
}

.sm-ct-office__phone {
    font-family: var(--sm-font-body);
    font-size: 13px;
    color: var(--sm-white);
    text-decoration: none;
    margin: 0;
}


/* Responsive */

@media (max-width: 1024px) {
    .sm-ct-body__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sm-ct-hero {
        background-size: cover;
        background-position: center;
    }
    .sm-ct-hero__inner {
        min-height: 300px;
        padding: 50px 20px;
    }
    .sm-ct-body {
        padding: 30px 20px;
    }
    .sm-ct-body__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sm-ct-info__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    .sm-ct-hero__inner {
        padding: 30px 16px;
    }
    .sm-ct-form__phone-prefix {
        padding: 12px 10px;
        font-size: 13px;
    }
}


/* ==========================================================
   SCROLL ANIMATIONS
========================================================== */

.sm-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--sm-anim-delay, 0ms);
}

.sm-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}