@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@400;600;700;800;900&display=swap');

/* ============================================================
   ДИЗАЙН-СИСТЕМА (Premium Dark B2B)
   Рейтинг Шатров — рейтингшатров.рф
   ============================================================ */

:root {
    --primary-color: #0C0C0E;
    --primary-hover: #1A1A1F;
    --secondary-color: #C9A96E;
    --secondary-hover: #B8953E;
    --bg-color: #FAFAF8;
    --card-bg: #FFFFFF;
    --text-main: #2D2D2D;
    --text-muted: #6B7280;
    --border-color: #E8E5E0;
    --danger-color: #DC2626;
    --success-color: #059669;
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 8px 32px -8px rgba(0,0,0,0.06);
    --shadow-hover: 0 16px 48px -12px rgba(0,0,0,0.12);

    --dark-surface: #111118;
    --dark-surface-2: #1A1A22;
    --gold-glow: rgba(201, 169, 110, 0.15);
    --text-on-dark: #F0EDE8;
    --text-on-dark-muted: #9B9B9B;
    --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   СБРОС И БАЗОВЫЕ СТИЛИ
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section.bg-white {
    background-color: var(--card-bg);
}

section.bg-dark {
    background-color: var(--dark-surface);
    color: var(--text-on-dark);
}

section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 {
    color: var(--text-on-dark);
}

section.bg-dark p {
    color: var(--text-on-dark-muted);
}

section.bg-dark .card {
    background: var(--dark-surface-2);
    border-color: rgba(201, 169, 110, 0.12);
    color: var(--text-on-dark);
}

section.bg-dark .card:hover {
    border-color: rgba(201, 169, 110, 0.35);
}

section.bg-dark .card h3,
section.bg-dark .card h4 {
    color: var(--text-on-dark);
}

section.bg-dark .text-muted,
section.bg-dark .card p {
    color: var(--text-on-dark-muted);
}

/* ============================================================
   ТИПОГРАФИКА
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 3rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-body);
}

.text-muted {
    color: var(--text-muted);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
}

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
    padding: 14px 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(12, 12, 14, 0.2);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 12, 14, 0.3);
    border-color: var(--secondary-color);
}

.btn-outline {
    border: 1.5px solid var(--border-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-action {
    background-color: var(--secondary-color);
    color: #0C0C0E;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    font-weight: 800;
}

.btn-action:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    color: white;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-gold {
    background: var(--secondary-color);
    color: #0C0C0E;
    font-weight: 800;
}

.btn-gold:hover {
    background: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
}

/* ============================================================
   ШАПКА (Dark Premium)
   ============================================================ */
header {
    background-color: rgba(12, 12, 14, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.logo-line1 {
    font-size: 1rem;
    font-weight: 800;
}

.logo-line2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--secondary-color);
}

.logo .pro {
    background: var(--secondary-color);
    color: #0C0C0E;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 1px;
    font-weight: 800;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.header-phone a {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.header-phone span {
    font-size: 0.7rem;
    color: var(--text-on-dark-muted);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-actions .btn-outline {
    border-color: rgba(201, 169, 110, 0.4);
    color: var(--secondary-color);
}

.header-actions .btn-outline:hover {
    border-color: var(--secondary-color);
    background: rgba(201, 169, 110, 0.1);
}

.header-actions .btn-primary {
    background: var(--secondary-color);
    color: #0C0C0E;
    border-color: transparent;
}

.header-actions .btn-primary:hover {
    background: var(--secondary-hover);
    color: white;
}

/* ============================================================
   НАВИГАЦИЯ (Multi-page + Dropdowns)
   ============================================================ */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > li {
    list-style: none;
    position: relative;
}

.main-nav > li > a,
.main-nav > li > .nav-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-on-dark);
    transition: var(--transition);
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: none;
    font-family: var(--font-body);
}

.main-nav > li > a:hover,
.main-nav > li > .nav-trigger:hover,
.main-nav > li.active > a,
.main-nav > li.active > .nav-trigger {
    color: var(--secondary-color);
    background: rgba(201, 169, 110, 0.1);
}

.nav-trigger .nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.main-nav > li:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--dark-surface-2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(201, 169, 110, 0.15);
    padding: 12px;
    z-index: 200;
    list-style: none;
    transition: all 0.25s ease;
}

.main-nav > li:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-on-dark);
    transition: var(--transition);
}

.nav-dropdown li a:hover {
    background: rgba(201, 169, 110, 0.08);
    color: var(--secondary-color);
    transform: translateX(4px);
}

.nav-dropdown li a .nav-icon {
    font-size: 1.3rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.nav-dropdown li a .nav-label {
    display: flex;
    flex-direction: column;
}

.nav-dropdown li a .nav-sublabel {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
    font-weight: 400;
}

/* Active page highlighting */
.main-nav > li.active > a,
.nav-dropdown li a.active {
    color: var(--secondary-color);
    background: rgba(201, 169, 110, 0.1);
}

.nav-dropdown li a.active::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary-color);
    flex-shrink: 0;
}

/* ============================================================
   МОБИЛЬНОЕ МЕНЮ (Hamburger)
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 300;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--dark-surface);
    z-index: 200;
    padding: 100px 24px 40px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    visibility: hidden;
}

.mobile-nav.active {
    right: 0;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.mobile-nav > ul > li > a,
.mobile-nav > ul > li > .mobile-nav-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-on-dark);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}

.mobile-nav-trigger .mobile-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.mobile-nav-trigger.open .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-nav .mobile-dropdown {
    display: none;
    padding: 0 0 12px 16px;
    list-style: none;
}

.mobile-nav .mobile-dropdown.open {
    display: block;
}

.mobile-nav .mobile-dropdown li a {
    display: block;
    padding: 10px 8px;
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav .mobile-dropdown li a:hover,
.mobile-nav .mobile-dropdown li a.active {
    color: var(--secondary-color);
    background: rgba(201, 169, 110, 0.08);
}

.mobile-nav .mobile-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav .mobile-cta .btn {
    width: 100%;
    justify-content: center;
}

.mobile-nav .mobile-cta .btn-outline {
    border-color: rgba(201, 169, 110, 0.4);
    color: var(--secondary-color);
}

.mobile-nav .mobile-cta .btn-primary {
    background: var(--secondary-color);
    color: #0C0C0E;
}

/* ============================================================
   ГЕРОЙ (Photo-based with overlay)
   ============================================================ */
.hero {
    background: var(--dark-surface);
    color: white;
    padding: 120px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,12,14,0.88), rgba(12,12,14,0.65));
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 45px;
    color: var(--text-on-dark-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Hero mini (for subpages) */
.hero-mini {
    background: var(--dark-surface);
    color: white;
    padding: 60px 20px 50px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
}

.hero-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12,12,14,0.88), rgba(12,12,14,0.65));
    pointer-events: none;
    z-index: 1;
}

.hero-mini h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 1.15;
}

.hero-mini p {
    font-size: 1.1rem;
    color: var(--text-on-dark-muted);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* ============================================================
   ПОИСК
   ============================================================ */
.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.search-container input {
    flex: 1;
    border: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    border-radius: 12px;
    outline: none;
    background: transparent;
    color: white;
    font-family: var(--font-body);
}

.search-container input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-container button {
    background-color: var(--secondary-color);
    color: #0C0C0E;
    border-radius: 12px;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.search-container button:hover {
    background-color: var(--secondary-hover);
    color: white;
}

.trending-tags {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tag {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-on-dark);
    backdrop-filter: blur(5px);
}

.tag:hover {
    background: rgba(201, 169, 110, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ============================================================
   ХЛЕБНЫЕ КРОШКИ (Breadcrumbs)
   ============================================================ */
.breadcrumbs-wrapper {
    padding: 20px 0 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0;
}

.breadcrumbs li + li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--text-muted);
    border-top: 1.5px solid var(--text-muted);
    transform: rotate(45deg);
    margin: 0 10px;
    opacity: 0.5;
}

.breadcrumbs li a {
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 600;
}

.breadcrumbs li a:hover {
    color: var(--secondary-color);
}

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================================
   SEO ТЕКСТЫ
   ============================================================ */
.seo-text-block {
    background: var(--card-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    border-left: 6px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.seo-longread {
    column-count: 2;
    column-gap: 50px;
    text-align: justify;
    color: var(--text-muted);
}

.seo-longread p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================================
   СЕТКИ
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* ============================================================
   КАРТОЧКИ
   ============================================================ */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 169, 110, 0.3);
}

/* Категории */
.category-card {
    text-align: center;
    cursor: pointer;
    padding: 40px 20px;
}

.category-card--premium {
    background: var(--dark-surface-2);
    border: 1px solid rgba(201, 169, 110, 0.12);
    color: var(--text-on-dark);
}

.category-card--premium:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 16px 48px -12px rgba(0,0,0,0.3), 0 0 0 1px rgba(201, 169, 110, 0.2);
}

.category-card--premium h3 {
    color: var(--text-on-dark);
}

.category-card--premium p {
    color: var(--text-on-dark-muted);
}

.category-card--premium .category-price {
    color: var(--secondary-color);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    transition: var(--transition);
    display: inline-block;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Товары (Tent cards) — оригинальный формат */
.tent-card {
    padding: 25px;
}

/* Товары — формат home.php (card-tent) */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-tent {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.card-tent:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 169, 110, 0.3);
}

.card-tent.card-dangerous {
    border-color: var(--danger-color);
}

.card-tent.card-recommended {
    border-color: var(--success-color);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-recommended {
    background: var(--success-color);
}

.badge-dangerous {
    background: var(--danger-color);
}

.card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(45deg, #F1F5F9, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 10px;
}

.card-content {
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--bg-color);
    padding: 4px 10px;
    border-radius: 8px;
}

.card-rating {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.card-rating .rating-value {
    font-size: 1.2rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.card-specs span {
    font-size: 0.75rem;
    background: var(--bg-color);
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--text-muted);
}

.card-pros {
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-main);
    line-height: 1.4;
}

.card-pros strong {
    color: var(--success-color);
}

.card-cons {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.4;
}

.card-cons strong {
    color: var(--danger-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.card-reviews {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Camping tent card extras */
.card-waterproof {
    font-size: 0.75rem;
    color: #0EA5E9;
    font-weight: 700;
}

.card-weight {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.card-mosquito {
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 700;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.card-actions .btn {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-pro {
    background: var(--secondary-color);
}

.badge-danger {
    background: var(--danger-color);
}

.badge-success {
    background: var(--success-color);
}

.tent-img {
    width: 100%;
    height: 240px;
    background: linear-gradient(45deg, #F1F5F9, #E2E8F0);
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
}

.tent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: var(--bg-color);
    padding: 10px 15px;
    border-radius: 12px;
}

.score {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.tent-card p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

/* ============================================================
   КАРТОЧКИ ПРОИЗВОДИТЕЛЕЙ (Manufacturer Cards)
   ============================================================ */
.manufacturer-card {
    padding: 30px;
    text-align: center;
    position: relative;
}

.manufacturer-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
}

.manufacturer-card .manufacturer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-color);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

.manufacturer-card .manufacturer-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.manufacturer-card .manufacturer-country {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.manufacturer-card .manufacturer-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-color);
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.manufacturer-card .manufacturer-specs {
    list-style: none;
    text-align: left;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 10px;
}

.manufacturer-card .manufacturer-specs li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.manufacturer-card .manufacturer-specs li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 800;
    font-size: 0.8rem;
}

/* ============================================================
   СЛАЙДЕР ОТЗЫВОВ
   ============================================================ */
.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 30px;
    scrollbar-width: none;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-item {
    min-width: 420px;
    scroll-snap-align: center;
    flex: 0 0 auto;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.verifier {
    background: #ECFDF5;
    color: var(--success-color);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

/* ============================================================
   АНАЛИТИКА / СТАТИСТИКА
   ============================================================ */
.stats-banner {
    display: flex;
    justify-content: space-around;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    padding: 50px;
    border-radius: 30px;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 900;
}

.stat-item p {
    color: var(--text-on-dark-muted);
    font-size: 1.1rem;
}

.index-box {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
}

/* ============================================================
   VERSUS / ПРОГРЕСС-БАР
   ============================================================ */
.progress-bar-container {
    width: 100%;
    height: 30px;
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.progress-left {
    background: var(--dark-surface);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
}

.progress-right {
    background: #CBD5E1;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 800;
}

/* ============================================================
   AI САММАРИ
   ============================================================ */
.ai-summary {
    border-left: 6px solid #8B5CF6;
    background: linear-gradient(135deg, #FFFFFF, #F5F3FF);
}

.ai-header {
    color: #8B5CF6;
    font-weight: 900;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============================================================
   КАЛЬКУЛЯТОР
   ============================================================ */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-form label {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-on-dark-muted);
}

.calc-form select,
.calc-form input {
    width: 100%;
    padding: 18px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: var(--dark-surface-2);
    color: white;
    font-size: 1.05rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}

.calc-form select:focus,
.calc-form input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.calc-result {
    background: var(--dark-surface-2);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.risk-level {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 30px 0;
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risk-low {
    background: rgba(5, 150, 105, 0.15);
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.3);
}

.risk-medium {
    background: rgba(201, 169, 110, 0.15);
    color: var(--secondary-color);
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.risk-high {
    background: rgba(220, 38, 38, 0.15);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ============================================================
   B2B БАННЕР
   ============================================================ */
.b2b-banner {
    background: var(--dark-surface);
    color: white;
    padding: 80px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.b2b-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.b2b-banner h2 {
    color: var(--text-on-dark);
}

.b2b-banner h2::after {
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.b2b-banner p {
    color: var(--text-on-dark-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
    background: var(--card-bg);
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item summary {
    padding: 30px;
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    color: var(--primary-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\FF0B';
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-color);
    border-radius: 16px 16px 0 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 30px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ============================================================
   ТАБЛИЦА СОДЕРЖАНИЯ (Table of Contents)
   ============================================================ */
.toc {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 30px 35px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.toc-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc ol {
    list-style: none;
    counter-reset: toc-counter;
    padding: 0;
}

.toc ol li {
    counter-increment: toc-counter;
    padding: 8px 0;
    border-bottom: 1px solid rgba(232, 229, 224, 0.5);
}

.toc ol li:last-child {
    border-bottom: none;
}

.toc ol li a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc ol li a::before {
    content: counter(toc-counter) '.';
    color: var(--secondary-color);
    font-weight: 800;
    min-width: 24px;
}

.toc ol li a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* ============================================================
   СРАВНИТЕЛЬНЫЕ ТАБЛИЦЫ (Comparison Tables)
   ============================================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    font-size: 0.95rem;
}

.comparison-table thead th {
    background: var(--dark-surface);
    color: var(--text-on-dark);
    padding: 18px 20px;
    text-align: left;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    position: sticky;
    top: 0;
}

.comparison-table thead th:first-child {
    border-radius: var(--border-radius) 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 var(--border-radius) 0 0;
}

.comparison-table tbody tr {
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background: var(--bg-color);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(250, 250, 248, 0.5);
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-row {
    background: rgba(201, 169, 110, 0.04);
    border-left: 3px solid var(--secondary-color);
}

.comparison-table .cell-good {
    color: var(--success-color);
    font-weight: 700;
}

.comparison-table .cell-bad {
    color: var(--danger-color);
    font-weight: 700;
}

.comparison-table .cell-neutral {
    color: var(--text-muted);
}

/* ============================================================
   ТАБЛИЦЫ СПЕЦИФИКАЦИЙ (Specification Tables)
   ============================================================ */
.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.spec-table caption {
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: var(--bg-color);
    border-bottom: 2px solid var(--border-color);
}

.spec-table tr:nth-child(even) {
    background: var(--bg-color);
}

.spec-table th {
    text-align: left;
    padding: 14px 24px;
    font-weight: 700;
    color: var(--text-muted);
    width: 35%;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.spec-table td {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   БЛОК СВЯЗАННЫХ СТРАНИЦ (Related Pages)
   ============================================================ */
.related-pages {
    background: var(--bg-color);
    padding: 50px 0;
    margin-top: 40px;
}

.related-pages h3 {
    margin-bottom: 30px;
}

.related-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.related-card .related-type {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.related-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.related-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.related-card .related-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: var(--transition);
}

.related-card .related-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

/* ============================================================
   СТРАНИЦА 404
   ============================================================ */
.page-404 {
    text-align: center;
    padding: 120px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-404 .error-code {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    letter-spacing: -8px;
    margin-bottom: 20px;
}

.page-404 h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.page-404 p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
}

.page-404 .error-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   ПОДВАЛ (Footer)
   ============================================================ */
footer {
    background: #08080A;
    color: #94A3B8;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-about-text {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-phone-primary {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.footer-phone-secondary {
    color: #94A3B8;
}

.footer-contact-item {
    margin-bottom: 16px;
}

.footer-cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding-top: 30px;
    font-size: 0.85rem;
    color: #475569;
}

.footer-contacts a {
    color: #94A3B8;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--secondary-color);
}

/* ============================================================
   VERSUS / ГОЛОСОВАНИЕ (Poll)
   ============================================================ */
.versus-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.versus-card h3 {
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.poll-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.poll-option {
    position: relative;
}

.poll-bar {
    position: relative;
    height: 48px;
    background: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.poll-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), rgba(201, 169, 110, 0.6));
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.poll-fill-secondary {
    background: linear-gradient(90deg, var(--dark-surface), var(--dark-surface-2));
}

.poll-label {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.poll-percent {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
}

.poll-fill ~ .poll-label,
.poll-fill ~ .poll-percent {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.poll-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.ai-summary {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.ai-summary p {
    margin-bottom: 12px;
}

.ai-verdict {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    color: var(--text-main);
}

/* ============================================================
   SCROLL REVEAL АНИМАЦИИ
   ============================================================ */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   УТИЛИТЫ
   ============================================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--secondary-color);
}

.border-gold {
    border-color: var(--secondary-color);
}

.bg-gold-subtle {
    background: var(--gold-glow);
}

.intro-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 110, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
    background: rgba(201, 169, 110, 0.05);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
   АДАПТИВНОСТЬ (Responsive)
   ============================================================ */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        visibility: hidden;
        right: -100%;
    }

    .mobile-nav.active {
        visibility: visible;
        right: 0;
    }

    .header-actions {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-content {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px;
        border-radius: 0 0 30px 30px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-mini {
        padding: 50px 20px 40px;
        border-radius: 0 0 30px 30px;
    }

    .hero-mini h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        height: 65px;
    }

    .calc-wrapper,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .seo-longread {
        column-count: 1;
    }

    .search-container {
        flex-direction: column;
        background: rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 10px;
    }

    .search-container input,
    .search-container button {
        width: 100%;
        border-radius: 12px;
        padding: 18px;
    }

    .search-container button {
        margin-top: 10px;
    }

    .slider-item {
        min-width: 300px;
    }

    .seo-text-block {
        padding: 30px 20px;
    }

    .b2b-banner {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .stats-banner {
        padding: 30px 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
    }

    .page-404 .error-code {
        font-size: 6rem;
    }

    .toc {
        padding: 20px 24px;
    }

    .related-pages .grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .hero-mini h1 {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 24px;
    }

    .price {
        font-size: 1.4rem;
    }

    .breadcrumbs {
        font-size: 0.8rem;
    }
}
