:root {
    --primary: #e30611;
    --blue: #327afd;
    --blue-dark: #1a5fd4;
    --green: #13ce66;
    --green-dark: #0fb358;
    --bg: #f4f6fb;
    --card: #ffffff;
    --text: #1c1e21;
    --text-muted: #65676b;
    --border: #e8ecf2;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(50, 122, 253, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --header-h: 60px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(72px + var(--safe-bottom));
}

@media (min-width: 768px) {
    body { padding-bottom: 0; }
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    text-decoration: none;
}

.logo:hover { text-decoration: none; }
.logo img { width: 34px; height: 34px; }

.nav-desktop { display: none; }
.nav-desktop a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
    text-decoration: none;
}
.nav-desktop a:hover { background: var(--bg); text-decoration: none; }

.btn-header {
    display: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform 0.15s, background 0.2s;
}
.btn-header:hover { background: #c0050f; text-decoration: none; transform: translateY(-1px); }

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card);
    z-index: 199;
    padding: 20px 16px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
    display: block;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    text-decoration: none;
}
.nav-mobile a:hover { background: var(--bg); text-decoration: none; }

.nav-mobile .btn-buy-nav {
    margin-top: 12px;
    background: var(--blue);
    color: #fff;
    text-align: center;
    font-weight: 600;
}

@media (min-width: 768px) {
    .burger { display: none; }
    .nav-desktop { display: flex; align-items: center; gap: 4px; }
    .btn-header { display: inline-block; }
    .nav-mobile { display: none !important; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; }

.btn-red { background: var(--primary); color: #fff; }
.btn-red:hover { background: #c0050f; color: #fff; }

.btn-dark { background: #1c1e21; color: #fff; }
.btn-dark:hover { background: #333; color: #fff; }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--blue);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--blue-dark); }

.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 15px; }
.btn-block { width: 100%; }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 60%, #0d3d8f 100%);
    color: #fff;
    padding: 40px 0 48px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero__desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero { padding: 64px 0 72px; }
    .hero__grid { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: 42px; }
    .hero__buttons { flex-direction: row; flex-wrap: wrap; }
    .hero__img { max-width: 100%; margin: 0; }
}

/* ── Sections ── */
.section { padding: 48px 0; }
.section--alt { background: var(--card); }
.section--gray { background: #eef1f6; }

.section__title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text);
}

.section__subtitle {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section { padding: 72px 0; }
    .section__title { font-size: 32px; }
}

/* ── Trust badge ── */
.trust-badge {
    background: linear-gradient(90deg, rgba(19,206,102,0.1), rgba(50,122,253,0.1));
    border: 1px solid rgba(19,206,102,0.25);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.trust-badge__text { font-size: 14px; color: var(--text-muted); }

/* ── Demo buttons ── */
.demo-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto 8px;
}

@media (min-width: 480px) {
    .demo-buttons { flex-direction: row; justify-content: center; }
}

/* ── Info quote ── */
.quote-block {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    max-width: 700px;
    margin: 0 auto;
}

.quote-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.quote-block__author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.quote-block__author img { width: 40px; height: 40px; border-radius: 50%; }

/* ── Pricing cards ── */
.pricing-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 600px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .pricing-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.price-card--featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(50,122,253,0.2), var(--shadow);
}

.price-card__badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text);
}

.price-card__price {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 16px;
    line-height: 1;
}

.price-card__price span { font-size: 18px; font-weight: 600; }

.price-card__price--sale {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
}

.price-card__old {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #9aa3af;
    /* native strike + fallback bar for mobile browsers */
    text-decoration: line-through !important;
    text-decoration-color: #9aa3af !important;
    text-decoration-thickness: 2px !important;
    -webkit-text-decoration-line: line-through !important;
    -webkit-text-decoration-color: #9aa3af !important;
    -webkit-text-decoration-thickness: 2px !important;
    order: 1;
    line-height: 1.2;
}

/* guaranteed visible slash on all devices */
.price-card__old::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: #9aa3af;
    transform: translateY(-50%) rotate(-8deg);
    pointer-events: none;
    border-radius: 1px;
}

.price-card__new {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    order: 2;
}

.price-card__new span {
    font-size: 18px;
    font-weight: 600;
}

.price-card__sale-label {
    order: 3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff;
    background: #e53935;
    padding: 3px 8px;
    border-radius: 8px;
    line-height: 1.2;
    margin-top: 2px;
}

.price-inline-old {
    position: relative;
    display: inline-block;
    color: #9aa3af;
    font-weight: 500;
    text-decoration: line-through !important;
    text-decoration-thickness: 2px !important;
    -webkit-text-decoration-line: line-through !important;
}

.price-inline-old::after {
    content: "";
    position: absolute;
    left: -1px;
    right: -1px;
    top: 50%;
    height: 1.5px;
    background: #9aa3af;
    transform: translateY(-50%) rotate(-8deg);
    pointer-events: none;
}

/* sale block owns margin; prevent double spacing from base .price-card__price */
.price-card__price.price-card__price--sale {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: normal;
}

@media (min-width: 480px) {
    .price-card__price--sale {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 8px 12px;
    }
    .price-card__old {
        font-size: 18px;
    }
    .price-card__sale-label {
        margin-top: 0;
        align-self: center;
    }
}


.price-card__features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-card__features li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0 6px 22px;
    position: relative;
    line-height: 1.4;
}

.price-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.price-card__note {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.price-card__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Reviews ── */
.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: var(--card);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.reviews-arrow:hover {
    background: var(--blue);
    color: #fff;
}

.reviews-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 16px;
    flex: 1;
    min-width: 0;
    scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.review-item {
    flex: 0 0 88%;
    max-width: 340px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card);
}

.review-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.reviews-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.reviews-dots span.active {
    background: var(--blue);
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .review-item { flex: 0 0 72%; max-width: 380px; }
}

/* ── Instruction ── */
.instruction-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.instruction-steps {
    list-style: none;
    counter-reset: step;
    margin: 20px 0;
}

.instruction-steps li {
    counter-increment: step;
    padding: 14px 0 14px 48px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

.instruction-steps li:last-child { border-bottom: none; }

.instruction-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.security-box {
    background: #eef2ff;
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-top: 20px;
}

.security-box strong { color: var(--blue); display: block; margin-bottom: 4px; }
.security-box p { font-size: 14px; color: var(--text-muted); }

.instruction-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

@media (min-width: 768px) {
    .instruction-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Screenshot ── */
.screenshot-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 24px;
    border: 1px solid var(--border);
}

/* ── Examples ── */
.example-card {
    background: var(--card);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.example-card__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.example-card__question {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.example-card__answer {
    background: #e6f4ea;
    color: #137333;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.example-card__answer ol,
.example-card__answer ul {
    margin: 4px 0 0 18px;
}

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
    background: var(--card);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    min-height: 56px;
    -webkit-tap-highlight-color: transparent;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.25s;
    color: var(--blue);
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item__body-inner {
    padding: 0 20px 18px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Contacts ── */
.contacts {
    text-align: center;
    padding: 48px 24px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.contacts__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    color: var(--blue);
    text-decoration: none;
    transition: background 0.2s;
    min-height: 48px;
}

.contact-link:hover { background: #e0e8f5; text-decoration: none; }

/* ── Footer SEO ── */
.footer-seo {
    padding: 40px 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-seo h3 { font-size: 15px; color: var(--text); margin: 20px 0 8px; }
.footer-seo ul, .footer-seo ol { margin: 8px 0 8px 20px; }

.footer-copy {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

/* ── Sticky mobile CTA ── */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 150;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + var(--safe-bottom));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    box-sizing: border-box;
}

.sticky-cta .btn {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .sticky-cta { display: none; }
}

/* ── Discount popup ── */
.discount-popup {
    position: fixed;
    bottom: calc(80px + var(--safe-bottom));
    left: 16px;
    right: 16px;
    width: auto;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #ff4757, #e30611);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(227,6,17,0.35);
    z-index: 160;
    display: none;
    animation: slideUp 0.4s ease;
}

.discount-popup.visible { display: block; }

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

.discount-popup__title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.discount-popup__timer { font-size: 14px; opacity: 0.9; margin-bottom: 14px; }
.discount-popup__timer strong { color: #ffd333; }

.discount-popup__actions { display: flex; gap: 10px; }

.discount-popup .btn-white { flex: 1; font-size: 14px; min-height: 44px; }
.discount-popup .btn-close {
    flex: 1;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    min-height: 44px;
}

@media (min-width: 768px) {
    .discount-popup {
        bottom: 24px;
        right: 24px;
        left: auto;
        margin-left: 0;
        margin-right: 0;
        width: 360px;
    }
}

/* ── Bristol promo ── */
.nav-bristol { color: #9b1736 !important; font-weight: 700; }

.bristol-promo {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #fdf8f3 0%, #fff 55%, #f9eef2 100%);
    border: 2px solid rgba(155, 23, 54, 0.22);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bristol-promo:hover {
    border-color: rgba(155, 23, 54, 0.45);
    box-shadow: 0 8px 28px rgba(155, 23, 54, 0.12);
    transform: translateY(-1px);
}

.bristol-promo__mark {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9b1736;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    border-radius: 14px;
}

.bristol-promo__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bristol-promo__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9b1736;
}

.bristol-promo__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
}

.bristol-promo__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.45;
}

.bristol-promo__cta {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: #9b1736;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .bristol-promo {
        flex-wrap: wrap;
        padding: 18px 16px;
    }

    .bristol-promo__cta {
        width: 100%;
        text-align: right;
    }
}

/* ── Service section ── */
.service-highlight {
    background: linear-gradient(135deg, #1c1e21, #2d3436);
    color: #fff;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 32px;
}

.service-highlight__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.service-highlight__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .service-highlight__title { font-size: 28px; }
}

/* ── CTA center ── */
.cta-center {
    text-align: center;
    margin-top: 32px;
}

/* ── Demo preview cards ── */
.demo-preview-grid {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

@media (min-width: 900px) {
    .demo-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.demo-preview-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-preview-card__tag {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    background: #eef4ff;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.demo-preview-card__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
}

.demo-preview-card__meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.demo-preview-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.demo-preview-item {
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    border: 1px solid var(--border);
}

.demo-preview-item__q {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.demo-preview-item__num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: #fff;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.demo-preview-item__a {
    font-size: 13px;
    line-height: 1.45;
    color: #137333;
    background: #e6f4ea;
    padding: 8px 10px;
    border-radius: 8px;
}

.demo-preview-item__more {
    display: inline-block;
    margin-left: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.demo-preview-card__btn {
    margin-top: auto;
}

/* ── SEO catalog ── */
.seo-search {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--header-h) + 8px);
    z-index: 50;
}

.seo-search__row {
    position: relative;
    display: flex;
    align-items: center;
}

.seo-search__icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    display: flex;
}

.seo-search__input {
    width: 100%;
    padding: 14px 44px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.seo-search__input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(50, 122, 253, 0.15);
    background: var(--card);
}

.seo-search__clear {
    position: absolute;
    right: 8px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.seo-search__clear.visible { display: flex; }

.seo-search__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.seo-search__meta strong { color: var(--blue); }

.seo-search__links a {
    font-weight: 600;
    text-decoration: none;
}

.seo-search__links a:hover { text-decoration: underline; }

@media (min-width: 600px) {
    .seo-search__meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.seo-catalog__section {
    margin-bottom: 28px;
}

.seo-catalog__section.hidden { display: none; }

.seo-catalog__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(50, 122, 253, 0.15);
}

.seo-catalog__list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.seo-catalog__item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.seo-catalog__item:hover {
    border-color: rgba(50, 122, 253, 0.35);
}

.seo-catalog__item.hidden { display: none; }

.seo-catalog__item mark {
    background: #fff3cd;
    color: #856404;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 700;
}

.seo-no-results {
    display: none;
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px dashed var(--border);
    margin-bottom: 20px;
}

.seo-no-results.visible { display: block; }

.seo-no-results p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .seo-catalog__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-catalog__title { font-size: 20px; }
}