/* === Переменные === */
:root {
    --primary: #1A73E8;
    --primary-hover: #1557B0;
    --dark: #1E293B;
    --text: #334155;
    --text-muted: #64748B;
    --gray: #94A3B8;
    --light: #F1F5F9;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --radius: 12px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
}

/* === Контейнер === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Шапка === */
.header {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 13px;
}

.nav-link:hover { background: var(--light); }
.nav-link.active { background: var(--primary); color: var(--white); font-weight: 600; }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-city {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.header-phone {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
}

/* === Hero === */
.hero {
    padding: 40px 0;
    text-align: center;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--dark);
}

.hero-title .highlight {
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 8px;
    display: inline-block;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
}

/* === Жёлтая карточка === */
.booking-section {
    padding: 0 24px 60px;
}

.booking-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
}

.booking-header {
    margin-bottom: 24px;
}

.booking-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.booking-title em {
    font-style: italic;
    font-weight: 400;
}

.booking-desc {
    font-size: 16px;
    color: var(--white);
    opacity: 0.85;
}

/* === Форма (белый контейнер внутри жёлтой карточки) === */
.form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
}

/* === Select (outlined стиль с label на рамке) === */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* === Text input (простой стиль с placeholder) === */
.field-select,
.field-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
}

.field-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
    cursor: pointer;
}

.field-select::placeholder,
.field-input::placeholder {
    color: #888;
}

.field-select:focus,
.field-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* === Кнопки (выравнивание с полями) === */
.btn-map,
.btn-lookup {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-map:hover,
.btn-lookup:hover {
    background: var(--primary-hover);
}

.btn-submit {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
    background: #FFD600;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s;
}

.btn-submit:hover:not(:disabled) {
    background: #E6C000;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === Карта === */
.map-container {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

#booking-map {
    height: 400px;
    width: 100%;
}

/* === Цены на метках карты: пин с овалом цены вместо круглой головки === */
.price-marker-wrap {
    background: none;
    border: none;
}
.price-pin {
    display: block;
    text-align: center;
    transform: translate(-50%, -100%);
}
.price-pin-top {
    display: inline-block;
    background: #FFD600;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.price-pin-tip {
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #FFD600;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.btn-map {
    width: 100%;
    height: 52px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
}

.btn-map:hover {
    background: var(--primary-hover);
}

/* === Autocomplete (марка/модель) === */
.autocomplete-group {
    position: relative;
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 1000;
    max-height: 240px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.suggestion-item:hover {
    background: var(--light);
}

/* === Чекбокс === */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
    accent-color: var(--primary);
}

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

/* === Кнопка "Заполнить по госномеру" === */
.btn-lookup {
    width: 100%;
    height: 52px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
}

.btn-lookup:hover:not(:disabled) {
    background: var(--primary-hover);
}

.btn-lookup:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* === Кнопка "Создать запись" === */
.btn-submit {
    width: 100%;
    height: 56px;
    background: #FFD600;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    margin-top: 16px;
}

.btn-submit:hover:not(:disabled) {
    background: #E6C000;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === Статус === */
.status {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

.status.success { background: #D1FAE5; color: #065F46; }
.status.error { background: #FEE2E2; color: #991B1B; }

/* === Валидация === */
.field-select.invalid,
.field-input.invalid,
.checkbox-group.invalid {
    border-color: #EF4444 !important;
}

.field-error {
    color: #DC2626;
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

.checkbox-group.invalid .checkbox-label {
    color: #EF4444;
}

/* === Текст про госпошлину === */
.booking-note {
    font-size: 9px;
    color: var(--text-muted);
    text-align: center;
    margin: 12px 0 0;
    line-height: 1.4;
}

/* === Секция "2 станции" === */
.info-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.info-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.info-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.info-item {
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.info-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--dark);
}

.info-item-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* === Преимущества === */
.benefits {
    padding: 60px 24px;
    background: var(--white);
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 24px 16px;
}

.benefit-icon { font-size: 32px; margin-bottom: 12px; }
.benefit-title { font-weight: 600; font-size: 16px; margin-bottom: 4px; color: var(--dark); }
.benefit-desc { color: var(--text-muted); font-size: 13px; }

/* === Подвал === */
.footer {
    background: var(--dark);
    color: var(--gray);
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

/* === Успех: запись создана (вместо формы) === */
.booking-success {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px 32px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--border);
}

.success-check {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    line-height: 64px;
}

.success-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.success-number {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 24px;
}

.success-details {
    text-align: left;
    margin: 0 0 24px;
    border-top: 1px solid var(--border);
}

.success-details div {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.success-details dt {
    flex: 0 0 120px;
    color: var(--text-muted);
    font-size: 14px;
}

.success-details dd {
    margin: 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
}

.success-hint {
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 24px;
}

.success-bots {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.bot-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1.5px solid var(--dark);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.bot-modal-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-secondary {
    background: none;
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    padding: 12px 24px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* === WebApp-режим (компактный для ботов) === */
body.webapp-mode {
    background: var(--primary);
    min-height: 100vh;
}

body.webapp-mode .header,
body.webapp-mode .hero,
body.webapp-mode .info-section,
body.webapp-mode .benefits,
body.webapp-mode .footer {
    display: none !important;
}

body.webapp-mode .booking-section {
    padding: 0;
}

body.webapp-mode .booking-card {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 20px 16px;
}

body.webapp-mode .form-container {
    padding: 16px 12px;
}

body.webapp-mode .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
}

body.webapp-mode .field-select,
body.webapp-mode .field-input {
    height: 44px;
    font-size: 15px;
}

body.webapp-mode .btn-submit {
    height: 48px;
    font-size: 14px;
}

body.webapp-mode #booking-map {
    height: 260px;
}

body.webapp-mode .booking-note {
    font-size: 9px;
    padding: 0 8px;
}

/* === Мобильная версия === */
@media (max-width: 768px) {
    .header .container { flex-wrap: wrap; }
    .nav { order: 3; width: 100%; justify-content: center; }
    .hero { padding: 24px 16px; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 14px; }
    .booking-card { padding: 20px; }
    .form-container { padding: 16px; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    #booking-map { height: 280px; }
    .info-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}

/* === Шапка и подвал: финальные правки === */
.header {
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo img {
    width: 30px;
    height: 30px;
    display: block;
}

/* Селектор города в шапке */
.header-city {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    padding: 7px 26px 7px 12px;
    cursor: pointer;
    max-width: 170px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.header-city:hover { border-color: var(--border-hover); }
.header-city:focus { outline: none; border-color: var(--primary); }

.header-phone {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

.header-phone:hover { color: var(--primary); }

/* === Подвал === */
.footer {
    background: var(--dark);
    color: var(--gray);
    padding: 44px 0 22px;
    text-align: left;
    font-size: 14px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-legal {
    display: block;
    margin-top: 10px;
    color: #7B8798;
    font-size: 12px;
    line-height: 1.5;
}

/* Кнопки ботов */
/* Кнопки ботов — компактные, в современном «ghost» стиле */
.footer-bot-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 8px;
    background: rgba(148, 163, 184, 0.10);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--gray);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    margin: 0 8px 8px 0;
    width: fit-content;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-bot-btn svg { width: 14px; height: 14px; flex: 0 0 auto; }

.footer-bot-btn:hover {
    background: rgba(148, 163, 184, 0.22);
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--white);
}

.footer-bot-max { border-color: rgba(148, 163, 184, 0.22); }
.footer-bot-max:hover { border-color: rgba(148, 163, 184, 0.4); }

/* Нижняя строка */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-top: 36px;
    padding-top: 16px;
    font-size: 12px;
    color: #7B8798;
}

.footer-bottom a { color: var(--gray); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* === Адаптив шапки/подвала === */
@media (max-width: 860px) {
    .header .container { flex-wrap: wrap; }
    .nav { order: 3; width: 100%; justify-content: center; }
    .header-right { flex: 1; justify-content: flex-end; }
}

@media (max-width: 640px) {
    .header-city { max-width: none; flex: 1; }
    .header-phone { font-size: 13px; }
    .footer-grid { gap: 22px; }
}


/* === Блок консультации «Если у меня есть неисправности?» === */
.callout-section {
    background: var(--white);
    padding: 60px 0;
}

.callout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 980px;
}

.callout-hint,
.callout-form {
    display: flex;
    flex-direction: column;
}

.callout-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.callout-hint {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.callout-eyebrow {
    display: block;
    width: calc(100% + 56px);
    margin: -28px -28px 20px -28px;
    box-sizing: border-box;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 16px 16px 0 0;
    padding: 10px 12px;
}

.callout-hint h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 14px;
    line-height: 1.25;
}

.callout-text {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.callout-phone {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.callout-phone a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.callout-phone a:hover { color: var(--primary-hover); }

.callout-note {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.callout-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 6px 24px rgba(30, 41, 59, .06);
}

.callout-form .form-group { margin-bottom: 16px; }

.callout-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.callout-label .rec { color: #EF4444; }

.btn-callback {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    margin-top: 4px;
}

.btn-callback:hover { background: var(--primary-hover); }
.btn-callback:disabled { opacity: .6; cursor: not-allowed; }

.callout-agree {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin: 14px 0 0;
}

.callout-agree a { color: var(--primary); }

body.webapp-mode .callout-section { display: none !important; }

@media (max-width: 860px) {
    .callout-grid { grid-template-columns: 1fr; gap: 24px; }
    .callout-section { padding: 44px 0; }
}

/* Колонка «Записаться в боте» — прижата к правому краю (симметрия) */
.footer-col-bots {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-col-bots .footer-bot-btn {
    display: inline-flex;
    margin: 0 0 8px 0;
}

/* === GEO-секции (текст, цены, станции, FAQ) === */
.seo-section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.seo-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.seo-section p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
}

.seo-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.seo-prices table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.seo-prices th,
.seo-prices td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
}

.seo-prices th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.seo-prices tbody tr:last-child td { border-bottom: none; }

.seo-stations ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.seo-stations li {
    font-size: 14px;
    color: var(--text);
    padding: 10px 12px;
    background: var(--light);
    border-radius: 8px;
    line-height: 1.5;
}

.seo-stations li[data-mask] {
    cursor: pointer;
    transition: background 0.2s;
}

.seo-stations li[data-mask]:hover {
    background: var(--border);
}

.seo-station-addr { font-weight: 600; color: var(--dark); }
.seo-station-district { color: var(--text-muted); }
.seo-station-cats { color: var(--text-muted); font-size: 13px; }

.seo-faq details {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--white);
    overflow: hidden;
}

.seo-faq details:last-child { margin-bottom: 0; }

.seo-faq summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    list-style: none;
}

.seo-faq summary::-webkit-details-marker { display: none; }

.seo-faq summary::after {
    content: "+";
    float: right;
    color: var(--primary);
    font-weight: 700;
}

.seo-faq details[open] summary::after { content: "−"; }

.seo-faq details p {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--text);
}

body.webapp-mode .seo-section { display: none !important; }

@media (max-width: 768px) {
    .seo-section { padding: 20px 16px; margin-bottom: 28px; }
    .seo-section h2 { font-size: 19px; }
}
