/* ===== GUIDE PAGE STYLES ===== */
.guide-page {
    --guide-primary: #00cc66;
    --guide-primary-dark: #00aa55;
    --guide-dark: #1a1a1a;
    --guide-darker: #0f0f0f;
    --guide-light: #ffffff;
    --guide-gray: #888888;
    --guide-accent: #6a11cb;
}

/* Хлебные крошки для гайда */
.guide-page .breadcrumbs {
    background: var(--guide-darker);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-page .breadcrumbs ol {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--guide-gray);
}

.guide-page .breadcrumbs a {
    color: var(--guide-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.guide-page .breadcrumbs a:hover {
    color: var(--guide-primary);
}

.guide-page .breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
}

/* Hero секция гайда */
.guide-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.guide-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guide-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--guide-gray);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guide-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 204, 102, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.guide-meta .meta-item i {
    color: var(--guide-primary);
}

.guide-meta .meta-item span {
    font-size: 0.9rem;
}

/* Навигация по гайду */
.guide-navigation {
    background: var(--guide-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
    position: sticky;
    top: 40px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.guide-nav-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-label {
    color: var(--guide-primary);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-nav-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.guide-nav-list .nav-link {
    color: var(--guide-gray);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid transparent;
}

.guide-nav-list .nav-link:hover,
.guide-nav-list .nav-link:focus {
    color: var(--guide-primary);
    background: rgba(0, 204, 102, 0.1);
    border-color: var(--guide-primary);
}

/* Основной контент гайда */
.guide-main-content {
    padding: 60px 0;
}

.guide-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 204, 102, 0.3);
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--guide-light);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--guide-gray);
    font-size: 1.1rem;
}

/* Карточки сравнения техники */
.vehicle-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.vehicle-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
    box-shadow: 0 15px 30px rgba(0, 204, 102, 0.2);
}

.vehicle-card h3 {
    color: var(--guide-primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vehicle-specs {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--guide-gray);
    font-size: 0.9rem;
}

.vehicle-specs i {
    color: var(--guide-primary);
}

/* Обзор маршрутов */
.routes-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.route-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.route-card h3 {
    color: var(--guide-light);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.route-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.route-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--guide-gray);
    font-size: 0.9rem;
}

.route-specs i {
    color: var(--guide-primary);
}

.difficulty-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-badge.easy {
    background: rgba(0, 204, 102, 0.2);
    color: var(--guide-primary);
}

.difficulty-badge.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.difficulty-badge.hard {
    background: rgba(255, 87, 34, 0.2);
    color: #ff5722;
}

.difficulty-badge.extreme {
    background: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.route-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-details h4 {
    color: var(--guide-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.route-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-details li {
    color: var(--guide-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.route-details li::before {
    content: '•';
    color: var(--guide-primary);
    position: absolute;
    left: 0;
}

/* Сетка сезонных маршрутов */
.season-routes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.season-price {
    color: var(--guide-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
}

/* Таблицы */
.guide-table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    background: var(--guide-dark);
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.guide-table thead {
    background: rgba(0, 204, 102, 0.1);
}

.guide-table th {
    padding: 15px;
    text-align: left;
    color: var(--guide-light);
    font-weight: 600;
    border-bottom: 2px solid var(--guide-primary);
}

.guide-table td {
    padding: 15px;
    color: var(--guide-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-table tbody tr:hover {
    background: rgba(0, 204, 102, 0.05);
}

.guide-table small {
    display: block;
    color: var(--guide-gray);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ===== ИСПРАВЛЕНИЕ: Что входит в стоимость (6 секций по 3 в ряд) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    text-align: center;
    padding: 25px;
    background: var(--guide-dark);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.5rem;
}

.feature-card h4 {
    color: var(--guide-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Сетка условий */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.condition-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--guide-primary);
}

.condition-card h4 {
    color: var(--guide-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.condition-card h4 i {
    color: var(--guide-primary);
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    color: var(--guide-gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.guide-list li::before {
    content: '•';
    color: var(--guide-primary);
    position: absolute;
    left: 0;
}

.guide-list li strong {
    color: var(--guide-light);
}

/* ===== ИСПРАВЛЕНИЕ: Техника безопасности (4 секции по 2 в ряд) ===== */
.safety-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.safety-section {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--guide-primary);
}

.safety-section h3 {
    color: var(--guide-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Рекомендации по одежде */
.clothing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.clothing-item {
    text-align: center;
    padding: 25px;
    background: var(--guide-dark);
    border-radius: 10px;
}

.clothing-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.5rem;
}

.clothing-item h4 {
    color: var(--guide-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.clothing-item p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Сезонные табы */
.season-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.season-tab {
    padding: 12px 25px;
    background: var(--guide-dark);
    border: 2px solid var(--guide-primary);
    color: var(--guide-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.season-tab.active,
.season-tab:hover {
    background: var(--guide-primary);
    color: var(--guide-darker);
}

.season-content {
    display: none;
    animation: fadeIn 0.5s;
}

.season-content.active {
    display: block;
}

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

/* Программы мероприятий */
.event-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.program-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.program-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.program-price {
    color: var(--guide-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.program-time {
    color: var(--guide-gray);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 15px;
}

/* Идеи мероприятий */
.event-ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.idea {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--guide-dark);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--guide-primary);
}

.idea i {
    color: var(--guide-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.idea h5 {
    color: var(--guide-light);
    margin-bottom: 5px;
    font-size: 1rem;
}

.idea p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Подарочные сертификаты */
.certificate-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

.highlight i {
    font-size: 2.5rem;
    color: var(--guide-primary);
    margin-bottom: 10px;
    display: block;
}

.highlight span {
    color: var(--guide-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.type-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.8rem;
}

.type-card h4 {
    color: var(--guide-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.type-card p {
    color: var(--guide-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-features li {
    color: var(--guide-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.type-features li i {
    color: var(--guide-primary);
}

/* Идеи подарков */
.gift-ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.idea-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.idea-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.idea-card h5 {
    color: var(--guide-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.idea-card h5 i {
    color: var(--guide-primary);
}

.idea-card p {
    color: var(--guide-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.occasions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.occasions span {
    background: rgba(0, 204, 102, 0.1);
    color: var(--guide-primary);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* FAQ */
.guide-faq {
    margin: 40px 0;
}

.faq-item {
    background: var(--guide-dark);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: rgba(0, 204, 102, 0.1);
    border: none;
    color: var(--guide-light);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: rgba(0, 204, 102, 0.2);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--guide-primary);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer p {
    color: var(--guide-gray);
    line-height: 1.6;
    margin: 20px 0;
}

.faq-answer strong {
    color: var(--guide-light);
}

/* Контактная информация */
.contact-info-box {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--guide-primary);
    text-align: center;
}

.contact-info-box h3 {
    color: var(--guide-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info-box p {
    color: var(--guide-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-option i {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--guide-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-option h4 {
    color: var(--guide-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-option p {
    margin: 0;
    font-size: 1rem;
}

.contact-option a {
    color: var(--guide-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-option a:hover {
    color: var(--guide-primary-dark);
}

.contact-option .small {
    font-size: 0.85rem;
    color: var(--guide-gray);
    margin-top: 5px;
}

/* CTA блок */
.guide-cta {
    background: linear-gradient(135deg, var(--guide-primary), var(--guide-primary-dark));
    padding: 60px 0;
    text-align: center;
    color: var(--guide-light);
    margin-top: 60px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--guide-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-buttons .btn-call {
    background: var(--guide-light);
    color: var(--guide-primary);
    border: 2px solid var(--guide-light);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--guide-light);
    border: 2px solid var(--guide-light);
}

.cta-buttons .btn-call:hover {
    background: transparent;
    color: var(--guide-light);
}

.cta-buttons .btn-outline:hover {
    background: var(--guide-light);
    color: var(--guide-primary);
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.cta-options .option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--guide-light);
    font-weight: 500;
}

.cta-options .option i {
    color: var(--guide-light);
    font-size: 1.2rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 20px;
}

.cta-note i {
    margin-right: 8px;
    color: var(--guide-light);
}

/* Полезные материалы */
.guide-resources {
    background: var(--guide-darker);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-resources h3 {
    color: var(--guide-primary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 30px;
    text-decoration: none;
    color: var(--guide-light);
    transition: transform 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.5rem;
}

.resource-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.resource-card p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Информационные блоки */
.guide-info-box {
    background: rgba(0, 204, 102, 0.1);
    border-left: 4px solid var(--guide-primary);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.guide-info-box h4 {
    color: var(--guide-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.guide-info-box.warning {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.guide-info-box.warning h4 {
    color: #ffc107;
}

.guide-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    background: var(--guide-dark);
    border-left: 4px solid;
}

.guide-note i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.guide-note p {
    margin: 0;
    color: var(--guide-gray);
    line-height: 1.6;
}

.guide-note.info {
    border-left-color: var(--guide-primary);
    background: rgba(0, 204, 102, 0.05);
}

.guide-note.info i {
    color: var(--guide-primary);
}

.guide-note.warning {
    border-left-color: #ffc107;
    background: rgba(255, 193, 7, 0.05);
}

.guide-note.warning i {
    color: #ffc107;
}

.safety-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.safety-note i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 2px;
}

.safety-note p {
    margin: 0;
    color: var(--guide-gray);
    line-height: 1.6;
}

.safety-note strong {
    color: var(--guide-light);
}

.warning-box {
    background: rgba(255, 87, 34, 0.1);
    border-left: 4px solid #ff5722;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.warning-box h4 {
    color: #ff5722;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-box p {
    color: var(--guide-gray);
    margin: 0;
    line-height: 1.6;
}

/* Сетка оборудования */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.equipment-card {
    text-align: center;
    padding: 25px;
    background: var(--guide-dark);
    border-radius: 10px;
    transition: transform 0.3s;
}

.equipment-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 204, 102, 0.05);
}

.equipment-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.5rem;
}

.equipment-card h4 {
    color: var(--guide-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.equipment-card p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== ИСПРАВЛЕНИЕ: Шаги процесса (в строку) - ВАЖНОЕ ИСПРАВЛЕНИЕ ===== */
.process-steps .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
    position: relative;
}

/* УБРАЛИ ПОЛОСКУ ДЛЯ ВСЕХ ПРОЦЕССОВ - она теперь будет только у определенных */
/* Линия теперь будет появляться только для .process-steps .steps, если есть класс .with-line */
.process-steps .steps.with-line::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%; /* Начинается от центра первого круга */
    right: 12.5%; /* Заканчивается у центра последнего круга */
    height: 2px;
    background: var(--guide-primary);
    opacity: 0.3;
    z-index: 1;
}

/* Убираем подчеркивание заголовков в блоках процессов */
.process-steps h3 {
    margin-bottom: 30px;
    color: var(--guide-light);
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

/* Только для заголовков процессов, которые не должны иметь подчеркивания */
.process-steps h3::after {
    display: none;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--guide-primary);
    color: var(--guide-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3; /* Увеличиваем z-index чтобы круги были над линией */
}

.step-content {
    background: var(--guide-dark);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 180px; /* Фиксированная минимальная высота */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-content h4 {
    color: var(--guide-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    min-height: 2.2rem; /* Фиксированная высота для заголовков */
}

.step-content p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1; /* Позволяет тексту занимать доступное пространство */
}

/* ===== ИСПРАВЛЕНИЕ: Корпоративные мероприятия (3 в ряд) ===== */
.corporate-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.corporate-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--guide-dark);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.corporate-features .feature i {
    color: var(--guide-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.corporate-features .feature span {
    color: var(--guide-light);
    font-weight: 500;
}

/* ===== ИСПРАВЛЕНИЕ: Дополнительные возможности (3 в ряд) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 204, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--guide-primary);
    font-size: 1.5rem;
}

.service-card h4 {
    color: var(--guide-light);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--guide-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== КОРПОРАТИВНЫЕ КЕЙСЫ ===== */
.corporate-cases {
    margin: 50px 0;
}

.corporate-cases h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--guide-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.case-card {
    background: var(--guide-dark);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: var(--guide-primary);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-header h4 {
    color: var(--guide-light);
    margin: 0;
    font-size: 1.1rem;
}

.case-size {
    background: rgba(0, 204, 102, 0.1);
    color: var(--guide-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.case-content p {
    color: var(--guide-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-result {
    background: rgba(0, 204, 102, 0.05);
    border-left: 3px solid var(--guide-primary);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    color: var(--guide-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

.case-result strong {
    color: var(--guide-primary);
}

/* ===== КОРПОРАТИВНЫЕ УСЛУГИ ===== */
.corporate-services {
    margin: 40px 0;
}

.corporate-services h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--guide-light);
}

/* Адаптивность */
@media (max-width: 1024px) {
    /* Что входит в стоимость - 2 колонки */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Шаги процесса - 2 колонки, убираем линию */
    .process-steps .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Убираем линию на планшетах */
    .process-steps .steps.with-line::before {
        display: none;
    }
    
    /* Дополнительные возможности - 2 колонки */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-hero {
        padding: 60px 0;
    }
    
    .guide-hero h1 {
        font-size: 2rem;
    }
    
    .guide-nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .guide-nav-list {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .guide-section {
        margin-bottom: 60px;
        scroll-margin-top: 150px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Мобильная адаптация всех сеток */
    .vehicle-comparison,
    .routes-overview,
    .features-grid,
    .conditions-grid,
    .safety-sections,
    .clothing-grid,
    .season-routes,
    .event-programs,
    .event-ideas,
    .certificate-highlights,
    .certificate-types,
    .gift-ideas,
    .resources-grid,
    .cases-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Что входит в стоимость - 1 колонка */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Техника безопасности - 1 колонка */
    .safety-sections {
        grid-template-columns: 1fr;
    }
    
    /* Шаги процесса - 1 колонка */
    .process-steps .steps {
        grid-template-columns: 1fr;
    }
    
    /* Корпоративные мероприятия - 1 колонка */
    .corporate-features {
        grid-template-columns: 1fr;
    }
    
    /* Дополнительные возможности - 1 колонка */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-meta {
        gap: 15px;
    }
    
    .guide-meta .meta-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    /* Мобильная адаптация для шагов процессов */
    .step-content {
        min-height: auto; /* Убираем фиксированную высоту на мобильных */
        padding: 15px;
    }
    
    .step-content h4 {
        min-height: auto;
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .guide-hero {
        padding: 40px 0;
    }
    
    .guide-hero h1 {
        font-size: 1.8rem;
    }
    
    .guide-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .vehicle-card,
    .route-card,
    .feature-card,
    .condition-card,
    .program-card,
    .type-card,
    .idea-card,
    .resource-card,
    .service-card,
    .case-card {
        padding: 20px;
    }
    
    /* Еще более компактные стили для шагов на маленьких экранах */
    .process-steps .steps {
        gap: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .step-content {
        padding: 15px;
    }
    
    .process-steps h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

/* Таблицы на мобильных */
@media (max-width: 480px) {
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .guide-table th,
    .guide-table td {
        padding: 8px;
    }
}