:root {
    --bg: #f8fbfd;
    --bg-warm: #eef6f4;
    --text: #1a1a1a;
    --text-muted: #607078;
    --text-light: #8a9aa1;
    --accent: #5ca900;
    --accent-light: #7fca17;
    --accent-blue: #075f8f;
    --accent-glow: rgba(92, 169, 0, 0.1);
    --dark: #0d3244;
    --border: #d9e8e8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}
.site-nav.scrolled {
    background: rgba(248, 251, 253, 0.95);
    backdrop-filter: blur(30px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 var(--border);
}
.logo { width: 190px; text-decoration: none; flex: 0 0 auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 0.35rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta, .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.88rem 1.45rem;
    background: linear-gradient(135deg, var(--accent) 0%, #4f9700 100%);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    border: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(92, 169, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-main::after,
.nav-cta::after {
    content: '→';
    font-weight: 700;
    transform: translateX(0);
    transition: transform 0.25s ease;
}
.nav-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent-blue) 100%);
    color: white;
    padding: 0.72rem 1.25rem;
    font-size: 0.84rem;
    box-shadow: 0 12px 28px rgba(13, 50, 68, 0.16);
}
.btn-main:hover, .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(92, 169, 0, 0.24);
}
.btn-main:hover::after,
.nav-cta:hover::after {
    transform: translateX(3px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.84rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    line-height: 1.1;
    background: rgba(255,255,255,0.52);
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover {
    border-color: rgba(92,169,0,0.42);
    color: var(--accent-blue);
    background: white;
    transform: translateY(-2px);
}

.mobile-toggle { display: none; background: none; border: 0; font-size: 1.8rem; }
.mega-parent { position: relative; }
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(13,50,68,0.12);
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.mega-parent:hover .mega-menu { display: grid; }
.mega-menu h4 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--accent-blue); }
.mega-menu a { display: block; font-size: 0.78rem; padding: 0.2rem 0; color: var(--text-muted); }

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: var(--accent-glow);
    filter: blur(80px);
    opacity: 0.6;
}
.hero-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    gap: 5rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}
.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; }
.hero h1, .page-title h1 {
    font-size: clamp(2.7rem, 5vw, 4.25rem);
    line-height: 1.05;
    letter-spacing: -1.6px;
    margin-bottom: 1.5rem;
}
.highlight { color: var(--accent); }
.hero-sub, .page-title p { color: var(--text-muted); font-size: 1.08rem; max-width: 620px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { width: 100%; max-width: 520px; aspect-ratio: 1; position: relative; }
.hero-ring, .hero-ring::before, .hero-ring::after {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 50%;
    content: '';
}
.hero-ring { inset: 0; animation: rotate-slow 60s linear infinite; }
.hero-ring::before { inset: 40px; animation: rotate-slow 40s linear infinite reverse; }
.hero-ring::after { inset: 80px; animation: rotate-slow 25s linear infinite; }
.hero-center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.hero-center img { width: 220px; padding: 0.8rem 1rem; background: rgba(255,255,255,0.9); border: 1px solid var(--border); border-radius: 12px; }
.orbit-stat {
    position: absolute;
    min-width: 150px;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 14px 34px rgba(13,50,68,0.08);
}
.orbit-stat strong { display: block; font-family: 'Space Grotesk'; color: var(--accent); font-size: 1.45rem; line-height: 1; }
.orbit-stat span { display: block; color: var(--text-muted); text-transform: uppercase; font-size: 0.72rem; font-weight: 800; line-height: 1.25; margin-top: 0.25rem; }
.orbit-stat.one { top: 9%; right: -4%; }
.orbit-stat.two { bottom: 18%; right: -6%; }
.orbit-stat.three { bottom: 8%; left: -5%; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.section { padding: 6rem 0; }
.section-warm { background: var(--bg-warm); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); line-height: 1.18; }
.section-head p { color: var(--text-muted); max-width: 430px; }
.grid { display: grid; gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: rgba(255,255,255,0.76);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
}
.business-card h3, .why-card h3 { margin-bottom: 0.5rem; }
.business-card p, .why-card p, .card p { color: var(--text-muted); }

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.product-card-link {
    color: inherit;
    display: flex;
    flex: 1;
    flex-direction: column;
    text-decoration: none;
}
.product-img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: var(--bg-warm); }
.product-body { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.product-meta { color: var(--accent-blue); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.7px; }
.product-body p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.product-substitute {
    color: var(--accent-blue);
    flex: 0;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    margin: -0.2rem 0 0;
}
.product-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; padding: 0 1.2rem 1.2rem; }
.small-btn { border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1rem; border-radius: 999px; font: inherit; font-size: 0.84rem; line-height: 1.1; letter-spacing: 0.01em; text-decoration: none; font-weight: 700; transition: all 0.25s ease; }
.small-btn.primary { background: linear-gradient(135deg, var(--accent) 0%, #4f9700 100%); color: white; box-shadow: 0 10px 22px rgba(92,169,0,0.16); }
.small-btn.light { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,0.5); }
.small-btn:hover { transform: translateY(-2px); }
.small-btn.added,
.small-btn.primary.added {
    background: var(--accent-blue);
    box-shadow: 0 10px 22px rgba(14, 101, 142, 0.16);
}

.page-title { padding: 10rem 0 4rem; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); border-bottom: 1px solid var(--border); }
.filters { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font: inherit;
    background: white;
}
textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.alert-success { background: #e9f8df; border: 1px solid #bde8a5; color: #2f7100; }
.alert-error { background: #fff0f0; border: 1px solid #ffc2c2; color: #9d1c1c; }

.detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
.detail-image { border-radius: 12px; border: 1px solid var(--border); background: var(--bg-warm); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.spec-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.spec-table td { padding: 0.8rem; border: 1px solid var(--border); color: var(--text-muted); }

/* Catalog system pages */
.catalog-intro {
    padding: 7.8rem 0 2.8rem;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 86% 0%, rgba(92,169,0,0.12), transparent 32%),
        var(--bg);
}
.catalog-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 4rem;
    align-items: end;
}
.catalog-intro h1 {
    font-size: clamp(1.95rem, 3.4vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 0.8rem;
}
.catalog-intro p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 720px;
}
.intro-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
}
.intro-metric strong {
    display: block;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}
.intro-metric span {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.business-directory {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--border);
}
.business-row {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    gap: 3rem;
    padding: 2.4rem 0;
    border-bottom: 1px solid var(--border);
}
.business-row h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.business-row p {
    color: var(--text-muted);
}
.subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-content: start;
}
.subcategory-link {
    text-decoration: none;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.58rem 0.9rem;
    background: rgba(255,255,255,0.42);
    font-size: 0.86rem;
    font-weight: 700;
}
.subcategory-link:hover {
    color: var(--accent-blue);
    border-color: rgba(92,169,0,0.35);
}
.catalog-tools {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
}
.catalog-tools form {
    display: flex;
    gap: 0.8rem;
}
.catalog-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.catalog-side {
    position: sticky;
    top: 6.8rem;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
}
.catalog-side h3 {
    font-size: 0.78rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}
.catalog-side a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.45rem 0;
    font-size: 0.92rem;
}
.catalog-side a.nested {
    font-size: 0.88rem;
    margin-left: 0.85rem;
}
.catalog-side a.deep {
    color: var(--text-light);
    font-size: 0.82rem;
    margin-left: 1.7rem;
}
.catalog-side a:hover,
.catalog-side a.active {
    color: var(--accent-blue);
}
.catalog-page .product-card {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
}
.catalog-page .product-card:hover {
    box-shadow: none;
}
.catalog-page .product-body {
    padding: 1rem 0 1.2rem;
}
.catalog-page .product-actions {
    padding: 0 0 1.2rem;
}
.catalog-page .product-img {
    border-radius: 8px;
    border: 1px solid var(--border);
}
.pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-top: 2.4rem;
}
.pagination a,
.pagination span {
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    justify-content: center;
    min-width: 2.45rem;
    padding: 0.62rem 0.85rem;
    text-decoration: none;
}
.pagination a:hover,
.pagination .active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}
.product-sheet {
    padding: 8.5rem 0 5rem;
}
.breadcrumb {
    color: var(--text-muted);
    font-size: 0.86rem;
    margin-bottom: 2rem;
}
.breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
}
.product-sheet-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) 260px;
    gap: 2rem;
    align-items: end;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}
.product-sheet-head h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.7px;
    margin-bottom: 0.9rem;
}
.product-sheet-head p {
    color: var(--text-muted);
    max-width: 720px;
}
.product-status {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.product-status strong {
    display: block;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
}
.product-sheet-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}
.product-media-panel {
    position: sticky;
    top: 6.5rem;
}
.image-pop-trigger {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: zoom-in;
    display: block;
    padding: 0;
    width: 100%;
}
.image-pop-trigger:focus-visible {
    outline: 3px solid rgba(92,169,0,0.32);
    outline-offset: 4px;
}
.product-gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.9rem;
}
.product-gallery-strip img {
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-warm);
}
.product-copy {
    display: grid;
    gap: 2rem;
}
.product-copy-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.product-copy-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.product-copy-section h2,
.product-copy-section h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}
.product-copy-section p {
    color: var(--text-muted);
}
.spec-table.sheet td {
    border-left: 0;
    border-right: 0;
    padding: 0.85rem 0;
}
.spec-table.sheet td:first-child {
    color: var(--text);
    font-weight: 800;
    width: 36%;
}
.inline-inquiry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
.inline-inquiry .full {
    grid-column: 1 / -1;
}
.product-action-row {
    align-items: center;
    display: flex;
    padding-top: 0.2rem;
}
.modal-shell {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.2s ease;
    z-index: 3000;
}
.modal-shell.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-backdrop {
    background: rgba(8, 25, 34, 0.72);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.image-modal-panel,
.inquiry-modal-panel {
    background: white;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(5, 22, 30, 0.28);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    position: relative;
    transform: translateY(10px);
    transition: transform 0.2s ease;
    z-index: 1;
}
.modal-shell.open .image-modal-panel,
.modal-shell.open .inquiry-modal-panel {
    transform: translateY(0);
}
.image-modal-panel {
    background: rgba(255,255,255,0.96);
    max-width: min(980px, calc(100vw - 2rem));
    padding: 1rem;
}
.image-modal-panel img {
    border-radius: 8px;
    display: block;
    max-height: calc(100vh - 5rem);
    max-width: 100%;
    object-fit: contain;
}
.inquiry-modal-panel {
    max-width: min(680px, calc(100vw - 2rem));
    padding: 2rem;
    width: 100%;
}
.modal-close {
    align-items: center;
    background: #0d3244;
    border: 0;
    border-radius: 999px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 700;
    height: 2.25rem;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2.25rem;
    z-index: 2;
}
.modal-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 0.45rem;
    max-width: calc(100% - 3rem);
    text-transform: uppercase;
}
.inquiry-modal-panel h2 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}
.modal-inquiry-form {
    margin-top: 0.5rem;
}
.related-minimal {
    background: var(--bg-warm);
    border-top: 1px solid var(--border);
}
.inquiry-wrap {
    padding: 8.5rem 0 6rem;
}
.inquiry-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
    gap: 4rem;
    align-items: end;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}
.inquiry-head h1 {
    font-size: clamp(1.9rem, 3.4vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.7px;
    margin-bottom: 0.8rem;
}
.inquiry-head p {
    color: var(--text-muted);
    max-width: 680px;
}
.inquiry-note {
    color: var(--text-muted);
    border-left: 1px solid var(--border);
    padding-left: 1.4rem;
    font-size: 0.95rem;
}
.inquiry-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}
.inquiry-aside {
    position: sticky;
    top: 7rem;
}
.selected-product {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.4rem;
}
.selected-product h2 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}
.selected-product p,
.inquiry-aside p {
    color: var(--text-muted);
}
.inquiry-points {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}
.inquiry-points li {
    color: var(--text-muted);
    padding-left: 1rem;
    border-left: 2px solid rgba(92,169,0,0.35);
}
.inquiry-panel {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 22px 54px rgba(13,50,68,0.06);
}
.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.inquiry-form .full {
    grid-column: 1 / -1;
}
.legal-page {
    padding: 8rem 0 5rem;
}
.legal-shell {
    display: grid;
    grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}
.legal-side {
    position: sticky;
    top: 7rem;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
}
.legal-side h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -0.7px;
    margin: 0.6rem 0 0.9rem;
}
.legal-side p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.legal-content {
    display: grid;
    gap: 2rem;
}
.legal-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}
.legal-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.legal-section h2 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    margin-bottom: 0.75rem;
}
.legal-section p,
.legal-section li {
    color: var(--text-muted);
}
.legal-section ul {
    display: grid;
    gap: 0.55rem;
    margin: 0.9rem 0 0 1.1rem;
}
.selected-products-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    display: none;
    gap: 0.75rem;
    grid-column: 1 / -1;
    padding: 0.9rem;
}
.selected-products-box.visible {
    display: grid;
}
.selected-products-box h3 {
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}
.selected-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.selected-products-list span {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 0.7rem;
}
.product-list-tray {
    align-items: center;
    background: rgba(13, 50, 68, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    bottom: 1.25rem;
    box-shadow: 0 18px 42px rgba(13,50,68,0.22);
    color: white;
    display: none;
    gap: 1rem;
    left: 50%;
    max-width: calc(100% - 2rem);
    padding: 0.85rem;
    position: fixed;
    transform: translateX(-50%);
    z-index: 90;
}
.product-list-tray.visible {
    display: flex;
}
.product-list-tray span {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}
.product-list-tray-actions {
    display: flex;
    gap: 0.55rem;
}
.product-list-tray a,
.product-list-tray button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    padding: 0.72rem 1rem;
    text-decoration: none;
}
.product-list-tray a {
    background: var(--accent);
    color: white;
}
.product-list-tray button {
    background: rgba(255,255,255,0.12);
    color: white;
}

footer {
    border-top: 1px solid var(--border);
    background: radial-gradient(circle at 15% 0%, rgba(92,169,0,0.12), transparent 30%), linear-gradient(135deg, #0d3244 0%, #123d4f 52%, #0b2635 100%);
    color: white;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4.5rem 3rem 2rem; }
.footer-main { display: grid; grid-template-columns: 1.15fr 0.65fr 0.65fr 0.85fr 0.9fr; gap: 2.4rem; }
.footer-logo { width: 210px; padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.94); border-radius: 10px; margin-bottom: 1.25rem; }
.footer-brand p, .footer-contact span, .footer-contact a, .footer-links a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-col h4 { color: var(--accent-light); font-size: 0.78rem; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 0.75rem; }
.footer-social { display:flex; flex-wrap:wrap; gap:.55rem; margin-top:1rem; }
.footer-social a,
.footer-social span { border:1px solid rgba(255,255,255,.16); border-radius:999px; color:rgba(255,255,255,.78); font-size:.82rem; padding:.42rem .72rem; text-decoration:none; }
.footer-social a:hover { border-color:rgba(127,202,23,.5); color:white; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; color: rgba(255,255,255,0.56); font-size: 0.82rem; }

@media (max-width: 1024px) {
    .hero-grid, .detail-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { margin: 0 auto; max-width: 460px; }
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .catalog-intro-grid,
    .business-row,
    .catalog-layout,
    .product-sheet-head,
    .product-sheet-grid,
    .inquiry-head,
    .inquiry-layout {
        grid-template-columns: 1fr;
    }
    .legal-shell {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .legal-side {
        position: static;
        border-left: 0;
        border-bottom: 1px solid var(--border);
        padding-left: 0;
        padding-bottom: 1.5rem;
    }
    .intro-metrics {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    .catalog-side {
        position: static;
        border-left: 0;
        padding-left: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .catalog-side h3 {
        width: 100%;
    }
    .catalog-side a {
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 0.5rem 0.8rem;
        background: rgba(255,255,255,0.42);
    }
    .product-status {
        text-align: left;
    }
    .product-media-panel {
        position: static;
    }
    .inquiry-note {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 1.2rem;
    }
    .inquiry-aside {
        position: static;
    }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container, .footer-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
    .site-nav { padding: 1rem 1.5rem; }
    .logo { width: 150px; }
    .mobile-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: 100%; left: 1rem; right: 1rem; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 1rem; }
    .nav-links.open { display: block; }
    .nav-links li { margin: 0.6rem 0; }
    .mega-menu { position: static; transform: none; width: auto; box-shadow: none; display: none; grid-template-columns: 1fr; padding: 0.75rem; }
    .mega-parent:hover .mega-menu { display: block; }
    .nav-cta { display: none; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero h1, .page-title h1 { font-size: clamp(2.35rem, 13vw, 3.2rem); }
    .hero-visual { max-width: 330px; }
    .hero-center img { width: 160px; }
    .orbit-stat { min-width: 118px; padding: 0.55rem 0.65rem; }
    .orbit-stat strong { font-size: 1.05rem; }
    .orbit-stat span { font-size: 0.58rem; }
    .grid-4, .grid-3, .grid-2, .form-grid, .footer-main { grid-template-columns: 1fr; }
    .catalog-tools {
        grid-template-columns: 1fr;
    }
    .catalog-tools form {
        display: grid;
    }
    .intro-metrics,
    .inline-inquiry {
        grid-template-columns: 1fr;
    }
    .inquiry-modal-panel {
        padding: 1.4rem;
    }
    .modal-close {
        right: 0.75rem;
        top: 0.75rem;
    }
    .business-row {
        gap: 1.4rem;
        padding: 2rem 0;
    }
    .product-sheet {
        padding-top: 7rem;
    }
    .inquiry-wrap {
        padding-top: 7rem;
    }
    .legal-page {
        padding-top: 7rem;
    }
    .inquiry-form {
        grid-template-columns: 1fr;
    }
    .inquiry-panel {
        padding: 1.4rem;
    }
    .product-list-tray {
        align-items: stretch;
        flex-direction: column;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
    .product-list-tray-actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .product-list-tray a,
    .product-list-tray button {
        text-align: center;
    }
    .section-head { display: block; }
    .footer-bottom { flex-direction: column; gap: 0.6rem; }
}
