/* SVS Platform Theme — PHP 7.4 / modern corporate */
:root {
    --svs-orange: #EF5A24;
    --svs-orange-dark: #D9480F;
    --svs-orange-soft: rgba(239, 90, 36, 0.12);
    --svs-navy: #0F1419;
    --svs-charcoal: #1C2128;
    --svs-steel: #3D4654;
    --svs-muted: #6B7280;
    --svs-line: #E4E7EC;
    --svs-bg: #F4F5F7;
    --svs-white: #FFFFFF;
    --svs-text: #1A1F27;
    --header-h: 88px;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(15, 20, 25, 0.12);
    --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--svs-text);
    background: var(--svs-white);
    font-family: "Manrope", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: "Barlow Condensed", "Manrope", sans-serif; letter-spacing: 0.02em; line-height: 1.15; margin: 0 0 12px; color: var(--svs-navy); }
p { margin: 0 0 14px; }
button, input, textarea, select { font-family: inherit; }

.svs-container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.svs-hidden { position: absolute; left: -9999px; }

/* Buttons */
.svs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: var(--svs-orange);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}
.svs-btn:hover { background: var(--svs-orange-dark); transform: translateY(-1px); }
.svs-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
}
.svs-btn-ghost:hover { background: #fff; color: var(--svs-navy); }
.svs-btn-outline {
    background: transparent;
    color: var(--svs-navy);
    border: 1px solid var(--svs-line);
}
.svs-btn-outline:hover { border-color: var(--svs-orange); color: var(--svs-orange); background: var(--svs-orange-soft); }

/* Topbar + Header */
.svs-topbar {
    background: var(--svs-navy);
    color: #C9CDD4;
    font-size: 13px;
}
.svs-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    gap: 16px;
}
.svs-topbar a { color: #C9CDD4; }
.svs-topbar a:hover { color: #fff; }
.svs-top-meta { display: flex; gap: 22px; flex-wrap: wrap; }
.svs-top-meta i { color: var(--svs-orange); margin-right: 6px; }
.svs-social { display: flex; gap: 12px; }
.svs-social a { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; }
.svs-social a:hover { color: var(--svs-orange); }

.svs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--svs-header-bg, #fff);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--svs-line);
    box-shadow: 0 8px 24px rgba(15, 20, 25, 0.06);
}
.svs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 20px;
}
.svs-logo { display: flex; align-items: center; flex-shrink: 0; }
.svs-logo img { height: 64px; width: auto; max-width: 240px; object-fit: contain; }
.svs-nav { display: flex; align-items: center; gap: 4px; }
.svs-nav > li { position: relative; }
.svs-nav > li > a {
    display: block;
    padding: 10px 14px;
    color: var(--svs-navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.svs-nav > li > a:hover,
.svs-nav > li:hover > a { color: var(--svs-orange); }
.svs-nav .drop-down,
.svs-lang .drop-down {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
    z-index: 20;
}
.svs-lang .drop-down { right: 0; left: auto; }
.svs-nav .drop-down a,
.svs-lang .drop-down a {
    display: block;
    padding: 10px 16px;
    color: var(--svs-navy);
    font-size: 14px;
    font-weight: 600;
}
.svs-nav li:hover > .drop-down,
.svs-lang:hover > .drop-down { opacity: 1; visibility: visible; transform: none; }
.svs-nav .drop-down a {
    display: block;
    padding: 10px 16px;
    color: var(--svs-navy);
    font-size: 14px;
    font-weight: 600;
}
.svs-nav .drop-down a:hover,
.svs-lang .drop-down a:hover { background: var(--svs-bg); color: var(--svs-orange); }
.svs-header-cta { display: flex; align-items: center; gap: 12px; }
.svs-lang { position: relative; }
.svs-lang > a { color: var(--svs-navy); padding: 8px 10px; display: inline-flex; }
.svs-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--svs-line);
    background: transparent;
    color: var(--svs-navy);
    border-radius: 8px;
    cursor: pointer;
}

/* Mobile drawer */
.svs-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(9,12,16,.55);
}
.svs-drawer.open { display: block; }
.svs-drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: min(360px, 88vw);
    height: 100%;
    background: var(--svs-navy);
    padding: 24px;
    overflow: auto;
}
.svs-drawer-panel a { display: block; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; }
.svs-drawer-close { background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer; margin-bottom: 16px; }

/* Slider */
.svs-slider { position: relative; overflow: hidden; background: #0b0e12; min-height: 620px; }
.svs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.svs-slide.is-active { opacity: 1; position: relative; pointer-events: auto; }
.svs-slide img.svs-slide-bg {
    width: 100%;
    height: 72vh;
    min-height: 560px;
    max-height: 780px;
    object-fit: cover;
    filter: saturate(1.05);
}
.svs-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,12,16,.82) 0%, rgba(10,12,16,.45) 52%, rgba(10,12,16,.18) 100%);
}
.svs-slide-content {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    display: flex;
    align-items: center;
}
.svs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--svs-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.svs-kicker::before { content: ""; width: 28px; height: 2px; background: var(--svs-orange); }
.svs-slide-content h2,
.svs-slide-content .svs-hero-title {
    color: #fff;
    font-size: clamp(38px, 5.4vw, 72px);
    max-width: 720px;
    margin-bottom: 18px;
}
.svs-slide-content p {
    color: #D5DBE3;
    max-width: 560px;
    font-size: 18px;
}
.svs-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.svs-slider-nav {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.svs-slider-nav button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.25);
    color: #fff;
    cursor: pointer;
}
.svs-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.svs-slider-dots button {
    width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.svs-slider-dots button.is-active { background: var(--svs-orange); width: 26px; border-radius: 99px; }

/* Sections */
.svs-section { padding: 88px 0; }
.svs-section-muted { background: var(--svs-bg); }
.svs-section-dark { background: var(--svs-navy); color: #C9CDD4; }
.svs-section-dark h2, .svs-section-dark h3 { color: #fff; }
.svs-head { max-width: 680px; margin-bottom: 42px; }
.svs-head h2 { font-size: clamp(32px, 4vw, 48px); }
.svs-lead { color: var(--svs-muted); font-size: 17px; }

/* Stats */
.svs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--svs-navy);
    color: #fff;
}
.svs-stat {
    padding: 36px 24px;
    border-right: 1px solid rgba(255,255,255,.08);
    text-align: center;
}
.svs-stat:last-child { border-right: 0; }
.svs-stat strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 42px; color: var(--svs-orange); }
.svs-stat span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #AEB6C2; }

/* About */
.svs-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.svs-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    background: #111;
}
.svs-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.svs-photo-badge {
    position: absolute;
    left: 18px; bottom: 18px;
    background: var(--svs-orange);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Products */
.svs-products { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svs-product {
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15,20,25,.05);
    display: flex;
    flex-direction: column;
}
.svs-product-media {
    background: linear-gradient(180deg, #ECEFF3, #F7F8FA);
    padding: 24px 24px 0;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.svs-product-media a { display: block; cursor: zoom-in; width: 100%; }
.svs-product-media img { max-height: 280px; object-fit: contain; margin: 0 auto; }
.svs-product-body { padding: 28px; }
.svs-product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.svs-code {
    display: inline-block;
    background: var(--svs-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.svs-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 8px;
}
.svs-spec {
    background: var(--svs-bg);
    border-radius: 10px;
    padding: 12px 14px;
}
.svs-spec small { display: block; color: var(--svs-muted); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.svs-spec b { font-size: 18px; font-family: "Barlow Condensed", sans-serif; }

/* Features */
.svs-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svs-feature {
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 16px;
    padding: 26px;
    min-height: 180px;
}
.svs-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--svs-orange-soft);
    color: var(--svs-orange);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}
.svs-feature h3 { font-size: 22px; }

/* Safety */
.svs-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svs-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px;
}
.svs-list li {
    position: relative;
    padding: 9px 0 9px 26px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #D0D5DC;
    font-size: 15px;
}
.svs-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 16px;
    width: 10px; height: 10px;
    border: 2px solid var(--svs-orange);
    border-radius: 50%;
}

/* Services / cards */
.svs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svs-card-media { overflow: hidden; border-radius: 16px 16px 0 0; }
.svs-card-media img { width: 100%; height: 210px; object-fit: cover; transition: 0.4s ease; }
.svs-item:hover .svs-card-media img { transform: scale(1.05); }
.svs-item {
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.svs-item-body { padding: 22px; }
.svs-item-body h3 { font-size: 24px; }
.svs-item-body p { color: var(--svs-muted); }
.svs-more { color: var(--svs-orange); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Gallery */
.svs-gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px; }
.svs-gallery a { overflow: hidden; border-radius: 14px; display: block; background: #111; cursor: zoom-in; }
.svs-gallery img { width: 100%; height: 100%; object-fit: cover; }
.svs-gallery a:first-child { grid-row: 1 / span 2; }

/* CTA */
.svs-cta {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 48px;
    background: #12171e;
    color: #fff;
}
.svs-cta img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
}
.svs-cta-inner { position: relative; z-index: 1; max-width: 640px; }
.svs-cta h2 { color: #fff; font-size: 46px; }

/* Page banner */
.svs-page-banner {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    padding: 70px 0 36px;
    background: #12171e;
    color: #fff;
    overflow: hidden;
}
.svs-page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,20,25,.35), rgba(15,20,25,.82));
}
.svs-page-banner .svs-container { position: relative; z-index: 1; }
.svs-page-banner h1 { color: #fff; font-size: clamp(32px, 4vw, 52px); }
.svs-breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; color: #C9CDD4; font-size: 14px; margin-top: 8px; }
.svs-breadcrumb a:hover { color: var(--svs-orange); }
.svs-breadcrumb span { color: #fff; }

/* Contact */
.svs-contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.svs-info-list li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--svs-line); }
.svs-info-list i { color: var(--svs-orange); margin-top: 4px; }
.svs-form { display: grid; gap: 14px; }
.svs-form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.svs-form input,
.svs-form textarea {
    width: 100%;
    border: 1px solid var(--svs-line);
    border-radius: 10px;
    padding: 14px 16px;
    background: #fff;
}
.svs-form textarea { min-height: 140px; resize: vertical; }
.svs-form input:focus,
.svs-form textarea:focus { outline: 2px solid var(--svs-orange-soft); border-color: var(--svs-orange); }
.svs-map iframe { width: 100% !important; height: 380px !important; display: block; border: 0; }

.svs-ig-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}
.svs-ig-card {
    background: linear-gradient(145deg, #1a1024 0%, #0F1419 55%, #EF5A24 160%);
    color: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    min-height: 280px;
}
.svs-ig-card .svs-kicker { color: #ffb199; }
.svs-ig-card h2 { color: #fff; margin: 8px 0 14px; }
.svs-ig-card p { color: #d7dde6; margin-bottom: 22px; max-width: 42ch; }
.svs-ig-card .svs-btn { background: #fff; color: #0F1419; }
.svs-ig-card .svs-btn:hover { background: var(--svs-orange); color: #fff; }
.svs-ig-embed { background: #fff; border: 1px solid var(--svs-line); border-radius: 18px; padding: 8px; overflow: hidden; min-height: 280px; }
.svs-ig-embed iframe, .svs-ig-embed .instagram-media { margin: 0 auto !important; }

.svs-about-intro { max-width: 820px; }
.svs-about-intro h2 { font-size: clamp(32px, 4vw, 48px); }
.svs-timeline,
.svs-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svs-year,
.svs-value {
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 16px;
    padding: 24px;
}
.svs-year b { color: var(--svs-orange); font-size: 30px; display: block; margin-bottom: 6px; }
.svs-year small { color: var(--svs-muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.svs-year p,
.svs-value p { margin: 10px 0 0; color: var(--svs-steel); }
.svs-value i { color: var(--svs-orange); font-size: 22px; margin-bottom: 12px; }
.svs-value h3 { font-size: 22px; }
.svs-docs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svs-doc {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 14px;
    padding: 18px 20px;
}
.svs-doc-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--svs-orange-soft);
    color: var(--svs-orange);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 11px;
}
.svs-doc-body { flex: 1; min-width: 0; }
.svs-doc-body h3 { font-size: 20px; margin: 0 0 4px; }
.svs-doc-body small { color: var(--svs-muted); }
.svs-doc .svs-btn { flex-shrink: 0; }

/* Blog */
.svs-blog-layout { display: grid; grid-template-columns: 1.7fr 0.8fr; gap: 32px; }
.svs-post { background: #fff; border: 1px solid var(--svs-line); border-radius: 16px; overflow: hidden; margin-bottom: 22px; }
.svs-post img { width: 100%; height: 280px; object-fit: cover; }
.svs-post-body { padding: 24px; }
.svs-meta { display: flex; gap: 16px; color: var(--svs-muted); font-size: 13px; margin-bottom: 10px; flex-wrap: wrap; }
.svs-sidebar .widget { background: var(--svs-bg); border-radius: 14px; padding: 22px; margin-bottom: 16px; }
.svs-sidebar h2 { font-size: 22px; }
.svs-sidebar a { display: block; padding: 8px 0; border-bottom: 1px solid var(--svs-line); font-weight: 600; }
.svs-sidebar a:hover { color: var(--svs-orange); }
.pagination-list { display: flex; gap: 8px; list-style: none; margin: 24px 0; padding: 0; flex-wrap: wrap; }
.pagination-list a, .pagination-list span {
    display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
    border: 1px solid var(--svs-line); border-radius: 8px; padding: 0 10px;
}

/* Product detail */
.svs-service-layout { display: grid; grid-template-columns: 1.7fr 0.7fr; gap: 28px; }
.svs-tabs a { display: block; padding: 12px 14px; border: 1px solid var(--svs-line); margin-bottom: 8px; border-radius: 10px; font-weight: 700; }
.svs-tabs a.active, .svs-tabs a:hover { background: var(--svs-navy); color: #fff; border-color: var(--svs-navy); }
.service-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0 24px; }
.service-photos a { display: block; cursor: zoom-in; border-radius: 8px; overflow: hidden; }
.service-photos img { height: 90px; object-fit: cover; width: 100%; }
.svs-product-hero { display: block; margin-bottom: 18px; cursor: zoom-in; }
.svs-product-hero img { border-radius: 16px; width: 100%; object-fit: cover; max-height: 460px; }
.svs-product-detail .svs-specs { margin: 22px 0; }
.svs-product-detail h3 { margin-top: 28px; font-size: 28px; }
.svs-product-detail ul { margin: 0 0 16px; padding: 0; }
.svs-product-detail li {
    position: relative;
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid var(--svs-line);
    color: var(--svs-steel);
}
.svs-product-detail li::before {
    content: "";
    position: absolute;
    left: 0; top: 15px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--svs-orange);
}
.svs-product-cta,
.svs-product-side-box {
    margin-top: 28px;
    padding: 24px;
    background: var(--svs-bg);
    border-radius: 16px;
}
.svs-product-side-box h3 { font-size: 22px; }
.svs-product-side-box p { font-size: 22px; font-weight: 800; color: var(--svs-navy); }
.svs-photo a { display: block; cursor: zoom-in; }

/* Testimonials */
.svs-quotes-section { background: linear-gradient(180deg, #F7F8FA, #fff); }
.svs-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svs-quote {
    margin: 0;
    background: #fff;
    border: 1px solid var(--svs-line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(15, 20, 25, 0.06);
    position: relative;
}
.svs-quote::before {
    content: "“";
    position: absolute;
    right: 24px;
    top: 8px;
    font-size: 84px;
    line-height: 1;
    color: var(--svs-orange);
    opacity: 0.18;
    font-family: Georgia, serif;
}
.svs-quote-stars { color: #E8A317; letter-spacing: 3px; margin-bottom: 14px; font-size: 13px; }
.svs-quote-text {
    font-size: 17px;
    color: var(--svs-steel);
    font-style: italic;
    line-height: 1.7;
    min-height: 88px;
}
.svs-quote-user { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.svs-quote-user strong { display: block; font-size: 16px; color: var(--svs-navy); }
.svs-quote-user span { display: block; color: var(--svs-muted); font-size: 13px; }
.svs-quote-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.svs-quote-initials {
    display: grid; place-items: center;
    background: var(--svs-navy); color: #fff;
    font-weight: 800; font-size: 20px;
    font-family: "Barlow Condensed", sans-serif;
}

/* Footer */
.svs-footer { background: var(--svs-navy); color: #C9CDD4; padding-top: 56px; }
.svs-footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 28px; padding-bottom: 40px; }
.svs-footer h3 { color: #fff; font-size: 20px; margin-bottom: 16px; }
.svs-footer a:hover { color: var(--svs-orange); }
.svs-footer-logo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: 16px; }
.svs-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #8B93A1;
    font-size: 13px;
}

/* Cookie / popup / error */
.cookie_policy {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    z-index: 90;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    max-width: 860px;
    margin: 0 auto;
}
.svs-error { text-align: center; padding: 80px 0; }
.svs-error i { font-size: 64px; color: var(--svs-orange); }
.svs-popup { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.65); display: none; align-items: center; justify-content: center; padding: 20px; }
.svs-popup.open { display: flex; }
.svs-popup-box { background: #fff; border-radius: 16px; max-width: 720px; width: 100%; padding: 18px; position: relative; }
.svs-popup-close { position: absolute; right: 12px; top: 8px; background: none; border: 0; font-size: 22px; cursor: pointer; }

.svs-toplink {
    position: fixed; right: 18px; bottom: 18px; z-index: 40;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--svs-orange); color: #fff; display: grid; place-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .svs-stats, .svs-products, .svs-features, .svs-two, .svs-split, .svs-contact-grid, .svs-blog-layout, .svs-service-layout, .svs-footer-grid, .svs-quotes, .svs-ig-box, .svs-timeline, .svs-values, .svs-docs {
        grid-template-columns: 1fr 1fr;
    }
    .svs-grid-4 { grid-template-columns: 1fr 1fr; }
    .svs-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .svs-gallery a:first-child { grid-row: auto; }
    .svs-nav, .svs-header-cta .svs-btn { display: none; }
    .svs-burger { display: inline-flex; align-items: center; justify-content: center; }
    .svs-logo img { height: 52px; max-width: 200px; }
}
@media (max-width: 760px) {
    .svs-top-meta span, .svs-topbar .svs-social { display: none; }
    .svs-stats, .svs-products, .svs-features, .svs-two, .svs-split, .svs-contact-grid, .svs-blog-layout, .svs-service-layout, .svs-footer-grid, .svs-grid-3, .svs-grid-4, .svs-form-row, .svs-gallery, .svs-quotes, .svs-ig-box, .svs-timeline, .svs-values, .svs-docs {
        grid-template-columns: 1fr;
    }
    .svs-slide img.svs-slide-bg { min-height: 520px; height: 78vh; }
    .svs-cta { padding: 32px 22px; }
    .cookie_policy { flex-direction: column; align-items: stretch; }
    .svs-copy { flex-direction: column; }
    .service-photos { grid-template-columns: 1fr 1fr; }
}
