/* Futuristic Signs - final stylesheet */
/* Classic header restored. Conflicting center-logo/top-red header overrides removed. */

:root {
    --navy: #1f1a51;
    --navy-2: #120f35;
    --red: #ed1c24;
    --red-dark: #c7121b;
    --ink: #11121a;
    --muted: #626574;
    --line: #e7e8ef;
    --paper: #ffffff;
    --soft: #f6f7fb;
    --soft-2: #eef0f6;
    --radius: 22px;
    --shadow: 0 24px 60px rgba(17, 18, 30, .12);
    --shadow-sm: 0 14px 36px rgba(17, 18, 30, .08);
    --container: 1240px;
    --font-readable: Arial, Verdana, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 15.5px;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 44px));
    margin-inline: auto;
}

.announce-bar {
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
}

.announce-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.announce-inner a {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
}

.top-bar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: #4f5160;
}

.top-inner {
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
}

.top-right a:hover,
.top-left a:hover {
    color: var(--red);
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
}

.site-header {
    background: #fff;
    position: relative;
    z-index: 100;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(17, 18, 30, .06);
}

.main-header {
    background: #fff;
}

.header-inner {
    height: 92px;
    display: grid;
    grid-template-columns: 270px minmax(340px, 1fr) auto 46px;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    padding-top: 7px;
    width: 240px;
    height: auto;
}

.header-search {
    height: 52px;
    border: 1px solid #dedfea;
    background: #fafbff;
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 5px 6px 5px 17px;
    box-shadow: inset 0 1px 0 #fff;
}

.header-search span {
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
    white-space: nowrap;
}

.header-search input {
    border: 0;
    outline: 0;
    background: transparent;
    min-width: 0;
    color: var(--ink);
}

.header-search input::placeholder {
    color: #8b8d9b;
}

.header-search button {
    border: 0;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    height: 40px;
    padding: 0 17px;
    font-weight: 900;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    height: 46px;
    padding: 0 18px;
    font-weight: 900;
    letter-spacing: -.01em;
    transition: .2s ease;
    white-space: nowrap;
}

.primary-btn {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 25px rgba(237, 28, 36, .22);
}

.primary-btn:hover {
    transform: translateY(-1px);
    background: var(--red-dark);
    box-shadow: 0 18px 35px rgba(237, 28, 36, .28);
}

.ghost-btn {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
}

.ghost-btn:hover {
    border-color: #cfd1dd;
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

.mega-pane.active {
    display: block;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--red);
    border: 1px solid #f3c9cc;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(17, 18, 30, .05);
}

h1 {
    font-size: clamp(45px, 5.1vw, 72px);
    line-height: .98;
    letter-spacing: -.07em;
    margin: 20px 0;
    color: var(--navy);
}

.section {
    padding: 88px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.section h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.06em;
    color: var(--navy);
    margin: 8px 0 0;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 540px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card,
.portfolio-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(17, 18, 30, .04);
    transition: .18s ease;
}

.elevated-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: #d7d9e5;
}

.product-card figure,
.portfolio-card figure {
    height: 218px;
    margin: 0;
    background: var(--soft);
    overflow: hidden;
}

.product-card img,
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .32s ease;
}

.elevated-card:hover img {
    transform: scale(1.04);
}

.card-body {
    padding: 22px;
}

.card-label {
    display: inline-flex;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.card-body h3 {
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--navy);
    margin: 0 0 10px;
}

.card-body p {
    color: var(--muted);
    margin: 0 0 16px;
}

.arrow-link {
    font-weight: 950;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.arrow-link:after {
    content: "→";
}

.process {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 30px;
    align-items: start;
}

.process-panel {
    background: linear-gradient(145deg, var(--navy), #2b267a);
    border-radius: 30px;
    padding: 38px;
    color: #fff;
    position: sticky;
    top: 88px;
    overflow: hidden;
}

.process-panel:after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .28);
}

.process-panel h2 {
    color: #fff;
}

.process-panel p {
    color: rgba(255, 255, 255, .76);
}

.process-panel .primary-btn {
    position: relative;
    z-index: 1;
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    box-shadow: 0 10px 28px rgba(17, 18, 30, .04);
}

.step span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--soft-2);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.step h3 {
    margin: 0 0 6px;
    color: var(--navy);
    letter-spacing: -.03em;
}

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

.page-hero {
    background: linear-gradient(135deg, var(--navy), #2e2978);
    color: #fff;
    padding: 82px 0;
    position: relative;
    overflow: hidden;
}

.page-hero:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(237, 28, 36, .25);
}

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

.page-hero h1 {
    color: #fff;
    margin: 14px 0 12px;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    margin: 0;
}

.compact-hero {
    padding: 62px 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 34px;
    align-items: center;
}

.hero-quote-card {
    display: block;
    background: #fff;
    color: var(--navy);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-quote-card span {
    color: var(--red);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 950;
}

.hero-quote-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin: 8px 0;
}

.hero-quote-card em {
    font-style: normal;
    color: var(--muted);
    font-weight: 700;
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.filter-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    background: #fff;
    font-weight: 850;
    color: var(--navy);
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.product-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
}

.sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    height: max-content;
    position: sticky;
    top: 88px;
    box-shadow: 0 10px 30px rgba(17, 18, 30, .04);
}

.sidebar h3 {
    margin: 0 0 14px;
    color: var(--navy);
    letter-spacing: -.03em;
}

.sidebar a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 13px;
    color: #343446;
    font-weight: 850;
}

.sidebar a:hover,
.sidebar a.active {
    background: var(--soft);
    color: var(--red);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 38px;
    align-items: start;
}

.rich-text {
    color: #4c4d60;
    font-size: 18px;
}

.rich-text ul {
    padding-left: 22px;
}

.quote-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-top: 24px;
}

.quote-box h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 24px;
    letter-spacing: -.04em;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: 13px;
    font-weight: 900;
    color: var(--navy);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 13px;
    padding: 12px 13px;
    outline: 0;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(31, 26, 81, .08);
}

.submit-btn {
    border: 0;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    height: 50px;
    padding: 0 18px;
    font-weight: 950;
    cursor: pointer;
}

.notice {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 850;
}

.notice.success {
    background: #eafff0;
    color: #167437;
    border: 1px solid #b8efc8;
}

.notice.error {
    background: #fff1f2;
    color: #ad101a;
    border: 1px solid #ffc9ce;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-weight: 950;
}

.search-result {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 14px;
}

.search-result h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.site-footer {
    background: #0c0b1d;
    color: #fff;
    padding-top: 64px;
}

.site-footer p {
    color: rgba(255, 255, 255, .68);
    margin: 0 0 12px;
}

.site-footer h4 {
    margin: 0 0 16px;
    font-size: 17px;
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .78);
    margin: 9px 0;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.empty-state {
    background: #fff;
    border: 1px dashed #c8cad5;
    border-radius: 24px;
    padding: 38px;
    text-align: center;
    color: var(--muted);
}

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

.nav-item {
    position: static;
    display: flex;
    align-items: stretch;
}

.mega-menu:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff5a60, var(--navy));
    z-index: 2;
}

.mega-title small {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    margin-bottom: 10px;
    background: rgba(237, 28, 36, .95);
    border-radius: 999px;
    padding: 6px 10px;
}

.mega-title strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.045em;
    color: #fff;
}

.mega-title span {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    max-width: 420px;
    text-align: right;
}

.mega-sub {
    width: 100%;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 15px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-weight: 900;
    color: #25263b;
    text-align: left;
    transition: background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mega-sub+.mega-sub {
    margin-top: 6px;
}

.mega-sub b {
    font-size: 22px;
    font-weight: 700;
    color: #a9adbc;
    transition: .16s ease;
}

.mega-sub:hover,
.mega-sub.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 16px 30px rgba(31, 26, 81, .18);
    border-color: rgba(255, 255, 255, .08);
    transform: translateX(3px);
}

.mega-sub:hover b,
.mega-sub.active b {
    color: #fff;
}

.mega-pane {
    display: none;
    animation: megaFade .16s ease;
}

.mega-pane h4 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 24px;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.mega-pane h4:before {
    content: "Popular products";
    display: block;
    width: max-content;
    color: var(--red);
    background: #fff2f3;
    border: 1px solid #ffd9dc;
    border-radius: 999px;
    padding: 5px 9px;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mega-pane ul {
    columns: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 18px;
}

.mega-pane li {
    break-inside: avoid;
    margin: 0 0 10px;
}

.mega-pane a {
    display: flex;
    padding: 10px 12px;
    border-radius: 13px;
    color: #242438;
    font-weight: 850;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    border: 1px solid transparent;
    line-height: 1.25;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.mega-pane a:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    opacity: .5;
    flex: 0 0 auto;
}

.mega-pane a:hover {
    background: #fff5f6;
    color: var(--red);
    border-color: #ffe0e3;
    transform: translateX(3px);
}

.mega-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transform: scale(1.02);
}

.mega-preview:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 8, 34, .92), rgba(10, 8, 34, .18) 55%, rgba(237, 28, 36, .08));
}

.mega-preview div {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 28px;
}

.mega-preview span {
    display: inline-flex;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.mega-preview h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -.045em;
    color: #fff;
}

.mega-preview p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    max-width: 310px;
}

.mega-preview a {
    display: inline-flex;
    background: #fff;
    color: var(--navy);
    font-weight: 950;
    border-radius: 13px;
    padding: 12px 15px;
    box-shadow: 0 14px 24px rgba(0, 0, 0, .18);
}

.mega-preview a:hover {
    background: var(--red);
    color: #fff;
}

.nav-shell {
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid #edf0f6;
    border-bottom: 1px solid #dde2ec;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 14px 34px rgba(17, 18, 30, .055);
    backdrop-filter: saturate(140%) blur(14px);
}

.nav-inner {
    height: 76px;
    display: flex;
    align-items: stretch;
    position: relative;
    gap: 0;
    justify-content: center;
}

.desktop-nav {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    min-width: 0;
    gap: 6px;
    justify-content: center;
}

.home-link,
.nav-item>a,
.nav-link {
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 19px;
    font-size: 15.5px;
    font-weight: 950;
    color: #12122a;
    border-bottom: 0;
    transition: color .18s ease, background .18s ease;
    letter-spacing: -.015em;
    position: relative;
    border-radius: 0;
}

.home-link {
    background: transparent;
    color: #17172a;
}

.home-link:after,
.nav-item>a:after,
.nav-link:after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.nav-item:hover>a,
.nav-link:hover,
.home-link:hover,
.home-link.active {
    background: linear-gradient(180deg, #fff, #fff6f7);
    color: var(--red);
    border-bottom-color: transparent;
}

.mega-menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: 76px;
    background: #fff;
    border: 1px solid #e6e9f1;
    border-top: 0;
    border-radius: 0 0 34px 34px;
    box-shadow: 0 34px 90px rgba(17, 18, 30, .18);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: none;
    z-index: 140;
    backdrop-filter: blur(18px);
    overflow: hidden;
    width: min(1180px, calc(100vw - 52px));
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.mega-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    padding-bottom: 15px;
    margin-bottom: 16px;
    padding: 26px 32px 22px;
    margin: 0;
    background: radial-gradient(circle at 82% 0%, rgba(237, 28, 36, .32), transparent 34%),
        linear-gradient(135deg, #11102c, #211b63 68%, #151237);
    color: #fff;
}

.mega-grid {
    display: grid;
    grid-template-columns: 310px minmax(400px, 1fr) 420px;
    gap: 0;
    min-height: 405px;
    background: #fff;
}

.mega-subcategories {
    background: linear-gradient(180deg, #fbfcff, #f5f7fc);
    border: 0;
    border-radius: 0;
    padding: 22px;
    border-right: 1px solid #edf0f6;
}

.mega-products {
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 31px 32px;
    border-right: 1px solid #edf0f6;
}

.mega-preview {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    background: var(--navy);
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 48px rgba(17, 18, 30, .14);
    margin: 22px;
}

.footer-pro {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 8%, rgba(237, 28, 36, .24), transparent 31%),
        radial-gradient(circle at 88% 8%, rgba(80, 72, 174, .24), transparent 28%),
        linear-gradient(135deg, #070617 0%, #111033 52%, #080719 100%);
    color: #fff;
    padding: 0;
    margin-top: 0;
}

.footer-pro:before {
    content: "";
    position: absolute;
    inset: auto -120px -220px auto;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .13);
    filter: blur(8px);
}

.footer-pro .container {
    position: relative;
    z-index: 1;
}

.footer-cta-panel {
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(-1px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 32px 38px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-top: 0;
    border-radius: 0 0 30px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
        linear-gradient(135deg, rgba(237, 28, 36, .18), rgba(31, 26, 81, .28));
    box-shadow: 0 22px 60px rgba(0, 0, 0, .20);
    backdrop-filter: blur(16px);
}

.footer-kicker {
    display: inline-flex;
    width: max-content;
    color: #fff;
    background: rgba(237, 28, 36, .95);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 13px;
}

.footer-cta-panel h2 {
    margin: 0;
    max-width: 720px;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1;
    letter-spacing: -.055em;
}

.footer-cta-panel p {
    max-width: 690px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
}

.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.footer-primary,
.footer-secondary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 15px;
    padding: 0 18px;
    font-weight: 950;
    margin: 0 !important;
    transition: .18s ease;
}

.footer-primary {
    background: var(--red);
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(237, 28, 36, .30);
}

.footer-secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .18);
}

.footer-primary:hover,
.footer-secondary:hover {
    transform: translateY(-2px);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr 1.05fr;
    gap: 42px;
    padding: 52px 0 38px;
}

.footer-brand-block p {
    max-width: 380px;
    color: rgba(255, 255, 255, .70);
    margin: 18px 0 0;
}

.footer-logo {
    display: inline-flex !important;
    width: max-content;
    border-radius: 20px;
    padding: 12px 14px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .18);
    margin: 0 !important;
}

.footer-logo img {
    width: 252px;
    height: auto;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    border-radius: 999px;
    padding: 0 13px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.footer-link-col h4,
.footer-contact-card h4 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 16px;
    letter-spacing: -.02em;
}

.footer-link-col h4:after,
.footer-contact-card h4:after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--red);
    border-radius: 999px;
    margin-top: 9px;
}

.footer-link-col a,
.footer-contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    color: rgba(255, 255, 255, .74);
    margin: 11px 0;
    font-size: 14px;
    font-weight: 750;
    transition: .16s ease;
}

.footer-link-col a:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .78);
    flex: 0 0 auto;
}

.footer-link-col a:hover,
.footer-contact-card a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-card {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.footer-contact-card p {
    color: rgba(255, 255, 255, .70);
    margin: 0 0 12px;
}

.footer-mini-note {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.55;
}

.footer-pro .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0 24px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

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

.fs-solutions-bento {
    padding: 70px 0 90px;
    background: radial-gradient(circle at 10% 10%, rgba(31, 26, 81, 0.04), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(239, 35, 45, 0.06), transparent 28%),
        #ffffff;
}

.fs-solutions-head {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: end;
    margin-bottom: 32px;
}

.fs-section-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(239, 35, 45, 0.08);
    color: #ef232d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.fs-solutions-head h2 {
    margin: 0;
    color: #1f1a51;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 950;
    max-width: 700px;
}

.fs-solutions-head p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.75;
}

.fs-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.fs-bento-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 26px;
    border-radius: 28px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,247,252,0.96)),
        #fff;
    border: 1px solid rgba(31, 26, 81, 0.08);
    box-shadow: 0 20px 45px rgba(31, 26, 81, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.fs-bento-card::before {
    content: "";
    position: absolute;
    inset: auto -50px -50px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 35, 45, 0.10), transparent 65%);
    pointer-events: none;
}

.fs-bento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 26, 81, 0.02), transparent 45%),
        linear-gradient(to top, rgba(31, 26, 81, 0.02), transparent 60%);
    pointer-events: none;
}

.fs-bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(31, 26, 81, 0.12);
    border-color: rgba(239, 35, 45, 0.22);
}

.fs-bento-large {
    grid-column: span 6;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(31, 26, 81, 0.98), rgba(19, 18, 61, 0.96)),
        #1f1a51;
}

.fs-bento-large .fs-bento-content h3,
.fs-bento-large .fs-bento-content p,
.fs-bento-large .fs-bento-content strong,
.fs-bento-large .fs-bento-number {
    color: #fff;
}

.fs-bento-large .fs-bento-content p {
    color: rgba(255,255,255,0.78);
}

.fs-bento-large::before {
    background: radial-gradient(circle, rgba(239, 35, 45, 0.22), transparent 65%);
    width: 240px;
    height: 240px;
}

.fs-bento-accent {
    background: linear-gradient(135deg, rgba(239, 35, 45, 0.96), rgba(221, 28, 38, 0.96)),
        #ef232d;
}

.fs-bento-accent .fs-bento-content h3,
.fs-bento-accent .fs-bento-content p,
.fs-bento-accent .fs-bento-content strong,
.fs-bento-accent .fs-bento-number {
    color: #fff;
}

.fs-bento-accent .fs-bento-content p {
    color: rgba(255,255,255,0.8);
}

.fs-bento-number {
    position: absolute;
    top: 22px;
    left: 24px;
    color: #ef232d;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.03em;
}

.fs-bento-content {
    position: relative;
    z-index: 2;
    max-width: 92%;
}

.fs-bento-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fs-bento-content h3 {
    margin: 0 0 10px;
    color: #1f1a51;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.fs-bento-card:not(.fs-bento-large):not(.fs-bento-accent) .fs-bento-content h3 {
    font-size: 24px;
}

.fs-bento-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
    max-width: 95%;
}

.fs-bento-content strong {
    display: inline-block;
    margin-top: 18px;
    color: #ef232d;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.fs-bento-card:nth-child(2) {
    grid-column: span 3;
}

.fs-bento-card:nth-child(3) {
    grid-column: span 3;
}

.fs-bento-card:nth-child(4) {
    grid-column: span 3;
}

.fs-bento-card:nth-child(5) {
    grid-column: span 3;
}

.fs-about-service-showcase {
    padding: 38px 0 88px;
    background: radial-gradient(circle at 85% 5%, rgba(239, 35, 45, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
}

.fs-showcase-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    padding: 46px;
    border-radius: 36px;
    background: radial-gradient(circle at 94% 12%, rgba(239, 35, 45, 0.14), transparent 34%),
        radial-gradient(circle at 4% 88%, rgba(31, 26, 81, 0.10), transparent 34%),
        #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.09);
    box-shadow: 0 30px 75px rgba(31, 26, 81, 0.10);
}

.fs-showcase-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 26, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 26, 81, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.32), transparent 72%);
    pointer-events: none;
}

.fs-showcase-left,
.fs-showcase-right,
.fs-service-bottom-row {
    position: relative;
    z-index: 2;
}

.fs-showcase-left {
    align-self: center;
}

.fs-showcase-left h2 {
    margin: 0;
    color: #1f1a51;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.fs-showcase-left p {
    margin: 22px 0 0;
    max-width: 610px;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
}

.fs-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.fs-showcase-btn-primary,
.fs-showcase-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.fs-showcase-btn-primary {
    color: #ffffff;
    background: #ef232d;
    box-shadow: 0 18px 36px rgba(239, 35, 45, 0.26);
}

.fs-showcase-btn-secondary {
    color: #1f1a51;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.12);
    box-shadow: 0 14px 30px rgba(31, 26, 81, 0.06);
}

.fs-showcase-btn-primary:hover,
.fs-showcase-btn-secondary:hover {
    transform: translateY(-2px);
}

.fs-showcase-right {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.fs-service-image-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 220px;
    border-radius: 28px;
    text-decoration: none;
    background: #11122f;
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 24px 55px rgba(31, 26, 81, 0.16);
    transition: 0.28s ease;
}

.fs-service-large {
    grid-row: span 2;
}

.fs-service-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.03);
    transition: 0.45s ease;
}

.fs-service-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 34, 0.92), rgba(7, 8, 34, 0.18) 58%, rgba(255,255,255,0.02)),
        linear-gradient(135deg, rgba(239, 35, 45, 0.18), transparent 44%);
}

.fs-service-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 68px rgba(31, 26, 81, 0.22);
}

.fs-service-image-card:hover img {
    transform: scale(1.09);
}

.fs-service-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.fs-service-overlay span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #ef232d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fs-service-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 950;
}

.fs-service-large .fs-service-overlay h3 {
    font-size: 34px;
    max-width: 390px;
}

.fs-service-bottom-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}

.fs-bottom-service {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: center;
    min-height: 112px;
    padding: 22px;
    border-radius: 24px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 26, 81, 0.09);
    box-shadow: 0 16px 34px rgba(31, 26, 81, 0.06);
    transition: 0.25s ease;
}

.fs-bottom-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 35, 45, 0.08), transparent 45%);
    opacity: 0;
    transition: 0.25s ease;
}

.fs-bottom-service:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 35, 45, 0.22);
    box-shadow: 0 24px 48px rgba(31, 26, 81, 0.10);
}

.fs-bottom-service:hover::before {
    opacity: 1;
}

.fs-bottom-service span,
.fs-bottom-service p,
.fs-bottom-service b {
    position: relative;
    z-index: 2;
}

.fs-bottom-service span {
    display: block;
    color: #1f1a51;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.025em;
}

.fs-bottom-service p {
    grid-column: 1 / 2;
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.fs-bottom-service b {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f3f4f8;
    color: #ef232d;
    font-size: 21px;
    transition: 0.25s ease;
}

.fs-bottom-service:hover b {
    background: #ef232d;
    color: #ffffff;
    transform: translateX(3px);
}

.fs-video-showcase {
    padding: 20px 0 90px;
}

.fs-video-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 38px;
    align-items: center;
    padding: 42px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(31, 26, 81, 0.98), rgba(16, 17, 52, 0.98));
    box-shadow: 0 34px 80px rgba(31, 26, 81, 0.18);
}

.fs-video-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 14%, rgba(239, 35, 45, 0.24), transparent 34%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    pointer-events: none;
}

.fs-video-content,
.fs-video-card {
    position: relative;
    z-index: 2;
}

.fs-video-content .fs-section-tag {
    background: rgba(239, 35, 45, 0.16);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
}

.fs-video-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.fs-video-content p {
    margin: 20px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
}

.fs-video-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.fs-video-points span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 850;
}

.fs-video-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #08091f;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.fs-video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #08091f;
}

.fs-video-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.fs-video-badge strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #ef232d;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
}

.fs-video-badge span {
    color: #1f1a51;
    font-size: 13px;
    font-weight: 950;
}

.fs-featured-showcase {
    position: relative;
    overflow: hidden;
    padding: 92px 0 96px;
    background: radial-gradient(circle at 92% 10%, rgba(237, 28, 36, 0.07), transparent 28%),
        radial-gradient(circle at 8% 82%, rgba(31, 26, 81, 0.07), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.fs-featured-showcase-head {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 34px;
    align-items: end;
    margin-bottom: 34px;
}

.fs-featured-showcase-head h2 {
    margin: 8px 0 0;
    max-width: 820px;
    color: var(--navy);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.fs-featured-showcase-head p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.fs-featured-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fs-feature-card {
    position: relative;
    overflow: hidden;
    display: block;
    height: 365px;
    border-radius: 26px;
    background: #101126;
    box-shadow: 0 22px 55px rgba(17, 18, 30, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    isolation: isolate;
}

.fs-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 80px rgba(17, 18, 30, 0.18);
}

.fs-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.fs-feature-card:hover img {
    transform: scale(1.1);
}

.fs-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(5, 6, 28, 0.94) 0%, rgba(5, 6, 28, 0.62) 42%, rgba(5, 6, 28, 0.16) 100%),
        linear-gradient(135deg, rgba(237, 28, 36, 0.20), transparent 48%);
}

.fs-feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.fs-feature-content {
    max-width: 92%;
}

.fs-feature-content small {
    display: inline-flex;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fs-feature-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 950;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.fs-feature-content p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.55;
    max-width: 360px;
}

.fs-feature-content strong {
    display: inline-flex;
    margin-top: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.24s ease;
}

.fs-feature-card:hover .fs-feature-content strong {
    opacity: 1;
    transform: translateY(0);
}

.fs-centered-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background: radial-gradient(circle at 50% 0%, rgba(237, 28, 36, 0.12), transparent 34%),
        radial-gradient(circle at 12% 78%, rgba(31, 26, 81, 0.10), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(237, 28, 36, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    border-bottom: 1px solid rgba(31, 26, 81, 0.08);
}

.fs-centered-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 26, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 26, 81, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.38), transparent 72%);
    pointer-events: none;
}

.fs-centered-hero .container {
    position: relative;
    z-index: 2;
}

.fs-centered-hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.fs-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(237, 28, 36, 0.24);
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(17, 18, 30, 0.06);
}

.fs-centered-hero h1 {
    margin: 22px auto 0;
    max-width: 900px;
    color: var(--navy);
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.fs-centered-hero p {
    margin: 24px auto 0;
    max-width: 690px;
    color: #5f6374;
    font-size: 18px;
    line-height: 1.7;
}

.fs-centered-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.fs-centered-actions a {
    height: 52px;
}

.fs-centered-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 520px;
    margin: 34px auto 0;
}

.fs-centered-stats div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(31, 26, 81, 0.09);
    box-shadow: 0 16px 36px rgba(17, 18, 30, 0.07);
}

.fs-centered-stats strong {
    display: block;
    color: var(--navy);
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
}

.fs-centered-stats span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.fs-hero-image-showcase {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 18px;
    margin-top: 58px;
    align-items: stretch;
}

.fs-hero-img-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 310px;
    border-radius: 30px;
    background: var(--navy);
    box-shadow: 0 26px 65px rgba(17, 18, 30, 0.15);
    isolation: isolate;
    transition: 0.28s ease;
}

.fs-hero-img-large {
    min-height: 380px;
}

.fs-hero-img-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 85px rgba(17, 18, 30, 0.22);
}

.fs-hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: 0.5s ease;
}

.fs-hero-img-card:hover img {
    transform: scale(1.1);
}

.fs-hero-img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(5, 6, 28, 0.92), rgba(5, 6, 28, 0.25) 58%, rgba(5, 6, 28, 0.08)),
        linear-gradient(135deg, rgba(237, 28, 36, 0.18), transparent 46%);
}

.fs-hero-img-card div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.fs-hero-img-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.fs-hero-img-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.fs-hero-img-large h3 {
    font-size: 42px;
}

.fs-product-kicker {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    color: var(--red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.fs-product-description {
    color: #4d5062;
    font-size: 17px;
}

.fs-product-description p:first-child {
    margin-top: 0;
}

.fs-product-quote-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .10);
    box-shadow: 0 18px 44px rgba(17, 18, 30, .08);
}

.fs-product-quote-strip span {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fs-product-quote-strip h3 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.fs-product-quote-strip button {
    border: 0;
    cursor: pointer;
    flex: 0 0 auto;
}

.fs-related-products {
    padding: 82px 0;
    background: #fff;
}

.fs-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fs-related-card {
    position: relative;
    overflow: hidden;
    height: 310px;
    border-radius: 26px;
    display: block;
    background: var(--navy);
    box-shadow: 0 22px 55px rgba(17, 18, 30, .12);
    transition: .24s ease;
}

.fs-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 75px rgba(17, 18, 30, .18);
}

.fs-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: .45s ease;
}

.fs-related-card:hover img {
    transform: scale(1.09);
}

.fs-related-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 6, 28, .9), rgba(5, 6, 28, .18));
}

.fs-related-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.fs-related-card span {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fs-related-card h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.04;
    letter-spacing: -.045em;
}

.fs-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.fs-quote-modal.is-open {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.fs-quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 20, .68);
    backdrop-filter: blur(10px);
}

.fs-quote-dialog {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    overflow: auto;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .30);
}

.fs-quote-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 26, 81, .08);
    color: var(--navy);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.fs-quote-modal-head {
    padding: 32px 32px 18px;
    background: radial-gradient(circle at 92% 0%, rgba(237, 28, 36, .14), transparent 34%),
        linear-gradient(180deg, #fff, #f8f9fd);
}

.fs-quote-modal-head span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff1f2;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fs-quote-modal-head h2 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-size: 36px;
    line-height: 1;
    letter-spacing: -.05em;
}

.fs-quote-modal-head p {
    margin: 0;
    color: var(--muted);
}

.fs-quote-product-summary {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
    margin: 0 32px 20px;
    padding: 14px;
    border-radius: 20px;
    background: #f6f7fb;
    border: 1px solid rgba(31, 26, 81, .08);
}

.fs-quote-product-summary img {
    width: 86px;
    height: 66px;
    object-fit: cover;
    border-radius: 14px;
}

.fs-quote-product-summary strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.15;
}

.fs-quote-product-summary span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.fs-modal-form {
    padding: 0 32px 32px;
}

.fs-pd-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 76px;
    background: radial-gradient(circle at 92% 20%, rgba(237, 28, 36, .22), transparent 30%),
        linear-gradient(135deg, #11102f 0%, #211b63 72%, #11102f 100%);
    color: #fff;
}

.fs-pd-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(237, 28, 36, .25);
}

.fs-pd-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 46px;
    align-items: center;
}

.fs-pd-hero h1 {
    color: #fff;
    max-width: 860px;
    margin: 18px 0 16px;
    font-size: clamp(44px, 5vw, 78px);
    line-height: .94;
    letter-spacing: -.07em;
}

.fs-pd-hero p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
}

.fs-pd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.fs-pd-hero-actions button,
.fs-pd-quote-card button,
.fs-pd-content button {
    border: 0;
    cursor: pointer;
}

.fs-pd-quote-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.fs-pd-quote-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fs-pd-quote-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.fs-pd-quote-card p {
    margin: 14px 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.fs-pd-quote-card strong {
    display: block;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
    letter-spacing: -.035em;
}

.fs-pd-price-note {
    display: block;
    margin: -10px 0 20px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 750;
}

.fs-pd-main {
    padding: 86px 0;
    background: linear-gradient(180deg, #ffffff, #f8f9fd);
}

.fs-pd-main-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 44px;
    align-items: start;
}

.fs-pd-media {
    position: sticky;
    top: 104px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--soft);
    border: 1px solid rgba(31, 26, 81, .10);
    box-shadow: 0 28px 70px rgba(17, 18, 30, .12);
}

.fs-pd-media img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.fs-pd-content h2 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.055em;
}

.fs-pd-lead {
    margin: 0 0 22px;
    color: #5d6173;
    font-size: 18px;
    line-height: 1.65;
}

.fs-pd-meta-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.fs-pd-meta-row div {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 14px 32px rgba(17, 18, 30, .05);
}

.fs-pd-meta-row span {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.fs-pd-meta-row strong {
    color: var(--navy);
    font-size: 17px;
    font-weight: 950;
}

.fs-pd-bestfor {
    margin: 26px 0 28px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 16px 38px rgba(17, 18, 30, .06);
}

.fs-pd-bestfor h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.fs-pd-bestfor div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fs-pd-bestfor span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--navy);
    background: #f6f7fb;
    border: 1px solid rgba(31, 26, 81, .08);
    font-size: 13px;
    font-weight: 900;
}

.fs-pd-features {
    padding: 82px 0;
    background: #fff;
}

.fs-pd-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fs-pd-feature-card {
    min-height: 220px;
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 18px 44px rgba(17, 18, 30, .07);
    transition: .24s ease;
}

.fs-pd-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 28, 36, .22);
    box-shadow: 0 26px 62px rgba(17, 18, 30, .11);
}

.fs-pd-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff1f2;
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 24px;
}

.fs-pd-feature-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.fs-pd-feature-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.fs-pd-cta {
    padding: 0 0 82px;
    background: #fff;
}

.fs-services-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    background: radial-gradient(circle at 50% 0%, rgba(237, 28, 36, 0.12), transparent 34%),
        radial-gradient(circle at 12% 80%, rgba(31, 26, 81, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
    border-bottom: 1px solid rgba(31, 26, 81, 0.08);
}

.fs-services-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(31, 26, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 26, 81, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.38), transparent 72%);
    pointer-events: none;
}

.fs-services-hero .container {
    position: relative;
    z-index: 2;
}

.fs-services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fs-services-hero-content h1 {
    margin: 22px auto 0;
    max-width: 850px;
    color: var(--navy);
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.93;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.fs-services-hero-content p {
    margin: 24px auto 0;
    max-width: 690px;
    color: #5f6374;
    font-size: 18px;
    line-height: 1.7;
}

.fs-services-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.fs-services-hero-actions a {
    height: 52px;
}

.fs-service-workflow-section {
    padding: 76px 0;
    background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 100%);
}

.fs-service-workflow {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: start;
    padding: 42px;
    border-radius: 34px;
    background: radial-gradient(circle at 92% 8%, rgba(237, 28, 36, 0.13), transparent 32%),
        #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.09);
    box-shadow: 0 28px 70px rgba(17, 18, 30, 0.09);
}

.fs-service-workflow-copy h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.fs-service-workflow-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.fs-service-workflow-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.fs-service-workflow-steps div {
    padding: 22px;
    border-radius: 24px;
    background: #f7f8fc;
    border: 1px solid rgba(31, 26, 81, 0.08);
}

.fs-service-workflow-steps strong {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 13px;
    font-weight: 950;
}

.fs-service-workflow-steps span {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 950;
}

.fs-service-workflow-steps p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.fs-service-industries {
    padding: 0 0 74px;
    background: #ffffff;
}

.fs-service-industries-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
    padding: 36px;
    border-radius: 32px;
    background: radial-gradient(circle at 88% 12%, rgba(237, 28, 36, 0.18), transparent 34%),
        linear-gradient(135deg, #11102f 0%, #211b63 70%, #11102f 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(31, 26, 81, 0.20);
}

.fs-service-industries-panel .eyebrow {
    color: #ffffff;
}

.fs-service-industries-panel h2 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.fs-service-industries-panel p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.7;
}

.fs-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: flex-end;
}

.fs-service-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.fs-services-page-section {
    padding: 86px 0 96px;
    background: radial-gradient(circle at 90% 10%, rgba(237, 28, 36, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.fs-services-page-head {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 34px;
    align-items: end;
    margin-bottom: 36px;
}

.fs-services-page-head h2 {
    margin: 8px 0 0;
    max-width: 760px;
    color: var(--navy);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.fs-services-page-head p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.fs-services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.fs-service-page-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.09);
    box-shadow: 0 18px 45px rgba(17, 18, 30, 0.07);
    transition: 0.25s ease;
}

.fs-service-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 28, 36, 0.22);
    box-shadow: 0 28px 68px rgba(17, 18, 30, 0.12);
}

.fs-service-page-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #eef0f6;
}

.fs-service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.42s ease;
}

.fs-service-page-card:hover .fs-service-page-image img {
    transform: scale(1.08);
}

.fs-service-page-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 34, 0.72), rgba(7, 8, 34, 0.05) 62%),
        linear-gradient(135deg, rgba(237, 28, 36, 0.16), transparent 45%);
}

.fs-service-page-number {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(237, 28, 36, 0.32);
}

.fs-service-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.fs-service-page-content h3 {
    margin: 0;
    color: var(--navy);
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.fs-service-page-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.fs-service-page-content a {
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: var(--red);
    font-size: 14px;
    font-weight: 950;
}

.products-content {
    min-width: 0;
}

.products-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.08);
    box-shadow: 0 14px 34px rgba(17, 18, 30, 0.055);
}

.products-topbar span {
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.products-topbar strong {
    display: block;
    margin-top: 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 900;
}

.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-number,
.page-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 81, 0.10);
    color: var(--navy);
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(17, 18, 30, 0.055);
    transition: 0.22s ease;
}

.page-control {
    min-width: 112px;
}

.page-number:hover,
.page-control:hover {
    transform: translateY(-2px);
    border-color: rgba(237, 28, 36, 0.28);
    color: var(--red);
}

.page-number.active {
    background: var(--red);
    border-color: var(--red);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(237, 28, 36, 0.25);
}

.page-control.disabled {
    opacity: 0.42;
    pointer-events: none;
}

.mobile-panel details summary::-webkit-details-marker {
    display: none;
}

.mobile-panel details summary::marker {
    display: none;
    content: "";
}

.mobile-row,
.mobile-details>summary {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mobile-row b,
.mobile-details>summary b {
    color: var(--navy);
    font-size: 24px;
    line-height: 1;
    font-weight: 950;
    transition: 0.22s ease;
}

.mobile-details[open]>summary b {
    transform: rotate(90deg);
    color: var(--red);
}

.mobile-product-row {
    padding-left: 22px !important;
    font-size: 13px;
    color: var(--muted);
}

.mobile-panel {
    display: none;
    max-height: calc(100vh - 10px);
    overflow-y: auto;
    padding-bottom: 22px;
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0 14px;
    border-bottom: 1px solid rgba(31, 26, 81, 0.09);
    margin-bottom: 14px;
}

.mobile-panel-head strong {
    color: var(--navy);
    font-size: 16px;
    font-weight: 950;
}

.mobile-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(237, 28, 36, 0.24);
}

.mobile-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0 16px;
}

.mobile-quote-btn,
.mobile-call-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 950;
    text-align: center;
    border: 1px solid rgba(31, 26, 81, 0.10);
}

.mobile-quote-btn {
    background: var(--red) !important;
    color: #ffffff !important;
    border-color: var(--red) !important;
}

.mobile-call-btn {
    background: #ffffff !important;
    color: var(--navy) !important;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-readable) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.primary-btn,
.ghost-btn,
.nav-item>a,
.nav-link,
.home-link,
.card-label,
.eyebrow,
.kicker {
    font-family: var(--font-readable) !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fs-pd-price-note,
.fs-pd-quote-card>strong {
    display: none !important;
}

.fs-tradeshow-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: radial-gradient(circle at 88% 18%, rgba(237, 28, 36, 0.18), transparent 34%),
        linear-gradient(135deg, var(--navy) 0%, #151145 100%);
    color: #ffffff;
}

.fs-tradeshow-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: center;
}

.fs-tradeshow-hero h1 {
    margin: 14px 0 16px;
    max-width: 820px;
    color: #ffffff;
    font-size: clamp(42px, 5.8vw, 78px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.fs-tradeshow-hero p {
    max-width: 660px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
}

.fs-tradeshow-hero-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 24px 62px rgba(0,0,0,.2);
    backdrop-filter: blur(16px);
}

.fs-tradeshow-hero-card span {
    display: inline-flex;
    color: #ffffff;
    opacity: .72;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 950;
}

.fs-tradeshow-hero-card strong {
    display: block;
    margin: 12px 0 8px;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 950;
}

.fs-tradeshow-hero-card p {
    margin: 0;
    font-size: 14px;
}

.fs-tradeshow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fs-tradeshow-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 18px 46px rgba(17, 18, 30, .075);
}

.fs-tradeshow-card figure {
    height: 220px;
    margin: 0;
    background: #eef0f6;
}

.fs-tradeshow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-tradeshow-card>div {
    padding: 24px;
}

.fs-tradeshow-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(237, 28, 36, .10);
    color: var(--red);
    font-size: 12px;
    font-weight: 950;
}

.fs-tradeshow-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.12;
    font-weight: 950;
}

.fs-tradeshow-card p {
    margin: 10px 0 18px;
    color: var(--muted);
    font-size: 14.5px;
}

.fs-tradeshow-card a {
    color: var(--red);
    font-weight: 950;
}

.fs-ts-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background: radial-gradient(circle at 86% 18%, rgba(237, 28, 36, .15), transparent 34%),
        linear-gradient(135deg, var(--navy) 0%, #151145 100%);
    color: #fff;
}

.fs-ts-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: center;
}

.fs-ts-hero h1 {
    margin: 12px 0 12px;
    color: #fff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 950;
}

.fs-ts-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.fs-ts-hero-card {
    display: block;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 62px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.fs-ts-hero-card span,
.fs-ts-hero-card em {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-style: normal;
}

.fs-ts-hero-card strong {
    display: block;
    margin: 8px 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.fs-ts-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.fs-ts-sidebar {
    position: sticky;
    top: 128px;
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 18px 48px rgba(17, 18, 30, .07);
}

.fs-ts-sidebar h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 950;
}

.fs-ts-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 14px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 850;
    border-bottom: 1px solid rgba(31, 26, 81, .07);
}

.fs-ts-sidebar a.active,
.fs-ts-sidebar a:hover {
    background: rgba(237, 28, 36, .08);
    color: var(--red);
}

.fs-ts-sidebar b {
    font-size: 20px;
    line-height: 1;
}

.fs-ts-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.fs-ts-page-head h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 950;
}

.fs-ts-page-head p {
    max-width: 460px;
    margin: 0;
    color: var(--muted);
}

.fs-ts-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fs-ts-product-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .1);
    box-shadow: 0 16px 40px rgba(17, 18, 30, .07);
    transition: .22s ease;
}

.fs-ts-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 66px rgba(17, 18, 30, .13);
}

.fs-ts-product-card figure {
    height: 230px;
    margin: 0;
    padding: 14px;
    background: #f0f2f7;
}

.fs-ts-product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs-ts-product-body {
    padding: 20px;
}

.fs-ts-product-body h3 {
    margin: 0 0 9px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.12;
    font-weight: 950;
}

.fs-ts-product-body ul {
    margin: 0 0 16px 18px;
    padding: 0;
    color: var(--muted);
    font-size: 13px;
}

.fs-ts-price-list {
    margin: 0 0 15px;
    border-top: 1px solid rgba(31, 26, 81, .1);
}

.fs-ts-price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(31, 26, 81, .08);
    font-size: 12px;
}

.fs-ts-price-list span {
    color: var(--muted);
}

.fs-ts-price-list strong {
    color: var(--navy);
    font-weight: 950;
}

.fs-tpd-hero {
    padding: 46px 0 54px;
    background: #fff;
}

.fs-tpd-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
    align-items: start;
}

.fs-tpd-gallery h1 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1;
    letter-spacing: -.052em;
    font-weight: 950;
}

.fs-tpd-image-card {
    height: 440px;
    padding: 24px;
    border-radius: 24px;
    background: #f4f5f8;
    border: 1px solid rgba(31, 26, 81, .1);
}

.fs-tpd-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs-tpd-thumbs {
    display: flex;
    gap: 10px;
    margin: 14px 0 18px;
    overflow-x: auto;
}

.fs-tpd-thumbs a {
    width: 66px;
    height: 56px;
    flex: 0 0 66px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(31, 26, 81, .12);
    background: #fff;
}

.fs-tpd-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fs-tpd-bullets {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
}

.fs-tpd-config-card {
    position: sticky;
    top: 128px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .1);
    box-shadow: 0 18px 48px rgba(17, 18, 30, .08);
}

.fs-tpd-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.fs-tpd-tabs button {
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(31, 26, 81, .12);
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
}

.fs-tpd-tabs button.active {
    border-color: var(--red);
    background: rgba(237, 28, 36, .08);
    color: var(--red);
}

.fs-tpd-config-card label {
    display: block;
    margin: 14px 0 6px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 950;
}

.fs-tpd-config-card select,
.fs-tpd-config-card input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(31, 26, 81, .13);
    background: #fff;
    color: var(--ink);
}

.fs-tpd-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 20px 0;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 26, 81, .1);
}

.fs-tpd-total span {
    color: var(--muted);
    font-size: 13px;
}

.fs-tpd-total strong {
    color: var(--navy);
    font-size: 18px;
    font-weight: 950;
}

.fs-tpd-config-card .primary-btn {
    width: 100%;
}

.fs-tpd-content-section {
    padding-top: 28px;
}

.fs-tpd-content {
    max-width: 980px;
}

.fs-tpd-tabs-line {
    display: flex;
    gap: 0;
    overflow-x: auto;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(31, 26, 81, .12);
}

.fs-tpd-tabs-line a {
    padding: 15px 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
    border-bottom: 3px solid transparent;
}

.fs-tpd-tabs-line a:hover,
.fs-tpd-tabs-line a:first-child {
    color: var(--red);
    border-bottom-color: var(--red);
}

.fs-tpd-block {
    margin-bottom: 42px;
}

.fs-tpd-block h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 28px;
    font-weight: 950;
}

.fs-tpd-block p,
.fs-tpd-block li {
    color: var(--muted);
}

.fs-tpd-spec-grid {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.fs-tpd-spec-art {
    padding: 16px;
    border-radius: 18px;
    background: #f4f5f8;
    border: 1px solid rgba(31, 26, 81, .1);
}

.fs-tpd-spec-art img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.fs-tpd-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31, 26, 81, .1);
}

.fs-tpd-table th,
.fs-tpd-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(31, 26, 81, .08);
    text-align: left;
    font-size: 13px;
}

.fs-tpd-table th {
    color: var(--navy);
    background: #f4f5f8;
    font-weight: 950;
}

.fs-tpd-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.fs-tpd-steps div {
    min-height: 120px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .1);
    box-shadow: 0 12px 30px rgba(17, 18, 30, .05);
}

.fs-tpd-steps strong {
    display: block;
    color: var(--red);
    font-size: 12px;
    text-transform: uppercase;
}

.fs-tpd-steps span {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.fs-tpd-thumb-btn {
    width: 66px;
    height: 56px;
    flex: 0 0 66px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid rgba(31, 26, 81, .12);
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.fs-tpd-thumb-btn.active,
.fs-tpd-thumb-btn:hover {
    border-color: var(--red);
    box-shadow: 0 10px 20px rgba(233, 29, 38, .12);
}

.fs-tpd-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.upload-note {
    display: block;
    margin-top: 8px;
    color: #626574;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.upload-note a {
    color: var(--red);
    font-weight: 950;
    text-decoration: underline;
    text-underline-offset: 2px;
}
/* Promotional category mega menu - final print products style */
.nav-promotional .mega-menu::before {
    background: linear-gradient(90deg, var(--red), #ff7a3d, #ffcc66);
}

.nav-promotional .mega-title {
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 193, 7, 0.24), transparent 32%),
        radial-gradient(circle at 18% 12%, rgba(237, 28, 36, 0.34), transparent 34%),
        linear-gradient(135deg, #2a1237 0%, #3b1848 48%, #ef232d 130%);
}

.nav-promotional .mega-title small {
    background: #ffffff;
    color: var(--red);
}

.nav-promotional .mega-sub:hover,
.nav-promotional .mega-sub.active {
    background: linear-gradient(135deg, var(--red), #ff6a3d);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(237, 28, 36, 0.24);
}

.nav-promotional .mega-sub:hover b,
.nav-promotional .mega-sub.active b {
    color: #ffffff;
}

.nav-promotional .mega-products {
    background:
        radial-gradient(circle at 92% 8%, rgba(237, 28, 36, 0.08), transparent 26%),
        linear-gradient(180deg, #fffafb 0%, #ffffff 100%);
}

.nav-promotional .mega-pane h4::before {
    content: "Print & promo products";
    background: #fff1f2;
    border-color: #ffd5d9;
    color: var(--red);
}

.nav-promotional .mega-pane a::before {
    background: linear-gradient(135deg, var(--red), #ff9b3d);
    opacity: 1;
}

.nav-promotional .mega-pane a:hover {
    background: #fff3f0;
    border-color: #ffd8cc;
    color: var(--red);
}

.nav-promotional .mega-preview {
    background: linear-gradient(135deg, #2a1237, #ef232d);
}

.nav-promotional .mega-preview::after {
    background:
        linear-gradient(0deg, rgba(31, 12, 45, 0.92), rgba(31, 12, 45, 0.18) 55%),
        linear-gradient(135deg, rgba(255, 204, 102, 0.20), transparent 44%);
}

.nav-promotional .mega-preview span {
    background: rgba(237, 28, 36, 0.86);
    border-color: rgba(255, 255, 255, 0.26);
}


/* =========================================================
   CLEAN RESPONSIVE SYSTEM - FINAL
   Single source for desktop/tablet/mobile behavior.
   Older duplicate header/mobile overrides removed.
========================================================= */

/* Desktop / laptop balance */
@media (min-width: 1051px) and (max-width: 1280px) {
    .container,
    .fs-container {
        width: min(100% - 36px, var(--container));
    }

    .header-inner {
        grid-template-columns: 230px minmax(280px, 1fr) auto 46px;
        gap: 16px;
        height: 88px;
    }

    .brand img {
        width: 225px;
    }

    .header-search {
        max-width: 500px;
        justify-self: center;
    }

    .header-search span {
        font-size: 12px;
    }

    .primary-btn,
    .ghost-btn {
        height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .nav-inner,
    .home-link,
    .nav-item > a,
    .nav-link {
        height: 66px;
    }

    .home-link,
    .nav-item > a,
    .nav-link {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
    }

    .mega-menu {
        top: 66px;
        width: min(1080px, calc(100vw - 36px));
    }

    .mega-grid {
        grid-template-columns: 260px minmax(300px, 1fr) 330px;
        min-height: 360px;
    }

    .mega-title,
    .mega-products,
    .mega-subcategories {
        padding-left: 24px;
        padding-right: 24px;
    }

    .mega-preview {
        margin: 18px;
        min-height: 310px;
    }

    .fs-feature-card {
        height: 330px;
    }
}

/* Tablet and below */
@media (max-width: 1050px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .fs-container {
        width: min(100% - 32px, var(--container));
        margin-inline: auto;
    }

    .announce-inner {
        min-height: auto;
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 5px 8px;
        font-size: 11px;
        line-height: 1.28;
    }

    .top-bar,
    .header-search,
    .header-actions,
    .desktop-nav,
    .nav-shell {
        display: none !important;
    }

    .main-header {
        border-bottom: 1px solid var(--line);
    }

    .header-inner {
        height: 74px;
        display: grid;
        grid-template-columns: 1fr 44px;
        align-items: center;
        gap: 12px;
    }

    .brand {
        justify-self: start;
        min-width: 0;
    }

    .brand img {
        width: 175px;
        max-width: 175px;
        max-height: 56px;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        justify-self: end;
        border-radius: 13px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(17, 18, 30, .06);
    }

    .mobile-panel {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: none;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        padding: 18px 22px 28px;
        background: #ffffff;
    }

    .mobile-panel.open,
    .mobile-panel.active,
    .mobile-panel.is-open {
        display: block;
    }

    .mobile-panel-head {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #ffffff;
        padding-top: 2px;
    }

    .mobile-panel a,
    .mobile-panel summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        color: var(--navy);
        font-weight: 900;
        cursor: pointer;
    }

    .mobile-panel .nested {
        padding-left: 16px;
    }

    .mobile-search {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        margin-bottom: 14px;
    }

    .mobile-search input {
        min-width: 0;
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 12px;
    }

    .mobile-search button {
        border: 0;
        background: var(--red);
        color: #fff;
        border-radius: 12px;
        padding: 0 16px;
        font-weight: 900;
    }

    .section,
    .fs-featured-showcase,
    .fs-related-products,
    .fs-pd-features,
    .fs-services-page-section,
    .fs-service-workflow-section,
    .fs-service-industries,
    .fs-solutions-bento,
    .fs-about-service-showcase,
    .fs-video-showcase {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .page-hero,
    .fs-pd-hero,
    .fs-services-hero,
    .fs-ts-hero,
    .fs-tradeshow-hero {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .grid-3,
    .fs-featured-showcase-grid,
    .fs-related-grid,
    .fs-services-page-grid,
    .fs-pd-feature-grid,
    .fs-ts-card-grid,
    .fs-tradeshow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process,
    .contact-grid,
    .detail-grid,
    .page-hero-grid,
    .product-layout,
    .fs-showcase-panel,
    .fs-video-panel,
    .fs-solutions-head,
    .fs-featured-showcase-head,
    .fs-pd-hero-grid,
    .fs-pd-main-grid,
    .fs-service-workflow,
    .fs-services-page-head,
    .fs-ts-hero-grid,
    .fs-ts-layout,
    .fs-tpd-main-grid,
    .fs-tpd-spec-grid,
    .fs-tradeshow-hero-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .fs-ts-page-head,
    .footer-cta-panel {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .sidebar,
    .process-panel,
    .fs-pd-media,
    .fs-tpd-config-card {
        position: relative;
        top: auto;
    }

    .fs-pd-media img {
        height: 460px;
    }

    .fs-hero-image-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .fs-hero-img-large {
        grid-column: 1 / -1;
    }

    .fs-showcase-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .fs-service-large {
        grid-row: auto;
    }

    .fs-service-bottom-row,
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fs-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .fs-bento-card,
    .fs-bento-large,
    .fs-bento-accent,
    .fs-bento-card:nth-child(2),
    .fs-bento-card:nth-child(3),
    .fs-bento-card:nth-child(4),
    .fs-bento-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        min-height: 230px;
    }

    .fs-tpd-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 760px) {
    .container,
    .fs-container {
        width: min(100% - 26px, var(--container));
    }

    .announce-inner {
        padding: 7px 10px;
        font-size: 10px;
    }

    .header-inner {
        height: 68px;
        grid-template-columns: 1fr 40px;
    }

    .brand img {
        width: 145px;
        max-width: 145px;
        max-height: 50px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    h1,
    .fs-centered-hero h1,
    .fs-services-hero-content h1,
    .fs-pd-hero h1,
    .fs-ts-hero h1,
    .fs-tradeshow-hero h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: .98;
        letter-spacing: -.055em;
    }

    .section h2,
    .fs-showcase-left h2,
    .fs-video-content h2,
    .fs-featured-showcase-head h2,
    .fs-solutions-head h2,
    .fs-service-workflow-copy h2,
    .fs-services-page-head h2 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.04;
        letter-spacing: -.045em;
    }

    .section,
    .fs-featured-showcase,
    .fs-related-products,
    .fs-pd-features,
    .fs-services-page-section,
    .fs-service-workflow-section,
    .fs-service-industries,
    .fs-solutions-bento,
    .fs-about-service-showcase,
    .fs-video-showcase {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .page-hero,
    .compact-hero,
    .fs-centered-hero,
    .fs-pd-hero,
    .fs-services-hero,
    .fs-ts-hero,
    .fs-tradeshow-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .grid-3,
    .fs-featured-showcase-grid,
    .fs-related-grid,
    .fs-services-page-grid,
    .fs-pd-feature-grid,
    .fs-ts-card-grid,
    .fs-tradeshow-grid,
    .fs-tpd-steps,
    .fs-service-bottom-row,
    .footer-main-grid,
    .fs-showcase-right,
    .fs-hero-image-showcase,
    .fs-bento-grid {
        grid-template-columns: 1fr;
    }

    .fs-centered-hero-content,
    .fs-services-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .fs-centered-hero p,
    .fs-services-hero-content p,
    .fs-ts-hero p,
    .fs-tradeshow-hero p,
    .page-hero p,
    .fs-pd-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .fs-centered-actions,
    .fs-services-hero-actions,
    .fs-showcase-actions,
    .fs-pd-hero-actions,
    .footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .fs-centered-actions a,
    .fs-services-hero-actions a,
    .fs-showcase-actions a,
    .fs-pd-hero-actions a,
    .fs-pd-hero-actions button,
    .footer-cta-actions a,
    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .fs-centered-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        max-width: 100%;
    }

    .fs-centered-stats div {
        padding: 12px 8px;
        border-radius: 14px;
    }

    .fs-centered-stats strong {
        font-size: 22px;
    }

    .fs-centered-stats span {
        font-size: 10px;
        line-height: 1.25;
    }

    .fs-hero-img-card,
    .fs-hero-img-large,
    .fs-feature-card,
    .fs-related-card {
        min-height: 250px;
        height: 285px;
    }

    .fs-showcase-panel,
    .fs-video-panel,
    .footer-cta-panel,
    .footer-contact-card,
    .contact-card,
    .quote-box,
    .fs-service-industries-panel {
        padding: 24px;
        border-radius: 24px;
    }

    .fs-service-image-card {
        min-height: 230px;
    }

    .fs-pd-media img {
        height: 320px;
    }

    .fs-pd-meta-row,
    .form-grid,
    .mobile-quick-actions {
        grid-template-columns: 1fr;
    }

    .product-card figure,
    .portfolio-card figure,
    .fs-ts-product-card figure {
        height: 210px;
    }

    .products-topbar {
        align-items: start;
        flex-direction: column;
    }

    .products-pagination {
        gap: 10px;
    }

    .page-control {
        min-width: 96px;
    }

    .filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .filter-pill {
        flex: 0 0 auto;
    }

    .fs-quote-dialog {
        width: min(94vw, 640px);
        max-height: 92vh;
        overflow-y: auto;
    }

    .fs-quote-modal-head,
    .fs-modal-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fs-quote-product-summary {
        grid-template-columns: 70px 1fr;
    }

    .fs-quote-product-summary img {
        width: 70px;
        height: 58px;
    }

    .fs-tpd-image-card {
        height: 330px;
        padding: 16px;
    }

    .fs-tpd-config-card {
        padding: 18px;
    }

    .fs-tpd-tabs {
        grid-template-columns: 1fr;
    }

    .fs-tpd-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .footer-logo img {
        width: 210px;
    }
}

/* Small mobile */
@media (max-width: 420px) {
    .container,
    .fs-container {
        width: min(100% - 22px, var(--container));
    }

    .announce-inner {
        font-size: 9.5px;
    }

    .brand img {
        width: 132px;
        max-width: 132px;
    }

    .mobile-panel {
        padding: 16px 18px 26px;
    }

    .fs-centered-stats {
        grid-template-columns: 1fr;
    }

    .fs-hero-img-card,
    .fs-feature-card,
    .fs-related-card {
        height: 260px;
    }

    .fs-bento-card {
        min-height: 210px;
        padding: 22px;
    }

    .card-body,
    .fs-ts-product-body {
        padding: 18px;
    }
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.home-icon-link {
    width: 64px !important;
    min-width: 64px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.home-icon-link svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    color: var(--navy) !important;
}

.home-icon-link:hover svg,
.home-icon-link.active svg {
    color: var(--red) !important;
}

.home-icon-link::after {
    left: 18px !important;
    right: 18px !important;
}

.same-style-services-mega {
    width: min(1120px, calc(100vw - 52px)) !important;
}

.services-mega-grid-same {
    grid-template-columns: 310px minmax(390px, 1fr) 360px !important;
    min-height: 405px !important;
}

.services-mega-products .mega-pane ul {
    columns: 1 !important;
    max-width: 430px;
}

.service-pane-copy {
    color: var(--muted);
    margin: -4px 0 18px;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
}

.services-mega-preview {
    min-height: 360px !important;
}

.services-mega-preview h3 {
    max-width: 280px;
}

.nav-services .mega-title {
    background:
        radial-gradient(circle at 82% 0%, rgba(237, 28, 36, .32), transparent 34%),
        linear-gradient(135deg, #11102c, #211b63 68%, #151237);
}

.nav-services .mega-pane h4::before {
    content: "Service options";
}

.nav-services .mega-pane a::before {
    opacity: .7;
}

@media (max-width: 1050px) {
    .same-style-services-mega {
        display: none !important;
    }
}
/* About page */
.fs-about-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        radial-gradient(circle at 82% 12%, rgba(237, 28, 36, 0.10), transparent 32%),
        radial-gradient(circle at 12% 72%, rgba(31, 26, 81, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border-bottom: 1px solid rgba(31, 26, 81, 0.08);
}

.fs-about-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31, 26, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 26, 81, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.36), transparent 76%);
    pointer-events: none;
}

.fs-about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 44px;
    align-items: center;
}

.fs-about-hero-content h1 {
    max-width: 820px;
    margin: 20px 0 0;
    color: var(--navy);
    font-size: clamp(46px, 6vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.fs-about-hero-content p {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.fs-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.fs-about-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 90% 12%, rgba(237, 28, 36, 0.16), transparent 32%),
        linear-gradient(145deg, #ffffff, #f6f7fb);
    border: 1px solid rgba(31, 26, 81, 0.10);
    box-shadow: 0 30px 75px rgba(31, 26, 81, 0.12);
    padding: 30px;
}

.fs-about-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 185px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(17, 18, 30, 0.06);
}

.fs-about-logo-box img {
    width: 280px;
    max-width: 90%;
    height: auto;
}

.fs-about-card-content {
    margin-top: 24px;
}

.fs-about-card-content span {
    display: inline-flex;
    color: var(--red);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fs-about-card-content h3 {
    margin: 10px 0 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.fs-about-card-content p {
    margin: 14px 0 0;
    color: var(--muted);
}

.fs-about-intro-section,
.fs-about-services-section,
.fs-about-process-section {
    padding: 88px 0;
}

.fs-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 42px;
    align-items: center;
}

.fs-about-intro-copy h2,
.fs-about-values-copy h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.fs-about-intro-copy p,
.fs-about-values-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.fs-about-stats-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.fs-about-stats-panel div {
    padding: 24px;
    min-height: 150px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(17, 18, 30, 0.06);
}

.fs-about-stats-panel strong {
    display: block;
    color: var(--navy);
    font-size: 30px;
    line-height: 1;
    font-weight: 950;
}

.fs-about-stats-panel span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 850;
}

.fs-about-services-section {
    background: var(--soft);
}

.fs-about-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fs-about-service-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    min-height: 250px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(17, 18, 30, 0.06);
}

.fs-about-service-card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(237, 28, 36, 0.08);
}

.fs-about-service-card span {
    display: inline-flex;
    color: var(--red);
    font-weight: 950;
    font-size: 13px;
}

.fs-about-service-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 10px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.fs-about-service-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
}

.fs-about-values-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at 92% 12%, rgba(237, 28, 36, 0.10), transparent 30%),
        linear-gradient(135deg, var(--navy), #211b63);
}

.fs-about-values-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.fs-about-values-copy h2,
.fs-about-values-copy p {
    color: #ffffff;
}

.fs-about-values-copy p {
    color: rgba(255,255,255,0.74);
}

.fs-about-values-list {
    display: grid;
    gap: 14px;
}

.fs-about-values-list div {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.fs-about-values-list strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 950;
}

.fs-about-values-list p {
    margin: 8px 0 0;
    color: rgba(255,255,255,0.72);
}

.fs-about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fs-about-process-grid div {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(17, 18, 30, 0.06);
}

.fs-about-process-grid strong {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #fff1f2;
    color: var(--red);
    font-weight: 950;
}

.fs-about-process-grid span {
    display: block;
    margin-top: 18px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.1;
    font-weight: 950;
}

.fs-about-process-grid p {
    margin: 10px 0 0;
    color: var(--muted);
}

.fs-about-cta-section {
    padding: 0 0 88px;
    background: #ffffff;
}

.fs-about-cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 38px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 10%, rgba(237, 28, 36, 0.12), transparent 30%),
        linear-gradient(145deg, #ffffff, #f7f8fc);
    border: 1px solid var(--line);
    box-shadow: 0 24px 64px rgba(17, 18, 30, 0.10);
}

.fs-about-cta-panel h2 {
    margin: 8px 0 0;
    max-width: 800px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.fs-about-cta-panel p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--muted);
}

.fs-about-cta-actions {
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .fs-about-hero-grid,
    .fs-about-intro-grid,
    .fs-about-values-panel,
    .fs-about-cta-panel {
        grid-template-columns: 1fr;
    }

    .fs-about-service-grid,
    .fs-about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-about-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .fs-about-hero {
        padding: 58px 0;
    }

    .fs-about-hero-content h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 0.98;
    }

    .fs-about-actions,
    .fs-about-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .fs-about-service-grid,
    .fs-about-process-grid,
    .fs-about-stats-panel {
        grid-template-columns: 1fr;
    }

    .fs-about-hero-card,
    .fs-about-cta-panel {
        padding: 24px;
        border-radius: 26px;
    }
}
/* =========================================================
   Professional product detail page + gallery
========================================================= */
.fs-product-detail-page {
    padding: 42px 0 74px;
    background:
        radial-gradient(circle at 92% 8%, rgba(237, 28, 36, .07), transparent 32%),
        radial-gradient(circle at 8% 82%, rgba(31, 26, 81, .06), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    border-bottom: 1px solid rgba(31, 26, 81, .08);
}

.fs-product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    color: #737687;
    font-size: 13px;
    font-weight: 850;
}

.fs-product-breadcrumbs a:hover {
    color: var(--red);
}

.fs-product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, .86fr);
    gap: 34px;
    align-items: start;
}

.fs-product-gallery-card,
.fs-product-info-card,
.fs-product-overview-card,
.fs-product-bestfor-card,
.fs-product-cta-panel {
    background: #fff;
    border: 1px solid rgba(31, 26, 81, .09);
    box-shadow: 0 24px 64px rgba(17, 18, 30, .09);
}

.fs-product-gallery-card {
    border-radius: 32px;
    padding: 18px;
    position: sticky;
    top: 105px;
}

.fs-product-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--soft);
    min-height: 540px;
}

.fs-product-gallery-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.fs-product-gallery-main span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: rgba(237, 28, 36, .92);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.fs-product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.fs-product-gallery-thumb {
    display: block;
    padding: 0;
    height: 86px;
    border: 2px solid transparent;
    border-radius: 17px;
    overflow: hidden;
    background: #f6f7fb;
    cursor: pointer;
    transition: .18s ease;
}

.fs-product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-product-gallery-thumb.active,
.fs-product-gallery-thumb:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(237, 28, 36, .16);
}

.fs-product-info-card {
    border-radius: 32px;
    padding: 34px;
}

.fs-product-info-card h1 {
    margin: 16px 0 12px;
    color: var(--navy);
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1;
    letter-spacing: -.06em;
}

.fs-product-detail-lead {
    margin: 0;
    color: #5f6374;
    font-size: 17px;
    line-height: 1.7;
}

.fs-product-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.fs-product-action-row button {
    border: 0;
    cursor: pointer;
}

.fs-product-mini-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.fs-product-mini-specs div {
    padding: 18px;
    border-radius: 20px;
    background: #f8f9fd;
    border: 1px solid rgba(31, 26, 81, .08);
}

.fs-product-mini-specs span {
    display: block;
    color: var(--red);
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 7px;
}

.fs-product-mini-specs strong {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 950;
}

.fs-product-quick-note {
    margin-top: 24px;
    padding: 22px;
    border-radius: 23px;
    color: #fff;
    background:
        radial-gradient(circle at 94% 8%, rgba(237, 28, 36, .28), transparent 36%),
        linear-gradient(135deg, var(--navy), #211b63);
}

.fs-product-quick-note strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.fs-product-quick-note p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.65;
}

.fs-product-overview-section {
    padding: 74px 0;
    background: #fff;
}

.fs-product-overview-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.fs-product-overview-card,
.fs-product-bestfor-card {
    border-radius: 30px;
    padding: 32px;
}

.fs-product-overview-card h2 {
    margin: 8px 0 18px;
    color: var(--navy);
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1;
    letter-spacing: -.055em;
}

.fs-product-bestfor-card h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.fs-product-bestfor-card div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fs-product-bestfor-card span {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--navy);
    background: #f6f7fb;
    border: 1px solid rgba(31, 26, 81, .08);
    font-size: 13px;
    font-weight: 900;
}

.fs-product-feature-section {
    background: linear-gradient(180deg, #f8f9fd, #fff);
}

.fs-product-cta-band {
    padding: 0 0 76px;
    background: #fff;
}

.fs-product-cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 94% 8%, rgba(237, 28, 36, .10), transparent 34%),
        linear-gradient(145deg, #ffffff, #f7f8fc);
}

.fs-product-cta-panel h2 {
    margin: 8px 0 8px;
    color: var(--navy);
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    letter-spacing: -.055em;
}

.fs-product-cta-panel p {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
}

.fs-product-cta-panel button {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .fs-product-detail-grid,
    .fs-product-overview-grid,
    .fs-product-cta-panel {
        grid-template-columns: 1fr;
    }

    .fs-product-gallery-card {
        position: relative;
        top: auto;
    }

    .fs-product-gallery-main,
    .fs-product-gallery-main img {
        min-height: 430px;
        height: 430px;
    }
}

@media (max-width: 760px) {
    .fs-product-detail-page {
        padding: 26px 0 48px;
    }

    .fs-product-gallery-card,
    .fs-product-info-card,
    .fs-product-overview-card,
    .fs-product-bestfor-card,
    .fs-product-cta-panel {
        border-radius: 24px;
        padding: 22px;
    }

    .fs-product-gallery-main,
    .fs-product-gallery-main img {
        min-height: 310px;
        height: 310px;
        border-radius: 20px;
    }

    .fs-product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fs-product-gallery-thumb {
        height: 70px;
        border-radius: 14px;
    }

    .fs-product-info-card h1 {
        font-size: clamp(30px, 9.4vw, 42px);
        line-height: 1.02;
    }

    .fs-product-action-row,
    .fs-product-cta-panel .primary-btn {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .fs-product-mini-specs {
        grid-template-columns: 1fr;
    }

    .fs-product-overview-section,
    .fs-product-cta-band {
        padding-top: 46px;
        padding-bottom: 46px;
    }
}

/* =========================================================
   FINAL PHASE: Professional services dropdown polish
   Keeps same mega-menu behavior, improves spacing/visuals.
========================================================= */

.nav-services .same-style-services-mega {
    width: min(1040px, calc(100vw - 76px)) !important;
    border-radius: 0 0 30px 30px !important;
    box-shadow: 0 36px 90px rgba(17, 18, 30, 0.18) !important;
}

.nav-services .mega-title {
    padding: 22px 28px 20px !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(237, 28, 36, 0.36), transparent 30%),
        linear-gradient(135deg, #121036 0%, #221b63 62%, #11102c 100%) !important;
}

.nav-services .mega-title strong {
    font-size: 26px !important;
    letter-spacing: -0.05em !important;
}

.nav-services .mega-title span {
    font-size: 13px !important;
    max-width: 380px !important;
    color: rgba(255,255,255,0.74) !important;
}

.nav-services .services-mega-grid-same {
    grid-template-columns: 280px minmax(360px, 1fr) 320px !important;
    min-height: 370px !important;
    background: #ffffff !important;
}

.nav-services .mega-subcategories {
    padding: 18px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(237, 28, 36, 0.08), transparent 34%),
        linear-gradient(180deg, #fbfcff, #f4f6fb) !important;
    max-height: 370px !important;
    overflow-y: auto !important;
}

.nav-services .mega-sub {
    min-height: 50px !important;
    padding: 12px 14px !important;
    margin-top: 0 !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid rgba(31, 26, 81, 0.07) !important;
    box-shadow: 0 8px 20px rgba(17, 18, 30, 0.035) !important;
}

.nav-services .mega-sub + .mega-sub {
    margin-top: 8px !important;
}

.nav-services .mega-sub:hover,
.nav-services .mega-sub.active {
    background: linear-gradient(135deg, var(--navy), #2b267a) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateX(3px) !important;
    box-shadow: 0 16px 32px rgba(31, 26, 81, 0.18) !important;
}

.nav-services .mega-products {
    padding: 28px !important;
    background:
        radial-gradient(circle at 92% 8%, rgba(237, 28, 36, 0.055), transparent 28%),
        #ffffff !important;
}

.nav-services .mega-pane h4 {
    font-size: 25px !important;
    margin-bottom: 14px !important;
}

.nav-services .mega-pane h4::before {
    content: "Service details" !important;
    color: var(--red) !important;
    background: #fff1f2 !important;
    border-color: #ffd3d7 !important;
}

.nav-services .service-pane-copy {
    margin: 0 0 18px !important;
    max-width: 520px !important;
    color: #626574 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    font-weight: 750 !important;
}

.nav-services .services-mega-products .mega-pane ul {
    columns: 1 !important;
    max-width: 430px !important;
}

.nav-services .services-mega-products .mega-pane li {
    margin-bottom: 10px !important;
}

.nav-services .services-mega-products .mega-pane a {
    min-height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    background: #fafbff !important;
    border: 1px solid #eceef6 !important;
}

.nav-services .services-mega-products .mega-pane a:hover {
    background: #fff3f4 !important;
    border-color: #ffd5d9 !important;
}

.nav-services .services-mega-preview {
    min-height: 326px !important;
    margin: 22px !important;
    border-radius: 24px !important;
}

.nav-services .services-mega-preview h3 {
    max-width: 280px !important;
    font-size: 27px !important;
}

.nav-services .services-mega-preview p {
    max-width: 270px !important;
}

@media (max-width: 1050px) {
    .nav-services .same-style-services-mega {
        display: none !important;
    }
}

/* Trade show pricing removed from UI */
.fs-ts-price-list,
.fs-tpd-total {
    display: none !important;
}


/* =========================================================
   Trade Show Product Detail - Professional Top Section Fix
   Keeps pricing removed and improves gallery/quote layout
========================================================= */
.fs-tpd-hero-pro {
    position: relative;
    overflow: hidden;
    padding: 54px 0 72px !important;
    background:
        radial-gradient(circle at 88% 18%, rgba(237, 28, 36, 0.075), transparent 34%),
        radial-gradient(circle at 8% 86%, rgba(31, 26, 81, 0.075), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%) !important;
    border-bottom: 1px solid rgba(31, 26, 81, 0.08);
}

.fs-tpd-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 26px;
    margin-bottom: 28px;
}

.fs-tpd-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff1f2;
    color: var(--red);
    border: 1px solid #ffd4d8;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.fs-tpd-heading-row h1 {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 54px) !important;
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 950;
}

.fs-tpd-heading-row p {
    max-width: 690px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.fs-tpd-head-cta {
    height: 50px;
    padding: 0 20px;
}

.fs-tpd-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
}

.fs-tpd-hero-pro .fs-tpd-gallery {
    min-width: 0;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 26, 81, 0.09);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 22px 58px rgba(17, 18, 30, 0.08);
}

.fs-tpd-hero-pro .fs-tpd-gallery > h1 {
    display: none !important;
}

.fs-tpd-hero-pro .fs-tpd-image-card {
    height: 430px !important;
    padding: 30px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 50% 8%, rgba(237, 28, 36, 0.05), transparent 34%),
        linear-gradient(180deg, #ffffff, #f2f4f8) !important;
    border: 1px solid rgba(31, 26, 81, 0.08) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-tpd-hero-pro .fs-tpd-image-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(17, 18, 30, 0.08));
}

.fs-tpd-hero-pro .fs-tpd-thumbs {
    display: flex;
    gap: 10px;
    margin: 16px 0 0 !important;
    padding: 2px 2px 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.fs-tpd-hero-pro .fs-tpd-thumb-btn,
.fs-tpd-hero-pro .fs-tpd-thumbs a {
    width: 68px !important;
    height: 58px !important;
    flex: 0 0 68px !important;
    padding: 6px !important;
    border-radius: 13px !important;
    border: 1px solid rgba(31, 26, 81, 0.11) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 22px rgba(17, 18, 30, 0.045);
}

.fs-tpd-hero-pro .fs-tpd-thumb-btn.active,
.fs-tpd-hero-pro .fs-tpd-thumb-btn:hover {
    border-color: var(--red) !important;
    box-shadow: 0 12px 26px rgba(237, 28, 36, 0.14) !important;
}

.fs-tpd-bullets-pro {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.fs-tpd-bullets-pro li {
    position: relative;
    padding-left: 20px;
    color: #55596b;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.fs-tpd-bullets-pro li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

.fs-tpd-quote-card {
    position: sticky !important;
    top: 124px !important;
    align-self: start;
    padding: 28px !important;
    border-radius: 30px !important;
    background:
        radial-gradient(circle at 90% 12%, rgba(237, 28, 36, 0.08), transparent 34%),
        #ffffff !important;
    border: 1px solid rgba(31, 26, 81, 0.10) !important;
    box-shadow: 0 28px 70px rgba(17, 18, 30, 0.10) !important;
}

.fs-tpd-card-kicker {
    display: inline-flex;
    color: var(--red);
    background: #fff1f2;
    border: 1px solid #ffd4d8;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fs-tpd-quote-card h2 {
    margin: 15px 0 0;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.fs-tpd-quote-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.fs-tpd-option-summary {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.fs-tpd-option-summary div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px 13px;
    border-radius: 15px;
    background: #f8f9fd;
    border: 1px solid rgba(31, 26, 81, 0.075);
}

.fs-tpd-option-summary strong {
    color: var(--navy);
    font-size: 12px;
    font-weight: 950;
}

.fs-tpd-option-summary span {
    color: #5d6172;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 750;
}

.fs-tpd-quote-card .primary-btn {
    width: 100%;
    height: 50px;
    border-radius: 15px;
}

.fs-tpd-content-section {
    padding-top: 48px !important;
}

@media (max-width: 1050px) {
    .fs-tpd-heading-row,
    .fs-tpd-product-shell {
        grid-template-columns: 1fr;
    }

    .fs-tpd-head-cta {
        width: max-content;
    }

    .fs-tpd-quote-card {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 680px) {
    .fs-tpd-hero-pro {
        padding: 38px 0 52px !important;
    }

    .fs-tpd-heading-row h1 {
        font-size: clamp(32px, 10vw, 44px) !important;
        line-height: 1;
    }

    .fs-tpd-head-cta {
        width: 100%;
    }

    .fs-tpd-hero-pro .fs-tpd-gallery,
    .fs-tpd-quote-card {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .fs-tpd-hero-pro .fs-tpd-image-card {
        height: 330px !important;
        padding: 18px !important;
    }

    .fs-tpd-bullets-pro {
        grid-template-columns: 1fr;
    }

    .fs-tpd-option-summary div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* =========================================================
   FINAL CLIENT UPDATE: Trade Show Mega Menu + Catalog Layout
   Ref-style catalog cards, pricing stays hidden.
========================================================= */

.nav-tradeshow .tradeshow-mega {
    width: min(1080px, calc(100vw - 76px)) !important;
    border-radius: 0 0 30px 30px !important;
    box-shadow: 0 36px 90px rgba(17, 18, 30, 0.18) !important;
}

.nav-tradeshow .mega-title {
    padding: 22px 28px 20px !important;
    background:
        radial-gradient(circle at 88% 0%, rgba(237, 28, 36, 0.36), transparent 30%),
        linear-gradient(135deg, #121036 0%, #221b63 62%, #11102c 100%) !important;
}

.nav-tradeshow .mega-title strong {
    font-size: 26px !important;
    letter-spacing: -0.05em !important;
}

.nav-tradeshow .mega-title span {
    font-size: 13px !important;
    max-width: 430px !important;
    color: rgba(255,255,255,0.74) !important;
}

.nav-tradeshow .tradeshow-mega-grid {
    grid-template-columns: 290px minmax(380px, 1fr) 330px !important;
    min-height: 390px !important;
    background: #fff !important;
}

.nav-tradeshow .mega-subcategories {
    padding: 18px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(237, 28, 36, 0.08), transparent 34%),
        linear-gradient(180deg, #fbfcff, #f4f6fb) !important;
    max-height: 390px !important;
    overflow-y: auto !important;
}

.nav-tradeshow .mega-sub {
    min-height: 48px !important;
    padding: 11px 14px !important;
    margin-top: 0 !important;
    border-radius: 14px !important;
    font-size: 13.5px !important;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(31, 26, 81, 0.07) !important;
    box-shadow: 0 8px 20px rgba(17, 18, 30, 0.035) !important;
}

.nav-tradeshow .mega-sub + .mega-sub {
    margin-top: 8px !important;
}

.nav-tradeshow .mega-sub:hover,
.nav-tradeshow .mega-sub.active {
    background: linear-gradient(135deg, var(--navy), #2b267a) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateX(3px) !important;
    box-shadow: 0 16px 32px rgba(31, 26, 81, 0.18) !important;
}

.nav-tradeshow .mega-products {
    padding: 26px 28px !important;
    background:
        radial-gradient(circle at 92% 8%, rgba(237, 28, 36, 0.055), transparent 28%),
        #fff !important;
}

.nav-tradeshow .mega-pane h4 {
    font-size: 25px !important;
    margin-bottom: 12px !important;
}

.nav-tradeshow .mega-pane h4::before {
    content: "Display products" !important;
    color: var(--red) !important;
    background: #fff1f2 !important;
    border-color: #ffd3d7 !important;
}

.trade-pane-copy {
    margin: 0 0 16px !important;
    max-width: 520px !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
    font-weight: 750 !important;
}

.nav-tradeshow .tradeshow-mega-products .mega-pane ul {
    columns: 1 !important;
    max-width: 470px !important;
}

.nav-tradeshow .tradeshow-mega-products .mega-pane li {
    margin-bottom: 8px !important;
}

.nav-tradeshow .tradeshow-mega-products .mega-pane a:not(.trade-mega-all) {
    min-height: 42px !important;
    padding: 10px 12px !important;
    border-radius: 13px !important;
    background: #fafbff !important;
    border: 1px solid #eceef6 !important;
}

.nav-tradeshow .tradeshow-mega-products .mega-pane a:not(.trade-mega-all):hover {
    background: #fff3f4 !important;
    border-color: #ffd5d9 !important;
}

.trade-mega-all {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
    min-height: 42px !important;
    margin-top: 8px !important;
    padding: 0 15px !important;
    border-radius: 13px !important;
    background: var(--red) !important;
    color: #fff !important;
    font-weight: 950 !important;
    border: 0 !important;
}

.trade-mega-all::before {
    display: none !important;
}

.nav-tradeshow .tradeshow-mega-preview {
    min-height: 340px !important;
    margin: 22px !important;
    border-radius: 24px !important;
}

.nav-tradeshow .tradeshow-mega-preview h3 {
    max-width: 280px !important;
    font-size: 27px !important;
}

.nav-tradeshow .tradeshow-mega-preview p {
    max-width: 270px !important;
}

@media (max-width: 1050px) {
    .nav-tradeshow .tradeshow-mega {
        display: none !important;
    }
}

/* Trade Show catalog page - reference style */
.fs-ts-catalog-section {
    padding: 92px 0 96px !important;
    background:
        linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%) !important;
}

.fs-ts-catalog-layout {
    display: grid !important;
    grid-template-columns: 275px minmax(0, 1fr) !important;
    gap: 34px !important;
    align-items: start !important;
}

.fs-ts-catalog-sidebar {
    position: sticky !important;
    top: 116px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    border: 1px solid rgba(31, 26, 81, 0.09) !important;
    box-shadow: 0 20px 55px rgba(17, 18, 30, 0.07) !important;
    padding: 18px !important;
}

.fs-ts-sidebar-title {
    margin-bottom: 14px !important;
}

.fs-ts-sidebar-title span {
    display: inline-flex !important;
    margin-bottom: 7px !important;
    color: var(--red) !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.fs-ts-sidebar-title strong {
    display: block !important;
    color: var(--navy) !important;
    font-size: 21px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
}

.fs-ts-sidebar-links {
    display: grid !important;
    gap: 4px !important;
}

.fs-ts-sidebar-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 45px !important;
    padding: 10px 11px !important;
    border-radius: 13px !important;
    color: var(--navy) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    border-bottom: 1px solid rgba(31, 26, 81, 0.06) !important;
    transition: 0.18s ease !important;
}

.fs-ts-sidebar-links a b {
    color: var(--navy) !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: 0.18s ease !important;
}

.fs-ts-sidebar-links a:hover,
.fs-ts-sidebar-links a.active {
    background: #fff1f2 !important;
    color: var(--red) !important;
    border-bottom-color: transparent !important;
}

.fs-ts-sidebar-links a:hover b,
.fs-ts-sidebar-links a.active b {
    color: var(--red) !important;
    transform: translateX(2px) !important;
}

.fs-ts-catalog-main {
    min-width: 0 !important;
}

.fs-ts-catalog-head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 28px !important;
    align-items: end !important;
    margin-bottom: 22px !important;
}

.fs-ts-catalog-head h1 {
    margin: 8px 0 0 !important;
    color: var(--navy) !important;
    font-size: clamp(30px, 3.6vw, 44px) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.065em !important;
    font-weight: 950 !important;
}

.fs-ts-catalog-head p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.fs-ts-catalog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.fs-ts-catalog-card {
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #dcdee7 !important;
    border-radius: 4px !important;
    box-shadow: 0 12px 28px rgba(17, 18, 30, 0.045) !important;
    transition: 0.2s ease !important;
}

.fs-ts-catalog-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 45px rgba(17, 18, 30, 0.09) !important;
    border-color: #cfd2dc !important;
}

.fs-ts-catalog-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 260px !important;
    padding: 18px !important;
    background: #f3f4f7 !important;
}

.fs-ts-catalog-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.fs-ts-catalog-body {
    padding: 20px 22px 22px !important;
    background: #fff !important;
    border-top: 1px solid #eceef4 !important;
}

.fs-ts-catalog-body h2 {
    margin: 0 0 12px !important;
    color: var(--navy) !important;
    font-size: 22px !important;
    line-height: 1.13 !important;
    letter-spacing: -0.035em !important;
    font-weight: 950 !important;
}

.fs-ts-catalog-body ul {
    margin: 0 0 17px 18px !important;
    padding: 0 !important;
    color: #535666 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.fs-ts-catalog-body p {
    margin: 0 0 17px !important;
    color: #535666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.fs-ts-catalog-link {
    display: inline-flex !important;
    align-items: center !important;
    color: var(--red) !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

.fs-ts-price-list,
.fs-tpd-total {
    display: none !important;
}

@media (max-width: 1180px) {
    .fs-ts-catalog-layout {
        grid-template-columns: 245px minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    .fs-ts-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .fs-ts-catalog-head {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 820px) {
    .fs-ts-catalog-section {
        padding: 50px 0 62px !important;
    }

    .fs-ts-catalog-layout {
        grid-template-columns: 1fr !important;
    }

    .fs-ts-catalog-sidebar {
        position: relative !important;
        top: auto !important;
        border-radius: 18px !important;
    }

    .fs-ts-sidebar-links {
        display: flex !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 4px !important;
        scrollbar-width: thin !important;
    }

    .fs-ts-sidebar-links a {
        flex: 0 0 auto !important;
        min-height: 42px !important;
        border: 1px solid rgba(31, 26, 81, 0.08) !important;
        background: #fff !important;
        white-space: nowrap !important;
    }

    .fs-ts-catalog-head h1 {
        font-size: clamp(36px, 10vw, 48px) !important;
    }
}

@media (max-width: 620px) {
    .fs-ts-catalog-grid {
        grid-template-columns: 1fr !important;
    }

    .fs-ts-catalog-image {
        height: 235px !important;
    }

    .fs-ts-catalog-body {
        padding: 18px !important;
    }

    .fs-ts-catalog-body h2 {
        font-size: 21px !important;
    }
}


/* =========================================================
   FINAL FIX: Simple Trade Show dropdown list
   No product preview / no large mega panel.
========================================================= */

.nav-tradeshow-simple {
    position: relative !important;
}

.nav-tradeshow-simple .tradeshow-simple-menu {
    width: 360px !important;
    min-width: 360px !important;
    max-width: calc(100vw - 32px) !important;
    left: auto !important;
    right: 0 !important;
    top: 76px !important;
    padding: 0 !important;
    border-radius: 0 0 22px 22px !important;
    background: #ffffff !important;
    border: 1px solid #e7e8ef !important;
    border-top: 0 !important;
    box-shadow: 0 24px 70px rgba(17, 18, 30, 0.16) !important;
    overflow: hidden !important;
    transform: translateY(12px) !important;
}

.nav-tradeshow-simple:hover .tradeshow-simple-menu {
    transform: translateY(0) !important;
}

.nav-tradeshow-simple .tradeshow-simple-menu::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--red);
    z-index: 2;
}

.trade-simple-head {
    padding: 22px 22px 18px !important;
    background:
        radial-gradient(circle at 90% 0%, rgba(237, 28, 36, 0.26), transparent 34%),
        linear-gradient(135deg, #11102c, #231d65) !important;
    color: #fff !important;
}

.trade-simple-head small {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.trade-simple-head strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
}

.trade-simple-list {
    padding: 12px !important;
    display: grid !important;
    gap: 6px !important;
    max-height: 430px !important;
    overflow-y: auto !important;
    background: linear-gradient(180deg, #ffffff, #f8f9fd) !important;
}

.trade-simple-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 13px !important;
    color: var(--navy) !important;
    background: #ffffff !important;
    border: 1px solid transparent !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -.015em !important;
    transition: .18s ease !important;
}

.trade-simple-row b {
    color: #a2a6b8 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    transition: .18s ease !important;
}

.trade-simple-row:hover,
.trade-simple-all {
    background: #fff3f4 !important;
    border-color: #ffd6d9 !important;
    color: var(--red) !important;
    transform: translateX(3px) !important;
}

.trade-simple-row:hover b,
.trade-simple-all b {
    color: var(--red) !important;
}

@media (max-width: 1050px) {
    .nav-tradeshow-simple .tradeshow-simple-menu {
        display: none !important;
    }
}

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX - Trade Show catalog/detail
   Also keeps product/service headings and images clickable clean.
========================================================= */

.product-card-image-link,
.fs-service-page-image,
.fs-ts-catalog-body h2 a,
.product-card .card-body h3 a,
.fs-service-page-content h3 a,
.fs-ts-product-body h3 a,
.fs-ts-related-image-link {
    color: inherit !important;
    text-decoration: none !important;
}

.product-card-image-link {
    display: block !important;
}

.product-card .card-body h3 a:hover,
.fs-service-page-content h3 a:hover,
.fs-ts-catalog-body h2 a:hover,
.fs-ts-product-body h3 a:hover {
    color: var(--red) !important;
}

.fs-service-page-image {
    cursor: pointer !important;
}

.fs-ts-related-image-link {
    display: block !important;
}

@media (max-width: 820px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .fs-ts-catalog-section {
        padding: 32px 0 56px !important;
        background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%) !important;
    }

    .fs-ts-catalog-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .fs-ts-catalog-sidebar {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        padding: 16px !important;
        border-radius: 20px !important;
        box-shadow: 0 16px 38px rgba(17, 18, 30, 0.075) !important;
    }

    .fs-ts-sidebar-title {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .fs-ts-sidebar-title span {
        margin: 0 !important;
        font-size: 10px !important;
    }

    .fs-ts-sidebar-title strong {
        font-size: 20px !important;
    }

    .fs-ts-sidebar-links {
        display: grid !important;
        grid-template-columns: 1fr !important;
        max-height: 248px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        gap: 8px !important;
        padding: 2px 3px 4px 0 !important;
        scrollbar-width: thin !important;
    }

    .fs-ts-sidebar-links a {
        width: 100% !important;
        min-height: 44px !important;
        padding: 10px 12px !important;
        border: 1px solid rgba(31, 26, 81, 0.08) !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        white-space: normal !important;
        font-size: 13.5px !important;
        line-height: 1.25 !important;
    }

    .fs-ts-catalog-main {
        width: 100% !important;
        min-width: 0 !important;
    }

    .fs-ts-catalog-head {
        display: block !important;
        margin-bottom: 16px !important;
        text-align: left !important;
    }

    .fs-ts-catalog-head .eyebrow {
        font-size: 10px !important;
    }

    .fs-ts-catalog-head h1 {
        margin-top: 7px !important;
        font-size: clamp(30px, 9vw, 40px) !important;
        line-height: 1 !important;
        letter-spacing: -0.055em !important;
    }

    .fs-ts-catalog-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .fs-ts-catalog-card {
        border-radius: 18px !important;
        overflow: hidden !important;
        box-shadow: 0 14px 34px rgba(17, 18, 30, 0.07) !important;
    }

    .fs-ts-catalog-image {
        height: 235px !important;
        padding: 18px !important;
        background: #f4f5f8 !important;
    }

    .fs-ts-catalog-body {
        padding: 17px 18px 19px !important;
    }

    .fs-ts-catalog-body h2 {
        margin-bottom: 10px !important;
        font-size: 21px !important;
        line-height: 1.12 !important;
    }

    .fs-ts-catalog-body ul,
    .fs-ts-catalog-body p {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 14px !important;
    }

    .fs-ts-catalog-link {
        min-height: 42px !important;
        align-items: center !important;
        font-size: 14px !important;
    }
}

@media (max-width: 820px) {
    .fs-tpd-hero-pro {
        padding: 34px 0 38px !important;
        overflow: hidden !important;
        background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%) !important;
    }

    .fs-tpd-heading-row {
        display: block !important;
        margin-bottom: 18px !important;
    }

    .fs-tpd-kicker {
        font-size: 10px !important;
        padding: 7px 10px !important;
        margin-bottom: 9px !important;
    }

    .fs-tpd-heading-row h1 {
        margin: 10px 0 10px !important;
        max-width: 100% !important;
        font-size: clamp(31px, 9.2vw, 42px) !important;
        line-height: 1 !important;
        letter-spacing: -0.055em !important;
    }

    .fs-tpd-heading-row p {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .fs-tpd-product-shell {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
    }

    .fs-tpd-hero-pro .fs-tpd-gallery {
        width: 100% !important;
        padding: 13px !important;
        border-radius: 22px !important;
        box-shadow: 0 16px 38px rgba(17, 18, 30, 0.07) !important;
    }

    .fs-tpd-hero-pro .fs-tpd-image-card {
        height: 292px !important;
        min-height: 292px !important;
        padding: 16px !important;
        border-radius: 18px !important;
        background: #f4f5f8 !important;
    }

    .fs-tpd-hero-pro .fs-tpd-image-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .fs-tpd-hero-pro .fs-tpd-thumbs {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 10px 2px 4px !important;
        margin: 0 !important;
        scrollbar-width: thin !important;
    }

    .fs-tpd-hero-pro .fs-tpd-thumb-btn,
    .fs-tpd-hero-pro .fs-tpd-thumbs a {
        flex: 0 0 56px !important;
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        border-radius: 12px !important;
        padding: 5px !important;
    }

    .fs-tpd-bullets-pro {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin: 10px 0 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .fs-tpd-bullets-pro li {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        border-radius: 13px !important;
        background: #ffffff !important;
        border: 1px solid rgba(31, 26, 81, 0.08) !important;
        color: #4f5364 !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .fs-tpd-quote-card {
        width: 100% !important;
        padding: 22px !important;
        border-radius: 22px !important;
        position: relative !important;
        top: auto !important;
        box-shadow: 0 18px 42px rgba(17, 18, 30, 0.08) !important;
    }

    .fs-tpd-quote-card h2 {
        font-size: 22px !important;
        line-height: 1.14 !important;
    }

    .fs-tpd-quote-card p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }

    .fs-tpd-option-summary {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        margin: 16px 0 !important;
    }

    .fs-tpd-option-summary div {
        padding: 12px !important;
        border-radius: 14px !important;
        background: #f8f9fd !important;
        border: 1px solid rgba(31, 26, 81, 0.07) !important;
    }

    .fs-tpd-quote-card .primary-btn {
        width: 100% !important;
        height: 50px !important;
    }

    .fs-tpd-content-section {
        padding: 34px 0 52px !important;
    }

    .fs-tpd-tabs-line {
        display: flex !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 8px !important;
        margin-bottom: 18px !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        border: 1px solid var(--line) !important;
        box-shadow: 0 12px 30px rgba(17, 18, 30, 0.05) !important;
        scrollbar-width: thin !important;
    }

    .fs-tpd-tabs-line a {
        flex: 0 0 auto !important;
        min-height: 40px !important;
        padding: 0 14px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 13px !important;
        background: #f7f8fc !important;
        color: var(--navy) !important;
        font-size: 12.5px !important;
        line-height: 1.1 !important;
        font-weight: 950 !important;
        white-space: nowrap !important;
        border-bottom: 0 !important;
    }

    .fs-tpd-tabs-line a:first-child,
    .fs-tpd-tabs-line a:hover {
        background: #fff1f2 !important;
        color: var(--red) !important;
    }

    .fs-tpd-block {
        padding: 20px !important;
        border-radius: 20px !important;
        background: #ffffff !important;
        border: 1px solid var(--line) !important;
        box-shadow: 0 12px 30px rgba(17, 18, 30, 0.045) !important;
        margin-bottom: 14px !important;
    }

    .fs-tpd-block h2 {
        font-size: 27px !important;
        line-height: 1.05 !important;
        margin-bottom: 12px !important;
    }

    .fs-tpd-block p,
    .fs-tpd-block li {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .fs-tpd-spec-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .fs-tpd-spec-art {
        min-height: 220px !important;
        border-radius: 16px !important;
        padding: 14px !important;
    }

    .fs-tpd-table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        border-radius: 15px !important;
    }

    .fs-tpd-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .section-head {
        display: block !important;
    }

    .fs-ts-card-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 430px) {
    .fs-ts-catalog-image {
        height: 215px !important;
    }

    .fs-tpd-hero-pro .fs-tpd-image-card {
        height: 252px !important;
        min-height: 252px !important;
    }

    .fs-tpd-heading-row h1 {
        font-size: clamp(29px, 10vw, 38px) !important;
    }

    .fs-tpd-hero-pro .fs-tpd-thumb-btn,
    .fs-tpd-hero-pro .fs-tpd-thumbs a {
        flex-basis: 52px !important;
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }
}

/* Lead generation improvements */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.fs-thankyou-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(237, 28, 36, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff, #f7f8fb);
}

.fs-thankyou-card {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 28px 80px rgba(17, 18, 30, 0.12);
    text-align: center;
}

.fs-thankyou-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: var(--red);
    color: #ffffff;
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(237, 28, 36, 0.25);
}

.fs-thankyou-card h1 {
    margin: 10px auto 14px;
    max-width: 680px;
    color: var(--navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.fs-thankyou-card p {
    margin: 0 auto;
    max-width: 570px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.fs-thankyou-item {
    margin: 24px auto 0;
    max-width: 480px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8f9fd;
    border: 1px solid var(--line);
    display: grid;
    gap: 5px;
}

.fs-thankyou-item span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 900;
}

.fs-thankyou-item strong {
    color: var(--navy);
    font-size: 18px;
    font-weight: 950;
}

.fs-thankyou-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.fs-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 950;
    font-size: 14px;
    box-shadow: 0 16px 42px rgba(37, 211, 102, 0.32);
}

.fs-whatsapp-float:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.fs-tpd-action-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fs-mobile-sticky-cta {
    display: none;
}

@media (max-width: 720px) {
    .fs-thankyou-section {
        padding: 46px 0 90px;
    }

    .fs-thankyou-card {
        border-radius: 24px;
        text-align: left;
    }

    .fs-thankyou-icon {
        margin-left: 0;
    }

    .fs-thankyou-actions {
        justify-content: flex-start;
    }

    .fs-thankyou-actions a {
        width: 100%;
        justify-content: center;
    }

    .fs-whatsapp-float {
        right: 14px;
        bottom: 82px;
        min-height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    .fs-mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 90;
        display: grid;
        grid-template-columns: 1.15fr 1fr 0.75fr;
        gap: 8px;
        padding: 9px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid var(--line);
        box-shadow: 0 18px 60px rgba(17, 18, 30, 0.18);
        backdrop-filter: blur(14px);
    }

    .fs-mobile-sticky-cta a,
    .fs-mobile-sticky-cta button {
        min-height: 42px !important;
        padding: 0 10px !important;
        border-radius: 13px !important;
        font-size: 12px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        border: 0;
        cursor: pointer;
    }

    body {
        padding-bottom: 66px;
    }
}


/* Privacy Policy + final handover polish */
.fs-policy-hero {
    padding: 96px 0 56px;
    background: radial-gradient(circle at 15% 10%, rgba(237, 28, 36, .12), transparent 28%), linear-gradient(135deg, #090b18, #171d36 70%, #0d1024);
    color: #fff;
}
.fs-policy-hero-inner { max-width: 900px; }
.fs-policy-hero .eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ff4b55;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 950;
}
.fs-policy-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .94;
    letter-spacing: -.065em;
}
.fs-policy-hero p {
    margin: 18px 0 0;
    max-width: 720px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.7;
}
.fs-policy-section { padding: 68px 0; background: #f6f7fb; }
.fs-policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
}
.fs-policy-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 20px 54px rgba(15,18,35,.08);
}
.fs-policy-sidebar strong {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 6px;
}
.fs-policy-sidebar a {
    padding: 11px 12px;
    border-radius: 13px;
    color: var(--muted);
    font-weight: 850;
}
.fs-policy-sidebar a:hover { background: #fff1f2; color: var(--red); }
.fs-policy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 26px 70px rgba(15,18,35,.08);
}
.fs-policy-updated {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f7f8fb;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}
.fs-policy-card h2 {
    margin: 26px 0 10px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.02;
    letter-spacing: -.04em;
}
.fs-policy-card p,
.fs-policy-card li {
    color: #555a6d;
    font-size: 16px;
    line-height: 1.75;
}
.fs-policy-card ul { margin: 10px 0 0; padding-left: 20px; }
.fs-policy-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.fs-policy-contact a {
    display: inline-flex;
    padding: 12px 15px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-weight: 900;
}
.footer-bottom a { color: inherit; font-weight: 900; }
.footer-bottom a:hover { color: var(--red); }
@media (max-width: 900px) {
    .fs-policy-layout { grid-template-columns: 1fr; }
    .fs-policy-sidebar { position: relative; top: auto; display: flex; overflow-x: auto; }
    .fs-policy-sidebar strong { display: none; }
    .fs-policy-sidebar a { flex: 0 0 auto; white-space: nowrap; border: 1px solid var(--line); }
}
@media (max-width: 640px) {
    .fs-policy-hero { padding: 58px 0 38px; }
    .fs-policy-hero h1 { font-size: 38px; }
    .fs-policy-section { padding: 36px 0; }
    .fs-policy-card { border-radius: 22px; }
}
