@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-dark: #A07830;
    --ink: #0D0D0D;
    --ink-soft: #1A1A1A;
    --ink-mid: #2C2C2C;
    --surface: #141414;
    --surface-raised: #1E1E1E;
    --surface-high: #272727;
    --fog: #8A8A8A;
    --mist: #B8B8B8;
    --white: #F5F3EF;
    --white-pure: #FFFFFF;
    --danger: #E05A5A;
    --success: #4DAF7C;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-elevated: 0 12px 48px rgba(0,0,0,0.6);
    --glow-gold: 0 0 40px rgba(201,168,76,0.15);
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--ink);
    color: var(--mist);
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── PAGE LOADER ────────────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,13,13,0.96);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-spinner {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgba(201,168,76,0.25);
    border-top-color: var(--gold);
    animation: pageLoaderSpin 0.85s linear infinite;
}

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

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

a { text-decoration: none; color: inherit; transition: color 0.25s ease, opacity 0.25s ease; }

ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.otp-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.otp-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.otp-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.otp-h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.otp-text {
    font-size: 1rem;
    color: var(--mist);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.otp-link { color: inherit; transition: color 0.2s; }
.otp-link:hover { color: var(--gold); }

.otp-img { max-width: 100%; height: auto; display: block; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

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

/* ─── DISCLOSURE BANNER ──────────────────────────────── */
.disclosure {
    background: var(--ink-mid);
    color: var(--fog);
    font-size: 0.78rem;
    text-align: center;
    padding: 0.65rem 5%;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: padding 0.3s ease;
}

.site-header.scrolled {
    padding: 0.7rem 5%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-accent {
    color: var(--gold);
}

.site-nav ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fog);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-nav ul li a:hover { color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.45);
    filter: brightness(1.08);
    color: var(--ink);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--ink);
}

/* ─── BADGE ──────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    background: rgba(201,168,76,0.08);
    margin-bottom: 1.2rem;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    max-width: 1320px;
    margin: 0 auto;
    gap: 5rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.hero-content { flex: 1; }

.hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 0.85rem;
    color: var(--fog);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-item span { color: var(--gold); font-size: 1rem; }

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated), var(--glow-gold);
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,168,76,0.2);
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}

/* ─── SECTION INTRO ──────────────────────────────────── */
.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ─── FEATURE CARDS ──────────────────────────────────── */
.features-section {
    background: var(--surface);
}

.feature-card {
    background: var(--surface-raised);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.2);
    box-shadow: var(--shadow-card);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/* ─── COMPARISON ─────────────────────────────────────── */
.comparison-section {
    background: var(--surface);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.comp-col {
    padding: 3rem 2.5rem;
}

.comp-col-old {
    background: var(--surface-raised);
    border-right: 1px solid rgba(255,255,255,0.06);
}

.comp-col-new {
    background: linear-gradient(160deg, rgba(201,168,76,0.05) 0%, var(--surface-raised) 100%);
}

.comp-header {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--fog);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comp-header-new { color: var(--gold); }

.comp-item {
    margin-bottom: 1.8rem;
}

.comp-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.icon-x { color: var(--danger); font-size: 0.9rem; }
.icon-check { color: var(--gold); font-size: 0.9rem; }

.comp-item-desc { font-size: 0.88rem; color: var(--fog); }

/* ─── SPECS ──────────────────────────────────────────── */
.specs-section { background: var(--ink); }

.spec-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.spec-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spec-item:last-child { border-bottom: none; }

/* ─── COMPARISON TABLE ───────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    -webkit-overflow-scrolling: touch;
}

.otp-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--surface-raised);
    font-size: 0.9rem;
}

.otp-table thead th {
    background: var(--surface-high);
    color: var(--white);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.otp-table thead th.highlight-col {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.otp-table tbody td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--mist);
}

.otp-table tbody tr:last-child td { border-bottom: none; }

.otp-table tbody td.highlight-col {
    color: var(--gold-light);
    font-weight: 600;
    background: rgba(201,168,76,0.04);
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { background: var(--surface); }

.testimonial-track-wrap {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.testimonial-track-wrap::before,
.testimonial-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--surface), transparent);
}

.testimonial-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--surface), transparent);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 5 - 1.5rem * 5)); }
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: calc(320px * 10 + 1.5rem * 10);
    animation: ticker 35s linear infinite;
}

.testimonial-track:hover { animation-play-state: paused; }

.testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--surface-raised);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: var(--mist);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fog);
    letter-spacing: 0.04em;
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--ink);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cta-band-sub {
    color: rgba(13,13,13,0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    background: var(--ink);
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.9rem 2.4rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    color: var(--gold-light);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
    background: var(--ink-soft);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 5% 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--fog);
    line-height: 1.65;
    margin-top: 1rem;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--fog);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-nav-list li { margin-bottom: 0.75rem; }

.footer-nav-list li a {
    font-size: 0.88rem;
    color: var(--fog);
}

.footer-nav-list li a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--fog);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ─── COOKIE CONSENT ─────────────────────────────────── */
.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 35px rgba(0,0,0,0.4);
    padding: 1rem;
    display: none;
}

.cookie-consent.show { display: block; }

.cookie-consent-text {
    color: var(--mist);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.cookie-consent-text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.6rem;
}

.cookie-btn {
    flex: 1;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
}

.cookie-btn-accept {
    border-color: rgba(201,168,76,0.7);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--ink);
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-box {
    background: var(--surface-raised);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fog);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--surface-high);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus { border-color: var(--gold); }

.form-control::placeholder { color: var(--fog); }

.contact-info-panel {
    background: var(--surface-raised);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 0.95rem;
    color: var(--mist);
    line-height: 1.6;
}

/* ─── ORDER PAGE ─────────────────────────────────────── */
.order-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
}

.product-gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.1);
    box-shadow: var(--shadow-elevated);
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.thumb-label {
    background: var(--surface-raised);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fog);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-panel {
    background: var(--surface-raised);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--glow-gold);
    position: sticky;
    top: 100px;
}

.old-price {
    text-decoration: line-through;
    color: var(--fog);
    font-size: 1rem;
}

.new-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin: 0.5rem 0 0.25rem;
}

.price-note { font-size: 0.78rem; color: var(--fog); }

.stock-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(224,90,90,0.08);
    border: 1px solid rgba(224,90,90,0.2);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    color: #E08080;
    font-weight: 600;
    margin: 1.2rem 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-row-key { color: var(--fog); }
.spec-row-val { color: var(--mist); font-weight: 500; }

/* ─── ARTICLE PAGES ──────────────────────────────────── */
.article-container {
    max-width: 860px;
    margin: 0 auto;
    background: var(--surface-raised);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-xl);
    padding: 4rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 0.85rem;
    color: var(--fog);
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.article-container h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-container h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-container h4 { margin-top: 1.5rem; margin-bottom: 0.5rem; }

.article-container ul, .article-container ol {
    padding-left: 1.5rem;
    list-style: disc;
    margin-bottom: 1rem;
}

.article-container ol { list-style: decimal; }

.article-container li { color: var(--mist); margin-bottom: 0.6rem; font-size: 0.95rem; }

.article-container hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 2.5rem 0;
}

.info-box {
    background: rgba(201,168,76,0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.info-box p { color: var(--mist); font-size: 0.92rem; }

.steps-row {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.step-card {
    flex: 1;
    background: var(--surface-high);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.step-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.faq-item { margin-bottom: 2rem; }

.faq-q {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cta-box {
    background: var(--surface-high);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

/* ─── MEDIA QUERIES ──────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .order-layout { grid-template-columns: 1fr; }
    .price-panel { position: static; }
}

@media (max-width: 768px) {
    .hero { flex-direction: column-reverse; text-align: center; min-height: auto; padding-top: 3rem; gap: 3rem; }
    .hero-cta-group { justify-content: center; }
    .hero-trust-badges { justify-content: center; }
    .flex-row { flex-direction: column; gap: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .comparison-wrapper { grid-template-columns: 1fr; }
    .comp-col-old { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .site-header { flex-wrap: wrap; gap: 0.9rem; }
    .site-header .logo { order: 1; }
    .site-header > .btn-primary {
        order: 2;
        margin-left: auto;
        width: auto;
        white-space: nowrap;
    }
    .site-header .site-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .site-nav ul {
        gap: 1rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
    }
    .site-nav ul li a { font-size: 0.8rem; }
    .article-container { padding: 2rem 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; }
    .container { padding: 3rem 5%; }
}

@media (max-width: 480px) {
    .hero-trust-badges { flex-direction: column; gap: 0.75rem; }
    .otp-h1 { font-size: 2.2rem; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .site-header > .btn-primary {
        width: auto;
        padding: 0.65rem 1rem;
        font-size: 0.74rem;
        letter-spacing: 0.02em;
    }
    .cookie-consent-actions { flex-direction: column; }
    .hero-cta-group { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .product-thumbnails { grid-template-columns: 1fr 1fr; }
}
