﻿/* =========================================================
   SLIPFORM GLOBAL CONSTRUCTION
   PREMIUM GLOBAL LAYOUT — v3 (FULLY RESPONSIVE)
   Design language: precision engineering / survey & blueprint
   Signature motifs: dimension-corner frames, rise gauge, ruler scroll bar
========================================================= */

:root {
    /* Core palette — deepened navy, kept amber as the brand's "hazard-mark" accent */
    --sgc-ink: #071523;
    --sgc-primary: #0b2a4a;
    --sgc-primary-dark: #061a2f;
    --sgc-primary-light: #164d79;
    --sgc-secondary: #1565c0;
    --sgc-secondary-light: #3a8be2;
    --sgc-steel: #4f6b85;
    --sgc-steel-soft: #93a8ba;
    --sgc-accent: #f5a623;
    --sgc-accent-dark: #d78a10;
    --sgc-accent-light: #ffcf6b;
    --sgc-accent-soft: #fff2d7;
    --sgc-white: #ffffff;
    --sgc-off-white: #f8fafc;
    --sgc-paper: #f6f8fa;
    --sgc-surface: #eef3f8;
    --sgc-border: #dce6ef;
    --sgc-line: rgba(11, 42, 74, .10);
    --sgc-line-strong: rgba(11, 42, 74, .2);
    --sgc-text: #101f2f;
    --sgc-text-soft: #5c7186;
    --sgc-text-muted: #93a4b3;
    --sgc-success: #1ea672;
    --sgc-shadow-sm: 0 8px 25px rgba(7, 21, 35, 0.08);
    --sgc-shadow-md: 0 18px 45px rgba(7, 21, 35, 0.12);
    --sgc-shadow-lg: 0 30px 80px rgba(7, 21, 35, 0.18);
    --sgc-shadow-glow: 0 10px 30px rgba(245, 166, 35, 0.28);
    --sgc-radius-sm: 10px;
    --sgc-radius-md: 18px;
    --sgc-radius-lg: 28px;
    --sgc-radius-xl: 38px;
    --sgc-ease: cubic-bezier(.16, .84, .44, 1);
    --sgc-ease-soft: cubic-bezier(.22, 1, .36, 1);
    --sgc-transition: all 0.35s var(--sgc-ease);
    --sgc-header-h: 86px;
    --sgc-header-h-scrolled: 70px;
    --sgc-header-h-mobile: 78px;
    --sgc-topbar-h: 40px;
    --sgc-topbar-h-mobile: 36px;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--sgc-text);
    background: var(--sgc-white);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.sgc-menu-open {
        overflow: hidden;
    }

::selection {
    color: var(--sgc-primary-dark);
    background: var(--sgc-accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--sgc-transition);
}

button,
input,
textarea,
select {
    font: inherit;
    max-width: 100%;
}

button {
    border: 0;
    cursor: pointer;
    background: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--sgc-primary-dark);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: break-word;
}

p {
    margin-top: 0;
    overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--sgc-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.sgc-main {
    position: relative;
    min-height: 50vh;
}

.sgc-noscript {
    padding: 12px 20px;
    color: var(--sgc-white);
    background: #b42318;
    text-align: center;
    font-weight: 700;
}

/* Fluid container gutter so nothing hard-locks to desktop spacing */
.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 24px);
    padding-left: var(--bs-gutter-x, 24px);
    margin-right: auto;
    margin-left: auto;
}

/* =========================================================
   SIGNATURE MOTIF — BLUEPRINT GRID WASH
========================================================= */

.sgc-grid-wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 78%);
}

.sgc-grid-wash-light {
    background-image: linear-gradient(var(--sgc-line) 1px, transparent 1px), linear-gradient(90deg, var(--sgc-line) 1px, transparent 1px);
}

/* =========================================================
   SIGNATURE MOTIF — DIMENSION CORNER FRAME
========================================================= */

.sgc-frame {
    position: relative;
}

    .sgc-frame::before,
    .sgc-frame::after {
        position: absolute;
        z-index: 3;
        width: 16px;
        height: 16px;
        border: 2px solid var(--sgc-accent);
        content: "";
        opacity: 0;
        transition: opacity 0.4s var(--sgc-ease) 0.05s, transform 0.4s var(--sgc-ease);
    }

    .sgc-frame::before {
        top: -6px;
        left: -6px;
        border-right: 0;
        border-bottom: 0;
        transform: translate(4px, 4px);
    }

    .sgc-frame::after {
        right: -6px;
        bottom: -6px;
        border-top: 0;
        border-left: 0;
        transform: translate(-4px, -4px);
    }

    .sgc-frame:hover::before,
    .sgc-frame:hover::after,
    .sgc-frame.is-active::before,
    .sgc-frame.is-active::after {
        opacity: 1;
        transform: translate(0, 0);
    }

/* =========================================================
   COMMON BUTTONS
========================================================= */

.sgc-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2px;
    text-align: center;
    transition: transform 0.3s var(--sgc-ease-soft), box-shadow 0.3s var(--sgc-ease-soft), background 0.3s ease, color 0.3s ease;
    will-change: transform;
}

    .sgc-btn::before {
        position: absolute;
        z-index: -1;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.24);
        content: "";
        transform: skewX(-20deg);
        transition: left 0.55s ease;
    }

    .sgc-btn:hover::before {
        left: 120%;
    }

    .sgc-btn i {
        transition: transform 0.3s ease;
    }

    .sgc-btn:hover i {
        transform: translateX(4px);
    }

.sgc-btn-primary {
    color: var(--sgc-primary-dark);
    background: linear-gradient(135deg, #ffc047, var(--sgc-accent));
    box-shadow: var(--sgc-shadow-glow);
}

    .sgc-btn-primary:hover {
        color: var(--sgc-primary-dark);
        background: linear-gradient(135deg, #ffca61, #f5a623);
        box-shadow: 0 16px 38px rgba(245, 166, 35, 0.4);
        transform: translateY(-3px);
    }

.sgc-btn-light {
    color: var(--sgc-primary-dark);
    background: var(--sgc-white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

    .sgc-btn-light:hover {
        color: var(--sgc-primary-dark);
        background: var(--sgc-accent);
        transform: translateY(-3px);
    }

.sgc-btn-outline {
    color: var(--sgc-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .3);
}

    .sgc-btn-outline:hover {
        color: var(--sgc-primary-dark);
        background: var(--sgc-white);
        border-color: var(--sgc-white);
        transform: translateY(-3px);
    }

/* =========================================================
   COMMON LABEL
========================================================= */

.sgc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--sgc-accent-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .sgc-section-label i {
        font-size: 18px;
    }

    .sgc-section-label::before {
        display: inline-block;
        width: 22px;
        height: 2px;
        background: currentColor;
        content: "";
    }

.sgc-section-label-light {
    color: #ffd47d;
}

/* =========================================================
   PAGE LOADER
========================================================= */

.sgc-loader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sgc-white);
    background: radial-gradient(circle at center, rgba(21, 101, 192, 0.26), transparent 45%), var(--sgc-primary-dark);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

    .sgc-loader.is-hidden {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

.sgc-loader-inner {
    width: min(260px, 80vw);
    text-align: center;
}

.sgc-loader-logo {
    position: relative;
    display: flex;
    width: 94px;
    height: 94px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    padding: 9px;
    border-radius: 22px;
    background: var(--sgc-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: sgcLoaderLogo 2s ease-in-out infinite;
}

    .sgc-loader-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 14px;
    }

.sgc-loader-line {
    position: relative;
    width: 100%;
    height: 3px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
}

    .sgc-loader-line span {
        display: block;
        width: 45%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--sgc-accent), #ffe4a7);
        animation: sgcLoaderLine 1.3s ease-in-out infinite;
    }

.sgc-loader p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

@keyframes sgcLoaderLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

@keyframes sgcLoaderLine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(240%);
    }
}

/* =========================================================
   SCROLL PROGRESS
========================================================= */

.sgc-scroll-progress {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(11, 42, 74, 0.06);
    background-image: repeating-linear-gradient(90deg, rgba(11, 42, 74, .14) 0 1px, transparent 1px 40px);
    pointer-events: none;
}

    .sgc-scroll-progress span {
        position: relative;
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, var(--sgc-accent-dark), var(--sgc-accent) 60%, #ffce72);
        box-shadow: 0 0 12px rgba(245, 166, 35, 0.55);
        transition: width 0.08s linear;
    }

        .sgc-scroll-progress span::after {
            position: absolute;
            top: 50%;
            right: -4px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--sgc-white);
            box-shadow: 0 0 0 3px var(--sgc-accent), 0 0 14px rgba(245, 166, 35, .8);
            content: "";
            transform: translateY(-50%);
        }

/* =========================================================
   TOP BAR
   FIX: was wrapping to multiple lines on phones because it had
   no overflow strategy. Now it becomes a horizontally-scrollable
   single-line strip below 767px, and drops least-important items
   first as space shrinks, instead of stacking vertically.
========================================================= */

.sgc-topbar {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    background: var(--sgc-primary-dark);
    font-size: 12px;
}

.sgc-topbar-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: var(--sgc-topbar-h);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sgc-topbar-left,
.sgc-topbar-right,
.sgc-topbar-social {
    display: flex;
    align-items: center;
}

.sgc-topbar-left {
    gap: 28px;
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 92%, transparent 100%);
}

    .sgc-topbar-left::-webkit-scrollbar {
        display: none;
    }

    .sgc-topbar-left a {
        display: inline-flex;
        flex-shrink: 0;
        align-items: center;
        gap: 9px;
        white-space: nowrap;
    }

        .sgc-topbar-left a:hover {
            color: var(--sgc-accent);
            transform: translateY(-1px);
        }

    .sgc-topbar-left i {
        color: var(--sgc-accent);
        flex-shrink: 0;
    }

.sgc-topbar-right {
    gap: 24px;
    flex-shrink: 0;
}

.sgc-topbar-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
}

.sgc-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #31c48d;
    box-shadow: 0 0 0 5px rgba(49, 196, 141, 0.12);
    animation: sgcStatusPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes sgcStatusPulse {
    0%, 100% {
        box-shadow: 0 0 0 5px rgba(49, 196, 141, 0.12);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(49, 196, 141, 0);
    }
}

.sgc-topbar-social {
    gap: 6px;
    flex-shrink: 0;
}

    .sgc-topbar-social a {
        display: inline-flex;
        width: 27px;
        height: 27px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        color: rgba(255, 255, 255, 0.76);
        background: rgba(255, 255, 255, 0.06);
    }

        .sgc-topbar-social a:hover {
            color: var(--sgc-primary-dark);
            background: var(--sgc-accent);
            transform: translateY(-2px);
        }

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.sgc-header {
    position: sticky;
    z-index: 9999;
    top: 0;
    border-bottom: 1px solid rgba(11, 42, 74, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 35px rgba(11, 42, 74, 0.03);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transition: transform 0.45s var(--sgc-ease), box-shadow 0.35s ease, background 0.35s ease;
}

    .sgc-header.is-scrolled {
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 35px rgba(11, 42, 74, 0.12);
    }

    .sgc-header.is-hidden-up {
        transform: translateY(-100%);
    }

.sgc-navbar {
    min-height: var(--sgc-header-h);
    padding: 0;
    transition: min-height 0.35s var(--sgc-ease);
}

.sgc-header.is-scrolled .sgc-navbar {
    min-height: var(--sgc-header-h-scrolled);
}

.sgc-navbar > .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

.sgc-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-right: 28px;
    padding: 6px 4px;
    min-width: 0;
}

.sgc-brand-logo {
    display: flex;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid var(--sgc-border);
    border-radius: 14px;
    background: var(--sgc-white);
    box-shadow: var(--sgc-shadow-sm);
    transition: width 0.35s var(--sgc-ease), height 0.35s var(--sgc-ease);
}

.sgc-header.is-scrolled .sgc-brand-logo {
    width: 46px;
    height: 46px;
}

.sgc-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sgc-brand-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1;
}

    .sgc-brand-content strong {
        display: block;
        overflow: hidden;
        color: var(--sgc-primary-dark);
        font-family: "Space Grotesk", sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.8px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .sgc-brand-content small {
        display: block;
        overflow: hidden;
        margin-top: 7px;
        color: var(--sgc-text-soft);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 3.2px;
        text-transform: uppercase;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.sgc-rise-gauge {
    display: flex;
    align-items: flex-end;
    height: 26px;
    gap: 3px;
    margin-left: 2px;
    flex-shrink: 0;
}

    .sgc-rise-gauge span {
        width: 4px;
        border-radius: 2px;
        background: linear-gradient(180deg, var(--sgc-accent), var(--sgc-accent-dark));
        transform-origin: bottom;
        animation: sgcRise 2.6s ease-in-out infinite;
    }

        .sgc-rise-gauge span:nth-child(1) {
            height: 10px;
            animation-delay: 0s;
        }

        .sgc-rise-gauge span:nth-child(2) {
            height: 18px;
            animation-delay: .18s;
        }

        .sgc-rise-gauge span:nth-child(3) {
            height: 26px;
            animation-delay: .36s;
        }

        .sgc-rise-gauge span:nth-child(4) {
            height: 15px;
            animation-delay: .54s;
        }

@keyframes sgcRise {
    0%, 100% {
        transform: scaleY(0.55);
        opacity: .65;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width: 1199.98px) {
    .sgc-rise-gauge {
        display: none;
    }
}

.sgc-nav-menu {
    gap: 3px;
}

    .sgc-nav-menu .nav-link {
        position: relative;
        padding: 31px 15px !important;
        color: #354a5e;
        font-size: 14px;
        font-weight: 700;
        transition: padding 0.35s var(--sgc-ease), color 0.25s ease;
    }

.sgc-header.is-scrolled .sgc-nav-menu .nav-link {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.sgc-nav-menu .nav-link::after {
    position: absolute;
    right: 15px;
    bottom: 20px;
    left: 15px;
    height: 2px;
    border-radius: 10px;
    background: var(--sgc-accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--sgc-ease);
}

.sgc-nav-menu .nav-link:hover,
.sgc-nav-menu .nav-link.active {
    color: var(--sgc-primary-dark);
}

    .sgc-nav-menu .nav-link:hover::after,
    .sgc-nav-menu .nav-link.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

.sgc-navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sgc-nav-motion-mark {
    position: relative;
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    overflow: hidden;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(10, 49, 83, 0.12);
    border-radius: 15px;
    outline: none;
    background: radial-gradient(circle at 72% 25%, rgba(245, 174, 34, 0.24), transparent 28%), linear-gradient(145deg, #f8fbff, #eef4fa);
    box-shadow: 0 10px 24px rgba(10, 49, 83, 0.09);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .sgc-nav-motion-mark:hover {
        border-color: rgba(245, 174, 34, 0.62);
        box-shadow: 0 12px 28px rgba(10, 49, 83, 0.14), 0 0 0 4px rgba(245, 174, 34, 0.08);
        transform: translateY(-2px);
    }

    .sgc-nav-motion-mark:focus-visible {
        outline: 3px solid rgba(245, 174, 34, 0.35);
        outline-offset: 3px;
    }

.sgc-motion-orbit {
    position: absolute;
    width: 31px;
    height: 31px;
    border: 1px dashed rgba(13, 64, 105, 0.34);
    border-radius: 50%;
    animation: sgcMotionOrbit 7s linear infinite;
}

    .sgc-motion-orbit::before {
        position: absolute;
        top: -2px;
        left: 12px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--sgc-accent);
        box-shadow: 0 0 8px rgba(245, 174, 34, 0.75);
        content: "";
    }

.sgc-motion-skyline {
    display: flex;
    height: 22px;
    align-items: flex-end;
    gap: 3px;
}

    .sgc-motion-skyline span {
        width: 4px;
        border-radius: 4px 4px 1px 1px;
        background: linear-gradient(180deg, #1a669e, var(--sgc-primary-dark));
        transform-origin: bottom;
        animation: sgcMotionBuild 2.4s ease-in-out infinite;
    }

        .sgc-motion-skyline span:nth-child(1) {
            height: 10px;
        }

        .sgc-motion-skyline span:nth-child(2) {
            height: 18px;
            animation-delay: 0.18s;
        }

        .sgc-motion-skyline span:nth-child(3) {
            height: 13px;
            animation-delay: 0.36s;
        }

.sgc-motion-spark {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sgc-accent);
    box-shadow: 0 0 9px rgba(245, 174, 34, 0.8);
    animation: sgcMotionSpark 1.8s ease-in-out infinite;
}

.sgc-nav-motion-mark.is-tapped {
    animation: sgcMotionTap 0.35s ease;
}

@keyframes sgcMotionOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sgcMotionBuild {
    0%, 100% {
        opacity: 0.72;
        transform: scaleY(0.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes sgcMotionSpark {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.75);
    }

    50% {
        opacity: 1;
        transform: scale(1.35);
    }
}

@keyframes sgcMotionTap {
    50% {
        transform: scale(0.9) rotate(3deg);
    }
}

.sgc-header-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .sgc-header-call:hover {
        transform: translateY(-2px);
    }

.sgc-header-call-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--sgc-primary-dark);
    background: var(--sgc-accent-soft);
    transition: var(--sgc-transition);
}

.sgc-header-call:hover .sgc-header-call-icon {
    background: var(--sgc-accent);
    transform: rotate(-8deg) scale(1.05);
}

.sgc-header-call-content {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

    .sgc-header-call-content small {
        color: var(--sgc-text-muted);
        font-size: 10px;
        font-weight: 700;
    }

    .sgc-header-call-content strong {
        margin-top: 5px;
        color: var(--sgc-primary-dark);
        font-size: 12px;
    }

.sgc-navbar-toggler {
    position: relative;
    flex-shrink: 0;
    width: 46px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--sgc-border);
    border-radius: 12px;
    background: var(--sgc-white);
    box-shadow: none !important;
    transition: var(--sgc-transition);
}

    .sgc-navbar-toggler:hover {
        border-color: var(--sgc-accent);
    }

    .sgc-navbar-toggler span {
        display: block;
        width: 100%;
        height: 2px;
        margin: 5px 0;
        border-radius: 5px;
        background: var(--sgc-primary-dark);
        transition: var(--sgc-transition);
    }

    .sgc-navbar-toggler.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .sgc-navbar-toggler.is-active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .sgc-navbar-toggler.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* =========================================================
   GLOBAL CTA
========================================================= */

.sgc-global-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    background: var(--sgc-white);
}

.sgc-global-cta-pattern {
    position: absolute;
    top: 20px;
    right: -120px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(21, 101, 192, 0.08);
    border-radius: 50%;
}

    .sgc-global-cta-pattern::before,
    .sgc-global-cta-pattern::after {
        position: absolute;
        border: 1px solid rgba(21, 101, 192, 0.08);
        border-radius: 50%;
        content: "";
    }

    .sgc-global-cta-pattern::before {
        inset: 45px;
    }

    .sgc-global-cta-pattern::after {
        inset: 90px;
    }

.sgc-global-cta-card {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 60px;
    border-radius: 34px 34px 0 0;
    color: var(--sgc-white);
    background: linear-gradient(115deg, rgba(6, 26, 47, 0.98), rgba(11, 42, 74, 0.94));
    box-shadow: var(--sgc-shadow-lg);
}

    .sgc-global-cta-card::before {
        position: absolute;
        top: -140px;
        right: -70px;
        width: 400px;
        height: 400px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        content: "";
    }

    .sgc-global-cta-card::after {
        position: absolute;
        right: 20%;
        bottom: -160px;
        width: 360px;
        height: 360px;
        border: 1px solid rgba(245, 166, 35, 0.15);
        transform: rotate(45deg);
        content: "";
    }

.sgc-global-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

    .sgc-global-cta-content h2 {
        max-width: 700px;
        margin-bottom: 20px;
        color: var(--sgc-white);
        font-size: clamp(30px, 4vw, 60px);
        letter-spacing: -2px;
    }

        .sgc-global-cta-content h2 span {
            color: var(--sgc-accent);
        }

    .sgc-global-cta-content p {
        max-width: 650px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 17px;
    }

.sgc-global-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 260px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.sgc-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--sgc-white);
    max-width: 100%;
}

    .sgc-cta-call > i {
        display: inline-flex;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 14px;
        color: var(--sgc-accent);
        background: rgba(255, 255, 255, 0.08);
        transition: var(--sgc-transition);
    }

    .sgc-cta-call:hover > i {
        background: var(--sgc-accent);
        color: var(--sgc-primary-dark);
        transform: rotate(-8deg);
    }

    .sgc-cta-call span {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .sgc-cta-call small {
        color: rgba(255, 255, 255, 0.58);
        font-size: 11px;
    }

    .sgc-cta-call strong {
        margin-top: 4px;
        font-size: 15px;
    }

    .sgc-cta-call:hover {
        color: var(--sgc-accent);
        transform: translateX(5px);
    }

/* =========================================================
   FOOTER
========================================================= */

.sgc-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    background: #041426;
}

.sgc-footer-main {
    position: relative;
    z-index: 2;
    padding: 88px 0 65px;
}

.sgc-footer-company {
    max-width: 440px;
}

.sgc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.sgc-footer-logo {
    display: inline-flex;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 16px;
    background: var(--sgc-white);
}

    .sgc-footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.sgc-footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sgc-footer-brand strong {
    color: var(--sgc-white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    letter-spacing: 0.7px;
}

.sgc-footer-brand small {
    margin-top: 7px;
    color: var(--sgc-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.sgc-footer-company p {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.9;
}

.sgc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .sgc-footer-social a {
        display: inline-flex;
        width: 43px;
        height: 43px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.72);
        background: rgba(255, 255, 255, 0.04);
    }

        .sgc-footer-social a:hover {
            border-color: var(--sgc-accent);
            color: var(--sgc-primary-dark);
            background: var(--sgc-accent);
            transform: translateY(-4px);
        }

.sgc-footer-column h5 {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 14px;
    color: var(--sgc-white);
    font-size: 18px;
}

    .sgc-footer-column h5::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 38px;
        height: 2px;
        border-radius: 5px;
        background: var(--sgc-accent);
        content: "";
    }

.sgc-footer-column li + li {
    margin-top: 13px;
}

.sgc-footer-column li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

    .sgc-footer-column li a::before {
        width: 0;
        height: 1px;
        margin-right: 0;
        background: var(--sgc-accent);
        content: "";
        transition: var(--sgc-transition);
    }

    .sgc-footer-column li a:hover {
        color: var(--sgc-accent);
        transform: translateX(5px);
    }

        .sgc-footer-column li a:hover::before {
            width: 14px;
            margin-right: 8px;
        }

.sgc-footer-contact {
    max-width: 360px;
}

.sgc-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.sgc-footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sgc-footer-contact-item > span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--sgc-accent);
    background: rgba(245, 166, 35, 0.1);
}

.sgc-footer-contact-item p,
.sgc-footer-contact-item a {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
    word-break: break-word;
}

    .sgc-footer-contact-item a:hover {
        color: var(--sgc-accent);
    }

.sgc-footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sgc-footer-bottom-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.sgc-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.sgc-footer-developer-credit {
    display: inline-block;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s ease;
}

    .sgc-footer-developer-credit:hover {
        color: var(--sgc-accent);
    }

.sgc-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}

    .sgc-footer-bottom-links a {
        color: rgba(255, 255, 255, 0.48);
        font-size: 12px;
    }

        .sgc-footer-bottom-links a:hover {
            color: var(--sgc-accent);
        }

/* =========================================================
   REVEAL-ON-SCROLL
========================================================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--sgc-ease-soft), transform 0.8s var(--sgc-ease-soft);
}

    [data-reveal].is-revealed {
        opacity: 1;
        transform: translateY(0);
    }

[data-reveal="scale"] {
    transform: scale(.94);
}

    [data-reveal="scale"].is-revealed {
        transform: scale(1);
    }

/* =========================================================
   WHATSAPP
   FIX: added iOS safe-area support and shrank vertical stack
   spacing so it never collides with page content near the
   bottom edge on short mobile viewports.
========================================================= */

.sgc-whatsapp {
    position: fixed;
    z-index: 9990;
    right: 24px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 50px;
    color: var(--sgc-white);
    background: #20b865;
    box-shadow: 0 14px 35px rgba(32, 184, 101, 0.32);
    max-width: calc(100vw - 32px);
}

    .sgc-whatsapp > i {
        position: relative;
        z-index: 2;
        font-size: 24px;
        flex-shrink: 0;
    }

.sgc-whatsapp-text {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.sgc-whatsapp:hover {
    color: var(--sgc-white);
    background: #159952;
    transform: translateY(-4px);
}

.sgc-whatsapp-pulse {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    background: #20b865;
    animation: sgcWhatsappPulse 2s infinite;
}

@keyframes sgcWhatsappPulse {
    0% {
        opacity: 0.45;
        transform: scale(1);
    }

    70% {
        opacity: 0;
        transform: scale(1.28);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

/* =========================================================
   BACK TO TOP
========================================================= */

.sgc-back-to-top {
    position: fixed;
    z-index: 9990;
    right: 27px;
    bottom: calc(25px + env(safe-area-inset-bottom, 0px));
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    opacity: 0;
    color: var(--sgc-white);
    background: var(--sgc-primary-dark);
    box-shadow: var(--sgc-shadow-md);
    cursor: pointer;
    transform: translateY(15px);
    transition: var(--sgc-transition);
}

    .sgc-back-to-top.is-visible {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .sgc-back-to-top:hover {
        color: var(--sgc-primary-dark);
        background: var(--sgc-accent);
        transform: translateY(-4px);
    }

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #eaf0f5;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #eaf0f5;
    border-radius: 20px;
    background: linear-gradient(var(--sgc-primary), var(--sgc-secondary));
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--sgc-accent-dark);
    }

/* =========================================================
   RESPONSIVE
   Breakpoints: 1399.98 / 1199.98 / 991.98 / 767.98 / 575.98 / 400 / 360
   The last two are new — they target small and very small
   phones (the 320px devtools width in your screenshot falls
   in the 360px tier) which previously had no dedicated rules.
========================================================= */

@media (max-width: 1399.98px) {
    .container {
        --bs-gutter-x: 22px;
    }

    .sgc-brand-content strong {
        font-size: 16px;
    }

    .sgc-brand-content small {
        font-size: 8px;
        letter-spacing: 2.4px;
    }

    .sgc-nav-menu .nav-link {
        padding-right: 11px !important;
        padding-left: 11px !important;
    }

    .sgc-header-call {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .sgc-navbar {
        min-height: 78px;
    }

        .sgc-navbar .navbar-collapse {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            max-height: calc(100vh - 78px);
            overflow-y: auto;
            border-top: 1px solid var(--sgc-border);
            background: rgba(255, 255, 255, 0.99);
            box-shadow: 0 25px 45px rgba(11, 42, 74, 0.14);
            backdrop-filter: blur(20px);
            transform-origin: top;
            -webkit-overflow-scrolling: touch;
        }

    .sgc-nav-menu {
        gap: 0;
        padding: 20px 12px 10px;
    }

        .sgc-nav-menu .nav-item {
            opacity: 0;
            transform: translateY(-10px);
        }

    .navbar-collapse.show .sgc-nav-menu .nav-item {
        animation: sgcNavItemIn 0.4s var(--sgc-ease-soft) forwards;
    }

    .sgc-nav-menu .nav-item:nth-child(1) {
        animation-delay: .02s;
    }

    .sgc-nav-menu .nav-item:nth-child(2) {
        animation-delay: .06s;
    }

    .sgc-nav-menu .nav-item:nth-child(3) {
        animation-delay: .10s;
    }

    .sgc-nav-menu .nav-item:nth-child(4) {
        animation-delay: .14s;
    }

    .sgc-nav-menu .nav-item:nth-child(5) {
        animation-delay: .18s;
    }

    .sgc-nav-menu .nav-item:nth-child(6) {
        animation-delay: .22s;
    }

    .sgc-nav-menu .nav-item:nth-child(7) {
        animation-delay: .26s;
    }

    .sgc-nav-menu .nav-link {
        margin-bottom: 5px;
        padding: 13px 16px !important;
        border-radius: 11px;
    }

        .sgc-nav-menu .nav-link::after {
            display: none;
        }

        .sgc-nav-menu .nav-link:hover,
        .sgc-nav-menu .nav-link.active {
            color: var(--sgc-primary-dark);
            background: var(--sgc-accent-soft);
        }

    .sgc-navbar-actions {
        align-items: center;
        justify-content: space-between;
        padding: 10px 28px 28px;
    }

    .sgc-nav-motion-mark {
        margin-left: auto;
    }

    .sgc-global-cta-card {
        padding: 50px 42px;
    }
}

@keyframes sgcNavItemIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .container {
        --bs-gutter-x: 20px;
    }

    .sgc-global-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .sgc-global-cta-actions {
        min-width: auto;
    }

    .sgc-footer-main {
        padding-top: 72px;
    }
}

@media (max-width: 767.98px) {
    .sgc-topbar-right .sgc-topbar-social {
        display: none;
    }

    .sgc-topbar-left {
        gap: 16px;
    }

    .sgc-topbar-wrap {
        min-height: var(--sgc-topbar-h-mobile);
    }

    .sgc-topbar-status {
        font-size: 10px;
    }

    .sgc-brand-logo {
        width: 50px;
        height: 50px;
    }

    .sgc-brand-content strong {
        max-width: 46vw;
        font-size: 15px;
    }

    .sgc-brand-content small {
        margin-top: 5px;
        font-size: 7px;
        letter-spacing: 2px;
    }

    .sgc-global-cta {
        padding-top: 65px;
    }

    .sgc-global-cta-card {
        min-height: auto;
        padding: 42px 28px;
        border-radius: 25px 25px 0 0;
    }

    .sgc-global-cta-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .sgc-global-cta-content p {
        font-size: 15px;
    }

    .sgc-footer-bottom-wrap {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 22px 0;
    }

    .sgc-whatsapp {
        right: 16px;
        bottom: calc(78px + env(safe-area-inset-bottom, 0px));
        width: 50px;
        height: 50px;
        min-height: 50px;
        padding: 0;
    }

    .sgc-whatsapp-text {
        display: none;
    }

    .sgc-back-to-top {
        right: 16px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .container {
        --bs-gutter-x: 18px;
    }

    .sgc-topbar-left {
        gap: 14px;
    }

        .sgc-topbar-left a span {
            font-size: 10px;
        }

    .sgc-topbar-status {
        display: none;
    }

    .sgc-brand {
        gap: 9px;
        margin-right: 5px;
    }

    .sgc-brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .sgc-brand-content strong {
        max-width: 38vw;
        font-size: 13px;
    }

    .sgc-brand-content small {
        font-size: 6px;
        letter-spacing: 1.6px;
    }

    .sgc-navbar-toggler {
        width: 42px;
        height: 40px;
    }

    .sgc-global-cta-card {
        padding: 34px 20px;
    }

    .sgc-global-cta-content h2 {
        font-size: 30px;
    }

    .sgc-global-cta-actions {
        width: 100%;
    }

        .sgc-global-cta-actions .sgc-btn {
            width: 100%;
        }

    .sgc-footer-main {
        padding: 55px 0 40px;
    }

    .sgc-footer-bottom-links {
        gap: 14px;
    }
}

/* NEW — small phones (iPhone SE, older Android, and the 320–400px
   devtools width shown in your screenshot). Previously nothing
   below 575.98px existed, so text/icons never shrank further and
   the topbar/brand fought each other for space. */
@media (max-width: 400px) {
    .container {
        --bs-gutter-x: 14px;
    }

    .sgc-topbar-left {
        gap: 10px;
    }

        .sgc-topbar-left i {
            font-size: 11px;
        }

        .sgc-topbar-left a span {
            font-size: 9px;
        }

    .sgc-brand {
        gap: 7px;
    }

    .sgc-brand-logo {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .sgc-brand-content strong {
        max-width: 34vw;
        font-size: 12px;
    }

    .sgc-brand-content small {
        display: none;
    }

    .sgc-navbar-toggler {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .sgc-global-cta-content h2 {
        font-size: 26px;
    }

    .sgc-whatsapp {
        right: 12px;
    }

    .sgc-back-to-top {
        right: 12px;
    }

    .sgc-footer-brand strong {
        font-size: 17px;
    }
}

@media (max-width: 360px) {
    .sgc-brand-content strong {
        max-width: 30vw;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sgc-motion-orbit,
    .sgc-motion-skyline span,
    .sgc-motion-spark {
        animation: none;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
