:root {
    --bg: #f2f5fa;
    --panel: #fbfdff;
    --ink: #1a2232;
    --muted: #5f697e;
    --line: #d8e1ee;
    --primary: #0b7a75;
    --primary-2: #13a89f;
    --warm: #ff9f43;
    --danger: #c23737;
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 5%, rgba(11, 122, 117, 0.2), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(255, 159, 67, 0.2), transparent 30%),
        linear-gradient(180deg, #f7fafe 0%, #edf3fb 100%);
    min-height: 100vh;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

a {
    color: inherit;
}

.site-header,
.admin-topbar {
    width: min(1180px, calc(100% - 2rem));
    margin: 1rem auto;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.1rem;
}

.brand {
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.site-header nav,
.topbar-actions {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.site-header nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
    transition: 0.2s ease;
}

.site-header nav a:hover {
    background: rgba(11, 122, 117, 0.12);
    color: var(--ink);
}

main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    margin-top: 1.2rem;
    background: linear-gradient(120deg, #062f2d, #0f645f 45%, #18857e 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: clamp(1.2rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.5), transparent 65%);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-top: 0.5rem;
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 1.03;
}

.hero p {
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
    color: #7be8e0;
}

.hero-note {
    align-self: start;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 1rem;
    text-align: right;
    min-width: 150px;
    position: relative;
    z-index: 2;
}

.hero-note strong {
    display: block;
    font-size: 1.7rem;
    margin-top: 0.15rem;
}

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

.btn {
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    padding: 0.72rem 1rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: white;
    background: linear-gradient(130deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 24px rgba(11, 122, 117, 0.3);
}

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

.section-head {
    margin: 2rem 0 1rem;
}

.section-spaced {
    margin-top: 1.5rem;
}

.section-head h2,
.section-head h1 {
    margin-top: 0.35rem;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.grid {
    display: grid;
    gap: 1rem;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 2rem;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-card {
    overflow: hidden;
    animation: rise-in 0.45s ease both;
}

.product-card:nth-child(2n) { animation-delay: 0.05s; }
.product-card:nth-child(3n) { animation-delay: 0.1s; }

.thumb {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 1rem;
}

.card-body h3 {
    font-size: 1.2rem;
}

.card-body p {
    color: var(--muted);
    min-height: 50px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    font-weight: 800;
}

.card-footer a {
    color: var(--primary);
    text-decoration: none;
}

.product-page {
    margin-top: 1.4rem;
}

.product-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.product-image {
    min-height: 380px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.product-content {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.product-content .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.site-footer {
    width: min(1180px, calc(100% - 2rem));
    margin: 1.4rem auto 2rem;
    color: var(--muted);
    text-align: center;
}

.promo-band {
    margin: 1.2rem 0 2rem;
    border-radius: 20px;
    background: linear-gradient(130deg, #0b7a75, #0d5f76);
    color: #fff;
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.promo-band h3 {
    margin: 0.25rem 0;
}

.promo-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-grid,
.faq-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.benefit-card,
.faq-card {
    padding: 1rem;
}

.benefit-card p,
.faq-card p {
    color: var(--muted);
}

.about-strip {
    margin-bottom: 1.5rem;
}

.about-card {
    padding: 1.1rem;
}

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

.contact-cta {
    margin: 1rem 0 2rem;
    border: 1px solid var(--line);
    background: #ffffff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.contact-cta p {
    color: var(--muted);
    margin: 0.35rem 0 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.admin-page .login-wrap {
    min-height: calc(100vh - 2rem);
    display: grid;
    place-items: center;
}

.login-card {
    width: min(520px, calc(100% - 2rem));
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1.3rem;
}

.muted {
    color: var(--muted);
}

.muted-link {
    color: var(--muted);
    font-weight: 700;
}

.small {
    font-size: 0.85rem;
}

.alert-error {
    background: #fde9e9;
    border: 1px solid #f7b7b7;
    color: var(--danger);
    border-radius: 12px;
    padding: 0.8rem;
}

.alert-success {
    background: #e7f9ef;
    border: 1px solid #9bd9b3;
    color: #1f7a45;
    border-radius: 12px;
    padding: 0.8rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.content-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.content-nav__chip {
    text-decoration: none;
    border: 1px solid #cdd8ea;
    background: #f2f6fd;
    color: #2b3b58;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.content-nav__chip:hover {
    border-color: #9db4d6;
    background: #e9f0fb;
}

.content-group {
    border: 1px solid #d1dced;
    border-radius: 16px;
    padding: 1rem;
    background: linear-gradient(180deg, #f8fbff 0%, #f5f9ff 100%);
    box-shadow: 0 8px 20px rgba(20, 36, 62, 0.06);
}

.content-group__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.content-group h2 {
    margin: 0;
    font-size: 1.02rem;
    font-family: "Space Grotesk", sans-serif;
}

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

.form-grid label {
    display: grid;
    gap: 0.4rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #ccd7e8;
    border-radius: 12px;
    padding: 0.72rem;
    font: inherit;
    background: #f7faff;
}

textarea {
    resize: vertical;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-editor-layout {
        grid-template-columns: 1fr;
    }

    .content-editor-menu {
        position: static;
    }

    .content-editor-menu__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.admin-main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 2rem;
    display: grid;
    gap: 1rem;
}

.content-editor-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.content-editor-menu {
    padding: 0.9rem;
    position: sticky;
    top: 0.9rem;
}

.content-editor-menu__title {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f6b7e;
}

.content-editor-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.content-editor-menu__link {
    display: block;
    text-decoration: none;
    color: #233657;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.56rem 0.62rem;
    background: #f6f9ff;
}

.content-editor-menu__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.35rem;
    margin-right: 0.5rem;
    border-radius: 7px;
    border: 1px solid #c7d5ea;
    background: #ffffff;
    color: #4b5d7a;
    vertical-align: middle;
}

.content-editor-menu__icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.content-editor-menu__link:hover {
    border-color: #c7d5ea;
    background: #eef4ff;
}

.content-editor-menu__link.is-active {
    border-color: #9cb5d9;
    background: #e8f1ff;
    color: #15325f;
}

.content-editor-menu__link.is-active .content-editor-menu__icon {
    border-color: #90abd3;
    background: #d9e8ff;
    color: #15325f;
}

.content-editor-panel {
    padding: 1rem;
}

.content-editor-panel__head {
    margin-bottom: 0.65rem;
}

.content-editor-panel__head h2 {
    margin: 0;
    font-size: 1.32rem;
}

.content-editor-panel__head p {
    margin: 0.25rem 0 0;
}

.admin-hero-preview__img {
    max-width: 100%;
    width: 420px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    display: block;
}

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

.stat-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.stat-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.4;
}

.stat-card h2 {
    margin: 0.1rem 0 0;
    font-size: 2rem;
}

.stat-card .small {
    font-size: 0.82rem;
    margin-top: 0.1rem;
}

.stat-card .btn {
    margin-top: 0.35rem;
}

.admin-vat-toggle {
    margin-top: 0.8rem;
}

.table-card,
.form-card {
    padding: 1rem;
}

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

.section-head-inline a {
    color: var(--primary);
    font-weight: 700;
}

.admin-search {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.admin-search input[type="search"] {
    flex: 1 1 280px;
    min-width: 220px;
    max-width: 520px;
    background: #ffffff;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.7rem;
}

th,
td {
    text-align: left;
    padding: 0.8rem 0.45rem;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

td small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
}

.actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.actions a,
.actions button {
    border: none;
    background: #e8eff8;
    color: #1d2435;
    border-radius: 8px;
    padding: 0.45rem 0.6rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.actions button {
    background: #fde9e9;
    color: var(--danger);
}

.admin-pagination {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.admin-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.7rem;
    border: 1px solid #cedaec;
    border-radius: 8px;
    background: #f3f7fe;
    color: #1d2435;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.admin-pagination__link:hover {
    background: #e8eff8;
}

.admin-pagination__link.is-active {
    background: #0b7a75;
    border-color: #0b7a75;
    color: #ffffff;
}

.admin-pagination__link.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

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

.preview-box {
    border: 1px dashed #c5d3eb;
    border-radius: 12px;
    padding: 0.8rem;
}

.preview-box img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.preview-grid {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.6rem;
}

.preview-grid img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #d8e2f0;
    border-radius: 10px;
    padding: 0.35rem;
}

.variant-box {
    border: 1px solid #d2deef;
    border-radius: 14px;
    padding: 0.85rem;
    background: #f4f8fe;
}

.variant-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.variant-row {
    border: 1px solid #cfdbec;
    border-radius: 12px;
    padding: 0.7rem;
    background: #ffffff;
}

.check-wrap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.check-wrap input[type="checkbox"] {
    width: auto;
}

.ram-picker {
    margin: 0.75rem 0 1rem;
}

.ram-options {
    display: grid;
    gap: 0.45rem;
}

.ram-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #cedaec;
    background: #f2f7fe;
    border-radius: 12px;
    padding: 0.5rem 0.7rem;
    font-weight: 700;
}

.ram-option input[type="radio"] {
    width: auto;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .promo-band,
    .contact-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-hero {
        grid-template-columns: 1fr;
    }

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

/* =====================================================
   PUBLIC SITE — REDESIGN 2025
   Clean light UI · Inter font · Blue accent
   ===================================================== */

body.public-page {
    background: #0d1117;
    color: #e6edf3;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.public-page {
    --sp-accent: #388bfd;
    --sp-accent-2: #79c0ff;
    --sp-border: rgba(240, 246, 252, 0.1);
    --sp-border-2: rgba(240, 246, 252, 0.2);
    --sp-surface: rgba(240, 246, 252, 0.04);
    --sp-media-bg: #111b2b;
    --sp-muted: #8b949e;
    --sp-muted-2: #6e7681;
}

/* --- Layout containers --- */
.sp-container {
    width: min(1200px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.products-page .sp-container {
    width: min(1360px, calc(100% - 2rem));
}

.products-page main {
    width: min(1360px, calc(100% - 2rem));
}

.sp-section {
    padding: 5.2rem 0;
    border-bottom: 1px solid rgba(240, 246, 252, 0.05);
}

.sp-section:last-of-type {
    border-bottom: none;
}

/* --- Progress bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--sp-accent);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 200;
}

/* --- Navigation --- */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sp-nav.is-scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(240, 246, 252, 0.1);
}

.sp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: min(1200px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.sp-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0;
}

.sp-nav.is-scrolled .sp-nav__brand {
    color: #fafafa;
}

.sp-nav__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* White logo visible on transparent (hero) nav */
.sp-nav__logo-img--white {
    display: block;
}

.sp-nav__logo-img--black {
    display: none;
}

/* Dark nav: always show white logo */
.sp-nav.is-scrolled .sp-nav__logo-img--white {
    display: block;
}

.sp-nav.is-scrolled .sp-nav__logo-img--black {
    display: none;
}

.sp-nav__links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.sp-nav__links a {
    display: block;
    padding: 0.4rem 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.18s, background 0.18s;
    font-family: 'Inter', sans-serif;
}

.sp-nav__links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.sp-nav.is-scrolled .sp-nav__links a {
    color: #9da7b3;
}

.sp-nav.is-scrolled .sp-nav__links a:hover {
    color: #e6edf3;
    background: rgba(240, 246, 252, 0.07);
}

.sp-nav__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}



.sp-nav__burger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.sp-nav.is-scrolled .sp-nav__burger {
    border-color: rgba(255, 255, 255, 0.15);
    color: #fafafa;
}

/* --- Buttons --- */
.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 10px;
    padding: 0.6rem 1.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.4;
}

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

.sp-btn--primary {
    background: linear-gradient(180deg, #ffffff 0%, #e8edf6 100%);
    color: #0f172a;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 22px rgba(18, 26, 41, 0.2);
}

.sp-btn--primary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #dfe7f4 100%);
    border-color: #ffffff;
    box-shadow: 0 10px 26px rgba(18, 26, 41, 0.3);
}

.sp-btn--blue {
    background: var(--sp-accent);
    color: #ffffff;
    border-color: var(--sp-accent);
}

.sp-btn--blue:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}

.sp-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.35);
}

.sp-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.sp-btn--lg {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-radius: 9px;
}

.sp-btn--sm {
    padding: 0.42rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* --- Eyebrow / chip --- */
.sp-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sp-accent);
    margin: 0 0 0.65rem;
    font-family: 'Inter', sans-serif;
}

.sp-chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--sp-accent);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

/* --- Section headings --- */
.sp-section-head {
    margin-bottom: 2.75rem;
}

.sp-section-head h2,
.sp-section-head h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: #e6edf3;
    letter-spacing: -0.022em;
    font-family: 'Inter', sans-serif;
}

.sp-section-head p {
    margin: 0.75rem 0 0;
    color: #8b949e;
    max-width: 62ch;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* --- Hero --- */
.sp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0d1117;
    isolation: isolate;
}



.sp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    opacity: 0.35;
    max-width: none;
}

.sp-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.45;
    display: block;
}

.sp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13, 17, 23, 0.97) 0%,
        rgba(13, 17, 23, 0.78) 55%,
        rgba(13, 17, 23, 0.35) 100%
    );
    z-index: 1;
}

.sp-hero__content {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 9rem 0 10rem;
}

.sp-hero h1 {
    font-size: clamp(2.6rem, 7.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #e6edf3;
    margin: 0 0 1.1rem;
    font-family: 'Inter', sans-serif;
    max-width: 820px;
}

.sp-hero h1 em {
    font-style: normal;
    color: #79c0ff;
}

.sp-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 50ch;
    margin: 0 0 2.25rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Performance Display & Diagnostics Animation */
.sp-perf-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 2.5rem 0;
    padding: 0;
}

/* Terminal Interface */
.sp-perf-display__terminal {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(1, 4, 9, 0.92));
    border: 1px solid rgba(88, 166, 255, 0.35);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(88, 166, 255, 0.1);
}

.sp-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    background: rgba(13, 17, 23, 0.8);
    border-bottom: 1px solid rgba(88, 166, 255, 0.25);
}

.sp-terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.sp-terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sp-terminal-dot--red {
    background: #ff5f57;
}

.sp-terminal-dot--yellow {
    background: #ffbd2e;
}

.sp-terminal-dot--green {
    background: #28c840;
}

.sp-terminal-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(230, 237, 243, 0.7);
}

.sp-terminal-body {
    padding: 1rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.7rem;
    line-height: 1.8;
    color: rgba(198, 250, 210, 0.85);
    min-height: 240px;
    animation: spTerminalScan 8s linear infinite;
}

.sp-term-line {
    opacity: 0;
    animation: spTermFadeIn 0.5s ease-out forwards, spTermLoop 8s ease-out infinite;
    animation-delay: var(--d);
}

.sp-term-line--pulse {
    animation: spTermCursorBlink 1s infinite;
}

.sp-term-prompt {
    color: rgba(88, 166, 255, 0.7);
    margin-right: 0.5rem;
}

.sp-term-cursor {
    color: rgba(198, 250, 210, 0.9);
    animation: spTermCursorBlink 1s infinite;
}

.sp-term-success {
    color: #58d66d;
    font-weight: 600;
}

.sp-term-cmd {
    color: rgba(88, 166, 255, 0.95);
    font-weight: 600;
}

.sp-term-active {
    color: #58d66d;
    font-weight: 700;
}

.sp-term-val {
    color: #ffa500;
    font-weight: 600;
}

@keyframes spTermFadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spTermLoop {
    0% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes spTerminalScan {
    0% {
        box-shadow: inset 0 0 20px rgba(88, 166, 255, 0.1);
    }
    50% {
        box-shadow: inset 0 0 30px rgba(88, 166, 255, 0.15);
    }
    100% {
        box-shadow: inset 0 0 20px rgba(88, 166, 255, 0.1);
    }
}

@keyframes spTermCursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Performance Data Display */
.sp-perf-data {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.88), rgba(1, 4, 9, 0.85));
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: spPerfDataRefresh 0.6s ease-out;
}

.sp-perf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(88, 166, 255, 0.2);
}

.sp-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(88, 166, 255, 0.95);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sp-status-dot {
    width: 6px;
    height: 6px;
    background: #58d66d;
    border-radius: 50%;
    animation: spStatusPulse 2s ease-in-out infinite;
}

@keyframes spStatusPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(88, 214, 109, 0.7);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(88, 214, 109, 0.1);
    }
}

/* Remap Features Grid */
.sp-remap-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sp-remap-feature {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.08), rgba(88, 166, 255, 0.04));
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-remap-feature:hover {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.12), rgba(88, 166, 255, 0.08));
    border-color: rgba(88, 166, 255, 0.35);
    transform: translateY(-4px);
}

.sp-remap-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.sp-remap-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: rgba(198, 250, 210, 0.95);
}

.sp-remap-feature p {
    font-size: 0.95rem;
    color: rgba(230, 237, 243, 0.75);
    line-height: 1.6;
}

/* Changes Grid */
.sp-changes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.sp-change-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.6), rgba(1, 4, 9, 0.5));
    border: 1px solid rgba(88, 166, 255, 0.25);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sp-change-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(88, 166, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sp-change-desc {
    font-size: 0.85rem;
    color: rgba(230, 237, 243, 0.75);
    line-height: 1.5;
}

.sp-change-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #58d66d;
    margin-top: 0.5rem;
}

/* FAQ Grid */
.sp-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.sp-faq-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.06), rgba(88, 166, 255, 0.02));
    border-left: 3px solid rgba(88, 166, 255, 0.5);
    border-radius: 4px;
}

.sp-faq-question {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(198, 250, 210, 0.95);
    margin-bottom: 0.8rem;
}

.sp-faq-answer {
    font-size: 0.9rem;
    color: rgba(230, 237, 243, 0.8);
    line-height: 1.6;
}

.sp-vehicle-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(198, 250, 210, 0.9);
    padding: 0.4rem 0.8rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.25);
    border-radius: 4px;
}

.sp-perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sp-perf-metric {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sp-metric-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(88, 166, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sp-metric-values {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(198, 250, 210, 0.95);
}

.sp-metric-before {
    opacity: 0.6;
}

.sp-metric-arrow {
    color: rgba(88, 166, 255, 0.6);
    font-size: 0.8rem;
}

.sp-metric-after {
    color: #58d66d;
}

.sp-metric-gain {
    font-size: 0.75rem;
    color: rgba(88, 166, 255, 0.75);
}

.sp-gain-value {
    color: #58d66d;
    font-weight: 700;
}

/* Performance Bars */
.sp-perf-bars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 0.5rem;
}

.sp-bar-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sp-bar-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(88, 166, 255, 0.75);
    text-transform: uppercase;
    min-width: 2rem;
}

.sp-bar-container {
    flex: 1;
    position: relative;
    height: 8px;
    background: rgba(88, 166, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.sp-bar {
    position: absolute;
    height: 100%;
    border-radius: 2px;
}

.sp-bar--before {
    background: rgba(88, 166, 255, 0.4);
    animation: spBarGrow 1.5s ease-out forwards;
}

.sp-bar--after {
    background: linear-gradient(90deg, #58d66d, rgba(88, 214, 109, 0.6));
    animation: spBarGrow 1.8s ease-out forwards;
    animation-delay: var(--delay, 0.5s);
}

@keyframes spBarGrow {
    from {
        width: 0;
        box-shadow: 0 0 0 0 currentColor;
    }
    to {
        box-shadow: 0 0 10px currentColor;
    }
}

@keyframes spBarPulse {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }
    50% {
        box-shadow: 0 0 10px 2px currentColor;
    }
    100% {
        box-shadow: 0 0 10px currentColor;
    }
}

.sp-bar--after {
    animation: spBarPulse 0.8s ease-out forwards !important;
}

.sp-hero__cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.sp-hero__stats {
    display: flex;
    gap: 2.75rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
    max-width: 820px;
}

.sp-hero-featured {
    margin-top: 1.6rem;
    max-width: 860px;
}

.sp-hero-featured__label {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(121, 192, 255, 0.85);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.sp-hero-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.sp-hero-mini {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    text-decoration: none;
    border: 1px solid rgba(240, 246, 252, 0.14);
    border-radius: 10px;
    background: rgba(13, 17, 23, 0.68);
    padding: 0.38rem;
    transition: border-color 0.18s, transform 0.18s, background 0.18s;
}

.sp-hero-mini:hover {
    border-color: rgba(121, 192, 255, 0.44);
    background: rgba(22, 27, 34, 0.84);
    transform: translateY(-2px);
}

.sp-hero-mini__thumb {
    width: 58px;
    height: 44px;
    border-radius: 8px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--sp-media-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.sp-hero-mini__meta {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.sp-hero-mini__meta strong {
    font-size: 0.72rem;
    color: #e6edf3;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
}

.sp-hero-mini__meta em {
    font-style: normal;
    font-size: 0.68rem;
    color: #79c0ff;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sp-stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fafafa;
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.sp-stat span {
    display: block;
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
    font-family: 'Inter', sans-serif;
}

/* --- Brands strip --- */
.sp-brands {
    border-top: 1px solid rgba(240, 246, 252, 0.07);
    border-bottom: 1px solid rgba(240, 246, 252, 0.07);
    padding: 1.5rem 0;
    background: #090d13;
    overflow: hidden;
}

.sp-brands__marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.sp-brands__track {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
    margin-right: 3.5rem;
    animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

.sp-brands__marquee:hover .sp-brands__track {
    animation-play-state: paused;
}

.sp-brands__track a {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6e7681;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
    user-select: none;
    text-decoration: none;
}

.sp-brands__track a:hover {
    color: #79c0ff;
}

/* --- Category grid --- */
.sp-cats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 0.85rem;
}

.sp-cat {
    position: relative;
    height: 185px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    border: 1px solid rgba(240, 246, 252, 0.08);
    background: #161b22;
    transition: border-color 0.22s, transform 0.25s;
}

.sp-cat:hover {
    border-color: rgba(240, 246, 252, 0.2);
    transform: translateY(-3px);
}

.sp-cat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.35s, transform 0.5s;
}

.sp-cat:hover img {
    opacity: 0.7;
    transform: scale(1.06);
}

.sp-cat__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.85rem;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0.1) 55%, transparent 100%);
}

.sp-cat__label span {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: #fafafa;
    font-family: 'Inter', sans-serif;
}

/* --- CTA band --- */
.sp-cta-band {
    background: linear-gradient(180deg, rgba(56, 139, 253, 0.04) 0%, rgba(56, 139, 253, 0.02) 100%);
    border-top: 1px solid rgba(240, 246, 252, 0.05);
    border-bottom: 1px solid rgba(240, 246, 252, 0.05);
    padding: 2.6rem 0;
}

.sp-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.86) 0%, rgba(28, 35, 51, 0.62) 100%);
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 18px;
    padding: 1.55rem 1.7rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.sp-cta-band__text h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.6vw, 1.55rem);
    font-weight: 700;
    color: #e6edf3;
    letter-spacing: -0.018em;
    font-family: 'Inter', sans-serif;
}

.sp-cta-band__text p {
    margin: 0.45rem 0 0;
    color: #8b949e;
    font-size: 0.94rem;
    font-family: 'Inter', sans-serif;
}

/* --- Benefit cards --- */
.sp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.sp-benefit {
    position: relative;
    background: linear-gradient(160deg, rgba(13, 17, 23, 0.96) 0%, rgba(22, 27, 34, 0.9) 100%);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
    overflow: hidden;
}

.sp-benefit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(121, 192, 255, 0.05), rgba(121, 192, 255, 0.35), rgba(121, 192, 255, 0.05));
}

.sp-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(121, 192, 255, 0.32);
    background: linear-gradient(160deg, rgba(22, 27, 34, 0.95) 0%, rgba(28, 35, 51, 0.94) 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.sp-benefit__num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(121, 192, 255, 0.3);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.sp-benefit h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #e6edf3;
    font-family: 'Inter', sans-serif;
}

.sp-benefit p {
    margin: 0;
    color: #8b949e;
    font-size: 0.875rem;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* --- About --- */
.sp-about {
    background: #161b22;
    border: 1px solid rgba(240, 246, 252, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2.75rem;
}

.sp-about p {
    color: #8b949e;
    margin: 0 0 0.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.sp-about p:last-child {
    margin-bottom: 0;
}

/* --- FAQ --- */
.sp-faqs {
    display: grid;
    gap: 0.65rem;
}

.sp-faq {
    background: #161b22;
    border: 1px solid rgba(240, 246, 252, 0.08);
    border-radius: 10px;
    padding: 1.35rem 1.6rem;
    transition: border-color 0.2s, background 0.2s;
}

.sp-faq:hover {
    border-color: rgba(240, 246, 252, 0.16);
    background: #1c2333;
}

.sp-faq h3 {
    margin: 0 0 0.45rem;
    font-size: 0.93rem;
    font-weight: 600;
    color: #cdd9e5;
    font-family: 'Inter', sans-serif;
}

.sp-faq p {
    margin: 0;
    color: #8b949e;
    font-size: 0.875rem;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* --- Contact section --- */
.sp-contact {
    padding: 5rem 0;
}

.sp-contact__card {
    background: linear-gradient(135deg, #161b22 0%, #1c2333 100%);
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 14px;
    padding: 3rem 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: start;
    gap: 2.5rem;
}

.sp-contact__intro {
    display: grid;
    gap: 1.35rem;
}

.sp-contact__text h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #e6edf3;
    letter-spacing: -0.022em;
    font-family: 'Inter', sans-serif;
}

.sp-contact__text p {
    margin: 0;
    color: #8b949e;
    max-width: 50ch;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
}

.sp-contact__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sp-contact__trust {
    display: grid;
    gap: 0.6rem;
}

.sp-contact__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.78rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(240, 246, 252, 0.1);
    background: rgba(9, 13, 19, 0.38);
    color: #c9d1d9;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.sp-contact__trust span::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #58a6ff;
    box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.15);
    flex-shrink: 0;
}

.sp-contact__form-wrap {
    display: grid;
    gap: 1rem;
}

.sp-contact-form {
    display: grid;
    gap: 1.15rem;
    padding: 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(240, 246, 252, 0.1);
    background: rgba(9, 13, 19, 0.52);
}

.sp-contact-form__alert {
    margin: 0;
}

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

.sp-contact-form label {
    display: grid;
    gap: 0.45rem;
    color: #e6edf3;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sp-contact-form input,
.sp-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 12px;
    background: rgba(13, 17, 23, 0.92);
    color: #f0f6fc;
    padding: 0.9rem 1rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
    font: inherit;
}

.sp-contact-form input::placeholder,
.sp-contact-form textarea::placeholder {
    color: #6e7681;
}

.sp-contact-form input:focus,
.sp-contact-form textarea:focus {
    border-color: rgba(121, 192, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(121, 192, 255, 0.12);
}

.sp-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.sp-contact-form__full {
    grid-column: 1 / -1;
}

.sp-contact-form__check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #c9d1d9;
    font-size: 0.83rem;
    line-height: 1.5;
}

.sp-contact-form__check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 0.2rem;
    accent-color: #58a6ff;
}

.sp-contact-form__check a {
    color: #79c0ff;
}

.sp-contact-form__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.sp-contact-form__meta {
    margin: 0;
    color: #8b949e;
    font-size: 0.84rem;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.sp-contact-form__error {
    color: #ffb4b4;
    font-size: 0.8rem;
    line-height: 1.45;
    font-weight: 500;
}

.sp-contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.status-badge--new {
    background: #eaf3ff;
    color: #175cd3;
}

.status-badge--handled {
    background: #e8f7ee;
    color: #1f7a45;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.admin-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #cedaec;
    background: #f3f7fe;
    color: #1d2435;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.84rem;
}

.admin-filter-chip.is-active {
    background: #dceafe;
    border-color: #8db5f7;
}

.request-summary {
    display: block;
    max-width: 54ch;
    color: var(--muted);
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.request-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.45rem;
}

.request-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #b8d2fb;
    background: #edf4ff;
    color: #23467a;
    padding: 0.17rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.request-tag--muted {
    border-color: #d7e1f0;
    background: #f6f9fe;
    color: #495f7d;
}

.request-message__body {
    border: 1px solid #d8e3f2;
    border-radius: 10px;
    background: #ffffff;
    color: #1f2a3e;
    padding: 0.8rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1.55;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    max-height: 220px;
    overflow: auto;
}

.request-meta {
    display: grid;
    gap: 0.2rem;
}

.request-meta strong {
    font-size: 0.97rem;
}

.request-contact-links {
    display: grid;
    gap: 0.3rem;
}

.request-contact-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.contact-requests-table .actions form {
    margin: 0;
}

.contact-requests-table .actions {
    display: grid;
    gap: 0.55rem;
    align-items: stretch;
    min-width: 0;
    width: min(430px, 100%);
}

.contact-requests-table .actions .status-action {
    width: 100%;
    border: 1px solid #c7d9f2;
    background: #eff5ff;
    color: #21456f;
}

.contact-requests-table .actions .status-action:hover {
    background: #e4efff;
}

.contact-requests-table .request-workflow {
    width: 100%;
}

.request-workflow summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid #cedaec;
    background: #f8fbff;
    color: #1d2435;
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    font-weight: 700;
    text-align: left;
}

.request-workflow summary::-webkit-details-marker {
    display: none;
}

.request-workflow[open] summary {
    border-color: #a8c5ee;
    background: #ecf4ff;
}

.request-workflow__panel {
    margin-top: 0.55rem;
    border: 1px solid #d5e2f3;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.75rem;
    display: grid;
    gap: 0.7rem;
}

.request-workflow__block {
    border: 1px solid #e2eaf6;
    border-radius: 10px;
    background: #f9fbff;
    padding: 0.7rem;
}

.request-workflow__block h4 {
    margin: 0 0 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #365277;
}

.request-workflow__note {
    margin: 0;
    color: #516a8f;
    font-size: 0.83rem;
    line-height: 1.55;
}

.request-reply__form {
    display: grid;
    gap: 0.6rem;
}

.request-reply__form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1d2435;
}

.request-reply__form input,
.request-reply__form textarea {
    width: 100%;
    border: 1px solid #cedaec;
    border-radius: 10px;
    background: #fff;
    color: #1d2435;
    padding: 0.7rem 0.8rem;
    font: inherit;
}

.request-reply__form textarea {
    resize: vertical;
    min-height: 180px;
}

.request-reply__form button {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.request-reply__form button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

@media (max-width: 1180px) {
    .contact-requests-table {
        min-width: 1080px;
    }
}

/* --- Footer --- */
.sp-footer {
    background: #090d13;
    border-top: 1px solid rgba(240, 246, 252, 0.08);
    padding: 4rem 0 2rem;
}

.sp-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.75rem;
}

.sp-footer__brand {
    font-size: 1rem;
    font-weight: 800;
    color: #fafafa;
    margin-bottom: 0.65rem;
    letter-spacing: 0.01em;
    font-family: 'Inter', sans-serif;
}

.sp-footer__brand span {
    color: #60a5fa;
}

.sp-footer__desc {
    color: #6e7681;
    font-size: 0.85rem;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.sp-footer__heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8b949e;
    margin: 0 0 1.1rem;
    font-family: 'Inter', sans-serif;
}

.sp-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.sp-footer__links a {
    color: #6e7681;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.18s;
    font-family: 'Inter', sans-serif;
}

.sp-footer__links a:hover {
    color: #cdd9e5;
}

.sp-footer__social {
    display: flex;
    gap: 0.6rem;
}

.sp-footer__social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, color 0.2s;
}

.sp-footer__social a:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: #a1a1aa;
}

.sp-footer__bottom {
    border-top: 1px solid rgba(240, 246, 252, 0.08);
    padding-top: 1.5rem;
    color: #484f58;
    font-size: 0.8rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.sp-footer__bottom a {
    color: #8fbdfd;
    text-decoration: none;
}

.sp-footer__bottom a:hover {
    color: #c6ddff;
}

.sp-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 120;
    width: min(750px, calc(100% - 2rem));
    max-width: calc(100% - 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(240, 246, 252, 0.14);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: rgba(15, 20, 30, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.sp-cookie-banner__text {
    display: grid;
    gap: 0.25rem;
}

.sp-cookie-banner__text strong {
    color: #e6edf3;
    font-size: 0.9rem;
}

.sp-cookie-banner__text p {
    margin: 0;
    color: #9ba6b4;
    font-size: 0.79rem;
    line-height: 1.55;
}

.sp-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sp-legal-page {
    padding-top: 4.8rem;
}

.sp-legal-hero {
    padding: 3rem 0 1rem;
    border-bottom: 1px solid rgba(240, 246, 252, 0.08);
}

.sp-legal-hero h1 {
    margin: 0;
    color: #e6edf3;
    font-size: clamp(1.9rem, 4.2vw, 3rem);
}

.sp-legal-hero p {
    margin: 0.8rem 0 0;
    color: #94a0af;
    max-width: 64ch;
}

.sp-legal-content {
    border-bottom: none;
}

.sp-legal-content__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
}

.sp-legal-card {
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 12px;
    background: #151b24;
    padding: 1rem;
}

.sp-legal-card h2 {
    margin: 0;
    font-size: 1rem;
    color: #e6edf3;
}

.sp-legal-card p {
    margin: 0.6rem 0 0;
    color: #95a1af;
    line-height: 1.62;
    font-size: 0.88rem;
}

.sp-legal-card a {
    color: #79c0ff;
}

.sp-404-page {
    min-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 3rem;
}

.sp-404-card {
    width: min(760px, calc(100% - 2.5rem));
    border: 1px solid rgba(240, 246, 252, 0.14);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(15, 20, 30, 0.94) 0%, rgba(24, 33, 48, 0.96) 100%);
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
}

.sp-404-code {
    margin: 0;
    font-size: clamp(3.6rem, 12vw, 6.3rem);
    font-weight: 800;
    line-height: 1;
    color: #79c0ff;
}

.sp-404-card h1 {
    margin: 0.8rem 0 0;
    color: #e6edf3;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
}

.sp-404-card p {
    margin: 0.8rem auto 0;
    color: #9ca8b7;
    max-width: 56ch;
    line-height: 1.65;
}

.sp-404-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* =====================================================
   PRODUCTS PAGE
   ===================================================== */

.sp-products-header {
    padding: 6.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(240, 246, 252, 0.08);
    margin-bottom: 0;
}

.products-page .sp-products-header .sp-container,
.products-page .sp-brand-filter .sp-container {
    width: min(1360px, calc(100% - 2rem));
}

.sp-products-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #e6edf3;
    letter-spacing: -0.028em;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.sp-products-header p {
    color: #8b949e;
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.sp-price-note {
    color: #79c0ff;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.65rem;
    font-family: 'Inter', sans-serif;
}

/* Brand filter bar */
.sp-brand-filter {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(240, 246, 252, 0.08);
    margin-bottom: 2.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sp-brand-filter::-webkit-scrollbar {
    display: none;
}

.sp-brand-filter__tabs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: nowrap;
    min-width: max-content;
}

.sp-brand-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 1rem;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 100px;
    background: transparent;
    color: #8b949e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
    white-space: nowrap;
}

.sp-brand-tab:hover {
    border-color: rgba(240, 246, 252, 0.22);
    color: #cdd9e5;
    background: rgba(240, 246, 252, 0.05);
}

.sp-brand-tab.is-active {
    background: rgba(56, 139, 253, 0.15);
    border-color: rgba(56, 139, 253, 0.4);
    color: #79c0ff;
}

/* Brand badge on card */
.sp-product-card__brand {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6e7681;
    margin-bottom: 0.2rem;
    font-family: 'Inter', sans-serif;
}

/* Year range badge on card */
.sp-product-card__year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #79c0ff;
    background: rgba(56, 139, 253, 0.1);
    border: 1px solid rgba(56, 139, 253, 0.25);
    border-radius: 100px;
    padding: 0.14rem 0.6rem;
    margin: 0.2rem 0 0.8rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

/* No results message */
.sp-no-results {
    text-align: center;
    color: #6e7681;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

/* Search bar */
.sp-search-wrap {
    position: relative;
    margin-top: 1.5rem;
    max-width: 420px;
}

.sp-search-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6e7681;
    pointer-events: none;
    flex-shrink: 0;
}

.sp-search {
    width: 100%;
    background: #161b22;
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 8px;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    color: #e6edf3;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
}

.sp-search::placeholder {
    color: #6e7681;
}

.sp-search:focus {
    border-color: rgba(56, 139, 253, 0.5);
    box-shadow: 0 0 0 3px rgba(56, 139, 253, 0.12);
}

/* WhatsApp float button */
.sp-wapp {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 99;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sp-wapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.sp-products-region {
    position: relative;
}

.sp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 1.25rem;
    padding-bottom: 5rem;
    transition: opacity 0.18s ease, filter 0.18s ease;
}

.sp-products-region.is-filtering .sp-products-grid {
    opacity: 0.55;
    filter: saturate(0.85);
}

.sp-products-skeleton {
    position: absolute;
    inset: 0 0 5rem;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 1.25rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.sp-products-region.is-filtering .sp-products-skeleton {
    opacity: 1;
    transform: none;
}

.sp-skel-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #1a202a 0%, #161c27 100%);
}

.sp-skel-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(110deg, #242c38 25%, #2e3745 40%, #242c38 55%);
    background-size: 200% 100%;
    animation: spSkelPulse 1s linear infinite;
}

.sp-skel-body {
    padding: 0.85rem 0.95rem 1rem;
    display: grid;
    gap: 0.55rem;
}

.sp-skel-line {
    height: 0.62rem;
    border-radius: 999px;
    background: linear-gradient(110deg, #252f3c 25%, #313d4e 40%, #252f3c 55%);
    background-size: 200% 100%;
    animation: spSkelPulse 1s linear infinite;
}

.sp-skel-line.w-30 { width: 30%; }
.sp-skel-line.w-60 { width: 60%; }
.sp-skel-line.w-85 { width: 85%; }

@keyframes spSkelPulse {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

.sp-product-card {
    background: linear-gradient(180deg, #161b22 0%, #141a24 100%);
    border: 1px solid rgba(240, 246, 252, 0.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.sp-product-card:hover {
    border-color: rgba(121, 192, 255, 0.34);
    transform: translateY(-4px);
    background: linear-gradient(180deg, #1a2230 0%, #161d29 100%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(121, 192, 255, 0.12);
}

.sp-product-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--sp-media-bg);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    padding: 0.5rem;
    border-radius: 13px 13px 0 0;
    transition: transform 0.28s ease;
}

.sp-product-card:hover .sp-product-card__image {
    transform: scale(1.02);
}

.sp-product-card__body {
    padding: 1.1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sp-product-card__flags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin: 0 0 0.35rem;
}

.sp-product-flag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.14rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.sp-product-flag--new {
    color: #7ee787;
    border: 1px solid rgba(126, 231, 135, 0.45);
    background: rgba(46, 160, 67, 0.15);
}

.sp-product-flag--value {
    color: #79c0ff;
    border: 1px solid rgba(121, 192, 255, 0.45);
    background: rgba(56, 139, 253, 0.15);
}

.sp-product-card__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #e6edf3;
    margin: 0 0 0.35rem;
    line-height: 1.4;
    min-height: 2.58em;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.sp-product-card__desc {
    font-size: 0.8rem;
    color: #8b949e;
    margin: 0 0 auto;
    line-height: 1.6;
    min-height: 2.7em;
    padding-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 246, 252, 0.08);
    margin-top: auto;
}

.sp-product-card__price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #cdd9e5;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}

.sp-product-card__cta {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--sp-accent-2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: color 0.18s;
}

.sp-product-card__cta-wrap {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.sp-product-card__quick {
    font-size: 0.67rem;
    font-weight: 700;
    color: #8b949e;
    border: 1px solid rgba(240, 246, 252, 0.14);
    border-radius: 999px;
    padding: 0.18rem 0.45rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.sp-product-card__quick:hover,
.sp-product-card__quick:focus {
    border-color: rgba(121, 192, 255, 0.45);
    color: #79c0ff;
    background: rgba(56, 139, 253, 0.1);
    outline: none;
}

.sp-product-card:hover .sp-product-card__cta {
    color: #93c5fd;
}

.sp-backtop {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(240, 246, 252, 0.22);
    background: rgba(13, 17, 23, 0.82);
    color: #e6edf3;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, border-color 0.2s;
}

.sp-backtop.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sp-backtop:hover {
    border-color: rgba(121, 192, 255, 0.55);
}

.sp-quick-modal-open {
    overflow: hidden;
}

.sp-quick-modal {
    position: fixed;
    inset: 0;
    z-index: 150;
}

.sp-quick-modal[hidden] {
    display: none;
}

.sp-quick-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 12, 0.72);
}

.sp-quick-modal__dialog {
    position: relative;
    width: min(920px, calc(100% - 2rem));
    margin: 4.2rem auto;
    background: #111827;
    border: 1px solid rgba(240, 246, 252, 0.14);
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.sp-quick-modal__nav,
.sp-quick-modal__count {
    position: absolute;
    z-index: 2;
}

.sp-quick-modal__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(240, 246, 252, 0.16);
    background: rgba(17, 24, 39, 0.88);
    color: #e6edf3;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.sp-quick-modal__nav:hover:not(:disabled) {
    background: rgba(27, 36, 52, 0.96);
    border-color: rgba(121, 192, 255, 0.32);
}

.sp-quick-modal__nav:disabled {
    opacity: 0.38;
    cursor: default;
}

.sp-quick-modal__nav--prev {
    left: 0.8rem;
}

.sp-quick-modal__nav--next {
    right: 0.8rem;
}

.sp-quick-modal__count {
    top: 0.75rem;
    left: 0.8rem;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.86);
    border: 1px solid rgba(240, 246, 252, 0.12);
    color: #cdd9e5;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__hint {
    position: absolute;
    left: 50%;
    bottom: 0.9rem;
    transform: translateX(-50%);
    z-index: 2;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    border: 1px solid rgba(240, 246, 252, 0.12);
    color: #cdd9e5;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal:not(.sp-quick-modal--swiped) .sp-quick-modal__hint {
    opacity: 1;
}

.sp-quick-modal__close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(240, 246, 252, 0.15);
    background: rgba(17, 24, 39, 0.9);
    color: #e6edf3;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
}

.sp-quick-modal__content {
    display: grid;
    grid-template-columns: minmax(260px, 42%) 1fr;
}

.sp-quick-modal__image {
    min-height: 290px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--sp-media-bg);
    border-right: 1px solid rgba(240, 246, 252, 0.1);
}

.sp-quick-modal__meta {
    padding: 1.2rem 1.2rem 1.15rem;
}

.sp-quick-modal__meta h2 {
    margin: 0;
    color: #e6edf3;
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__row {
    margin-top: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.sp-quick-modal__price {
    color: #79c0ff;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__year {
    color: #8b949e;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__compat {
    margin: 0.7rem 0 0;
    color: #cdd9e5;
    font-size: 0.83rem;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__desc {
    margin: 0.55rem 0 0;
    color: #8b949e;
    font-size: 0.86rem;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.sp-quick-modal__actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.sp-catalog-cta {
    margin: 0.6rem 0 4.2rem;
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.9) 0%, rgba(24, 33, 47, 0.85) 100%);
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.3rem;
    flex-wrap: wrap;
}

.sp-catalog-cta__text h2 {
    margin: 0;
    color: #e6edf3;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.sp-catalog-cta__text p {
    margin: 0.35rem 0 0;
    color: #8b949e;
    font-size: 0.87rem;
    font-family: 'Inter', sans-serif;
}

.sp-catalog-cta__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */

.sp-detail {
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.sp-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #8b949e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.18s;
    font-family: 'Inter', sans-serif;
}

.sp-detail__back:hover {
    color: #e6edf3;
}

.sp-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sp-detail__image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--sp-media-bg);
    border: 1px solid rgba(240, 246, 252, 0.08);
    aspect-ratio: 4/3;
}

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

.sp-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

.sp-gallery__main {
    border: 0;
    margin: 0;
    background: var(--sp-media-bg);
    padding: 0.9rem;
    cursor: zoom-in;
    width: 100%;
    min-height: 0;
}

.sp-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sp-gallery__nav {
    position: absolute;
    top: calc(50% - 1.2rem);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(240, 246, 252, 0.2);
    background: rgba(13, 17, 23, 0.7);
    color: #e6edf3;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.sp-gallery__nav--prev {
    left: 0.75rem;
}

.sp-gallery__nav--next {
    right: 0.75rem;
}

.sp-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.5rem;
    padding: 0.7rem;
    background: var(--sp-media-bg);
    border-top: 1px solid rgba(240, 246, 252, 0.08);
}

.sp-gallery__thumb {
    border: 1px solid rgba(240, 246, 252, 0.1);
    border-radius: 8px;
    background: var(--sp-media-bg);
    padding: 0.2rem;
    cursor: pointer;
}

.sp-gallery__thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
}

.sp-gallery__thumb.is-active {
    border-color: var(--sp-accent-2);
    box-shadow: 0 0 0 1px rgba(121, 192, 255, 0.35);
}

.sp-lightbox-open {
    overflow: hidden;
}

.sp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 6, 12, 0.92);
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3.5rem);
}

.sp-lightbox[hidden] {
    display: none !important;
}

.sp-lightbox__img {
    width: min(980px, 78vw);
    max-width: 100%;
    max-height: 78vh;
    height: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(240, 246, 252, 0.2);
    background: #0d1117;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.sp-lightbox__close,
.sp-lightbox__nav {
    position: fixed;
    border: 1px solid rgba(240, 246, 252, 0.2);
    background: rgba(13, 17, 23, 0.75);
    color: #e6edf3;
    cursor: pointer;
}

.sp-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.7rem;
    line-height: 1;
}

.sp-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.sp-lightbox__nav--prev {
    left: 1rem;
}

.sp-lightbox__nav--next {
    right: 1rem;
}

.sp-detail__info {
    position: sticky;
    top: 6rem;
}

.sp-detail__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sp-accent-2);
    margin: 0 0 0.65rem;
    display: block;
    font-family: 'Inter', sans-serif;
}

.sp-detail__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #e6edf3;
    margin: 0 0 1.1rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.sp-detail__price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #e6edf3;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem;
    font-family: 'Inter', sans-serif;
}

.sp-detail__price small {
    font-size: 0.88rem;
    font-weight: 500;
    color: #8b949e;
    margin-left: 0.35rem;
    letter-spacing: 0;
}

.sp-detail__ram-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #71717a;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin: 0 0 0.65rem;
    display: block;
    font-family: 'Inter', sans-serif;
}

.sp-rams {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.sp-ram {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sp-ram input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sp-ram__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 100px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #8b949e;
    background: rgba(240, 246, 252, 0.04);
    transition: all 0.18s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.sp-ram input[type="radio"]:checked + .sp-ram__pill {
    border-color: var(--sp-accent);
    color: var(--sp-accent-2);
    background: rgba(56, 139, 253, 0.12);
}

.sp-ram__pill:hover {
    border-color: rgba(240, 246, 252, 0.22);
    color: #cdd9e5;
    background: rgba(240, 246, 252, 0.07);
}

.sp-detail__desc {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 0 1.75rem;
    border-top: 1px solid rgba(240, 246, 252, 0.08);
    padding-top: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.sp-detail__compat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 1rem;
}

.sp-detail__compat-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(56, 139, 253, 0.12);
    border: 1px solid rgba(56, 139, 253, 0.3);
    color: #79c0ff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.sp-detail__compat-note {
    color: #8b949e;
    font-size: 0.82rem;
    font-family: 'Inter', sans-serif;
}

.sp-detail__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.sp-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.1rem;
}

.sp-trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(121, 192, 255, 0.3);
    background: rgba(56, 139, 253, 0.11);
    color: #79c0ff;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

.sp-quick-form {
    margin-top: 1.2rem;
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 14px;
    background: rgba(22, 27, 34, 0.72);
    padding: 1rem;
}

.sp-quick-form h3 {
    margin: 0;
    color: #e6edf3;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.sp-quick-form p {
    margin: 0.35rem 0 0.85rem;
    color: #8b949e;
    font-size: 0.84rem;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

.sp-quick-form__intent {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 0.95rem;
}

.sp-intent-chip {
    appearance: none;
    border: 1px solid rgba(240, 246, 252, 0.12);
    background: rgba(240, 246, 252, 0.04);
    color: #cdd9e5;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    font-family: 'Inter', sans-serif;
}

.sp-intent-chip:hover {
    border-color: rgba(121, 192, 255, 0.26);
    color: #e6edf3;
    background: rgba(56, 139, 253, 0.09);
}

.sp-intent-chip.is-active {
    border-color: rgba(121, 192, 255, 0.34);
    color: #79c0ff;
    background: rgba(56, 139, 253, 0.14);
    transform: translateY(-1px);
}

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

.sp-quick-form__grid label {
    display: grid;
    gap: 0.3rem;
    color: #cdd9e5;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sp-quick-form__grid input {
    width: 100%;
    border: 1px solid rgba(240, 246, 252, 0.15);
    border-radius: 10px;
    background: rgba(13, 17, 23, 0.8);
    color: #e6edf3;
    padding: 0.58rem 0.65rem;
    font-size: 0.84rem;
    font-family: 'Inter', sans-serif;
}

.sp-quick-form__grid input:focus {
    outline: none;
    border-color: rgba(121, 192, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(56, 139, 253, 0.15);
}

.sp-quick-form__check {
    margin-top: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #c9d1d9;
    font-size: 0.78rem;
    line-height: 1.5;
}

.sp-quick-form__check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 0.2rem;
    accent-color: #58a6ff;
}

.sp-quick-form__check a {
    color: #79c0ff;
}

.sp-quick-form__actions {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.sp-quick-form small {
    display: block;
    margin-top: 0.65rem;
    color: #6e7681;
    font-size: 0.76rem;
    font-family: 'Inter', sans-serif;
}

.sp-related {
    padding-top: 0;
}

.sp-mobile-cta {
    display: none;
}

/* --- Reveal animation --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Home 3x3 product grid --- */
.sp-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

@media (max-width: 860px) {
    .sp-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .sp-home-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Accordion FAQ --- */
.sp-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(240, 246, 252, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.sp-accordion__item {
    border-bottom: 1px solid rgba(240, 246, 252, 0.08);
}

.sp-accordion__item:last-child {
    border-bottom: none;
}

.sp-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.6rem;
    background: #161b22;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #cdd9e5;
    font-size: 0.93rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background 0.18s, color 0.18s;
}

.sp-accordion__trigger:hover {
    background: #1c2333;
    color: #e6edf3;
}

.sp-accordion__trigger[aria-expanded="true"] {
    background: #1c2333;
    color: #e6edf3;
}

.sp-accordion__icon {
    flex-shrink: 0;
    color: #6e7681;
    transition: transform 0.25s ease, color 0.18s;
}

.sp-accordion__trigger[aria-expanded="true"] .sp-accordion__icon {
    transform: rotate(180deg);
    color: var(--sp-accent-2);
}

.sp-accordion__body {
    padding: 0 1.6rem 1.25rem;
    background: #161b22;
}

.sp-accordion__body p {
    margin: 0;
    color: #8b949e;
    font-size: 0.875rem;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    padding-top: 0.5rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
    .sp-detail__grid {
        grid-template-columns: 1fr;
    }

    .sp-detail__info {
        position: static;
    }

    .sp-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-contact__card {
        padding: 2rem 2.25rem;
        grid-template-columns: 1fr;
    }

    .sp-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .sp-quick-form__grid {
        grid-template-columns: 1fr;
    }

    .sp-brand-filter {
        position: sticky;
        top: 68px;
        z-index: 55;
        background: rgba(13, 17, 23, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .sp-quick-modal__content {
        grid-template-columns: 1fr;
    }

    .sp-quick-modal__image {
        min-height: 220px;
        border-right: none;
        border-bottom: 1px solid rgba(240, 246, 252, 0.1);
    }

    .sp-quick-modal__nav {
        top: auto;
        bottom: 0.8rem;
        transform: none;
    }

    .sp-quick-modal__nav--prev {
        left: 0.8rem;
    }

    .sp-quick-modal__nav--next {
        right: 0.8rem;
    }

    .sp-quick-modal__hint {
        bottom: 0.84rem;
        max-width: calc(100% - 7.5rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sp-hero-featured__grid {
        grid-template-columns: 1fr;
    }

    .sp-cookie-banner {
        bottom: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        width: min(750px, calc(100% - 1.4rem));
    }

    .sp-cookie-banner__actions {
        width: 100%;
    }
}


@media (max-width: 640px) {
    .sp-section {
        padding: 3.25rem 0;
    }

    .sp-hero__stats {
        gap: 1.75rem;
    }

    .sp-perf-display {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sp-terminal-body {
        font-size: 0.65rem;
        min-height: 200px;
    }

    .sp-perf-grid {
        grid-template-columns: 1fr;
    }

    /* Remap responsive */
    .sp-remap-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sp-changes-grid {
        grid-template-columns: 1fr;
    }

    .sp-faq-grid {
        grid-template-columns: 1fr;
    }

    .sp-cats {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sp-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .sp-catalog-cta {
        margin-bottom: 6.2rem;
    }

    .sp-benefits {
        grid-template-columns: 1fr;
    }

    .sp-nav__links {
        display: none;
    }

    .sp-nav__burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sp-nav__links.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 17, 23, 0.98);
        border-bottom: 1px solid rgba(240, 246, 252, 0.1);
        padding: 0.75rem;
        gap: 0.1rem;
        backdrop-filter: blur(20px);
    }

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

    .sp-lightbox {
        padding: 1rem;
    }

    .sp-lightbox__img {
        width: min(94vw, 680px);
        max-height: 70vh;
    }

    .sp-mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.65rem max(0.65rem, env(safe-area-inset-left)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-right));
        background: rgba(9, 13, 19, 0.96);
        border-top: 1px solid rgba(240, 246, 252, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .sp-mobile-cta__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        border-radius: 10px;
        padding: 0.72rem 0.8rem;
        min-height: 44px;
        font-size: 0.82rem;
        font-weight: 700;
        color: #e6edf3;
        background: #1f2937;
        border: 1px solid rgba(240, 246, 252, 0.14);
        font-family: 'Inter', sans-serif;
    }

    .sp-mobile-cta__btn--wa {
        background: #16a34a;
        border-color: rgba(22, 163, 74, 0.9);
        color: #ffffff;
    }

    .sp-wapp {
        display: flex;
    }

    .sp-backtop {
        right: 1rem;
        bottom: 5.7rem;
    }

    .sp-detail {
        padding-bottom: calc(7rem + env(safe-area-inset-bottom));
    }

    .public-page--detail .sp-wapp {
        bottom: calc(5.4rem + env(safe-area-inset-bottom));
    }
}

.admin-gallery-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 0.9rem;
}

.admin-gallery-card {
    border: 1px solid #d2deef;
    border-radius: 14px;
    background: #f8fbff;
    padding: 0.75rem;
    display: grid;
    gap: 0.75rem;
}

.admin-gallery-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #cfdbec;
    background: #ffffff;
}

.admin-gallery-card__form {
    display: grid;
    gap: 0.6rem;
}

.admin-gallery-card__actions {
    display: flex;
    gap: 0.55rem;
}

.sp-gallery-page {
    padding-top: 8rem;
}

.sp-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.1rem;
}

.sp-work-card {
    border: 1px solid rgba(240, 246, 252, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #151b25 0%, #121824 100%);
}

.sp-work-card__media {
    background: #111a2a;
}

.sp-work-card__open {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    background: transparent;
    cursor: zoom-in;
}

.sp-work-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.sp-work-card__body {
    padding: 0.9rem 1rem 1.05rem;
}

.sp-work-card__body h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #e6edf3;
    margin: 0 0 0.45rem;
}

.sp-work-card__body p {
    margin: 0;
    color: #9ca9b8;
    line-height: 1.55;
    font-size: 0.88rem;
}

.sp-empty-state {
    border: 1px dashed rgba(240, 246, 252, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: #9ca9b8;
}

@media (max-width: 760px) {
    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sp-gallery-page {
        padding-top: 7rem;
    }

    .sp-work-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .admin-page .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .admin-page .topbar-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .admin-page .topbar-actions .btn {
        width: 100%;
        text-align: center;
    }

    .admin-page .content-editor-layout {
        grid-template-columns: 1fr;
    }

    .admin-page .content-editor-menu {
        position: static;
        top: auto;
    }

    .admin-page .content-editor-menu__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-page .section-head-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .admin-page .admin-topbar,
    .admin-page .admin-main {
        width: calc(100% - 1rem);
    }

    .admin-page .topbar-actions,
    .admin-page .content-editor-menu__list {
        grid-template-columns: 1fr;
    }

    .admin-page .content-editor-panel,
    .admin-page .form-card,
    .admin-page .table-card {
        padding: 0.85rem;
    }

    .admin-page .content-grid {
        grid-template-columns: 1fr;
    }

    .admin-page .admin-search {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .admin-page .admin-search input[type="search"] {
        min-width: 0;
        max-width: none;
    }

    .admin-page .admin-search .btn {
        width: 100%;
        text-align: center;
    }

    .admin-page .actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 390px) {
    .sp-mobile-cta {
        gap: 0.45rem;
        padding-top: 0.55rem;
    }

    .sp-mobile-cta__btn {
        font-size: 0.78rem;
        padding: 0.68rem 0.5rem;
    }

    .sp-nav__links.is-open a {
        color: #8b949e;
    }

    .sp-nav__links.is-open a:hover {
        color: #e6edf3;
        background: rgba(240, 246, 252, 0.07);
    }

    .sp-nav__right .sp-btn--sm {
        display: none;
    }
}

