:root {
    --ink: #111827;
    --ink-soft: #374151;
    --muted: #6b7280;
    --line: #e4e4e7;
    --paper: #ffffff;
    --paper-soft: #f4f4f5;
    --amber: #f59e0b;
    --amber-dark: #b45309;
    --green: #16a34a;
    --radius: 8px;
    --shadow: 0 18px 45px rgba(17, 24, 39, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

body:not(.admin-body) {
    padding-bottom: 0;
}

img,
svg {
    max-width: 100%;
}

svg {
    width: 1.1em;
    height: 1.1em;
    flex: 0 0 auto;
}

a {
    text-decoration: none;
}

::selection {
    background: rgba(245, 158, 11, .28);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17, 24, 39, .06);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(24px);
    box-shadow: 0 16px 38px rgba(17, 24, 39, .06);
}

.site-header-inner {
    display: flex;
    width: 100%;
    max-width: 80rem;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    padding: .75rem 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ink);
    min-width: 0;
}

.brand-logo {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border: 1px solid rgba(17, 24, 39, .075);
    border-radius: 10px;
    background: linear-gradient(135deg, #fff, #f4f4f5);
    box-shadow: 0 10px 24px rgba(17, 24, 39, .10);
    padding: .34rem;
}

.brand-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-copy {
    min-width: 0;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.15;
}

.brand strong {
    color: inherit;
    font-size: 1.08rem;
    font-weight: 850;
}

.brand small {
    margin-top: .12rem;
    color: var(--muted);
    font-size: .72rem;
}

.site-header .brand small {
    display: none;
}

.brand-light {
    color: #fff;
}

.brand-light .brand-logo {
    border-color: rgba(255, 255, 255, .16);
    background: #fff;
}

.brand-light .brand-mark {
    background: var(--amber);
    color: var(--ink);
}

.brand-light small {
    color: #d4d4d8;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: .18rem;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 999px;
    background: rgba(248, 250, 252, .82);
    padding: .28rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.desktop-nav a,
.mobile-menu a {
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.desktop-nav a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: .4rem;
    padding: .54rem .74rem;
    white-space: nowrap;
}

.desktop-nav a svg,
.mobile-menu nav > a svg {
    width: 1rem;
    height: 1rem;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.mobile-menu a.active {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 18px rgba(17, 24, 39, .06);
}

.desktop-nav a.active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 22px rgba(17, 24, 39, .16);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 0 0 auto;
    margin-left: auto;
}

.header-search-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.header-search-button:hover {
    border-color: rgba(245, 158, 11, .6);
    box-shadow: 0 14px 28px rgba(17, 24, 39, .1);
    transform: translateY(-1px);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 44px;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
    font-size: .9rem;
    font-weight: 850;
    padding: .56rem .72rem;
    white-space: nowrap;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.header-phone:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: 0 12px 24px rgba(245, 158, 11, .13);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: inline-grid;
    position: fixed;
    top: .8rem;
    right: 1rem;
    z-index: 65;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 22px rgba(17, 24, 39, .16);
}

.mobile-menu-btn svg {
    width: 1.18rem;
    height: 1.18rem;
    stroke-width: 2.4;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 35px rgba(17, 24, 39, .08);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu nav > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: .7rem;
    padding: .85rem 1rem;
}

.mobile-menu-contact {
    border: 1px solid rgba(245, 158, 11, .38);
    background: #fffbeb;
    color: var(--ink);
    font-weight: 850;
}

.mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6rem;
    padding-top: .5rem;
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: .72rem 1rem;
    font-size: .93rem;
    font-weight: 750;
    line-height: 1.1;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: normal;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-sm {
    min-height: 40px;
    padding: .62rem .85rem;
    font-size: .85rem;
}

.btn-lg {
    min-height: 50px;
    padding: .88rem 1.18rem;
}

.btn-primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 12px 26px rgba(245, 158, 11, .24);
}

.btn-primary:hover {
    background: #fbbf24;
    box-shadow: 0 16px 32px rgba(245, 158, 11, .28);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: rgba(255, 255, 255, .75);
}

.btn-secondary:hover {
    background: #f4f4f5;
}

.btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: #a1a1aa;
    background: #fafafa;
}

.btn-ghost-light {
    background: rgba(17, 24, 39, .72);
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
}

.btn-ghost-light:hover {
    background: rgba(17, 24, 39, .9);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: min(900px, calc(100vh - 68px));
    background: #111827;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-position: center;
    background-size: cover;
    opacity: 1;
    filter: saturate(.96) contrast(1.04);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .96) 0%, rgba(17, 24, 39, .86) 42%, rgba(17, 24, 39, .42) 74%, rgba(17, 24, 39, .18) 100%),
        linear-gradient(180deg, rgba(17, 24, 39, .08) 0%, rgba(17, 24, 39, .62) 100%);
}

.hero-parallax {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-parallax-grid {
    right: 5vw;
    top: 18%;
    width: min(42vw, 560px);
    height: min(34vw, 430px);
    border: 1px solid rgba(255, 255, 255, .08);
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 38px 38px;
    transform: rotate(-7deg);
    opacity: .45;
}

.hero-parallax-rail {
    right: -8vw;
    bottom: 12%;
    width: min(52vw, 720px);
    height: 90px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background:
        repeating-linear-gradient(105deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 34px);
    opacity: .32;
}

.hero-shell {
    display: grid;
    min-height: min(900px, calc(100vh - 68px));
    align-items: center;
}

.hero-card {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-bottom: 0;
}

.hero-card::before,
.hero-card::after {
    position: absolute;
    pointer-events: none;
    content: "";
}

.hero-card::before {
    inset: auto 41% 7.5rem auto;
    width: 150px;
    height: 88px;
    border: 3px solid rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .18) transparent transparent rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: rotate(22deg);
}

.hero-card::after {
    right: 3rem;
    top: 4.5rem;
    width: 130px;
    height: 170px;
    border: 2px solid rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .14) rgba(255, 255, 255, .14) transparent transparent;
    border-radius: 999px;
    transform: rotate(-24deg);
}

.hero-card-main {
    position: relative;
    z-index: 1;
    align-items: center;
    min-width: 0;
    padding: clamp(3.2rem, 5.2vw, 5.2rem) 0 clamp(1.4rem, 3vw, 2.4rem);
}

.hero-copy {
    color: #fff;
    min-width: 0;
    max-width: 100%;
}

.hero-card-main > * {
    min-width: 0;
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--amber-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 34px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow-dark {
    color: #fbbf24;
}

.hero .eyebrow {
    color: #fbbf24;
}

.hero h1,
.subhero h1,
.thanks-screen h1 {
    margin-top: 1rem;
    max-width: 720px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 850;
    line-height: .98;
    letter-spacing: 0;
}

.hero h1 {
    color: #fff;
    max-width: 780px;
    font-size: clamp(2.8rem, 5.8vw, 5rem);
    line-height: .94;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-lead {
    margin-top: 1.5rem;
    max-width: 700px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.08rem, 2vw, 1.42rem);
    line-height: 1.55;
}

.hero-note {
    margin-top: 1.25rem;
    max-width: 640px;
    color: rgba(226, 232, 240, .82);
    font-size: 1rem;
    line-height: 1.7;
}

.hero .btn-secondary {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    backdrop-filter: blur(14px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, .22);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2.1rem;
}

.hero-showcase {
    position: relative;
    min-height: 520px;
    align-self: center;
    color: var(--ink);
    min-width: 0;
}

.showcase-card {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.showcase-card-main {
    inset: 4% 7% auto 6%;
    padding: clamp(1.1rem, 2vw, 1.45rem);
}

.showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.showcase-head span,
.showcase-head strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 850;
    padding: .35rem .62rem;
}

.showcase-head span {
    background: #f4f4f5;
    color: var(--ink-soft);
}

.showcase-head strong {
    background: #dcfce7;
    color: #166534;
}

.showcase-search {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 750;
    padding: .9rem 1rem;
}

.showcase-lines {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
}

.showcase-lines div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: #fafafa;
    color: var(--ink-soft);
    padding: .82rem .9rem;
}

.showcase-lines span {
    min-width: 0;
    font-size: .9rem;
    font-weight: 750;
}

.showcase-lines strong {
    flex: 0 0 auto;
    color: var(--ink);
    font-weight: 850;
}

.showcase-card-stock,
.showcase-card-docs {
    display: flex;
    align-items: center;
    gap: .85rem;
    width: min(52%, 290px);
    padding: 1rem;
}

.showcase-card-stock {
    left: 0;
    bottom: 20%;
}

.showcase-card-docs {
    right: 2%;
    bottom: 10%;
}

.showcase-card-metric {
    right: 0;
    top: 4%;
    width: min(40%, 220px);
    background: rgba(17, 24, 39, .82);
    color: #fff;
    padding: 1rem;
}

.showcase-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: var(--radius);
    background: #fffbeb;
    color: var(--amber-dark);
}

.showcase-card strong,
.showcase-card small,
.showcase-card-metric span {
    display: block;
}

.showcase-card strong {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 850;
}

.showcase-card small {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.35;
}

.showcase-card-metric span {
    color: rgba(255, 255, 255, .7);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.showcase-card-metric strong {
    margin-top: .45rem;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.showcase-card-metric small {
    color: rgba(255, 255, 255, .76);
}

.hero-panel {
    position: relative;
    align-self: center;
    justify-self: center;
    width: min(100%, 360px);
    color: var(--ink);
}

.hero-panel::before {
    display: none;
    content: none;
}

.hero-phone {
    position: relative;
    overflow: hidden;
    border: 10px solid rgba(15, 23, 42, .96);
    border-radius: 34px;
    background: rgba(248, 250, 252, .96);
    transform: rotate(-1.2deg);
    box-shadow: 0 38px 90px rgba(0, 0, 0, .34);
    padding: 1rem;
}

.hero-phone::before {
    display: block;
    width: 86px;
    height: 5px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: #111827;
    content: "";
}

.hero-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-weight: 850;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    padding: .78rem .9rem;
}

.hero-phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .8rem;
}

.hero-phone-grid article,
.hero-request-card,
.hero-status-list {
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 24, 39, .06);
}

.hero-phone-grid article {
    padding: .9rem;
}

.hero-phone-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 14px;
    background: #fffbeb;
    color: var(--amber-dark);
}

.hero-phone-grid strong,
.hero-phone-grid small {
    display: block;
}

.hero-phone-grid strong {
    margin-top: .65rem;
    font-size: 1.15rem;
    font-weight: 850;
}

.hero-phone-grid small {
    margin-top: .2rem;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 700;
}

.hero-request-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .8rem;
    padding: 1rem;
}

.hero-request-card span,
.hero-request-card strong {
    display: block;
}

.hero-request-card span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
}

.hero-request-card strong {
    margin-top: .2rem;
    font-size: 1.25rem;
    font-weight: 850;
}

.hero-request-card em {
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-size: .72rem;
    font-style: normal;
    font-weight: 850;
    padding: .4rem .6rem;
}

.hero-status-list {
    display: grid;
    gap: .55rem;
    margin-top: .8rem;
    padding: 1rem;
}

.hero-status-list span {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--ink-soft);
    font-size: .84rem;
    font-weight: 750;
}

.hero-stat-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(15, 23, 42, .72);
    color: #fff;
    box-shadow: 0 24px 62px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.hero-stat-strip div {
    min-height: 86px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    padding: 1.05rem clamp(.9rem, 2vw, 1.55rem);
}

.hero-stat-strip div:first-child {
    border-left: 0;
}

.hero-stat-strip strong,
.hero-stat-strip span {
    display: block;
}

.hero-stat-strip strong {
    font-size: clamp(1.15rem, 2.25vw, 1.9rem);
    font-weight: 850;
    line-height: 1;
}

.hero-stat-strip span {
    margin-top: .35rem;
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
    font-weight: 700;
}

.simple-hero {
    background: #f6f7f9;
    padding: clamp(1.8rem, 4vw, 3.2rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.simple-hero-card {
    position: relative;
    display: grid;
    min-height: clamp(430px, 62vw, 640px);
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--radius);
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .12);
}

.simple-hero-card::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, .76), rgba(248, 250, 252, .16) 42%, rgba(17, 24, 39, .54)),
        linear-gradient(90deg, rgba(248, 250, 252, .58), rgba(255, 255, 255, .22), rgba(248, 250, 252, .52));
    content: "";
}

.simple-hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    padding: clamp(2rem, 6vw, 4rem) 1rem;
    color: var(--ink);
    text-align: center;
}

.simple-hero-content .eyebrow {
    color: #374151;
}

.simple-hero-content .eyebrow::before {
    display: none;
}

.simple-hero h1 {
    margin-top: 1rem;
    color: var(--ink);
    font-size: clamp(2.25rem, 6.4vw, 5.15rem);
    font-weight: 850;
    line-height: .95;
    letter-spacing: 0;
    text-wrap: balance;
}

.simple-hero p {
    margin: 1.1rem auto 0;
    max-width: 610px;
    color: #374151;
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.65;
}

.simple-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.65rem;
}

.simple-hero-actions .btn-secondary {
    border-color: rgba(17, 24, 39, .12);
    background: rgba(255, 255, 255, .86);
    color: var(--ink);
    backdrop-filter: blur(14px);
}

.simple-stats {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.simple-stats div,
.simple-info-card,
.simple-step,
.simple-category {
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .06);
}

.simple-stats div {
    min-height: 92px;
    padding: 1.05rem 1.15rem;
}

.simple-stats strong,
.simple-stats span {
    display: block;
}

.simple-stats strong {
    color: var(--ink);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 850;
    line-height: 1;
}

.simple-stats span {
    margin-top: .4rem;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.simple-section {
    background: #fff;
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.simple-section-muted {
    background: #f6f7f9;
}

.simple-section-head {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    align-items: end;
    margin-bottom: 2rem;
}

.simple-section-head h2 {
    margin-top: .7rem;
    color: var(--ink);
    font-size: clamp(2rem, 4.4vw, 4rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.simple-section-head p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

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

.simple-info-card {
    min-height: 250px;
    padding: 1.35rem;
}

.simple-info-card h3,
.simple-step h3 {
    margin-top: 1rem;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.2;
}

.simple-info-card p,
.simple-step p {
    margin-top: .7rem;
    color: var(--muted);
    line-height: 1.65;
}

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

.simple-step {
    min-height: 220px;
    padding: 1.35rem;
}

.simple-step > span {
    color: var(--amber-dark);
    font-size: .82rem;
    font-weight: 850;
}

.simple-category-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-category {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink);
    font-weight: 850;
    padding: 1rem 1.1rem;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.simple-category:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.simple-category svg {
    color: var(--amber-dark);
}

.panel-label {
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.metric {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: .9rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 1rem;
}

.metric strong {
    color: #fff;
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.metric span {
    color: #d4d4d8;
    font-size: .92rem;
    line-height: 1.45;
}

.section {
    padding: 5.5rem 0;
}

.section-clean {
    background: #fff;
}

.section-muted {
    background: #f1f5f9;
}

.section-process {
    background: #111827;
    color: #fff;
}

.section-heading {
    max-width: 760px;
}

.section-heading p,
.section-title + p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.section-title {
    margin-top: .8rem;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.55rem);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: 0;
}

.section-process .section-title {
    color: #fff;
}

.feature-card,
.direction-card,
.lead-form,
.info-panel,
.contact-card,
.process-card,
.category-card,
.map-placeholder {
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}

.feature-card {
    min-height: 215px;
    padding: 1.25rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card-clean {
    min-height: 190px;
}

.feature-card:hover,
.category-card:hover,
.direction-card:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-card h2,
.feature-card h3,
.direction-card h2,
.info-panel h3 {
    margin-top: 1.1rem;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.28;
}

.feature-card p {
    margin-top: .75rem;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.62;
}

.icon-box {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius);
    background: #fff7ed;
    color: var(--amber-dark);
}

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

.tag-grid span,
.direction-items span {
    display: flex;
    min-height: 48px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
    padding: .75rem .9rem;
}

.category-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.category-card {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink);
    font-weight: 800;
    padding: 1.1rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.category-card svg {
    color: var(--amber-dark);
}

.process-grid {
    display: grid;
    gap: .85rem;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.process-card {
    min-height: 150px;
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    box-shadow: none;
    padding: 1.15rem;
}

.process-card span {
    color: #fbbf24;
    font-size: .8rem;
    font-weight: 850;
}

.process-card h3 {
    margin-top: 1.7rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.38;
}

.sticky-story {
    position: relative;
    overflow: clip;
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 12%, #e5e7eb 100%);
}

.sticky-story-track {
    min-height: 460vh;
}

.sticky-story-pin {
    position: sticky;
    top: 68px;
    display: grid;
    min-height: calc(100vh - 68px);
    align-content: center;
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.sticky-story-head {
    max-width: 850px;
}

.sticky-story-head p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.sticky-story-grid {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
    align-items: center;
    margin-top: clamp(2rem, 4vw, 3.2rem);
}

.sticky-story-visual {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(145deg, #111827 0%, #1f2937 58%, #0f172a 100%);
    background-size: 34px 34px, 34px 34px, auto;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .18);
}

.story-depth-layer {
    position: absolute;
    pointer-events: none;
}

.story-depth-back {
    inset: 14% 11% auto auto;
    width: 68%;
    height: 58%;
    border: 1px solid rgba(255, 255, 255, .13);
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .09) 0 1px, transparent 1px 30px);
    transform: rotate(-8deg);
}

.story-depth-front {
    left: -8%;
    bottom: 13%;
    width: 72%;
    height: 98px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background:
        repeating-linear-gradient(105deg, rgba(245, 158, 11, .2) 0 2px, transparent 2px 32px);
    transform: rotate(5deg);
}

.sticky-story-orbit {
    position: absolute;
    width: min(80%, 500px);
    height: min(60%, 320px);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    transform: rotate(-7deg);
}

.sticky-story-orbit::before,
.sticky-story-orbit::after {
    position: absolute;
    content: "";
}

.sticky-story-orbit::before {
    inset: 14%;
    border: 1px dashed rgba(255, 255, 255, .14);
    border-radius: var(--radius);
}

.sticky-story-orbit::after {
    left: 12%;
    right: 12%;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, .18);
    transform: rotate(11deg);
}

.sticky-story-device,
.story-stage-panel {
    position: relative;
    z-index: 1;
    width: min(78%, 360px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 34px 80px rgba(0, 0, 0, .28);
    padding: 1.15rem;
}

.story-stage-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .94));
}

.story-device-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 850;
}

.story-device-icon {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: var(--radius);
    background: #fffbeb;
    color: var(--amber-dark);
    box-shadow: inset 0 0 0 1px rgba(245, 158, 11, .12);
}

.story-device-icon svg {
    width: 2.35rem;
    height: 2.35rem;
    stroke-width: 2.2;
}

.sticky-story-device strong,
.story-stage-panel strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 850;
    line-height: 1;
}

.story-stage-core {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.story-stage-list {
    display: grid;
    gap: .55rem;
    margin-top: 1.35rem;
}

.story-stage-list span {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(228, 228, 231, .88);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink-soft);
    font-size: .82rem;
    font-weight: 750;
    padding: .62rem .72rem;
}

.story-stage-list svg {
    color: var(--green);
}

.story-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
    margin-top: 2rem;
}

.story-progress span {
    height: 6px;
    border-radius: 999px;
    background: #e4e4e7;
    transition: background .35s ease, transform .35s ease;
}

.story-progress span.active {
    background: var(--amber);
    transform: scaleY(1.35);
}

.sticky-story-copy {
    position: relative;
    min-height: 430px;
}

.story-step {
    border: 1px solid rgba(228, 228, 231, .95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 22px 58px rgba(17, 24, 39, .09);
    padding: clamp(1.35rem, 3vw, 2rem);
    transition: opacity .42s ease, transform .42s ease, border-color .42s ease;
}

.js-enabled .story-step {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(26px) scale(.98);
}

.js-enabled .story-step.active {
    border-color: rgba(245, 158, 11, .45);
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.story-step > span {
    color: var(--amber-dark);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.story-step h3 {
    margin-top: .8rem;
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    font-weight: 850;
    line-height: 1.02;
}

.story-step p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.story-step ul {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.4rem;
}

.story-step li {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 999px;
    background: #fafafa;
    color: var(--ink-soft);
    font-size: .86rem;
    font-weight: 750;
    padding: .55rem .72rem;
}

.story-step li svg {
    color: var(--green);
}

.section-products {
    background: #f6f7fb;
    padding-top: clamp(1.35rem, 4vw, 2.2rem);
}

.price-note {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-top: 1.5rem;
    max-width: 940px;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    background: #fffbeb;
    color: #854d0e;
    font-size: .95rem;
    font-weight: 650;
    line-height: 1.55;
    padding: 1rem;
}

.price-note svg {
    margin-top: .1rem;
}

.catalog-browser {
    margin-top: 0;
}

.catalog-browser.is-deep {
    scroll-margin-top: 88px;
}

.catalog-browser-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.catalog-browser-head > div {
    min-width: 0;
}

.catalog-browser-head h2 {
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 850;
    line-height: 1.05;
}

.catalog-browser-head p {
    margin-top: .45rem;
    max-width: 680px;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

.catalog-browser-back,
.catalog-browser-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 40px;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 999px;
    background: #fff;
    color: var(--amber-dark);
    font-size: .86rem;
    font-weight: 850;
    padding: .55rem .8rem;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.catalog-browser-back:hover,
.catalog-browser-reset:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: 0 16px 34px rgba(17, 24, 39, .1);
    transform: translateY(-1px);
}

.site-search[hidden] {
    display: none;
}

.is-search-open {
    overflow: hidden;
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: start center;
    padding: clamp(.8rem, 5vw, 3rem);
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, .56);
    backdrop-filter: blur(12px);
}

.site-search-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: min(720px, calc(100vh - 2rem));
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 24px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 34px 90px rgba(17, 24, 39, .28);
}

.site-search-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .65rem;
    border-bottom: 1px solid var(--line);
    padding: .85rem;
}

.site-search-field {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 54px;
    border: 1px solid #d4d4d8;
    border-radius: 16px;
    background: #fff;
    color: var(--muted);
    padding: 0 .95rem;
}

.site-search-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    outline: none;
}

.site-search-close {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid #d4d4d8;
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
}

.site-search-results {
    display: grid;
    gap: .45rem;
    max-height: min(590px, calc(100vh - 8rem));
    overflow-y: auto;
    padding: .85rem;
}

.site-search-results > p {
    border-radius: var(--radius);
    background: #fafafa;
    color: var(--muted);
    line-height: 1.55;
    padding: 1rem;
}

.site-search-result {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: .75rem;
    border: 1px solid rgba(228, 228, 231, .88);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    min-height: 76px;
    padding: .55rem .75rem;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.site-search-result:hover {
    border-color: rgba(245, 158, 11, .55);
    background: #fffbeb;
    transform: translateY(-1px);
}

.site-search-thumb {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: #f8fafc;
    color: var(--muted);
}

.site-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .28rem;
}

.site-search-copy {
    display: grid;
    min-width: 0;
    gap: .14rem;
}

.site-search-type {
    color: var(--amber-dark);
    font-size: .7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.site-search-result strong {
    font-size: .98rem;
    font-weight: 850;
    line-height: 1.25;
}

.site-search-result small {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.site-search-loading {
    border-radius: var(--radius);
    background: #fffbeb;
    color: var(--amber-dark);
    font-size: .9rem;
    font-weight: 850;
    padding: .85rem .95rem;
}

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

.catalog-category-card {
    position: relative;
    isolation: isolate;
    min-height: 132px;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #111827;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .08);
    text-align: left;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.catalog-subcategory-card {
    min-height: 118px;
}

.catalog-category-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        linear-gradient(180deg, rgba(17, 24, 39, .08), rgba(17, 24, 39, .68)),
        radial-gradient(circle at 20% 0%, rgba(245, 158, 11, .22), transparent 34%);
}

.catalog-category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: saturate(.9) contrast(1.04);
    transition: transform .35s ease, opacity .35s ease;
}

.catalog-category-card:hover,
.catalog-category-card.active {
    border-color: rgba(245, 158, 11, .7);
    box-shadow: 0 22px 52px rgba(17, 24, 39, .16);
    transform: translateY(-2px);
}

.catalog-category-card:hover img,
.catalog-category-card.active img {
    opacity: .84;
    transform: scale(1.04);
}

.catalog-category-card.active:not(.has-children)::before {
    position: absolute;
    right: .65rem;
    top: .65rem;
    z-index: 2;
    width: .7rem;
    height: .7rem;
    border-radius: 999px;
    background: var(--amber);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, .22);
    content: "";
}

.catalog-category-card.has-children::before {
    position: absolute;
    right: .65rem;
    top: .65rem;
    z-index: 2;
    display: grid;
    width: 1.75rem;
    height: 1.75rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    content: "›";
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .18);
}

.catalog-category-card-overlay {
    position: absolute;
    inset: auto .8rem .8rem .8rem;
    z-index: 1;
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.catalog-category-card-overlay strong,
.catalog-category-card-overlay small {
    display: block;
}

.catalog-category-card-overlay strong {
    font-size: clamp(.95rem, 2vw, 1.12rem);
    font-weight: 850;
    line-height: 1.1;
}

.catalog-category-card-overlay small {
    margin-top: .22rem;
    color: rgba(255, 255, 255, .78);
    font-size: .75rem;
    font-weight: 800;
}

.catalog-category-card-fallback {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #111827, #374151);
    color: rgba(255, 255, 255, .24);
    font-size: 3rem;
}

.product-layout {
    display: grid;
    gap: 1.1rem;
}

.product-main {
    min-width: 0;
}

.product-toolbar {
    display: grid;
    gap: .75rem;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 45px rgba(17, 24, 39, .07);
    padding: .9rem;
    backdrop-filter: blur(18px);
}

.product-search {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 52px;
    border: 1px solid #d4d4d8;
    border-radius: 14px;
    background: #fff;
    color: var(--muted);
    padding: 0 .9rem;
}

.product-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 650;
    outline: none;
}

.product-select span {
    display: block;
    margin-bottom: .35rem;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.product-select select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d4d4d8;
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    outline: none;
    padding: 0 .85rem;
}

.product-search:focus-within,
.product-select select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .16);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}

.product-meta button,
.request-panel-head button {
    color: var(--amber-dark);
    font-size: .86rem;
    font-weight: 850;
}

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

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    contain: layout paint;
    gap: 0;
    border: 1px solid rgba(228, 228, 231, .92);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .055);
    padding: 0;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    border-color: rgba(245, 158, 11, .55);
    box-shadow: 0 22px 54px rgba(17, 24, 39, .12);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    display: grid;
    aspect-ratio: 1.05 / 1;
    width: 100%;
    min-width: 0;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 20%, rgba(245, 158, 11, .08), transparent 38%),
        linear-gradient(180deg, #fff, #fafafa);
}

.product-image img {
    position: absolute;
    inset: .7rem;
    display: block;
    width: calc(100% - 1.4rem);
    height: calc(100% - 1.4rem);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
}

.product-image-placeholder {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: var(--radius);
    background: #f4f4f5;
    color: #a1a1aa;
    font-size: 1.55rem;
}

.stock-badge {
    position: absolute;
    left: .65rem;
    top: .65rem;
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: .7rem;
    font-weight: 850;
    line-height: 1;
    padding: .36rem .5rem;
}

.product-card-body {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: .58rem;
    min-width: 0;
    padding: .85rem;
}

.product-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
}

.product-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #52525b;
    font-size: .68rem;
    font-weight: 850;
    line-height: 1.1;
    padding: .34rem .48rem;
}

.product-card h3 {
    color: var(--ink);
    display: -webkit-box;
    overflow: hidden;
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.28;
    min-height: 3.7em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-card h3 a {
    color: inherit;
}

.product-section {
    color: var(--muted);
    display: -webkit-box;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.35;
    min-height: 2.1em;
    overflow: hidden;
    text-transform: uppercase;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .15rem;
}

.product-price strong {
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 850;
    line-height: 1;
}

.product-price span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.product-card .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 42px;
    border-radius: 14px;
    overflow: hidden;
    padding: .65rem .7rem;
    font-size: .84rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.product-card .btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .btn.is-added {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .2);
}

.product-empty {
    grid-column: 1 / -1;
    display: grid;
    min-height: 180px;
    place-items: center;
    border: 1px dashed #d4d4d8;
    border-radius: var(--radius);
    background: #fafafa;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}

.product-empty strong,
.product-empty span {
    display: block;
}

.product-empty strong {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 850;
}

.product-empty span {
    margin-top: .35rem;
    line-height: 1.5;
}

.request-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .08);
    padding: 1rem;
    min-width: 0;
}

.request-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.request-panel-toggle {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
    color: inherit;
    text-align: left;
}

.request-panel-head .request-panel-toggle {
    color: var(--ink);
    font-size: inherit;
    font-weight: inherit;
}

.request-panel-toggle svg {
    display: none;
    flex: 0 0 auto;
    margin-top: .25rem;
    transition: transform .24s ease;
}

.request-panel-title span,
.request-panel-title strong {
    display: block;
}

.request-panel-title span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.request-panel-title strong {
    margin-top: .25rem;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 850;
}

.request-list {
    display: grid;
    gap: .7rem;
    margin: 1rem 0;
}

.request-list > p {
    border-radius: var(--radius);
    background: #fafafa;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
    padding: .9rem;
}

.request-item {
    display: grid;
    gap: .65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafafa;
    padding: .8rem;
}

.request-item strong {
    color: var(--ink);
    font-size: .9rem;
    line-height: 1.35;
}

.request-item small {
    display: block;
    margin-top: .2rem;
    color: var(--muted);
}

.request-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .45rem;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.qty-control button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    font-weight: 850;
}

.qty-control span {
    min-width: 42px;
    color: var(--ink);
    font-weight: 850;
    text-align: center;
}

.request-remove {
    color: #b91c1c;
    font-size: .82rem;
    font-weight: 850;
}

.request-total {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: .95rem;
    font-weight: 850;
    margin: 1rem 0;
    padding-top: 1rem;
}

.product-detail-hero {
    background: #f6f7fb;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 750;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--ink-soft);
}

.breadcrumbs a:hover {
    color: var(--amber-dark);
}

.product-detail-grid {
    display: grid;
    gap: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .95);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 24, 39, .1);
    padding: clamp(.7rem, 2vw, 1rem);
}

.product-detail-media {
    position: relative;
    display: grid;
    min-height: 320px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 18%, rgba(245, 158, 11, .1), transparent 36%),
        linear-gradient(180deg, #fff, #fafafa);
}

.product-detail-media img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    padding: clamp(1rem, 4vw, 2.4rem);
}

.product-detail-placeholder {
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    border-radius: 22px;
    background: #f4f4f5;
    color: #a1a1aa;
    font-size: 2.6rem;
}

.product-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(.6rem, 3vw, 2rem);
}

.product-detail-content h1 {
    margin-top: 1rem;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 850;
    line-height: .98;
    text-wrap: balance;
}

.product-detail-section {
    margin-top: .9rem;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.55;
    text-transform: uppercase;
}

.product-detail-price {
    display: flex;
    align-items: flex-end;
    gap: .75rem;
    margin-top: 1.45rem;
}

.product-detail-price strong {
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 850;
    line-height: 1;
}

.product-detail-price span {
    color: var(--muted);
    font-weight: 800;
    padding-bottom: .24rem;
}

.product-detail-note {
    margin-top: 1rem;
    max-width: 620px;
    border: 1px solid #fde68a;
    border-radius: var(--radius);
    background: #fffbeb;
    color: #854d0e;
    font-size: .95rem;
    font-weight: 650;
    line-height: 1.55;
    padding: .9rem;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin-top: 1.35rem;
}

.product-specs div {
    min-width: 0;
    border: 1px solid rgba(228, 228, 231, .95);
    border-radius: var(--radius);
    background: #fafafa;
    padding: .78rem;
}

.product-specs dt {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.product-specs dd {
    margin-top: .22rem;
    color: var(--ink);
    font-size: .95rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.product-copy {
    display: grid;
    gap: 1rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.25rem;
}

.cta-band {
    background: var(--ink);
    color: #fff;
}

.cta-band h2 {
    margin-top: .75rem;
    max-width: 760px;
    font-size: clamp(1.85rem, 4vw, 3.4rem);
    font-weight: 850;
    line-height: 1.03;
}

.cta-band p {
    margin-top: 1rem;
    max-width: 720px;
    color: #d4d4d8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-request {
    background: #fff;
}

.lead-form {
    padding: 1rem;
}

.field span {
    display: block;
    margin-bottom: .45rem;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 800;
}

.field input,
.field textarea,
.admin-field input,
.admin-field select,
.admin-field textarea {
    width: 100%;
    border: 1px solid #d4d4d8;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    outline: none;
    padding: .85rem .95rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea,
.admin-field textarea {
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .16);
}

.field-error {
    margin-top: .4rem;
    color: #b91c1c;
    font-size: .82rem;
    line-height: 1.35;
}

.form-alert {
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: #fef2f2;
    color: #991b1b;
    padding: .9rem 1rem;
    font-size: .92rem;
}

.file-field {
    display: flex;
    align-items: center;
    gap: .9rem;
    border: 1px dashed #a1a1aa;
    border-radius: var(--radius);
    background: #fafafa;
    cursor: pointer;
    padding: 1rem;
}

.file-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.file-field-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--radius);
    background: #fff7ed;
    color: var(--amber-dark);
}

.file-field strong,
.file-field small {
    display: block;
}

.file-field small {
    margin-top: .15rem;
    color: var(--muted);
}

.agreement {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.45;
}

.agreement input {
    margin-top: .2rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--amber);
}

.loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(17, 24, 39, .24);
    border-top-color: var(--ink);
    border-radius: 999px;
    animation: spin .75s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}

.check-row svg,
.clean-list svg {
    margin-top: .14rem;
    color: var(--green);
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem 1.15rem;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.faq-list p {
    margin-top: .8rem;
    color: var(--muted);
    line-height: 1.65;
}

.contact-card {
    display: grid;
    gap: .85rem;
    min-width: min(100%, 390px);
    padding: 1.1rem;
}

.contact-card a,
.contact-card span {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--ink);
    font-weight: 750;
    line-height: 1.35;
}

.contact-card svg {
    color: var(--amber-dark);
}

.contact-card-large {
    min-width: 0;
    padding: 1.25rem;
}

.pickup-panel {
    border: 1px solid rgba(228, 228, 231, .9);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.pickup-panel h2 {
    margin-top: .9rem;
    color: var(--ink);
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 850;
    line-height: 1.06;
}

.pickup-panel p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.subhero {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .96), rgba(39, 39, 42, .92)),
        url("../img/hero-fasteners.png") center / cover;
    color: #fff;
}

.subhero p {
    margin-top: 1.4rem;
    max-width: 720px;
    color: #e4e4e7;
    font-size: 1.12rem;
    line-height: 1.72;
}

.direction-card {
    padding: 1.2rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.direction-head {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.direction-head h2 {
    margin-top: 0;
}

.direction-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin-top: 1.25rem;
}

.info-panel {
    padding: 1.25rem;
}

.info-panel h3 {
    margin-top: 0;
}

.clean-list {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
}

.clean-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.map-placeholder {
    min-height: 330px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .88), rgba(17, 24, 39, .72)),
        url("../img/hero-fasteners.png") center / cover;
    color: #fff;
    padding: 2rem;
}

.map-placeholder div {
    max-width: 430px;
}

.map-placeholder span,
.map-placeholder strong {
    display: block;
}

.map-placeholder span {
    color: #fbbf24;
    font-size: .8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.map-placeholder strong {
    margin-top: .8rem;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.thanks-screen {
    min-height: 64vh;
    display: grid;
    align-items: center;
}

.thanks-screen p {
    margin: 1.2rem auto 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.thanks-icon {
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: var(--radius);
    background: #dcfce7;
    color: #15803d;
    font-size: 1.45rem;
}

.site-footer {
    background: #111827;
    color: #fff;
}

.admin-body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-topbar {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.admin-main {
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.admin-login-card,
.admin-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.admin-login-card {
    width: min(100%, 430px);
    padding: 1.35rem;
}

.admin-field span {
    display: block;
    margin-bottom: .45rem;
    color: var(--ink);
    font-size: .84rem;
    font-weight: 800;
}

.admin-page-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-page-head h1 {
    margin-top: .5rem;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1;
}

.admin-page-head p {
    margin-top: .45rem;
    color: var(--muted);
}

.admin-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.admin-filter {
    display: grid;
    gap: .8rem;
    align-items: end;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 1rem;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .06);
}

.admin-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--line);
    padding: .9rem 1rem;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    background: #fafafa;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--ink-soft);
    font-size: .9rem;
}

.admin-table small {
    display: block;
    margin-top: .25rem;
    color: var(--muted);
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-link,
.admin-back {
    color: var(--amber-dark);
    font-weight: 800;
}

.admin-link:hover,
.admin-back:hover {
    color: #92400e;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: var(--radius);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1;
    padding: .45rem .62rem;
}

.badge-new {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-progress {
    background: #fff7ed;
    color: #c2410c;
}

.badge-invoice {
    background: #fef9c3;
    color: #a16207;
}

.badge-closed {
    background: #dcfce7;
    color: #15803d;
}

.badge-rejected {
    background: #fef2f2;
    color: #b91c1c;
}

.admin-card {
    padding: 1.2rem;
}

.admin-card h1,
.admin-card h2 {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 850;
    line-height: 1.15;
}

.admin-filter-products {
    grid-template-columns: 1fr;
}

.admin-thumb {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafafa;
    color: #a1a1aa;
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .25rem;
}

.admin-edit-image {
    display: grid;
    min-height: 280px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 20%, rgba(245, 158, 11, .08), transparent 38%),
        linear-gradient(180deg, #fff, #fafafa);
    color: #a1a1aa;
    font-size: 2.2rem;
}

.admin-edit-image img {
    width: 100%;
    height: 100%;
    max-height: 390px;
    object-fit: contain;
    padding: 1rem;
}

.admin-edit-image-wide {
    min-height: 220px;
}

.admin-edit-image-wide img {
    object-fit: cover;
    padding: 0;
}

.admin-checkbox {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--ink);
    font-weight: 750;
    line-height: 1.45;
}

.admin-checkbox input {
    margin-top: .15rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--amber);
}

.admin-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.admin-category-card {
    display: grid;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .06);
    padding: .85rem;
}

.admin-category-image {
    display: grid;
    min-height: 150px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111827;
    color: rgba(255, 255, 255, .36);
    font-size: 2rem;
}

.admin-category-image img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.admin-category-card h2 {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.2;
}

.admin-category-card p {
    margin-top: .25rem;
    color: var(--muted);
    font-size: .9rem;
}

.admin-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.admin-pagination span {
    color: var(--ink);
    font-weight: 850;
}

.btn.disabled {
    pointer-events: none;
    opacity: .45;
}

.lead-dl {
    display: grid;
    gap: .75rem;
}

.lead-dl div {
    display: grid;
    gap: .2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: .75rem;
}

.lead-dl dt {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lead-dl dd {
    color: var(--ink);
    font-weight: 700;
}

.lead-dl a {
    color: var(--amber-dark);
}

.lead-text-block {
    margin-top: 1.25rem;
}

.lead-text-block h3,
.manager-comments h3 {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 850;
    text-transform: uppercase;
}

.lead-text-block p {
    margin-top: .55rem;
    border-radius: var(--radius);
    background: #fafafa;
    color: var(--ink-soft);
    line-height: 1.65;
    padding: .9rem;
}

.file-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    padding: .8rem .9rem;
}

.file-link svg {
    color: var(--amber-dark);
}

.file-link span {
    font-weight: 800;
}

.file-link small {
    color: var(--muted);
}

.manager-comments {
    display: grid;
    gap: .8rem;
    margin-top: 1.5rem;
}

.manager-comments article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fafafa;
    padding: .9rem;
}

.manager-comments strong,
.manager-comments time {
    display: block;
}

.manager-comments strong {
    color: var(--ink);
    font-size: .9rem;
}

.manager-comments time {
    margin-top: .15rem;
    color: var(--muted);
    font-size: .78rem;
}

.manager-comments p {
    margin-top: .65rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.admin-notice {
    border-radius: var(--radius);
    padding: .9rem 1rem;
    font-weight: 700;
}

.admin-notice-success {
    background: #dcfce7;
    color: #166534;
}

.admin-notice-error {
    background: #fef2f2;
    color: #991b1b;
}

.footer-title {
    color: #fff;
    font-size: .9rem;
    font-weight: 850;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
}

.footer-links a,
.footer-links span {
    color: #d4d4d8;
    font-size: .92rem;
}

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

.footer-social {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    color: #fff;
}

.footer-social:hover {
    background: rgba(255, 255, 255, .08);
}

.footer-price-note {
    max-width: 620px;
    color: rgba(212, 212, 216, .72);
}

.app-bottom-nav {
    bottom: max(.75rem, env(safe-area-inset-bottom));
    align-items: center;
}

.app-bottom-nav-item {
    position: relative;
    min-width: 0;
    text-align: center;
}

.app-bottom-nav-item > span:last-child {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-bottom-nav-icon {
    flex: 0 0 auto;
}

.app-bottom-nav-icon svg {
    width: 1.12rem;
    height: 1.12rem;
    stroke-width: 2.35;
}

.app-bottom-nav-action:hover {
    transform: none;
}

.mobile-float-btn {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: none !important;
    min-height: 48px;
    align-items: center;
    gap: .55rem;
    border-radius: var(--radius);
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 16px 35px rgba(17, 24, 39, .22);
    font-size: .9rem;
    font-weight: 850;
    padding: .85rem 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mobile-menu-actions {
        grid-template-columns: 1.1fr .9fr .9fr;
    }

    .lead-form {
        padding: 1.4rem;
    }

    .product-toolbar {
        grid-template-columns: minmax(260px, 1fr) 210px 190px;
        align-items: end;
    }

    .product-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .catalog-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-filter {
        grid-template-columns: 180px minmax(240px, 1fr) auto auto;
    }
}

@media (min-width: 900px) {
    .header-phone {
        display: inline-flex;
    }
}

@media (min-width: 1120px) {
    .site-header-inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .site-header-inner .brand {
        justify-self: start;
    }

    .desktop-nav {
        display: flex;
        justify-self: center;
    }

    .desktop-nav a {
        width: 142px;
        justify-content: center;
        padding-right: .5rem;
        padding-left: .5rem;
    }

    .desktop-nav a span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-actions {
        justify-self: end;
        margin-left: 0;
    }

    .app-bottom-nav {
        display: none;
    }

    .hero-panel {
        justify-self: end;
    }

    .admin-page-head {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
    }

    .product-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        align-items: start;
    }

    .request-panel {
        position: sticky;
        top: 92px;
    }

    .catalog-category-grid,
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-detail-grid {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .product-detail-media {
        min-height: 560px;
    }

    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1119px) {
    body:not(.admin-body) {
        padding-bottom: 104px;
    }

    .brand small {
        font-size: .7rem;
    }
}

@media (max-width: 1023px) {
    .hero {
        min-height: auto;
    }

    .hero-shell {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(17, 24, 39, .92), rgba(17, 24, 39, .76) 54%, rgba(17, 24, 39, .88)),
            linear-gradient(90deg, rgba(17, 24, 39, .84), rgba(17, 24, 39, .38));
    }

    .hero-card::before,
    .hero-card::after {
        display: none;
    }

    .hero-card-main {
        padding: 3rem 0 1.4rem;
    }

    .hero-parallax {
        opacity: .24;
    }

    .hero-showcase {
        min-height: 430px;
    }

    .showcase-card-main {
        inset: 3% 0 auto 0;
    }

    .showcase-card-stock {
        left: 0;
        bottom: 18%;
    }

    .showcase-card-docs {
        right: 0;
        bottom: 7%;
    }

    .sticky-story {
        overflow: visible;
    }

    .sticky-story-track {
        min-height: auto;
    }

    .sticky-story-pin {
        position: relative;
        top: auto;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .sticky-story-grid {
        grid-template-columns: 1fr;
    }

    .sticky-story-visual {
        min-height: 320px;
    }

    .story-stage-panel {
        width: min(88%, 360px);
    }

    .sticky-story-copy {
        display: grid;
        gap: 1rem;
        min-height: 0;
    }

    .js-enabled .story-step {
        position: relative;
        inset: auto;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .simple-section-head,
    .simple-card-grid,
    .simple-steps,
    .simple-category-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .section {
        padding: 4rem 0;
    }

    .page-catalog .section-products {
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .page-catalog .product-layout {
        margin-top: .9rem !important;
    }

    .simple-hero {
        padding-top: 1rem;
    }

    .simple-hero-card {
        min-height: 520px;
    }

    .simple-hero-content {
        padding: 2rem .9rem;
    }

    .simple-hero h1 {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1;
    }

    .simple-hero p {
        max-width: 310px;
        font-size: .98rem;
        line-height: 1.55;
    }

    .simple-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .simple-section-head h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .header-phone {
        justify-content: center;
        width: 44px;
        flex: 0 0 44px;
        padding: .48rem;
    }

    .header-phone span {
        display: none;
    }

    .tag-grid,
    .direction-items {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .subhero h1,
    .thanks-screen h1 {
        font-size: clamp(1.9rem, 8.8vw, 2.45rem);
        line-height: 1.02;
    }

    .hero-parallax {
        display: none;
    }

    .hero-showcase {
        display: grid;
        gap: .85rem;
        min-height: 0;
        margin-top: .5rem;
    }

    .showcase-card {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none !important;
    }

    .showcase-card-main {
        order: 1;
    }

    .showcase-card-metric {
        order: 2;
    }

    .showcase-card-stock,
    .showcase-card-docs {
        order: 3;
    }

    .showcase-card-stock,
    .showcase-card-docs {
        width: 100%;
    }

    .hero-panel {
        max-width: none;
    }

    .hero-phone {
        border-width: 8px;
        border-radius: 28px;
        transform: none;
    }

    .hero-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stat-strip div:nth-child(odd) {
        border-left: 0;
    }

    .metric {
        grid-template-columns: 5rem 1fr;
    }

    .page-catalog .request-panel {
        position: fixed;
        left: 50%;
        right: auto;
        bottom: calc(max(.75rem, env(safe-area-inset-bottom)) + 78px);
        z-index: 68;
        width: min(430px, calc(100vw - 1rem));
        max-height: calc(100dvh - 7.8rem);
        border-radius: 22px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 18px 52px rgba(17, 24, 39, .22);
        padding: .45rem;
        transform: translateX(-50%);
        backdrop-filter: blur(18px);
        transition: opacity .2s ease, box-shadow .24s ease, transform .28s ease;
    }

    .page-catalog .request-panel.is-collapsed {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, calc(100% + .65rem));
    }

    .page-catalog .request-panel-head {
        align-items: center;
        gap: .45rem;
    }

    .page-catalog .request-panel-toggle {
        align-items: center;
        border-radius: 18px;
        padding: .58rem .68rem;
    }

    .page-catalog .request-panel-toggle svg {
        display: block;
        width: 1.1rem;
        height: 1.1rem;
        color: var(--ink);
    }

    .page-catalog .request-panel:not(.is-collapsed) .request-panel-toggle svg {
        transform: rotate(180deg);
    }

    .page-catalog .request-panel-title span {
        font-size: .66rem;
    }

    .page-catalog .request-panel-title strong {
        margin-top: .14rem;
        font-size: .98rem;
    }

    .page-catalog .request-panel-head [data-request-clear] {
        min-height: 36px;
        border-radius: 14px;
        background: #f4f4f5;
        color: var(--ink-soft);
        font-size: .72rem;
        padding: 0 .65rem;
    }

    .page-catalog .request-panel-body {
        max-height: min(60vh, 520px);
        overflow: hidden;
        opacity: 1;
        transform: translateY(0);
        transition: max-height .28s ease, opacity .2s ease, transform .28s ease;
    }

    .page-catalog .request-panel.is-collapsed .request-panel-body {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    .page-catalog .request-panel .request-list {
        max-height: min(38vh, 330px);
        overflow-y: auto;
        overscroll-behavior: contain;
        margin: .45rem 0;
        padding-right: .1rem;
    }

    .page-catalog .request-panel .request-list > p,
    .page-catalog .request-panel .request-item {
        border-radius: 16px;
    }

    .page-catalog .request-panel .request-total {
        margin: .55rem 0;
        padding-top: .65rem;
        font-size: .82rem;
    }
}

@media (max-width: 480px) {
    .site-header-inner {
        gap: .55rem;
        min-height: 62px;
        padding-left: .85rem;
        padding-right: .85rem;
    }

    .brand {
        gap: .55rem;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 9px;
        padding: .28rem;
    }

    .brand strong {
        font-size: .98rem;
    }

    .site-header .brand-copy {
        display: block;
    }

    .site-header .brand small {
        display: none;
    }

    .header-phone {
        min-height: 44px;
        gap: .32rem;
        font-size: .78rem;
    }

    .catalog-browser.is-deep .catalog-browser-head {
        top: 62px;
    }

    .app-bottom-nav {
        left: 50% !important;
        right: auto !important;
        width: min(430px, calc(100vw - 1rem)) !important;
        max-width: calc(100vw - 1rem) !important;
        transform: translateX(-50%) !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: .2rem;
        border-radius: 22px;
        padding: .32rem;
    }

    .app-bottom-nav-item {
        min-height: 56px;
        border-radius: 18px;
        padding-left: .1rem;
        padding-right: .1rem;
        font-size: .64rem;
    }

    .app-bottom-nav-icon {
        width: 1.9rem;
        height: 1.9rem;
        border-radius: 14px;
    }

    .app-bottom-nav-icon svg {
        width: 1.05rem;
        height: 1.05rem;
    }

    .hero-card {
        border-radius: 0;
    }

    .hero-card-main {
        padding: 2.2rem 0 1.2rem;
    }

    .hero h1,
    .subhero h1,
    .thanks-screen h1 {
        font-size: clamp(1.75rem, 8.2vw, 2.15rem);
    }

    .sticky-story-device,
    .story-stage-panel {
        width: min(88%, 320px);
    }

    .story-step h3 {
        font-size: clamp(1.55rem, 9vw, 2.3rem);
    }
}

@media (max-width: 640px) {
    .page-catalog .subhero h1,
    .page-catalog .section-title {
        max-width: min(100%, 22rem);
        font-size: clamp(2rem, 9vw, 2.55rem);
        line-height: 1.02;
        overflow-wrap: break-word;
        text-wrap: balance;
    }

    .page-catalog .subhero p,
    .page-catalog .section-heading p {
        max-width: min(100%, 22rem);
        font-size: .95rem;
        line-height: 1.65;
    }

    .site-header .brand-copy {
        display: block;
    }

    .site-header .brand small {
        display: none;
    }

    .site-header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .site-header-inner .brand {
        min-width: 0;
        overflow: hidden;
    }

    .header-actions {
        margin-left: 0;
    }

    .app-bottom-nav {
        left: 50% !important;
        right: auto !important;
        width: calc(100vw - 1rem) !important;
        max-width: calc(100vw - 1rem) !important;
        transform: translateX(-50%) !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        align-items: center !important;
        gap: .15rem;
    }

    .site-search {
        align-items: start;
        padding: .55rem;
    }

    .site-search-panel {
        border-radius: 20px;
    }

    .site-search-head {
        gap: .45rem;
        padding: .55rem;
    }

    .site-search-field,
    .site-search-close {
        min-height: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .site-search-field input {
        font-size: .9rem;
    }

    .site-search-result {
        grid-template-columns: 50px minmax(0, 1fr);
        min-height: 68px;
        gap: .6rem;
        padding: .48rem .55rem;
    }

    .site-search-thumb {
        width: 50px;
        height: 50px;
    }

    .site-search-result strong {
        font-size: .9rem;
    }

    .site-search-result small {
        font-size: .76rem;
    }

    .app-bottom-nav-item {
        min-width: 0;
        padding-left: .05rem;
        padding-right: .05rem;
    }

    .section-products {
        padding-top: 1rem;
    }

    .product-toolbar {
        border-radius: 16px;
        gap: .65rem;
        padding: .75rem;
    }

    .product-search,
    .product-select select {
        min-height: 46px;
        border-radius: 13px;
    }

    .product-search input,
    .product-select select {
        font-size: .9rem;
    }

    .product-select span {
        font-size: .68rem;
    }

    .product-meta {
        font-size: .82rem;
    }

    .catalog-browser-head {
        align-items: flex-start;
        flex-direction: column;
        gap: .45rem;
    }

    .catalog-browser.is-deep .catalog-browser-head {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        position: sticky;
        top: 68px;
        z-index: 7;
        gap: .45rem;
        width: 100vw;
        margin: 0 calc(50% - 50vw) .65rem;
        border: 1px solid rgba(228, 228, 231, .9);
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
        padding: .45rem 1rem;
        backdrop-filter: blur(18px);
    }

    .catalog-browser.is-deep .catalog-browser-head .eyebrow,
    .catalog-browser.is-deep .catalog-browser-head p,
    .catalog-browser.is-deep .catalog-browser-reset {
        display: none;
    }

    .catalog-browser.is-deep .catalog-browser-head h2 {
        overflow: hidden;
        font-size: .9rem;
        line-height: 1.18;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .catalog-browser-back,
    .catalog-browser-reset {
        min-height: 34px;
        font-size: .76rem;
        padding: .42rem .62rem;
    }

    .catalog-browser.is-deep .catalog-browser-back {
        border-radius: 0;
        background: var(--ink);
        color: #fff;
        box-shadow: 0 12px 24px rgba(17, 24, 39, .14);
    }

    .catalog-category-grid {
        gap: .55rem;
    }

    .catalog-category-card {
        min-height: 108px;
        border-radius: 16px;
    }

    .catalog-category-card.has-children::before {
        right: .5rem;
        top: .5rem;
        width: 1.55rem;
        height: 1.55rem;
        font-size: 1.15rem;
    }

    .catalog-category-card-overlay {
        inset: auto .62rem .62rem .62rem;
    }

    .catalog-category-card-overlay strong {
        font-size: .78rem;
    }

    .catalog-category-card-overlay small {
        font-size: .62rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
        align-items: stretch;
    }

    .product-card {
        grid-template-rows: 128px 1fr;
        min-height: 0;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(17, 24, 39, .055);
    }

    .product-image {
        aspect-ratio: auto;
        height: 128px;
        min-height: 128px;
    }

    .product-image img {
        inset: .55rem;
        width: calc(100% - 1.1rem);
        height: calc(100% - 1.1rem);
    }

    .stock-badge {
        left: .45rem;
        top: .45rem;
        min-height: 22px;
        font-size: .6rem;
        padding: .28rem .4rem;
    }

    .product-card-body {
        grid-template-rows: 24px 3.05em 2.35em 1fr 34px;
        gap: .38rem;
        min-height: 214px;
        padding: .58rem;
    }

    .product-chip {
        display: block;
        max-width: 100%;
        min-height: 22px;
        overflow: hidden;
        font-size: .58rem;
        line-height: 22px;
        padding: 0 .48rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-card h3 {
        font-size: .78rem;
        line-height: 1.23;
        min-height: 3.05em;
        -webkit-line-clamp: 2;
    }

    .product-section {
        font-size: .62rem;
        min-height: 2.35em;
        -webkit-line-clamp: 2;
    }

    .product-price {
        align-items: flex-start;
        flex-direction: column;
        gap: .18rem;
    }

    .product-price strong {
        font-size: 1rem;
    }

    .product-price span {
        font-size: .64rem;
    }

    .product-card .btn {
        min-height: 34px;
        height: 34px;
        gap: .16rem;
        padding: .45rem .2rem;
        border-radius: 12px;
        font-size: .66rem;
        line-height: 1;
    }

    .product-card .btn svg {
        display: none;
    }

    .product-card .btn span {
        display: block;
        max-width: 100%;
        text-align: center;
    }

    .product-detail-grid {
        border-radius: 20px;
    }

    .product-detail-media {
        min-height: 260px;
        border-radius: 16px;
    }

    .product-detail-content h1 {
        font-size: clamp(1.8rem, 8.4vw, 2.45rem);
    }

    .product-detail-price {
        align-items: flex-start;
        flex-direction: column;
        gap: .25rem;
    }

    .product-detail-actions {
        display: grid;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .product-specs,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .55rem;
    }

    .product-specs dd {
        font-size: .82rem;
    }
}

@media (max-width: 480px) {
    .catalog-browser.is-deep .catalog-browser-head {
        top: 62px;
    }
}

@media (max-width: 380px) {
    .page-catalog .section-products > .mx-auto {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .catalog-category-grid,
    .products-grid {
        gap: .45rem;
    }

    .catalog-category-card {
        min-height: 98px;
    }

    .catalog-category-card-overlay {
        inset: auto .52rem .52rem .52rem;
    }

    .product-card {
        grid-template-rows: 116px 1fr;
        border-radius: 14px;
    }

    .product-image {
        height: 116px;
        min-height: 116px;
    }

    .product-card-body {
        min-height: 204px;
        padding: .5rem;
    }

    .product-chip {
        font-size: .54rem;
        padding: 0 .4rem;
    }

    .product-card h3 {
        font-size: .74rem;
    }

    .product-section {
        font-size: .58rem;
    }

    .product-price strong {
        font-size: .95rem;
    }

    .product-card .btn {
        font-size: .62rem;
        padding-left: .12rem;
        padding-right: .12rem;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
