/* style.css - БРОНЕВИК - ПОЛНЫЙ РЕФАКТОРИНГ */
:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-800: #424242;
    --accent: #2c2c2c;           /* Изменено с #0066ff */
    --accent-dark: #1a1a1a;      /* Изменено с #0052cc */
    --accent-light: #3c3c3c;
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --success: #00c853;
    --error: #ff5252;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============== НАВИГАЦИЯ =============== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -1px;
    position: relative;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.logo:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a.active {
    color: var(--accent);
    font-weight: 700;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.nav-booking-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 10px;
    margin-left: 8px;
    border: none !important;
}

.nav-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 44, 44, 0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* =============== ГЛАВНАЯ СЕКЦИЯ =============== */
.split-hero {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.16, 0.84, 0.44, 1);
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.black {
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    color: var(--white);
}

.white {
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--black);
}

.slogan {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 90%;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.black .slogan {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.white .slogan {
    color: rgba(0, 0, 0, 0.95);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.hero-cta-wrapper {
    position: absolute;
    bottom: 180px;
    left: 0;
    width: 100%;
    z-index: 5;
    pointer-events: none;
}

.hero-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.85);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: var(--transition);
}

.hero-subtitle:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    text-decoration: none;
    font-size: clamp(1.1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 16px;
    transition: var(--transition);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.3);
    min-height: 64px;
}

.main-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 70px rgba(44, 44, 44, 0.5);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%) translateY(-5px);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
    backdrop-filter: blur(5px);
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* =============== СЕКЦИИ =============== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto;
}

/* =============== О НАС =============== */
.about-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: clamp(40px, 5vw, 80px);
}

.about-text h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--black);
}

.about-text p {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    color: var(--gray-800);
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
}

.feature-card h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.feature-card p {
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    line-height: 1.6;
}

/* =============== КАК МЫ РАБОТАЕМ =============== */
.process-steps {
    margin-top: clamp(40px, 5vw, 80px);
}

.process-steps h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 60px);
    color: var(--black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.step h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.step p {
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    line-height: 1.6;
}

/* =============== ПРЕИМУЩЕСТВА =============== */
.benefits-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--gray-50);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: clamp(24px, 3vw, 40px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card.large-card {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .benefit-card.large-card {
        grid-column: span 1;
    }
}

.benefit-card.large-card h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--black);
}

.benefit-card h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    font-size: 24px;
}

/* =============== CTA СЕКЦИЯ =============== */
.cta-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-content p {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-height: 56px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(44, 44, 44, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* =============== ФУТЕР =============== */
footer {
    padding: clamp(40px, 6vw, 80px) 0 40px;
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}

.footer-col h4 {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
}

.footer-col p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.footer-col a:hover {
    color: white;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-form button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    width: 48px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

/* =============== СТРАНИЦА ЗАПИСИ =============== */
.page-header {
    padding: clamp(120px, 15vw, 160px) 0 clamp(60px, 8vw, 80px);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.page-header p {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto;
}

.booking-page-section {
    padding: 0 0 clamp(60px, 8vw, 120px);
}

.booking-wizard {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    padding: clamp(30px, 4vw, 60px);
    overflow: hidden;
}

/* Индикатор прогресса */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
    counter-reset: step;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 25px; /* Линия опущена ниже */
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    color: var(--gray-800);
    font-size: 13px;
    font-weight: 600;
    padding-top: 55px; /* Текст опущен */
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 10px; /* Круг опущен */
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    counter-increment: step;
    content: counter(step);
    font-weight: 700;
    font-size: 14px;
}

.progress-step.active {
    color: var(--accent);
}

.progress-step.active::before {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.progress-step.completed::before {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    content: '✓';
}

.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header {
    margin-bottom: 60px;
    text-align: center;
}

.step-number {
    font-size: 14px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.step-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.device-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.device-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.device-card.selected {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.1), rgba(44, 44, 44, 0.05));
    border-color: var(--accent);
}

.device-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.device-card h3 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.device-card p {
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    line-height: 1.4;
}

.protection-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.protection-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: var(--transition);
}

.protection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.protection-card.popular {
    border: 2px solid var(--accent);
    transform: translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.protection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.protection-header h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 800;
    color: var(--black);
}

.price {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 900;
    color: var(--accent);
    white-space: nowrap;
}

.protection-features {
    list-style: none;
    margin-bottom: 32px;
}

.protection-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--gray-800);
    line-height: 1.4;
}

.protection-features .fa-check {
    color: var(--success);
}

.protection-features .fa-times {
    color: var(--error);
}

.select-btn {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    min-height: 52px;
}

.select-btn.active, .select-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-color: transparent;
}

.datetime-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.calendar-section h4, .time-section h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.calendar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-placeholder {
    color: var(--gray-800);
    font-size: clamp(0.875rem, 1vw, 1rem);
    text-align: center;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-align: center;
    min-height: 52px;
}

.time-slot:hover {
    background: rgba(44, 44, 44, 0.1);
    border-color: var(--accent);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-color: transparent;
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.time-slot.disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.btn-prev, .btn-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 56px;
    min-width: 120px;
}

.btn-prev {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
}

.btn-prev:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-4px);
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.btn-next:hover:not(:disabled) {
    transform: translateX(4px);
    box-shadow: 0 10px 20px rgba(44, 44, 44, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =============== ФОРМА ФИНАЛЬНАЯ =============== */
.booking-form-final {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: clamp(30px, 4vw, 40px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group label span {
    color: var(--error);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-size: 16px; /* Фикс для iOS */
    color: var(--black);
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.form-group input.error, .form-group textarea.error {
    border-color: var(--error);
}

.form-group .error-message {
    color: var(--error);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-summary {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-summary h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 900;
    color: var(--accent);
    margin-top: 8px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btn-submit-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    min-height: 60px;
}

.btn-submit-final:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(44, 44, 44, 0.4);
}

.btn-submit-final:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit-final.loading {
    position: relative;
    color: transparent;
}

.btn-submit-final.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============== СТРАНИЦА УСПЕХА =============== */
.success-step {
    text-align: center;
    padding: 60px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), #64dd17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    color: white;
    font-size: 48px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--black);
    line-height: 1.2;
}

.success-content p {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.detail-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.detail-card p {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.booking-number {
    color: var(--accent) !important;
    font-size: clamp(1.25rem, 1.5vw, 1.5rem) !important;
}

.success-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home, .btn-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 56px;
    min-width: 200px;
}

.btn-home {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
}

.btn-home:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.btn-calendar {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.btn-calendar:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(44, 44, 44, 0.3);
}

/* =============== СТРАНИЦА МАГАЗИНОВ =============== */
.shops-header {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
}

.shops-header .page-label {
    color: var(--accent);
}

.shops-header h1 {
    color: white;
}

.shops-header p {
    color: rgba(255, 255, 255, 0.8);
}

.shops-section {
    padding: clamp(60px, 8vw, 80px) 0 clamp(60px, 10vw, 120px);
}

.shops-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.shops-map {
    height: 500px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.95));
    border-radius: 16px;
    overflow: hidden;
}

.map-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-point {
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: 2;
}

.map-point:hover, .map-point.active {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(44, 44, 44, 0.2);
}

.point-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulsePoint 2s infinite;
}

.point-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

@keyframes pulsePoint {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-note {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 14px;
    color: var(--gray-800);
    padding: 0 16px;
}

.shop-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    min-height: 44px;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border-color: transparent;
}

.shop-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
    -webkit-overflow-scrolling: touch;
}

.shop-cards::-webkit-scrollbar {
    width: 6px;
}

.shop-cards::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.shop-cards::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.shop-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.shop-card:hover, .shop-card.active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-header h3 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 800;
    color: var(--black);
}

.shop-status {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.shop-status.open {
    background: rgba(0, 200, 83, 0.1);
    color: var(--success);
}

.shop-status.closed {
    background: rgba(255, 82, 82, 0.1);
    color: var(--error);
}

.shop-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    line-height: 1.4;
}

.shop-info i {
    min-width: 16px;
    color: var(--accent);
}

.shop-features {
    display: flex;
    gap: 8px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.shop-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.shop-book-btn, .shop-route-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 44px;
}

.shop-book-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.shop-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.3);
}

.shop-route-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.shop-route-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.directions-section {
    padding: clamp(60px, 8vw, 80px) 0;
    background: var(--gray-50);
}

.directions-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    color: var(--black);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.direction-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: var(--transition);
}

.direction-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.direction-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
}

.direction-card h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.direction-card p {
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    line-height: 1.6;
}

/* =============== СТРАНИЦА КАТАЛОГА =============== */
.catalog-header {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: white;
}

.catalog-header .page-label {
    color: var(--accent);
}

.catalog-header h1 {
    color: white;
}

.catalog-header p {
    color: rgba(255, 255, 255, 0.8);
}

.catalog-page-section {
    padding: clamp(60px, 8vw, 80px) 0 clamp(60px, 10vw, 120px);
}

.catalog-filters {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 32px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: clamp(40px, 5vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(60px, 8vw, 80px);
}

.catalog-product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.catalog-product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.catalog-product-card.premium {
    border: 2px solid #ffd700;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.catalog-product-card.premium .product-badge {
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #000;
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.9), rgba(255, 255, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.1), rgba(44, 44, 44, 0.05));
    border-radius: 50%;
    position: relative;
}

.product-info {
    padding: clamp(24px, 3vw, 32px);
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--black);
    line-height: 1.2;
    word-break: break-word;
}

.product-description {
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-800);
}

.spec i {
    color: var(--accent);
}

.product-price {
    margin-bottom: 32px;
}

.price {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 900;
    color: var(--black);
}

.old-price {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    color: var(--gray-800);
    text-decoration: line-through;
    margin-left: 12px;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-book-btn, .product-details-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    min-height: 52px;
}

.product-book-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.product-book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.3);
}

.product-details-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.product-details-btn:hover {
    background: white;
    transform: translateY(-4px);
}

.comparison-section {
    margin-bottom: clamp(60px, 8vw, 80px);
}

.comparison-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    color: var(--black);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 40px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead th {
    padding: 20px;
    text-align: left;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 700;
    color: var(--black);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

thead th:first-child {
    width: 40%;
}

tbody td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: clamp(0.875rem, 0.9375vw, 0.9375rem);
    color: var(--gray-800);
}

tbody tr:last-child td {
    border-bottom: none;
}

.faq-section {
    padding: clamp(60px, 8vw, 80px) 0;
    background: var(--gray-50);
}

.faq-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 60px);
    color: var(--black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.98);
}

.faq-question h4 {
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
    min-width: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 32px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-800);
    line-height: 1.6;
    margin: 0;
}

/* =============== КНОПКА "НАВЕРХ" =============== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 30px rgba(44, 44, 44, 0.4);
}

/* =============== АДАПТИВНОСТЬ =============== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .shops-layout {
        grid-template-columns: 1fr;
    }
    
    .shops-map {
        height: 400px;
    }
    
    .catalog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Навигация */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
    }
    
    .nav-booking-btn {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        display: block;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Главная секция */
    .split-hero {
        flex-direction: column;
    }
    
    .half {
        height: 50vh;
        min-height: 50vh;
    }
    
    .hero-cta-wrapper {
        bottom: 120px;
    }
    
    .hero-subtitle {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .main-cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 56px;
    }
    
    /* Секции */
    .section-header {
        margin-bottom: 60px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Мастер записи */
    .wizard-progress {
        margin-bottom: 40px;
    }
    
    .progress-step {
        font-size: 12px;
    }
    
    .progress-step::before {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .protection-options {
        grid-template-columns: 1fr;
    }
    
    .protection-card.popular {
        transform: translateY(0);
    }
    
    .datetime-selector {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-actions, .form-actions, .success-actions {
        flex-direction: column;
    }
    
    .btn-prev, .btn-next, .btn-submit-final, .btn-home, .btn-calendar {
        width: 100%;
    }
    
    /* Магазины */
    .shop-actions {
        flex-direction: column;
    }
    
    .shop-book-btn, .shop-route-btn {
        width: 100%;
    }
    
    /* Каталог */
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    /* Футер */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* Улучшаем тач-таргеты */
    .cta-btn, .select-btn, .time-slot, .filter-btn, .btn-prev, .btn-next {
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .slogan {
        font-size: 2rem;
        padding: 0 16px;
    }
    
    .half {
        height: 45vh;
    }
    
    .hero-cta-wrapper {
        bottom: 100px;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .page-header h1 br {
        display: none;
    }
}

@media (max-width: 360px) {
    .slogan {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .main-cta-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Фикс для iOS Safari */
@supports (-webkit-touch-callout: none) {
    .half {
        min-height: -webkit-fill-available;
    }
    
    .split-hero {
        min-height: -webkit-fill-available;
    }
}

/* Предотвращение зумирования на iOS */
@media (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Анимации появления с задержкой */
.feature-card, .benefit-card, .step, .direction-card, .catalog-product-card, .faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшение для темной темы */
@media (prefers-color-scheme: dark) {
    .hero-subtitle {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.3);
    }
    
    .feature-card, .benefit-card, .step, .stat-item {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Отключение анимаций для пользователей, которые предпочитают их отсутствие */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =============== ВЫБОР МАГАЗИНА =============== */
.shop-section h4, .time-section h4 {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--black);
}

.shop-section {
    margin-bottom: 30px;
}

.shop-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
}

.shop-option:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(44, 44, 44, 0.1);
}

.shop-option.selected {
    background: rgba(44, 44, 44, 0.05);
    border: 2px solid var(--accent);
    padding: 19px; /* Компенсируем увеличение border */
}

.shop-option.selected:hover {
    background: rgba(44, 44, 44, 0.08);
}

.shop-info {
    flex: 1;
}

.shop-info h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black);
}

.shop-info p {
    font-size: 13px;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.shop-info i {
    min-width: 14px;
    color: var(--accent);
}

.shop-select {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
    margin-left: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.shop-option.selected .shop-select {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Адаптивность */
@media (max-width: 768px) {
    .shop-option {
        padding: 16px;
    }
    
    .shop-option.selected {
        padding: 15px;
    }
    
    .shop-info h5 {
        font-size: 15px;
    }
    
    .shop-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .shop-info i {
        margin-right: 4px;
    }
}
/* =============== КАЛЕНДАРЬ =============== */
.calendar-widget {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    min-height: 300px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: rgba(44, 44, 44, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: rgba(44, 44, 44, 0.2);
}

.calendar-month {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-800);
    font-weight: 600;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: var(--black);
}

.calendar-date:hover {
    background: rgba(44, 44, 44, 0.1);
}

.calendar-date.selected {
    background: var(--accent);
    color: white;
    font-weight: 700;
}

.calendar-date.today {
    border: 2px solid var(--accent);
}

.calendar-date.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.05);
}

.calendar-date.disabled:hover {
    background: rgba(0, 0, 0, 0.05);
}

.time-shop-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 768px) {
    .datetime-selector {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calendar-widget {
        padding: 20px;
    }
    
    .calendar-date {
        font-size: 13px;
        border-radius: 8px;
    }
}
