* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* -------------------------------------- SHARED LAYOUT -------------------------------------- */

.container {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

/* ------------------------------------------HEADER------------------------------------------ */

.SMA-header {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.header-container {
    width: min(1100px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-right: auto;
}

.logo img {
    display: block;
    width: 220px;
    height: auto;
}

.header-navigation ul {
    display: flex;
    align-items: center;
    gap: 27px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.header-navigation li {
    display: inline-block;
}

.header-navigation a {
    color: #252525;
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    transition: color 180ms ease;
}

.header-navigation a:hover,
.header-navigation a:focus-visible {
    color: #8a8a8a;
}

.header-navigation a:focus-visible {
    outline: 2px solid #174d7a;
    outline-offset: 5px;
}

.has-dropdown {
    position: relative; /* anchors the dropdown to this specific li */
}

.has-dropdown .dropdown-menu li {
    display: block;
    margin-right: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 200px;
    margin: 0;
    padding: 8px 0;
    list-style: none;

    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
        opacity 200ms ease,
        transform 200ms ease,
        visibility 200ms ease;
}

.dropdown-trigger {
    color: #252525;
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.9px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;

    transition: color 180ms ease;
}

.has-dropdown:hover .dropdown-trigger {
    color: #8a8a8a;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 20px 30px;

    color: #252525;
    font-size: 15px;
    text-transform: none;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background-color: #f7f8fa;
    color: #174d7a;
}



/* --------------------------------------- HOME BANNER --------------------------------------- */

.cloud-banner {
    min-height: 800px;
    max-height: 800px;

    background-image: url("images/atmosphere-background-bright-19670_5.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-container-dynamic,
.banner-container-static {
    width: 100%; /* sizing/centering now comes from the .container wrapper in HTML */
    text-align: center;
}

.banner-dynamic-text {
    color: #174d7a;
    font-family: verdana, sans-serif;
    font-size: clamp(36px, 4vw, 72px);
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;

    text-align: center;
    margin: 24px;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

.banner-static-text {
    color: #174d7a;
    font-family: verdana, sans-serif;
    font-size: clamp(20px, 2.5vw, 48px);
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 1.2;

    text-align: center;
    margin: 24px;
}

/* ------------------------------------------ ABOUT US ------------------------------------------ */

.about-us {
    padding: 40px 20px 0 0;
    background-color: #ffffff;
    text-align: center;
}

.about-us-image-text-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.about-us-image,
.about-us-text {
    flex: 1;
    min-width: 0;
}

.about-us-section-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* --------------------------------------- STANDARD TEXT --------------------------------------- */

.content-text {
    flex: 1;
    min-width: 0;
}

.content-text h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    text-align: left;
    margin: 0 auto;
    line-height: 2;
}

.content-text p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: left;
        margin: 0 0 60px 0;
    line-height: 1.5;
}

.content-header {
    color: #627180;
    font-family: verdana, sans-serif;
    font-size: clamp(36px, 2.5vw, 46px);
    text-align: left;
}

.content-header h1 {
    margin: 0 0 10px 0; /* horizontal position now comes from .container; keeps bottom spacing */
}

.content-button {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;

    background-color: #30587c;
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;

    border: 2px solid #30587c;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

.content-button:hover,
.content-button:focus-visible {
    background-color: transparent;
    color: #30587c;
}

.content-button:focus-visible {
    outline: 2px solid #30587c;
    outline-offset: 4px;
}

/* ------------------------------------------ PRODUCTS ------------------------------------------ */


.product-text-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
}

.product-card {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.product-card .content-button {
    margin-top: auto;
}

/* ------------------------------------------ CLIENTS ------------------------------------------ */

.clients {
    padding: 80px 20px;
    background-color: #f7f8fa;
}

.clients-header {
    color: #627180;
    font-family: verdana, sans-serif;
    font-size: clamp(28px, 2.5vw, 36px);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 48px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px 40px;
    align-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #9aa3ad;
    font-family: arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;

    padding: 16px;
    filter: grayscale(100%);
    opacity: 0.75;

    transition:
        color 220ms ease,
        opacity 220ms ease,
        transform 220ms ease;
}

.client-item:hover {
    color: #174d7a;
    opacity: 1;
    transform: translateY(-2px);
}

/* ------------------------------------------ FOOTER ------------------------------------------ */

.site-footer {
    background-color: #1c2b3a;
    padding: 64px 20px 40px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    gap: 48px;

    padding: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info h2,
.footer-socials h2 {
    color: #ffffff;
    font-family: verdana, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    margin: 0 0 20px 0;
}

.footer-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.7);
    font-family: arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.3px;

    transition: color 180ms ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    flex-direction: column;
}

.socials-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 215px;

    margin-bottom: 12px;
    padding: 10px 18px;

    background-color: #ffffff;
    color: #1c2b3a;

    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.socials-icon {
    max-width: 18px;
    display: block;
    flex-shrink: 0;
}

.socials-button:hover,
.socials-button:focus-visible {
    background-color: #e7e7e7;
    color: #1c2b3a;
    border-color: #e7e7e7;
}

.socials-button:focus-visible {
    outline: 2px solid #e7e7e7;
    outline-offset: 3px;
}

.footer-bottom {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 24px;

    color: rgba(255, 255, 255, 0.5);
    font-family: arial, sans-serif;
    font-size: 13px;
    text-align: center;
}


/* ------------------------------------- CHRONOS BANNER ------------------------------------- */

.chronos-banner {
    background-color: #ffffff;
}

.chronos-image-container {
    display: flex;
    flex-direction: row;
    align-items: center;

    flex: 1;
    min-width: 0;
}


.chronos-banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* --------------------------------- CHRONOS PRODUCT BRIEF --------------------------------- */

.product-brief {
    padding: 40px 20px;
}

.pb-container-row {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* changed from flex-start so both columns match height */
    gap: 48px;
}

.pb1-container {
    flex: 2;
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically centers the intro text against the card's height */
}

.pb2-container {
    flex: 1;
    min-width: 0;

    background-color: #f7f8fa;
    border-left: 3px solid #174d7a;
    border-radius: 6px;
    padding: 10px 28px;

    display: flex;
    flex-direction: column;
}

.pb1-container h2,
.pb2-container h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    text-align: left;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pb1-container p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: left;
    line-height: 1.6;
    margin: 0;
}

.pb2-container ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pb2-container li {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.4;

    padding-left: 22px;
    position: relative;
}

.pb2-container li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;

    width: 8px;
    height: 8px;
    background-color: #174d7a;
    border-radius: 50%;
}


/* ------------------------------------ OPERATING MODES ------------------------------------ */


.operating-modes {
    padding: 20px 20px;
    background-color: #ffffff;
}

.om1-container h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    text-align: left;
    margin: 0;
    line-height: 2;
}

.om-tabs {
    position: relative;
    display: flex;
    gap: 32px;

    border-bottom: 2px solid #e5e8eb;
    margin-bottom: 32px;
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 4px;

    font-family: arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #9aa3ad;

    transition: color 200ms ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #174d7a;
}

.tab-indicator {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background-color: #174d7a;
    transition: left 250ms ease, width 250ms ease;
}

.tab-panel {
    display: none;

    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;

    animation: fadeIn 300ms ease;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    color: #30587c;
    font-family: arial, sans-serif;
    margin: 0 0 12px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.feature-grid-passive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 32px;
}

.feature-grid-active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.feature-item:not(:first-child) {
    border-left: 1px solid #e5e8eb;
}

.feature-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 6px;
    background-color: #ffffff;
}


.feature-caption {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;

    margin: 0;
}

/* ----------------------------------==-- FUNCTIONALITY --------==---------------------------- */

.functionality {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

/* Section heading + introduction */
.functionality-header {
    max-width: 760px;
    margin: 0 0 40px 0;
}

.functionality-header h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.functionality-header p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    margin: 0;
}


/* Light-grey panel containing the three stages */
.functionality-container {
    padding: 40px;
    background-color: #f7f8fa;
    border-radius: 6px;
}


/* Three-column layout */
.functionality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}


/* Individual functionality stage */
.functionality-card {
    min-width: 0;
    padding: 8px 32px 12px;

    display: flex;
    flex-direction: column;
}


/* Vertical separators between stages */
.functionality-card:not(:first-child) {
    border-left: 1px solid #e5e8eb;
}


/* Detect / Verify / Validate */
.functionality-card h3 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(19px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.3;

    margin: 0 0 18px 0;
}


/* Small blue accent below each title */
.functionality-card h3::after {
    content: "";
    display: block;

    width: 32px;
    height: 3px;

    margin-top: 10px;

    background-color: #174d7a;
}


/* Card body copy */
.functionality-card p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;

    margin: 0 0 16px 0;
}

.functionality-card p:last-child {
    margin-bottom: 0;
}


/* ------------------------------------ DEPLOYMENT-CONFIG ------------------------------------ */

.deployment-config {
    padding: 40px 20px;
    background-color: #f7f8fa;
}

.deployment-header {
    margin: 20px;
    margin-bottom: 40px;
}

.deployment-header h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    margin: 0 0 12px 0;
}

.deployment-header p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    max-width: 720px;
    margin: 0;
}

.deployment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 20px;
}

.deployment-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;

    transition: transform 220ms ease, box-shadow 220ms ease;
}

.deployment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.deployment-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 24px 0 20px 0;
}

.deployment-card h3 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: 18px;
    margin: 20px 20px 8px 20px;
}

.deployment-card p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
}


/* -------------------------------- GUARDIANEYE PRODUCT BRIEF -------------------------------- */

.pb-container-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.status-notice {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 20px 24px;
    background-color: #f7f8fa;
    border-left: 4px solid #9aa3ad;
    border-radius: 4px;
}

.status-notice-label {
    display: inline-block;
    width: fit-content;

    color: #627180;
    font-family: arial, sans-serif;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.status-notice p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.5;
    margin: 0;
}


.pb2-container-ge h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    text-align: left;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pb2-container-ge p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: left;
    line-height: 1.6;
    margin: 16px 0 16px 0;
}

.pb2-container-ge p:last-child {
    margin-bottom: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 20px;
}

/* --------------------------------------- GALLERY --------------------------------------- */

.gallery {
    padding: 60px 20px;
    background-color: #ffffff;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* left block = 2/3, right block = 1/3 */
    gap: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.gallery-grid .gallery-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.gallery-tall {
    display: flex;
}

.gallery-tall .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}


/* ------------------------------------------ CAREERS ------------------------------------------ */

.careers-hero {
    padding: 40px 0 020px;
    background-color: #f7f8fa;
}

.careers-hero h1 {
    color: #30587c;
    font-family: verdana, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    margin: 0 0 12px 0;
}

.careers-subtitle {
    color: #627180;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    margin: 0;
}

.careers-content {
    padding: 20px 20px 80px;
    background-color: #f7f8fa;
}

.careers-text {
    max-width: 760px; /* keeps long paragraphs readable, not stretched full-width */
    margin-bottom: 56px;
}

.careers-text p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.careers-text p:last-child {
    margin-bottom: 0;
}

.careers-cta {
    background-color: #ffffff;
    border-left: 3px solid #174d7a;
    border-radius: 6px;
    padding: 40px;
    max-width: 560px;
}

.careers-cta h2 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    margin: 0 0 12px 0;
}

.careers-cta p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* ------------------------------------------ CONTACT ------------------------------------------ */

/* ------------------------------------------ CONTACT ------------------------------------------ */

.contact {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-map-container {
    display: flex;
    flex-direction: column;
}

.contact-map-container h1 {
    color: #30587c;
    font-family: verdana, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    margin: 0 0 16px 0;
}

.contact-intro {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.contact-map {
    flex: 1;
    min-height: 360px;
    border-radius: 6px;
    overflow: hidden; /* clips the iframe's corners to match the rounded container */
    border: 1px solid #e5e8eb;
}

.contact-map iframe {
    display: block;
}

.contact-info {
    text-align: right;
    padding-top: 8px;
}

.contact-info h2 {
    color: #627180;
    font-family: verdana, sans-serif;
    font-size: 18px;
   text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px 0;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block h3 {
    color: #30587c;
    font-family: arial, sans-serif;
    font-size: 16px;
    margin: 0 0 10px 0;
}

.contact-info-block p {
    color: #5c6873;
    font-family: arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.contact-info-block a {
    color: #5c6873;
    text-decoration: none;
    transition: color 180ms ease;
}

.contact-info-block a:hover {
    color: #174d7a;
}

/* ==========================================================================================
   RESPONSIVE DESIGN
   ========================================================================================== */


/* ==========================================================================================
   TABLET
   621px - 900px
   ========================================================================================== */

@media (max-width: 900px) {

    /* -------------------------------- SHARED LAYOUT -------------------------------- */

    .container {
        width: min(100% - 48px, 1100px);
    }


    /* ----------------------------------- HEADER ----------------------------------- */

    .SMA-header {
        height: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .header-container {
        width: min(100% - 48px, 1100px);
        height: auto;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 22px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .logo {
        margin-right: 0;
    }

    .logo img {
        width: 210px;
    }

    .header-navigation {
        width: 100%;
    }

    .header-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px 24px;
    }

    /* Overrides the inline margin-right rule in the HTML */
    .SMA-header .header-navigation li {
        margin-right: 0;
    }


    /* -------------------------------- HOME BANNER -------------------------------- */

    .cloud-banner {
        min-height: 600px;
        max-height: 600px;

        /*
            Fixed backgrounds can behave strangely on tablets,
            particularly Safari/iPadOS.
        */
        background-attachment: scroll;
    }

    .banner-dynamic-text {
        margin: 20px;
    }

    .banner-static-text {
        margin: 20px;
    }


    /* ---------------------------------- ABOUT US ---------------------------------- */

    .about-us {
        padding: 48px 20px;
    }

    .about-us-image-text-container {
        gap: 36px;
    }


    /* ---------------------------------- PRODUCTS ---------------------------------- */

    .product-text-container {
        gap: 36px;
    }


    /* ---------------------------------- CLIENTS ---------------------------------- */

    .clients {
        padding: 64px 20px;
    }

    .clients-grid {
        gap: 28px;
    }


    /* ----------------------------------- FOOTER ----------------------------------- */

    .site-footer {
        padding: 56px 20px 32px;
    }

    .footer-container {
        padding: 48px 32px;
        gap: 48px;
    }


    /* ----------------------------- CHRONOS PRODUCT BRIEF ----------------------------- */

    .product-brief {
        padding: 36px 20px;
    }

    .pb-container-row {
        gap: 32px;
    }

    .pb2-container {
        padding: 20px 24px;
    }


    /* -------------------------------- FUNCTIONALITY -------------------------------- */

    .functionality {
        padding: 52px 20px 64px;
    }

    .functionality-header {
        margin-bottom: 32px;
    }

    .functionality-container {
        padding: 32px 20px;
    }

    .functionality-card {
        padding: 8px 22px 12px;
    }


    /* ------------------------------- OPERATING MODES ------------------------------- */

    .operating-modes {
        padding: 24px 20px 48px;
    }

    .feature-grid-passive {
        gap: 4px;
    }

    .feature-grid-active {
        gap: 4px;
    }

    .feature-item {
        padding: 0 16px;
    }


    /* ---------------------------- DEPLOYMENT CONFIGURATION ---------------------------- */

    .deployment-config {
        padding: 48px 20px;
    }

    .deployment-header {
        margin: 0 0 32px 0;
    }

    .deployment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 0;
    }


    /* ----------------------------- GUARDIANEYE FEATURES ----------------------------- */

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 0;
    }

    .pb-container-col {
        gap: 32px;
    }


    /* ----------------------------------- GALLERY ----------------------------------- */

    .gallery {
        padding: 48px 20px;
    }

    .gallery-layout {
        gap: 12px;
    }

    .gallery-grid {
        gap: 12px;
    }


    /* ----------------------------------- CAREERS ----------------------------------- */

    .careers-hero {
        padding: 36px 0 18px;
    }

    .careers-content {
        padding: 20px 20px 64px;
    }

    .careers-text {
        margin-bottom: 44px;
    }

    .careers-cta {
        padding: 32px;
    }


    /* ----------------------------------- CONTACT ----------------------------------- */

    .contact {
        padding: 52px 20px 80px;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-map {
        min-height: 340px;
    }

}



/* ==========================================================================================
   MOBILE
   620px AND BELOW
   ========================================================================================== */

@media (max-width: 620px) {

    /* -------------------------------- SHARED LAYOUT -------------------------------- */

    .container {
        width: calc(100% - 32px);
    }


    /* ----------------------------------- HEADER ----------------------------------- */

    .SMA-header {
        height: auto;
    }

    .header-container {
        width: calc(100% - 32px);

        flex-direction: column;
        align-items: center;

        gap: 18px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .logo {
        margin: 0;
    }

    .logo img {
        width: 180px;
    }

    .header-navigation {
        width: 100%;
    }

    .header-navigation ul {
        justify-content: center;
        flex-wrap: wrap;

        gap: 14px 18px;
    }

    .SMA-header .header-navigation li {
        margin-right: 0;
    }

    .header-navigation a,
    .dropdown-trigger {
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .dropdown-menu {
        min-width: 170px;
    }

    .dropdown-menu a {
        padding: 14px 20px;
        font-size: 13px;
    }


    /* -------------------------------- HOME BANNER -------------------------------- */

    .cloud-banner {
        min-height: 460px;
        max-height: 460px;
        background-attachment: scroll;
    }

    .banner-dynamic-text {
        margin: 14px 0;
        font-size: clamp(32px, 10vw, 46px);
    }

    .banner-static-text {
        margin: 14px 0;
        font-size: clamp(20px, 6vw, 28px);
    }


    /* ---------------------------------- ABOUT US ---------------------------------- */

    .about-us {
        padding: 40px 16px;
    }

    .about-us-image-text-container {
        flex-direction: column;
        gap: 28px;
    }

    .about-us-image,
    .about-us-text {
        width: 100%;
    }


    /* -------------------------------- STANDARD TEXT -------------------------------- */

    .content-header {
        font-size: clamp(30px, 9vw, 38px);
    }

    .content-text h2 {
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .content-text p {
        margin-bottom: 32px;
    }

    .content-button {
        margin-top: 16px;
    }


    /* ---------------------------------- PRODUCTS ---------------------------------- */

    .product-text-container {
        flex-direction: column;
        gap: 36px;
    }

    .product-card {
        width: 100%;
    }


    /* ---------------------------------- CLIENTS ---------------------------------- */

    .clients {
        padding: 48px 16px;
    }

    .clients-header {
        margin-bottom: 32px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .client-item {
        padding: 10px;
        font-size: 14px;
    }


    /* ----------------------------------- FOOTER ----------------------------------- */

    .site-footer {
        padding: 48px 16px 28px;
    }

    .footer-container {
        flex-direction: column;

        padding: 32px 8px;
        gap: 40px;
    }

    .footer-info,
    .footer-socials {
        width: 100%;
    }

    .socials-button {
        width: 100%;
        max-width: 240px;
    }

    .footer-bottom {
        width: 100%;
        padding-top: 22px;
    }


    /* ------------------------------- PRODUCT BANNERS ------------------------------- */

    .chronos-banner {
        padding: 8px 0;
    }

    .chronos-banner-image {
        width: 100%;
        height: auto;
    }


    /* ----------------------------- CHRONOS PRODUCT BRIEF ----------------------------- */

    .product-brief {
        padding: 32px 16px;
    }

    .pb-container-row {
        flex-direction: column;
        gap: 28px;
    }

    .pb1-container,
    .pb2-container {
        width: 100%;
    }

    .pb2-container {
        padding: 22px 20px;
    }

    .pb1-container h2,
    .pb2-container h2 {
        line-height: 1.3;
    }


    /* -------------------------------- FUNCTIONALITY -------------------------------- */

    .functionality {
        padding: 44px 16px 52px;
    }

    .functionality-header {
        max-width: none;
        margin-bottom: 26px;
    }

    .functionality-container {
        padding: 8px 22px;
    }

    .functionality-grid {
        grid-template-columns: 1fr;
    }

    .functionality-card {
        padding: 28px 0;
    }

    .functionality-card:not(:first-child) {
        border-left: none;
        border-top: 1px solid #e5e8eb;
    }

    .functionality-card h3 {
        margin-bottom: 16px;
    }


    /* ------------------------------- OPERATING MODES ------------------------------- */

    .operating-modes {
        padding: 28px 16px 44px;
    }

    .om1-container h2 {
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .om-tabs {
        gap: 24px;
        margin-bottom: 26px;
    }

    .tab-btn {
        font-size: 14px;
    }

    .feature-grid-passive,
    .feature-grid-active {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 24px;
    }

    .feature-item {
        padding: 28px 0;
    }

    .feature-item:first-child {
        padding-top: 0;
    }

    .feature-item:not(:first-child) {
        border-left: none;
        border-top: 1px solid #e5e8eb;
    }

    .feature-image {
        max-height: none;
    }


    /* ---------------------------- DEPLOYMENT CONFIGURATION ---------------------------- */

    .deployment-config {
        padding: 40px 16px;
    }

    .deployment-header {
        margin: 0 0 28px 0;
    }

    .deployment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0;
    }

    .deployment-image {
        margin-top: 16px;
    }


    /* ----------------------------- GUARDIANEYE PRODUCT ----------------------------- */

    .pb-container-col {
        gap: 28px;
    }

    .pb2-container-ge h2 {
        line-height: 1.3;
    }

    .status-notice {
        padding: 18px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0;
    }


    /* ----------------------------------- GALLERY ----------------------------------- */

    .gallery {
        padding: 40px 16px;
    }

    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .gallery-grid .gallery-image,
    .gallery-tall .gallery-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .gallery-tall {
        display: block;
        aspect-ratio: auto;
    }


    /* ----------------------------------- CAREERS ----------------------------------- */

    .careers-hero {
        padding: 32px 0 12px;
    }

    .careers-hero h1 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .careers-content {
        padding: 20px 16px 52px;
    }

    .careers-text {
        margin-bottom: 36px;
    }

    .careers-text p {
        line-height: 1.65;
    }

    .careers-cta {
        width: 100%;
        max-width: none;

        padding: 26px 22px;
    }

    .careers-cta .content-button {
        max-width: 100%;
        overflow-wrap: anywhere;
    }


    /* ----------------------------------- CONTACT ----------------------------------- */

    .contact {
        padding: 40px 16px 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-container h1 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-info {
        text-align: left;
        padding-top: 0;
    }

    .contact-info-block {
        margin-bottom: 28px;
    }

}
