:root {
    --bg: #041a38;
    --bg-deep: #021024;
    --bg-soft: #0a2d5c;
    --surface: rgba(8, 36, 78, 0.78);
    --surface-hover: rgba(14, 52, 102, 0.92);
    --text: #f0f6ff;
    --text-soft: #a8c4e8;
    --text-dim: #6b94c4;
    --blue: #3b8eea;
    --blue-bright: #5eb3ff;
    --blue-glow: rgba(59, 142, 234, 0.35);
    --gold: #e8c96a;
    --gold-soft: rgba(232, 201, 106, 0.12);
    --gold-border: rgba(232, 201, 106, 0.35);
    --line: rgba(147, 197, 253, 0.1);
    --line-strong: rgba(147, 197, 253, 0.18);
    --radius: 18px;
    --radius-lg: 28px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Instrument Serif', Georgia, serif;
    --shadow: 0 32px 80px rgba(2, 16, 36, 0.55);
    --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { color: var(--blue-bright); text-decoration: none; transition: color .2s; }
a:hover { color: #93d4ff; }

img { max-width: 100%; height: auto; display: block; }

/* Scene — mavi premium + garanti belgesi filigranları */
.scene {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.scene__base {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg, #021024 0%, #041a38 28%, #0a2d5c 55%, #062040 100%);
}
.scene__mesh {
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(ellipse 60% 50% at 12% 8%, rgba(59, 142, 234, 0.22), transparent 58%),
        radial-gradient(ellipse 55% 45% at 88% 15%, rgba(37, 99, 235, 0.16), transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 95%, rgba(14, 165, 233, 0.12), transparent 50%),
        radial-gradient(ellipse 35% 30% at 72% 62%, rgba(232, 201, 106, 0.06), transparent 45%);
}
.scene__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: glowDrift 22s ease-in-out infinite;
}
.scene__glow--1 {
    width: 480px;
    height: 480px;
    top: -8%;
    left: -6%;
    background: radial-gradient(circle, rgba(59, 142, 234, 0.5), transparent 70%);
}
.scene__glow--2 {
    width: 420px;
    height: 420px;
    bottom: -10%;
    right: -4%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.45), transparent 70%);
    animation-delay: -11s;
}
@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -16px) scale(1.06); }
}
.scene__docs {
    position: absolute;
    inset: 0;
}
.scene__doc {
    position: absolute;
    color: rgba(147, 197, 253, 0.14);
    width: clamp(72px, 9vw, 110px);
    height: auto;
    animation: docFloat 28s ease-in-out infinite;
}
.scene__doc--1 { top: 8%; left: 6%; transform: rotate(-18deg); animation-delay: 0s; }
.scene__doc--2 { top: 14%; right: 8%; width: clamp(64px, 8vw, 96px); transform: rotate(12deg); animation-delay: -4s; opacity: 0.85; }
.scene__doc--3 { top: 42%; left: 3%; width: clamp(56px, 7vw, 84px); transform: rotate(-8deg); animation-delay: -9s; }
.scene__doc--4 { top: 38%; right: 5%; transform: rotate(22deg); animation-delay: -14s; }
.scene__doc--5 { bottom: 18%; left: 10%; width: clamp(80px, 10vw, 120px); transform: rotate(-14deg); animation-delay: -6s; }
.scene__doc--6 { bottom: 12%; right: 12%; transform: rotate(8deg); animation-delay: -18s; opacity: 0.9; }
@keyframes docFloat {
    0%, 100% { transform: translateY(0) rotate(var(--doc-rot, -12deg)); }
    50% { transform: translateY(-14px) rotate(calc(var(--doc-rot, -12deg) + 4deg)); }
}
.scene__doc--1 { --doc-rot: -18deg; }
.scene__doc--2 { --doc-rot: 12deg; }
.scene__doc--3 { --doc-rot: -8deg; }
.scene__doc--4 { --doc-rot: 22deg; }
.scene__doc--5 { --doc-rot: -14deg; }
.scene__doc--6 { --doc-rot: 8deg; }
.scene__grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
    padding: 0 clamp(20px, 4vw, 48px);
    background: rgba(4, 26, 56, 0.78);
    backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--line);
}
.header__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
}
.header__logo {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) sepia(0.08) saturate(0.3) hue-rotate(5deg);
    opacity: 0.96;
}
.header__tag {
    padding-left: 16px;
    border-left: 1px solid var(--line-strong);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    white-space: nowrap;
}
.header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header__link {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: color .2s, background .2s;
}
.header__link:hover,
.header__link.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}
.header__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--gold-border);
    background: var(--gold-soft);
    color: #f0dfa0;
    font-size: 0.84rem;
    font-weight: 700;
}
.header__pill:hover {
    background: rgba(212, 175, 90, 0.22);
    color: #fff8e0;
}
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}
.header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s;
}

/* Page */
.page {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 7vw, 88px) clamp(20px, 4vw, 48px) 56px;
    max-width: 920px;
    margin: 0 auto;
}

/* Intro */
.intro {
    text-align: center;
    margin-top: clamp(-32px, -4vw, -16px);
}
.intro--compact {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 7px 16px 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-soft);
}
.intro__live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
    animation: live 2.4s ease infinite;
}
@keyframes live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}
.intro__logo {
    display: block;
    width: clamp(140px, 32vw, 228px);
    max-width: 88vw;
    height: auto;
    margin: 0 auto clamp(20px, 4vw, 28px);
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(147, 197, 253, 0.2));
    opacity: 0.97;
}
.intro__title {
    margin: 0 0 clamp(14px, 3vw, 20px);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.8vw, 4.2rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.intro__title em {
    font-style: italic;
    background: linear-gradient(135deg, #93d4ff 0%, #e8c96a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.intro__title--row {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.42em;
    width: 100%;
    max-width: 640px;
    margin: 0 auto clamp(28px, 5vw, 40px);
    padding: 0 clamp(8px, 2vw, 12px);
    font-size: clamp(1.85rem, 7vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.intro__title--row span,
.intro__title--row em {
    display: inline-block;
    flex-shrink: 0;
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--text);
}
.intro__title--row em {
    font-style: italic;
    background: linear-gradient(135deg, #93d4ff 0%, #e8c96a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.intro--compact .finder {
    margin-bottom: clamp(28px, 5vw, 40px);
}
.intro__text {
    max-width: min(540px, 92vw);
    margin: 0 auto clamp(32px, 6vw, 44px);
    padding: 0 clamp(8px, 3vw, 16px);
    font-size: clamp(0.92rem, 2.6vw, 1.02rem);
    line-height: 1.65;
    color: var(--text-soft);
}

/* Finder */
.finder {
    max-width: 640px;
    margin: 0 auto 52px;
    text-align: left;
}
.finder__label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.finder__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color .25s, box-shadow .25s;
}
.finder__row:focus-within {
    border-color: rgba(94, 179, 255, 0.45);
    box-shadow: var(--shadow), 0 0 0 3px rgba(59, 142, 234, 0.15);
}
.finder__icon { flex-shrink: 0; color: var(--text-dim); }
.finder__input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}
.finder__input::placeholder { color: var(--text-dim); }
.finder__input--mono {
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.92rem;
}
.finder__submit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    padding: 14px 24px;
    border: none;
    border-radius: calc(var(--radius-lg) - 8px);
    background: linear-gradient(145deg, #e8c96a 0%, #b8923f 100%);
    color: #1a1408;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform .15s, filter .15s;
}
.finder__submit:hover { filter: brightness(1.06); transform: translateY(-1px); }
.finder__submit:disabled { opacity: 0.65; cursor: wait; transform: none; }
.finder__submit-spin {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(26, 20, 8, 0.25);
    border-top-color: #1a1408;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.finder__hint {
    margin: 12px 4px 0;
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    text-align: left;
    transition: border-color .2s, background .2s, transform .2s;
}
.highlight:hover {
    border-color: rgba(94, 179, 255, 0.35);
    background: rgba(59, 142, 234, 0.1);
    transform: translateY(-2px);
}
.highlight__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(94, 179, 255, 0.3);
    background: rgba(59, 142, 234, 0.12);
    color: var(--blue-bright);
}
.highlight__title {
    margin: 0 0 4px;
    font-size: 0.92rem;
    font-weight: 700;
}
.highlight__desc {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* Drawer / results */
.drawer[hidden] { display: none !important; }
.drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    justify-content: flex-end;
}
.drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(2, 16, 36, 0.68);
    backdrop-filter: blur(8px);
}
.drawer__panel {
    position: relative;
    width: min(480px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a2d5c 0%, #062040 100%);
    border-left: 1px solid var(--line-strong);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.45);
    animation: slideIn .32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.drawer__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--line);
}
.drawer__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.drawer__sub {
    margin: 6px 0 0;
    font-size: 0.8rem;
    color: var(--text-soft);
}
.drawer__close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .2s, border-color .2s;
}
.drawer__close:hover { color: var(--text); border-color: var(--line-strong); }
.drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px 28px;
}

/* Product hit */
.hit {
    display: flex;
    gap: 14px;
    padding: 14px;
    margin-bottom: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: inherit;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .2s;
}
.hit:hover {
    border-color: rgba(94, 179, 255, 0.35);
    background: var(--surface-hover);
    transform: translateX(-2px);
}
.hit__thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(4, 26, 56, 0.6);
    object-fit: contain;
    padding: 4px;
}
.hit__thumb--empty {
    display: grid;
    place-items: center;
    color: var(--text-dim);
    font-size: 1.2rem;
}
.hit__body { min-width: 0; flex: 1; }
.hit__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.hit__name {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}
.hit__code {
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(59, 142, 234, 0.15);
    border: 1px solid rgba(94, 179, 255, 0.3);
    color: #93d4ff;
    font-size: 0.68rem;
    font-weight: 700;
    font-family: ui-monospace, monospace;
}
.hit__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 0.72rem;
    color: var(--text-dim);
}
.hit__badge {
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
}
.hit__cta {
    margin-left: auto;
    font-weight: 700;
    color: var(--blue-bright);
}
.hit__desc {
    margin: 0 0 8px;
    font-size: 0.78rem;
    color: var(--text-soft);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.drawer__empty {
    text-align: center;
    padding: 56px 24px;
    color: var(--text-soft);
}
.drawer__empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--text-dim);
    font-size: 1.4rem;
}

/* Warranty */
.warranty-result { max-width: 580px; margin: clamp(28px, 5vw, 44px) auto 0; }
.warranty-card {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 4vw, 32px);
    border-radius: calc(var(--radius-lg) + 4px);
    border: 1px solid var(--line-strong);
    background: linear-gradient(155deg, rgba(10, 45, 92, 0.92) 0%, rgba(6, 32, 64, 0.88) 100%);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.warranty-card__glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.35;
    filter: blur(40px);
}
.warranty-card.is-active .warranty-card__glow { background: radial-gradient(circle, rgba(74, 222, 128, 0.55), transparent 70%); }
.warranty-card.is-expired .warranty-card__glow { background: radial-gradient(circle, rgba(251, 191, 36, 0.45), transparent 70%); }
.warranty-card--fail .warranty-card__glow { background: radial-gradient(circle, rgba(248, 113, 113, 0.4), transparent 70%); }
.warranty-card.is-active { border-color: rgba(74, 222, 128, 0.35); }
.warranty-card.is-expired { border-color: rgba(251, 191, 36, 0.35); }
.warranty-card--fail { border-color: rgba(248, 113, 113, 0.35); }

.warranty-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}
.warranty-badge__icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}
.warranty-badge--ok {
    color: #86efac;
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.28);
}
.warranty-badge--ok .warranty-badge__icon {
    background: rgba(74, 222, 128, 0.18);
    color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}
.warranty-badge--warn {
    color: #fcd34d;
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.28);
}
.warranty-badge--warn .warranty-badge__icon {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}
.warranty-badge--fail {
    color: #fca5a5;
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.28);
    margin-bottom: 16px;
}
.warranty-badge--fail .warranty-badge__icon {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

.warranty-card__head {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.warranty-card__serial-wrap { text-align: right; }
.warranty-card__serial-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.warranty-card__serial {
    margin: 0;
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(94, 179, 255, 0.25);
    background: rgba(4, 26, 56, 0.55);
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: clamp(0.95rem, 3.5vw, 1.2rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #e0f0ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.warranty-card__rows {
    position: relative;
    margin: 0;
    display: grid;
    gap: 0;
}
.warranty-card__row {
    display: grid;
    grid-template-columns: minmax(110px, 38%) 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(147, 197, 253, 0.08);
    font-size: 0.88rem;
}
.warranty-card__row:last-child { border-bottom: none; }
.warranty-card__row dt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
.warranty-card__row dd {
    margin: 0;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
}
.warranty-card__row-icon {
    font-size: 0.55rem;
    color: var(--blue-bright);
    opacity: 0.7;
}
.warranty-card__row--dates {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(147, 197, 253, 0.08);
}
.warranty-date {
    flex: 1;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
}
.warranty-date dt {
    margin: 0 0 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.warranty-date dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.warranty-date__sep {
    width: 1px;
    margin: 8px 10px;
    background: linear-gradient(180deg, transparent, rgba(147, 197, 253, 0.25), transparent);
    align-self: stretch;
}
.warranty-card__pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(59, 142, 234, 0.15);
    border: 1px solid rgba(94, 179, 255, 0.25);
    color: var(--blue-bright);
    font-size: 0.8rem;
    font-weight: 700;
}

.warranty-card__foot {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.warranty-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 14px;
    background: linear-gradient(145deg, #e8c96a 0%, #b8923f 100%);
    color: #1a1408 !important;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 28px rgba(232, 201, 106, 0.22);
    transition: transform .15s, box-shadow .15s;
}
.warranty-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(232, 201, 106, 0.3);
    color: #1a1408 !important;
}
.warranty-card__msg {
    position: relative;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 20px 48px;
    border-top: 1px solid var(--line);
}
.footer__inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.footer__copy {
    margin: 0;
    font-size: 0.78rem;
    color: var(--text-dim);
    opacity: 0.65;
}

/* Responsive */
@media (max-width: 860px) {
    .header__tag { display: none; }
    .highlights { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .scene__doc { opacity: 0.55; }
    .scene__doc--3,
    .scene__doc--6 { display: none; }
}
@media (max-width: 768px) {
    .page {
        padding-top: clamp(24px, 5vw, 40px);
    }
    .intro {
        margin-top: clamp(-40px, -6vw, -20px);
    }
    .intro__logo {
        width: clamp(128px, 42vw, 188px);
        margin-bottom: 18px;
    }
    .intro__title {
        font-size: clamp(1.75rem, 7.5vw, 2.6rem);
        line-height: 1.12;
    }
    .intro__text {
        line-height: 1.6;
    }
    .intro__title--row {
        font-size: clamp(1.45rem, 7.5vw, 2.65rem);
        gap: 0.38em;
        letter-spacing: -0.02em;
    }
    .warranty-card__head {
        flex-direction: column;
        align-items: stretch;
    }
    .warranty-card__serial-wrap { text-align: left; }
    .warranty-card__row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .warranty-card__row--dates {
        flex-direction: column;
    }
    .warranty-date__sep {
        width: auto;
        height: 1px;
        margin: 8px 0;
    }
    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: rgba(4, 26, 56, 0.96);
        border-bottom: 1px solid var(--line);
    }
    .header__nav.is-open { display: flex; }
    .header__pill { margin-left: 0; justify-content: center; }
    .header__toggle { display: flex; }
    .drawer { justify-content: center; align-items: flex-end; }
    .drawer__panel {
        width: 100%;
        height: min(88vh, 720px);
        border-left: none;
        border-top: 1px solid var(--line-strong);
        border-radius: 24px 24px 0 0;
        animation-name: slideUp;
    }
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}
