:root {
    --primary: #0b2c5f;
    --primary-dark: #081d3b;
    --accent: #f58220;
    --accent-soft: #fff0e2;
    --text: #20304a;
    --muted: #66758c;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --border: rgba(11, 44, 95, 0.12);
    --shadow: 0 20px 50px rgba(7, 25, 53, 0.12);
    --shadow-soft: 0 10px 24px rgba(7, 25, 53, 0.08);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 8%, rgba(245, 130, 32, 0.08), transparent 24%),
        radial-gradient(circle at 92% 15%, rgba(11, 44, 95, 0.06), transparent 24%),
        #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

main {
    position: relative;
}

main::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(11, 44, 95, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 44, 95, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
    opacity: 0.22;
}

.corporate-nav {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(7, 25, 53, 0.06);
    backdrop-filter: blur(14px);
    transition: padding 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    padding-block: 0.7rem;
}

.corporate-nav.nav-scrolled {
    padding-block: 0.4rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 32px rgba(7, 25, 53, 0.13);
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.navbar-brand {
    min-width: 0;
    flex-shrink: 1;
    margin-right: 1.1rem;
}

.navbar-brand strong,
.footer-brand h5,
.section-title,
.hero-section h1,
.inner-hero h1,
.info-card h3,
.highlight-panel h3 {
    font-family: 'Barlow', sans-serif;
}

.navbar-brand small {
    display: block;
    color: var(--muted);
}

.brand-copy {
    line-height: 1.1;
    min-width: 0;
}

.brand-name {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 1.7vw, 2rem);
    letter-spacing: 0.1px;
    margin: 0;
}

.brand-name-main {
    color: #1a2738;
}

.brand-name-accent {
    color: #c2172e;
}

.brand-tagline {
    display: block;
    margin-top: 4px;
    color: #5b6f88;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 2px;
    display: grid;
    place-items: center;
    background: #16283d;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
}

.brand-divider {
    width: 2px;
    height: 54px;
    background: #ce1f33;
    border-radius: 999px;
}

.nav-link {
    color: var(--text);
    font-weight: 700;
    font-size: 1.02rem;
    white-space: nowrap;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffb066);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 220px;
    max-width: 320px;
}

.nav-search i {
    position: absolute;
    left: 14px;
    color: var(--muted);
}

.nav-search input {
    width: 100%;
    border: 1px solid rgba(11, 44, 95, 0.12);
    border-radius: 999px;
    background: #f6f8fb;
    padding: 0.72rem 1rem 0.72rem 2.45rem;
    outline: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 600;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.12);
    background: #fff;
}

.search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid rgba(11, 44, 95, 0.14);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(7, 25, 53, 0.13);
    overflow: hidden;
    z-index: 25;
}

.search-suggestions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(11, 44, 95, 0.08);
    transition: background-color 0.2s ease;
}

.search-suggestions a:last-child {
    border-bottom: 0;
}

.search-suggestions a:hover {
    background: #f8fbff;
}

.search-suggestions small {
    color: var(--muted);
    font-weight: 600;
}

.btn-brand {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.62rem 1.45rem;
    line-height: 1.2;
    white-space: nowrap;
    min-width: 126px;
}

.btn-brand:hover {
    background: #d96d14;
    border-color: #d96d14;
    color: #fff;
}

.btn-brand {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(245, 130, 32, 0.3);
}

.hero-section {
    position: relative;
    min-height: clamp(520px, 90vh, 920px);
    color: #fff;
    overflow: hidden;
}

.hero-background-carousel,
.hero-background-carousel .carousel-inner,
.hero-background-carousel .carousel-item {
    position: absolute;
    inset: 0;
    height: 100%;
}

.hero-background-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 29, 59, 0.9), rgba(11, 44, 95, 0.72));
}

.hero-section h1,
.inner-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-section p,
.inner-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-panel,
.highlight-panel,
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 26px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.hero-panel {
    backdrop-filter: blur(10px);
}

.hero-content-panel {
    padding: 2rem;
}

.hero-content-panel p {
    margin-bottom: 0;
}

.hero-content-light {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(11, 44, 95, 0.1);
}

.hero-content-light h1,
.hero-content-light p,
.hero-content-light strong,
.hero-content-light span {
    color: var(--text);
}

.hero-content-light .section-eyebrow {
    color: var(--accent);
}

.hero-metric-dark + .hero-metric-dark {
    border-top: 1px solid rgba(11, 44, 95, 0.12);
}

.hero-metric-dark span {
    color: var(--muted);
}

.hero-metric + .hero-metric {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-metric strong {
    display: block;
    font-size: 1.5rem;
}

.section-space {
    padding: clamp(56px, 6.5vw, 88px) 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-brand-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.1rem, 1.4vw, 1.45rem);
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 700;
    gap: 0.35rem;
}

.section-brand-eyebrow .brand-name-main,
.section-brand-eyebrow .brand-name-accent {
    color: #c2172e;
}

.section-title-lg {
    font-size: clamp(2.2rem, 3.2vw, 3.35rem);
    line-height: 1.14;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), #ffc18a);
}

.section-heading {
    max-width: 100%;
    margin-bottom: 2.5rem;
}

.text-link,
.card-link {
    color: var(--primary);
    font-weight: 700;
}

.text-link:hover,
.card-link:hover {
    color: var(--accent);
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    height: clamp(320px, 42vw, 500px);
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: var(--shadow);
}

.image-badge strong {
    display: block;
    margin-bottom: 0.4rem;
}

.stats-section {
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.stat-card,
.info-card,
.highlight-panel,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(11, 44, 95, 0.2);
}

.stat-card h3 {
    color: #c2172e;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.stat-card p {
    margin: 0;
    color: var(--muted);
}

.bg-light-soft {
    background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.info-card {
    overflow: hidden;
}

.card-thumb {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.info-card-body {
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--muted);
}

.product-card {
    border-radius: 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 44, 95, 0.25);
    box-shadow: 0 24px 46px rgba(7, 25, 53, 0.16);
}

.product-card .card-thumb {
    height: 220px;
    transition: transform 0.35s ease;
}

.product-card:hover .card-thumb {
    transform: scale(1.04);
}

.product-card .info-card-body {
    padding: 1.3rem 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.product-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.32rem 0.62rem;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: clamp(1.35rem, 1.4vw, 1.75rem);
    line-height: 1.22;
    margin: 0;
    min-height: 4.25rem;
}

.product-card p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.5;
    min-height: 7.6rem;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.03rem;
    font-weight: 800;
}

.product-link i {
    transition: transform 0.2s ease;
}

.product-card:hover .product-link i {
    transform: translateX(3px);
}

.choose-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 44, 95, 0.22);
    box-shadow: 0 24px 44px rgba(7, 25, 53, 0.14);
}

.choose-accent-line {
    display: block;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #f58220, #f7a85f 48%, #0b2c5f);
}

.choose-card .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 1.2rem 0 0 1.3rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #fff4e7, #ffe5cc);
    color: #d96d14;
    font-size: 1.9rem;
    box-shadow: inset 0 0 0 1px rgba(245, 130, 32, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-card:hover .icon-wrap {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: inset 0 0 0 1px rgba(245, 130, 32, 0.2), 0 8px 18px rgba(245, 130, 32, 0.2);
}

.choose-card .info-card-body {
    padding: 1.1rem 1.3rem 1.4rem;
}

.choose-kicker {
    display: inline-flex;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: #eaf3ff;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.choose-card h3 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.28rem, 1.25vw, 1.6rem);
}

.choose-card p {
    margin: 0;
    line-height: 1.55;
}

.clients-band {
    background: var(--primary-dark);
    color: #fff;
}

.clients-band .section-title,
.clients-band .section-eyebrow {
    color: #fff;
}

.clients-band .section-brand-eyebrow .brand-name-main,
.clients-band .section-brand-eyebrow .brand-name-accent {
    color: #c2172e;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: slideLogos 28s linear infinite;
}

.logo-item {
    min-width: clamp(160px, 24vw, 220px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

.badge-soft {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.inner-hero {
    padding: 86px 0 70px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

.feature-list,
.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li,
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0.65rem 0;
    color: var(--text);
}

.feature-list li::before {
    content: '\F26E';
    font-family: bootstrap-icons;
    color: var(--accent);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.client-grid span {
    background: var(--surface-soft);
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
}

.contact-card {
    padding: 2rem;
}

.form-control {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    border-color: rgba(11, 44, 95, 0.18);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 rgba(11, 44, 95, 0.03);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(245, 130, 32, 0.15);
}

.map-frame {
    margin-top: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.site-footer {
    background: #071a35;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 20px;
}

.footer-contact a,
.footer-contact span {
    word-break: break-word;
}

.site-footer h6,
.site-footer h5 {
    color: #fff;
}

.site-footer .footer-contact li {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-contact i {
    color: rgba(255, 255, 255, 0.4);
}

.site-footer .brand-name-main {
    color: #ffffff;
}

.site-footer .brand-name-accent {
    color: #ff4b5f;
}

.site-footer .brand-tagline {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 0.5rem;
}

.site-footer .footer-links a,
.site-footer .footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@keyframes slideLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand {
        max-width: calc(100% - 56px);
    }

    .brand-name {
        font-size: clamp(1.18rem, 4.8vw, 1.52rem);
    }

    .brand-tagline {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.9rem;
        border: 1px solid rgba(11, 44, 95, 0.12);
        border-radius: 14px;
        background: #fff;
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.55rem 0;
    }

    .nav-link::after {
        left: 0;
        right: auto;
        width: 44px;
    }

    .stats-section {
        margin-top: 0;
        padding-top: 2rem;
    }

    .hero-section,
    .section-space {
        padding: 72px 0;
    }

    .hero-section {
        min-height: clamp(430px, 68vh, 620px);
    }

    .nav-search {
        min-width: 0;
        margin: 0.75rem 0;
        max-width: 100%;
    }

    .search-suggestions {
        position: static;
        margin-top: 0.55rem;
        border-radius: 12px;
    }

    .image-stack img {
        height: clamp(300px, 54vw, 380px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand {
        gap: 10px;
    }

    .brand-mark {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-tagline {
        font-size: 0.66rem;
    }

    .brand-divider {
        height: 50px;
    }

    .nav-link {
        font-size: 1rem;
        padding-inline: 0.45rem !important;
    }

    .nav-search {
        max-width: 210px;
        min-width: 160px;
    }

    .btn-brand {
        padding-inline: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: clamp(360px, 58vh, 520px);
    }

    .hero-section h1,
    .inner-hero h1 {
        line-height: 1.1;
    }

    .image-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .map-frame iframe {
        height: 220px;
    }

    .client-grid {
        grid-template-columns: 1fr;
    }

    .product-card .card-thumb {
        height: 210px;
    }

    .product-card h3,
    .product-card p {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .section-brand-eyebrow {
        font-size: 1rem;
        letter-spacing: 0.02em;
    }

    .section-title-lg {
        font-size: clamp(1.7rem, 7vw, 2.15rem);
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .brand-divider {
        height: 40px;
    }

    .hero-actions .btn,
    .btn-brand {
        width: 100%;
    }

    .hero-section {
        min-height: clamp(340px, 54vh, 460px);
    }

    .section-space {
        padding: 52px 0;
    }

    .footer-brand {
        align-items: flex-start;
    }

}
