/* ===== AMBER TECH WORKSHOP ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --color-bg: #F5F3EF;
    --color-surface: #FFFFFF;
    --color-header: #15191E;
    --color-footer: #111418;
    --color-text: #20242A;
    --color-text-secondary: #6F7680;
    --color-border: #E2DDD3;
    --color-accent: #E79A24;
    --color-accent-deep: #B96616;
    --color-accent-bg: #FFF1DA;
    --font-main: 'Inter', sans-serif;
    --radius-sm: 10px;
    --radius-md: 14px;
    --transition: 0.2s ease;
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
    --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.08), 0 0 0 1px var(--color-accent);
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ТИПОГРАФИКА ===== */
h1, h2, h3, .section-title {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--color-text);
}

.section-title {
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: 1.5;
}

/* ===== ТЁМНАЯ ШАПКА ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-header);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 28px;
    width: auto;
}

.main-nav { display: none; }

.main-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.header-contacts { display: none; }

.header-contacts .btn-callback {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.header-contacts .btn-callback:hover {
    background: var(--color-accent-deep);
}

.header-phone {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-right: 18px;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: var(--color-header);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 80px 0 32px;
    flex-grow: 1;
}

.mobile-menu nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu-footer {
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-phone {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    background: var(--color-bg);
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231,154,36,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent-deep);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 4px 12px;
    background: var(--color-accent-bg);
    border-radius: 4px;
}

.hero-title {
    font-size: clamp(26px, 6vw, 38px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero-title span {
    color: var(--color-accent-deep);
}

.hero-subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-facts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-fact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.hero-fact::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ===== КНОПКИ ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    min-height: 48px;
}

.btn-primary:hover {
    background: var(--color-accent-deep);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
    min-height: 48px;
}

.btn-outline:hover {
    border-color: var(--color-accent);
}

/* ===== СЕКЦИИ ===== */
.section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 28px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent-deep);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ===== КАРТОЧКИ СИМПТОМОВ ===== */
.symptoms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.symptom-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
}

.symptom-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card-hover);
}

.symptom-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.symptom-card-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.symptom-card-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ===== КАРТОЧКИ УСЛУГ ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card-hover);
}

.service-card-image {
    height: 160px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 14px;
    background: var(--color-bg);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
    flex-grow: 1;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.service-card-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-accent-deep);
}

.service-card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
}

/* ===== ЛАЗЕРНАЯ ОЧИСТКА ===== */
.laser-section {
    background: var(--color-header);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.laser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.6;
}

.laser-section .section-title,
.laser-section .section-subtitle,
.laser-section h2,
.laser-section h3 {
    color: #fff;
}

.laser-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

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

.laser-before,
.laser-after {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.laser-before img,
.laser-after img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.laser-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    text-align: center;
}

.laser-before .laser-label {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
}

.laser-after .laser-label {
    background: var(--color-accent);
    color: #fff;
}

/* ===== ПРОЦЕСС ===== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.process-step {
    display: flex;
    gap: 16px;
    padding-left: 36px;
    padding-bottom: 24px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-number {
    position: absolute;
    left: 4px;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.process-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.process-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.why-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px 14px;
    box-shadow: var(--shadow-card);
}

.why-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-bottom: 10px;
}

.why-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ===== ГАЛЕРЕЯ ===== */
.gallery-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
}

.gallery-track {
    display: flex;
    gap: 12px;
    padding-right: 20px;
}

.gallery-item {
    flex: 0 0 280px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

/* ===== CTA ===== */
.cta-section {
    background: var(--color-accent-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* ===== ТЁМНЫЙ ПОДВАЛ ===== */
.site-footer {
    background: var(--color-footer);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-contacts p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ===== ПЛАВАЮЩАЯ ПАНЕЛЬ ===== */
.float-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}

.float-panel-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.float-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.float-btn:active {
    background: var(--color-accent-bg);
    color: var(--color-accent);
}

.float-btn svg {
    width: 20px;
    height: 20px;
}

.float-btn-callback {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.float-btn-callback:active {
    background: var(--color-accent-deep);
}

/* ===== ХЛЕБНЫЕ КРОШКИ ===== */
.breadcrumbs {
    padding: 14px 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumbs-list li {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.breadcrumbs-list li a {
    color: var(--color-accent-deep);
    text-decoration: none;
}

.breadcrumbs-list li::after {
    content: '/';
    margin-left: 8px;
    color: var(--color-border);
}

.breadcrumbs-list li:last-child::after {
    display: none;
}

/* ===== ЗАГОЛОВОК СТРАНИЦЫ ===== */
.page-header {
    padding: 30px 0;
}

.page-header-title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header-subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
}

/* ===== СТРАНИЦА УСЛУГИ ===== */
.service-page {
    padding: 30px 0 50px;
}

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.service-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 10px;
}

.service-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0 8px;
}

.service-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-content ul,
.service-content ol {
    margin: 0 0 16px 20px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.service-content li {
    margin-bottom: 6px;
    font-size: 15px;
}

.service-content strong {
    color: var(--color-text);
}

.service-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 24px 0;
}

.service-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.service-content table th {
    background: var(--color-header);
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.service-content table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.service-content table tr:last-child td {
    border-bottom: none;
}

.service-content .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.service-content .table-scroll table {
    margin: 0;
    border: none;
    min-width: 100%;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-price-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 22px;
    box-shadow: var(--shadow-card);
}

.service-price-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.service-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent-deep);
    margin-bottom: 4px;
}

.service-price-unit {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.service-price-card a[href^="tel"] {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-deep);
    text-decoration: none;
}

/* ===== СТАТЬИ ===== */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.article-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    transition: border-color 0.2s;
}

.article-card:hover {
    border-color: var(--color-accent);
}

.article-card-image {
    height: 180px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 18px;
}

.article-card-date {
    font-size: 12px;
    color: var(--color-accent-deep);
    margin-bottom: 6px;
}

.article-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.article-card-excerpt {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.article-card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-accent);
}

.article-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.article-excerpt {
    font-size: 16px;
    padding: 18px;
    background: var(--color-accent-bg);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 20px;
}

.article-body {
    font-size: 15px;
    line-height: 1.7;
}

.article-body h2 { font-size: 20px; font-weight: 600; margin: 24px 0 10px; }
.article-body p { margin-bottom: 14px; color: var(--color-text-secondary); }

.article-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.article-aside .service-price-card a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.article-aside .service-price-card a:last-child {
    border-bottom: none;
}

.article-aside .service-price-card a:hover {
    color: var(--color-accent);
}

.article-aside .service-price-card a span {
    display: block;
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

/* ===== ЦЕНЫ ===== */
.price-table {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.price-table-header {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 100px;
    background: var(--color-header);
    color: #fff;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 100px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

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

.price-service-link {
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}

.price-service-link:hover {
    color: var(--color-accent-deep);
}

.price-col-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.price-value {
    font-weight: 600;
    color: var(--color-accent-deep);
}

.btn-price-order {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.price-note {
    display: flex;
    gap: 14px;
    background: var(--color-accent-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-top: 20px;
}

.price-note-icon {
    font-size: 20px;
    flex-shrink: 0;
}

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

/* ===== КОНТАКТЫ ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-secondary);
    margin-bottom: 2px;
}

.contact-item-text a {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-deep);
    text-decoration: none;
}

.contact-form-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-form-card .form-group {
    margin-bottom: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    background: var(--color-bg);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== МОДАЛКИ ===== */
.modal-overlay,
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.modal-overlay.active,
.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal,
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    max-width: 400px;
    width: 90%;
    z-index: 201;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal.active,
.popup.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-close,
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.modal h3,
.popup-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal p,
.popup-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-main);
    background: var(--color-bg);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-success {
    display: none;
    color: #2d7a3e;
    background: #e8f5e9;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.popup-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.popup-skip {
    margin-top: 14px;
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.popup-skip:hover {
    color: var(--color-accent-deep);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    max-width: 95vw;
    max-height: 95vh;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 301;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
}

/* ===== КАТЕГОРИИ (ЯКОРНОЕ МЕНЮ) ===== */
.categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
}

.category-nav-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card-hover);
}

.category-nav-count {
    background: var(--color-accent-bg);
    color: var(--color-accent-deep);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

/* ===== ГАЛЕРЕЯ (СТРАНИЦА) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid .gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid .gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-grid .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-grid .gallery-item-title {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

/* ===== СЕКЦИЯ СВЕТЛАЯ ===== */
.section-light {
    background: var(--color-surface);
}

/* ===== КНОПКА БЕЛАЯ ===== */
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s;
    min-height: 48px;
}

.btn-white:hover {
    border-color: var(--color-accent);
}

/* ===== АДАПТИВ ДЛЯ ВНУТРЕННИХ СТРАНИЦ ===== */
@media (max-width: 768px) {
    .price-table-header {
        display: none;
    }
    
    .price-table-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px;
    }
    
    .btn-price-order {
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ДЕСКТОП ===== */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    
    .burger { display: none; }
    .main-nav { display: flex; gap: 4px; }
    .header-contacts { display: flex; align-items: center; }
    
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .process-grid::before { display: none; }
    .process-step { padding-left: 0; }
    .process-number { position: static; }
    
    .service-page-grid {
        grid-template-columns: 1fr 320px;
    }
    
    .service-sidebar {
        position: sticky;
        top: 80px;
    }
    
    .article-page-grid {
        grid-template-columns: 1fr 300px;
    }
    
    .article-aside {
        position: sticky;
        top: 80px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .symptoms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item {
        flex: 0 0 320px;
    }
}

    .faq-section {
        margin: 60px 0;
        background: #0f0f0f;
        border-radius: 16px;
        padding: 20px 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .faq-item {
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .faq-trigger {
        display: none;
    }
    
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        cursor: pointer;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        transition: background 0.2s;
        margin: 0;
    }
    
    .faq-question:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .faq-icon {
        font-size: 24px;
        font-weight: 300;
        transition: transform 0.3s;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        padding: 0 24px;
        color: #ccc;
        line-height: 1.5;
    }
    
    /* Раскрытие при выбранном чекбоксе */
    .faq-trigger:checked + .faq-question + .faq-answer {
        max-height: 300px;
        padding: 0 24px 18px 24px;
    }
    
    /* Поворот иконки при открытии */
    .faq-trigger:checked + .faq-question .faq-icon {
        transform: rotate(45deg);
    }
    
    .faq-answer p {
        margin: 0;
    }