/* ===== CSS VARIABLES (перенесено из tokens.css) ===== */
:root {
  /* Primary Colors - Fuschia */
  --color-fuschia-100: #EF5DA8;
  --color-fuschia-80: #F178B6;
  --color-fuschia-60: #FCDDEC;
  
  /* Primary Colors - Iris */
  --color-iris-100: #5D5FEF;
  --color-iris-80: #7879F1;
  --color-iris-60: #A5A6F6;
  
  /* Accent Colors */
  --color-accent-blue: #007BE5;
  --color-accent-light-blue: #18A0FB;
  --color-accent-cyan: #56CCF2;
  --color-accent-dark-blue: #359DD9;
  
  /* Neutral Colors */
  --color-black: #000000;
  --color-bg-light: #FAFAFA;
  --color-text-dark: #0E0E2C;
  --color-text-muted: rgba(0, 0, 0, 0.8);
  --color-neutral-light: #D8D8D8;
  --color-neutral-medium: #AFAFAF;
  --color-neutral-dark: #C4C4C4;
  
  /* Status Colors */
  --color-warning: #FFEB00;
  --color-warning-bg: #EDF5FA;
  
  /* Shadows */
  --shadow-light: 0px 1px 3px 0px rgba(0, 0, 0, 0.35);
  --shadow-medium: 0px 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0px 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Typography Scale */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Droid Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 20px;
  --text-2xl: 34px;
  --text-3xl: 38px;
  --text-4xl: 72px;
  
  /* Line Heights */
  --leading-tight: 1.15;
  --leading-normal: 1.17;
  --leading-relaxed: 1.33;
  --leading-loose: 1.45;
  --leading-xl: 1.6;
  --leading-2xl: 1.71;
  --leading-3xl: 2.1;
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Letter Spacing */
  --tracking-tight: -2%;
  --tracking-normal: -1.7%;
  --tracking-wide: 0.5%;
  --tracking-wider: -0.6%;
  
  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  
  /* Border Radius */
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 1000px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

@font-face {
    font-family: 'Enthalpy298';
    src: url('fonts/enthalpy298regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kudry';
    src: url('./fonts/kudry_weird-headline (2).otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calypso';
    src: url('fonts/Calypso.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino';
    src: url('fonts/palatinolinotype_roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Literature';
    src: url('fonts/Literature-Decor.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background-color: transparent;
    color: var(--color-text-dark);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 60px;
}

.header .logo {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-fuschia-100);
    letter-spacing: var(--tracking-normal);
}

.header .contact-info {
    display: flex;
    align-items: center;
}

.header .contact-info span {
    margin-right: var(--space-4);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-fuschia-100);
}

.header .contact-info button {
    background-color: transparent;
    color: var(--color-fuschia-100);
    border: none;
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-light);
}

.header .contact-info button:hover {
    background-color: var(--color-fuschia-60);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header nav ul li {
    margin-left: 20px;
}

.header nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header nav ul li a:hover {
    color: #ff69b4;
}

/* Черные буквы для хеддера на главной странице */
.header {
    color: #1a1a1a;
}

.header .logo {
    color: #1a1a1a;
}

.header .logo .brand-dot {
    color: var(--color-fuschia-100);
}

/* Стиль для точки в логотипе */
.brand-dot {
    color: var(--color-fuschia-100);
}

.header .contact-info span {
    color: #1a1a1a;
}

.header .contact-info button {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.hero-section {
    min-height: 100vh;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 20px 60px 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: #1a2d59;
    text-align: left;
    position: relative;
    margin-left: -50px; /* Move the entire heading to the left */
}

.hero-brand {
    font-size: 140px; /* Increased from 100px */
    color: #1a1a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align to the left */
}

.hero-brand .brand-dot {
    color: var(--color-fuschia-100);
}

.hero-text::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: transparent;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-black);
    margin-bottom: var(--space-8);
    text-align: left;
    line-height: var(--leading-tight);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(26, 45, 89, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.hero-form-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.master-form {
    background: transparent;
    border-radius: 16px;
    padding: 9px 15px 15px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid #1a1a1a;
    max-width: 450px;
    width: 100%;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 8px;
}

.form-header h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: #666666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

    .request-form {
        display: flex;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 14px;
    }

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

.phone-input,
.device-select,
.problem-description {
    padding: 10px 12px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 0.9rem;
    background: transparent;
    color: #1a1a1a;
    transition: all 0.2s ease;
    font-family: inherit;
}

/* Белые поля ввода для ПК версии */
@media (min-width: 769px) {
    .phone-input,
    .device-select,
    .problem-description {
        background: #ffffff;
    }
}

.phone-input:focus,
.device-select:focus,
.problem-description:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}



.phone-input::placeholder,
.device-select::placeholder,
.problem-description::placeholder {
    color: #999999;
}

.device-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.problem-description {
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

.call-master-btn {
    background: #ecc25b;
    color: var(--color-white);
    border: 2px solid #ecc25b;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-light);
}

.call-master-btn:hover {
    background: var(--color-white);
    color: #ecc25b;
    border-color: #ecc25b;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.call-master-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}



.form-footer {
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.consultation-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    font-weight: var(--font-medium);
}

.phone-number {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-black);
    margin-bottom: var(--space-3);
}

.privacy-text {
    font-size: 0.8rem;
    color: #999999;
    line-height: 1.4;
    margin: 0;
}

.privacy-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #f4d000;
}



.hero-washing-machines {
    background-color: #f5f5dc;
    padding: 80px 20px;
    text-align: center;
}

.hero-washing-machines h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-washing-machines .slogan {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
}

.hero-washing-machines .features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-washing-machines .feature-item {
    background-color: #f5f5dc;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 280px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hero-washing-machines .feature-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.hero-washing-machines .feature-item p {
    font-size: 16px;
    color: #555;
}

.hero-washing-machines .call-to-action {
    margin-top: 40px;
}

.hero-washing-machines .call-to-action p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-washing-machines .phone-button {
    display: inline-block;
    background-color: #1a2d59;
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-washing-machines .phone-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.hero-washing-machines .privacy-text {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

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

.equipment-buttons .button {
    background-color: #f5f5dc; /* Белый фон для кнопок оборудования */
    border: 1px solid #1a2d59; /* Более светлый бордер */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 180px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Чуть более выраженная тень */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-buttons .button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.equipment-buttons .button img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.equipment-buttons .button h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.equipment-buttons .button p {
    font-size: 14px;
    color: #777;
}

.request-form-panel {
    background-color: #f5f5dc;
    border: 1px solid #1a2d59;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.request-form-panel h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.request-form-panel label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.request-form-panel input[type="tel"],
.request-form-panel textarea {
    width: calc(100% - 24px); /* Корректируем ширину с учетом padding */
    padding: 12px; /* Увеличиваем паддинг */
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Скругляем углы */
    font-size: 16px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05); /* Внутренняя тень */
}

.request-form-panel textarea {
    resize: vertical;
    min-height: 80px;
}

.request-form-panel button {
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 14px 28px; /* Увеличиваем размер */
    cursor: pointer;
    font-size: 20px; /* Увеличиваем размер шрифта */
    border-radius: 8px; /* Скругляем углы */
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.request-form-panel button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.discounts-section {
    padding: 60px 20px;
    background-color: #f5f5dc;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.discounts-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.discount-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.discount-item {
    background-color: #f5f5dc;
    border: 1px solid #1a2d59;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-item:hover {
    transform: translateY(-8px); /* Больший подъем */
    box-shadow: 0 12px 25px rgba(0,0,0,0.2); /* Большая тень */
}

.discount-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a2d59; /* Глубокий синий для акцента */
    font-weight: bold;
}

.discount-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.discount-item s {
    color: #888;
    text-decoration: line-through;
}

.discount-item span {
    font-weight: bold;
    color: #333;
}

.about-us-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    width: 100%;
    position: relative;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-main-content {
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.about-text-block {
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

.about-text-block strong {
    color: #1f2937;
    font-weight: 700;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.4s ease;
    text-align: left;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(79, 195, 247, 0.4);
}

.about-feature-card .feature-icon {
    margin-bottom: 20px;
    text-align: center;
}

.about-feature-card .feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

.about-feature-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.about-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-feature-card li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.about-feature-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4fc3f7;
    font-weight: bold;
}

.about-feature-card li:last-child {
    margin-bottom: 0;
}

.about-contacts {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.about-contacts a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 600;
}

.about-contacts a:hover {
    text-decoration: underline;
}

.brands-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-background {
    display: none;
}

.brands-overlay {
    display: block;
}

.brands-content {
    width: 100%;
    max-width: 1400px;
    text-align: center;
    padding: 0 40px;
    margin: 0 auto;
}

.brands-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1F2937;
}

.brands-section p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.brands-table {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(26, 45, 89, 0.1);
}

.brand-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.brand-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.brand-cell:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

/* Специальный размер для логотипа Haier */
.brand-cell img[alt="Haier"] {
    max-width: 140px;
    max-height: 70px;
}

.brand-cell:hover .brand-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a2d59;
    text-align: center;
    margin-top: 5px;
}

.geography-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.geography-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.geography-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.geography-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.geography-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.geography-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.geography-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}



.map-stats {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    color: #1a1a1a;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.geography-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 400px;
}

.districts-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 8px 20px 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
    max-height: 500px;
    overflow-y: auto;
}

.districts-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

.district-group h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.district-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.district-group li {
    padding: 4px 0;
    color: #555;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease;
}

.district-group li:hover {
    color: #1a1a1a;
}

.district-group li:last-child {
    border-bottom: none;
}

/* Стили для скроллбара в блоках районов */
.districts-section::-webkit-scrollbar {
    width: 6px;
}

.districts-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.districts-section::-webkit-scrollbar-thumb {
    background: rgba(255, 105, 180, 0.3);
    border-radius: 3px;
}

.districts-section::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 105, 180, 0.5);
}

.geography-cta-section {
    margin-top: 40px;
    text-align: center;
}

.geography-cta-btn {
    width: 100%;
    background: var(--color-fuschia-100);
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
}

.geography-cta-btn:hover {
    opacity: 0.9;
}

.cta-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-icon {
    font-size: 1.2rem;
}







.geography-submit-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.documentation-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.documentation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.documentation-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.documentation-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.documentation-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.documentation-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.documentation-main {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-number {
    position: absolute;
    /* top: -20px; */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    letter-spacing: 1px;
    z-index: 10;
}

.process-icon {
    margin: 60px 0 25px 0;
    position: relative;
}

.process-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.process-icon img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.process-card:hover .process-icon img {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.2);
}

.process-content h3 {
    margin-top: 60px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.process-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-main {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.quality-guarantees-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
}

.quality-guarantees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 80px 0;
    position: relative;
    z-index: 2;
    padding-left: 60px;
    justify-content: flex-start;
}

.guarantee-visual {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
}

.guarantee-image {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.warranty-clipboard {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.clipboard-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.warranty-coupon {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.coupon-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.coupon-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    font-family: monospace;
}

.pen-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: #ffc107;
}

.guarantee-points {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 60px;
    padding-right: 80px;
}

.guarantee-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
}

.point-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(108, 117, 125, 0.3);
    line-height: 1;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.point-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .guarantee-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .guarantee-visual {
        flex: none;
        width: 100%;
    }
    
    .guarantee-image {
        height: 300px;
    }
    
    .point-number {
        font-size: 2.5rem;
    }
}

.guarantee-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1F2937;
    font-weight: 700;
}

.guarantee-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.payment-methods-section {
    padding: 80px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.payment-methods-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.payment-method {
    background-color: #f5f5dc;
    border: 1px solid #1a2d59;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-method img {
    width: 70px; /* Увеличиваем размер */
    height: 70px; /* Увеличиваем размер */
    margin-bottom: 15px; /* Увеличиваем отступ */
}

.payment-method p {
    font-size: 16px;
    color: #555;
    font-weight: bold;
}

.work-examples-section {
    padding: 80px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.work-examples-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.work-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.work-item {
    background-color: #f5f5dc;
    border: 1px solid #1a2d59;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.work-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px; /* Увеличиваем отступ */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.work-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.team-section {
    padding: 100px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.team-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-main {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    margin-bottom: 20px;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.team-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.member-specialty {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.experience-years {
    font-size: 1.1rem;
    font-weight: 700;
}

.experience-text {
    font-size: 0.8rem;
}

.faq-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: white;
    position: relative;
    /* border-radius: 0 0 30px 30px; */
}

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

.faq-header {
    text-align: left;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.faq-item:hover {
    background: #444;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.faq-question:hover {
    background: transparent;
}

.faq-plus {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }
    
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

.contacts-section {
    padding: 80px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.contacts-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.contact-info-details p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #555;
}

.contacts-section .contact-info-details p:first-child {
    font-size: 22px;
    font-weight: bold;
    color: #1F2937; /* Темный цвет для номера телефона */
}

.contact-info-details strong {
    color: #1F2937; /* Темный цвет для выделенного текста */
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
}

.social-links img {
    width: 45px; /* Увеличиваем размер */
    height: 45px; /* Увеличиваем размер */
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.social-links img:hover {
    transform: scale(1.15); /* Большее увеличение */
}

.container {
    max-width: 1024px; /* Увеличиваем максимальную ширину контейнера */
    margin: 0 auto;
    padding: 30px; /* Увеличиваем паддинг */
    background-color: #f5f5dc;
    box-shadow: 0 0 20px rgba(0,0,0,0.08); /* Чуть более выраженная тень */
    border-radius: 10px; /* Увеличиваем скругление */
    margin-top: 30px; /* Увеличиваем отступ сверху */
    margin-bottom: 30px; /* Добавляем отступ снизу */
}

.full-width-container {
    width: 100%;
    margin: 0;
    padding: 0 40px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.image-placeholder {
    text-align: center;
    margin-bottom: 30px;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.description h2 {
    color: #1F2937; /* Темный цвет для заголовка */
    margin-bottom: 15px;
}

.description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.price {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #1a2d59; /* Глубокий синий для акцента */
}

.details {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.details h2 {
    color: #1F2937; /* Темный цвет для заголовка */
    margin-bottom: 15px;
}

.request-button-container {
    text-align: center;
    margin-bottom: 20px;
}

.request-button {
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 8px; /* Скругляем углы */
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.request-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.price-list-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.price-list-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.price-list-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.price-list-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #f5f5dc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-list-section th,
.price-list-section td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.price-list-section th {
    background-color: #EDECE6; /* Светлый акцентный цвет */
    color: #1F2937; /* Темный цвет для текста */
    font-weight: bold;
}

.price-list-section td:last-child {
    text-align: center;
}

.price-list-section button {
    background-color: #1a2d59;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.price-list-section button:hover {
    background-color: #2e4d8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.price-list-section .price-note {
    font-size: 14px;
    color: #777;
    text-align: center;
}

.parts-availability-section {
    padding: 60px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.parts-availability-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.parts-availability-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.parts-availability-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.parts-availability-section ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.parts-availability-section ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.brand-logos-small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.brand-logos-small img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logos-small img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.why-us-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.why-us-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.why-us-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.why-us-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.why-us-section ul,
.why-us-section ol {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.why-us-section ul li,
.why-us-section ol li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.faq-washing-machines-section {
    padding: 60px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.faq-washing-machines-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.faq-washing-machines-section .accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-washing-machines-section .accordion-item {
    background-color: #f5f5dc;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-washing-machines-section .accordion-header {
    background-color: #EDECE6; /* Светлый акцентный цвет */
    color: #1F2937; /* Темный цвет для текста */
    padding: 18px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-washing-machines-section .accordion-header:hover {
    background-color: #e0ded4;
}

.faq-washing-machines-section .accordion-header::after {
    content: '+';
    font-size: 24px;
    font-weight: bold;
}

.faq-washing-machines-section .accordion-header.active::after {
    content: '-';
}

.faq-washing-machines-section .accordion-content {
    padding: 0 20px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-washing-machines-section .accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-washing-machines-section .accordion-content ul {
    list-style: disc;
    margin-left: 20px;
    padding-bottom: 15px;
}

.faq-washing-machines-section .accordion-content ul li {
    margin-bottom: 5px;
    color: #555;
}

.error-codes-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.error-codes-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.error-codes-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.error-codes-section h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.error-item {
    background-color: #f5f5dc;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.error-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.error-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.error-item ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
    color: #555;
}

.error-item ul li {
    margin-bottom: 5px;
}

.error-model-section {
    background-color: #f5f5dc;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.error-model-section h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.error-model-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.error-model-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
    color: #555;
}

.error-model-section ul li {
    margin-bottom: 5px;
}

.error-model-section .note {
    font-style: italic;
    color: #888;
}

.call-to-action-bottom {
    padding: 60px 20px;
    background-color: #f3f2ea;
    text-align: center;
}

.call-to-action-bottom h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.call-to-action-bottom p {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
}

.call-to-action-bottom .phone-button {
    display: inline-block;
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.call-to-action-bottom .phone-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
}

.call-to-action-bottom .privacy-text {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.districts-section {
    padding: 60px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.districts-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.districts-section .slogan {
    font-size: 24px;
    color: #555;
    margin-bottom: 40px;
}

.districts-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.districts-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.districts-section .request-button {
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.districts-section .request-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
}

.bottom-contact-form {
    padding: 60px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.bottom-contact-form h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.bottom-contact-form p {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.bottom-contact-form .phone-button {
    display: inline-block;
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bottom-contact-form .phone-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
}

.bottom-contact-form .privacy-text {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    margin-bottom: 40px;
}

.bottom-contact-form h4 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1F2937; /* Темный цвет для заголовка */
}

.bottom-contact-form .contact-final {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}

.bottom-contact-form .contact-final .phone-button {
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bottom-contact-form .contact-final .phone-button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
}

.bottom-contact-form .contact-final button {
    background-color: #1a2d59; /* Глубокий синий для кнопок */
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 8px; /* Немного скругляем углы */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bottom-contact-form .contact-final button:hover {
    background-color: #2e4d8a; /* Чуть светлее синий при наведении */
}

.bottom-contact-form .copyright,
.bottom-contact-form .info-note {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

.bottom-contact-form .copyright a,
.bottom-contact-form .info-note a {
    color: #888;
    text-decoration: underline;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f5f5dc;
}







/* Планшетная версия */
@media (max-width: 1024px) {
    .header {
        padding: 12px 20px;
    }
    
    .header nav ul {
        gap: 25px;
    }
    
    .header nav ul li a {
        font-size: 0.9rem;
    }
    
    .hero-main {
        gap: 60px;
    }
    
    .hero-brand {
        font-size: 120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .master-form {
        max-width: 400px;
        padding: 20px 25px 25px 25px;
    }
    
    .brands-table {
        padding: 40px 30px;
    }
    
    .brand-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .brand-cell {
        padding: 15px;
    }
    
    .brand-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .geography-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-stats {
        padding: 20px;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-card {
        padding: 25px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 18px 25px;
    }
    
    .faq-answer {
        padding: 0 25px 18px 25px;
        font-size: 1rem;
    }
    
    .masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.4rem;
    }
    
    .details-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
    
    .ticker-item {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

/* Мобильная версия */
/* МОБИЛЬНАЯ ВЕРСИЯ ПО ДИЗАЙНУ ИЗ FIGMA */
@media (max-width: 768px) {
    /* Общий фон страницы как в макете */
    body {
        background: transparent;
    }

    /* Компактный хедер как в дизайне */
    .header {
        display: none;
    }
    
    .header .logo {
        font-size: 24px;
    }
    
    .header nav ul {
        display: none;
    }
    
    .header .contact-info {
        display: none;
    }
    
    /* Мобильное меню */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: #1a1a1a;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-menu li {
        margin-bottom: 15px;
    }
    
    .mobile-menu a {
        display: block;
        padding: 12px 0;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #ff69b4;
    }
    
    .mobile-contact {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(26, 26, 26, 0.1);
    }
    
    .mobile-contact span {
        display: block;
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 10px;
    }
    
    .mobile-contact button {
        width: 100%;
        padding: 12px;
        background: #ff69b4;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .mobile-contact button:hover {
        background: #ff1493;
    }

    /* HERO СЕКЦИЯ ПО ДИЗАЙНУ FIGMA */
    .hero-section {
        min-height: 100vh;
        padding: 85px 20px 40px 20px;
        margin-top: 70px;
        background: #F5F4EF;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* АРМИЯ ШЕСТЕРЁНОК НА МОБИЛКАХ */
    .hero-gear-mobile-left {
        position: absolute;
        left: 10px;
        top: 5%;
        width: 750px;
        height: 750px;
        background: url('png/image-Photoroom (40).png') no-repeat center center;
        background-size: contain;
        opacity: 1;
        z-index: 1;
        animation: gearSpinForever 4s linear infinite;
        transform-origin: center center;
    }

    .hero-gear-mobile-right-1 {
        position: absolute;
        right: 20px;
        top: -4%;
        width: 350px;
        height: 350px;
        background: url('png/image-Photoroom (40).png') no-repeat center center;
        background-size: contain;
        opacity: 1;
        z-index: 1;
        animation: gearSpinForever 3s linear infinite;
        transform-origin: center center;
    }

    .hero-gear-mobile-right-2 {
        display: none;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    /* Меняем grid на flex для лучшего контроля */
    .hero-main {
        display: flex;
        flex-direction: column;
        gap: 35px;
        text-align: center;
        align-items: center;
        padding: 0 10px;
    }
    
    /* Форма идет первой на мобильном - важно для UX */
    .hero-form-container {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .master-form {
        width: 100%;
        max-width: 380px;
        padding: 12px 12px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid #d0d0d0;
        background: transparent;
        margin: 0 auto;
    }
    
    /* Текстовый блок идет вторым */
    .hero-text {
        order: 2;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-brand {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.1;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    .hero-brand .brand-dot {
        color: var(--color-fuschia-100);
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
        line-height: 1.4;
        text-align: center;
        font-weight: 600;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
        color: #666;
        line-height: 1.5;
    }

    .hero-features {
        display: none; /* Скрываем на мобильном для чистоты */
    }

    /* Все секции с фоном как в дизайне */
    .about-us-section,
    .brands-section,
    .geography-section,
    .documentation-section,
    .quality-section,
    .appliance-repairs-section,
    .repair-process-section {
        background: #F5F4EF;
    }

    /* Карточки и блоки на светлом фоне */
    .repair-card,
    .process-card,
    .brand-cell,
    .district-group {
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        border: 1px solid #e8e8e8;
    }

    /* Галерея в стиле Figma дизайна */
    .hero-gallery {
        background: transparent;
        padding: 20px 0;
    }

    .masonry {
        padding: 0 20px;
    }

    .image-container {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        border: 1px solid #e8e8e8;
        background: #ffffff;
        margin-bottom: 15px;
    }

    .masonry-spacer {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        border: 1px solid #e8e8e8;
        margin-bottom: 15px;
    }

    /* Улучшенные стили формы */
    .form-header h3 {
        font-size: 1.3rem;
        margin-bottom: 4px;
        color: #1a1a1a;
        font-weight: 700;
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
        color: #666;
        line-height: 1.4;
        text-align: center;
    }

    .form-group {
        margin-bottom: 8px;
    }
    
    .request-form {
        gap: 6px;
        margin-bottom: 10px;
    }

    .phone-input,
    .device-select,
    .problem-description {
        width: 100%;
        padding: 12px 14px;
        font-size: 1rem;
        border-radius: 8px;
        border: 2px solid #e0e0e0;
        background: #ffffff;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .phone-input:focus,
    .device-select:focus,
    .problem-description:focus {
        border-color: var(--color-fuschia-100);
        background: #ffffff;
        outline: none;
    }

    .call-master-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        font-weight: 600;
        background: #ecc25b;
        color: #ffffff;
        border: none;
        margin-bottom: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .call-master-btn:hover {
        opacity: 0.9;
    }

    .form-footer {
        text-align: center;
    }

    .consultation-text {
        font-size: 0.9rem;
        margin-bottom: 6px;
        color: #666;
    }

    .phone-number {
        font-size: 2.4rem;
        font-weight: 600;
        color: var(--color-fuschia-100);
        margin-bottom: 12px;
    }
    
    .privacy-text {
        font-size: 0.8rem;
        line-height: 1.4;
        color: #888;
    }
    
    .privacy-link {
        color: #ff69b4;
        text-decoration: underline;
    }

    .brands-overlay {
        padding: 30px 15px;
    }

    .brands-table {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .brand-row {
        flex-direction: column;
        gap: 15px;
        border-bottom: none;
        padding: 12px 0;
    }

    .brand-cell {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
    }

    .brand-logo {
        max-width: 80px;
        max-height: 40px;
    }
    
    .geography-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .geography-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 250px;
        border-radius: 12px;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .district-group h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .district-group li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .geography-cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .member-specialty {
        font-size: 0.9rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9rem;
    }
    
    .ticker-container {
        margin: 20px 0;
    }
    
    .ticker-item {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .masonry {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .image-container {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .gallery-overlay h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .details-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .hover-info p {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .repair-time {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}

/* Маленькие мобильные экраны - только самое необходимое */
@media (max-width: 480px) {
    .header {
        display: none;
    }
    
    .header .logo {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 75px 15px 30px 15px;
        margin-top: 60px;
    }
    
    .hero-brand {
        font-size: 2.8rem;
        margin-bottom: 12px;
        line-height: 0.9;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .master-form {
        max-width: 100%;
        padding: 15px 12px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 18px;
        color: #666;
    }

    .hero-feature {
        font-size: 0.85rem;
        gap: 6px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .master-form {
        padding: 9px 12px 12px 12px;
        border-radius: 10px;
    }

    .form-header h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .request-form {
        gap: 2px;
        margin-bottom: 4px;
    }
    
    .form-group {
        margin-bottom: 3px;
    }

    .phone-input,
    .device-select,
    .problem-description {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .call-master-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .phone-number {
        font-size: 2.4rem;
        font-weight: 600;
    }
    
    .privacy-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .brands-overlay {
        padding: 25px 12px;
    }
    
    .brands-table {
        padding: 15px 12px;
        margin: 0 3px;
    }
    
    .brand-cell {
        padding: 10px;
        border-radius: 6px;
    }
    
    .brand-logo {
        max-width: 70px;
        max-height: 35px;
    }
    
    .geography-header h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .geography-header p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .map-container {
        height: 200px;
        border-radius: 10px;
    }
    
    .district-group h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .district-group li {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .geography-cta-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .service-card {
        padding: 16px;
        border-radius: 10px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    .team-card {
        padding: 16px;
        border-radius: 10px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .member-specialty {
        font-size: 0.85rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 12px 16px;
    }
    
    .faq-answer {
        padding: 0 16px 12px 16px;
        font-size: 0.85rem;
    }
    
    .ticker-item {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .details-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        border-radius: 4px;
    }
    
    .hover-info p {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }
    
    .repair-time {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .masonry {
        gap: 12px;
    }
    
    .image-container {
        border-radius: 10px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 320px) {
    .header {
        display: none;
    }
    
    .header .logo {
        font-size: 20px;
    }
    
    .hero-section {
        padding: 60px 10px 25px 10px;
        margin-top: 50px;
    }
    
    .hero-brand {
        font-size: 60px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .master-form {
        padding: 6px 8px 8px 8px;
        border-radius: 8px;
    }
    
    .form-header h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .form-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .request-form {
        gap: 1px;
        margin-bottom: 3px;
    }
    
    .form-group {
        margin-bottom: 2px;
    }
    
    .phone-input,
    .device-select,
    .problem-description {
        padding: 6px 8px;
        font-size: 0.8rem;
        border-radius: 5px;
    }
    
    .call-master-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
        border-radius: 5px;
        margin-bottom: 4px;
    }
    
    .phone-number {
        font-size: 2.2rem;
    }
    
    .privacy-text {
        font-size: 0.7rem;
    }
    
    .brands-overlay {
        padding: 20px 10px;
    }
    
    /* Форма галереи для самых маленьких экранов */
    .gallery-form-card {
        background: transparent;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #1a1a1a;
        max-width: 100%;
        width: 100%;
        margin-bottom: 15px;
        min-height: 450px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: block;
        break-inside: avoid;
        will-change: transform;
    }
    
    .gallery-form-card:hover {
        transform: scale(1.005);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    }
    
    .form-card-header h3 {
        margin: 0 0 8px 0;
        font-size: 1.3rem;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }
    
    .form-card-header p {
        margin: 0 0 12px 0;
        font-size: 0.85rem;
        color: #666666;
        line-height: 1.3;
    }
    
    .gallery-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-form input,
    .gallery-form select,
    .gallery-form textarea {
        padding: 10px 12px;
        border: 1px solid #1a1a1a;
        border-radius: 5px;
        font-size: 0.85rem;
        background: #ffffff;
        font-family: inherit;
        transition: all 0.2s ease;
        color: #1a1a1a;
    }
    
    .gallery-form input:focus,
    .gallery-form select:focus,
    .gallery-form textarea:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
    }
    
    .gallery-form textarea {
        resize: vertical;
        min-height: 50px;
        max-height: 120px;
    }
    
    .gallery-form button {
        padding: 12px 20px;
        background: #1a1a1a;
        color: #ffffff;
        border: 1px solid #1a1a1a;
        border-radius: 5px;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        letter-spacing: 0.2px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-form button:hover {
        background: #ffffff;
        color: #1a1a1a;
        border-color: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    }
    
    .form-card-footer {
        margin-top: 12px;
        text-align: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 12px;
    }
    
    .form-card-footer p {
        font-size: 0.75rem;
        color: #666666;
        margin-bottom: 5px;
        font-weight: 500;
    }
    
    .brands-table {
        padding: 12px 10px;
        margin: 0 2px;
    }
    
    .brand-cell {
        padding: 8px;
        border-radius: 5px;
    }
    
    .brand-logo {
        max-width: 60px;
        max-height: 30px;
    }
    
    .geography-header h2 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .geography-header p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .map-container {
        height: 180px;
        border-radius: 8px;
    }
    
    .district-group h4 {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .district-group li {
        font-size: 0.8rem;
        padding: 3px 0;
    }
    
    .geography-cta-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 5px;
    }
    
    .service-card {
        padding: 12px;
        border-radius: 8px;
    }
    
    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .service-content p {
        font-size: 0.8rem;
    }
    
    .team-card {
        padding: 12px;
        border-radius: 8px;
    }
    
    .member-info h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .member-specialty {
        font-size: 0.8rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .faq-answer {
        padding: 0 12px 10px 12px;
        font-size: 0.8rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .details-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
        border-radius: 3px;
    }
    
    .hover-info p {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .repair-time {
        font-size: 0.7rem;
        padding: 2px 5px;
    }
    
    .masonry {
        gap: 10px;
    }
    
    .image-container {
        border-radius: 8px;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        display: none;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 40px 15px 20px 15px;
        margin-top: 50px;
    }
    
    .hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }
    
    .hero-brand {
        font-size: 60px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-features {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .master-form {
        padding: 12px 15px 15px 15px;
        max-width: 300px;
    }
    
    .form-header h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .phone-input,
    .device-select,
    .problem-description {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .call-master-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .privacy-text {
        font-size: 0.7rem;
    }
    
    .map-container {
        height: 150px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Высокие экраны (iPhone в портретной ориентации) */
@media (min-height: 800px) and (max-width: 768px) {
    .header {
        display: none;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 100px 15px 60px 15px;
    }
    
    .hero-brand {
        font-size: 100px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-feature {
        font-size: 1rem;
        gap: 10px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .master-form {
        padding: 20px 25px 25px 25px;
        max-width: 100%;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .form-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .phone-input,
    .device-select,
    .problem-description {
        padding: 15px 18px;
        font-size: 1rem;
    }
    
    .call-master-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .phone-number {
        font-size: 3rem;
    }
    
    .privacy-text {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .district-group h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .district-group li {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-card {
        padding: 25px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .member-specialty {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px 20px 25px;
        font-size: 1rem;
    }
    
    .ticker-item {
        font-size: 1rem;
        padding: 10px 18px;
    }
    
    .masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .details-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
    
    .hover-info p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .repair-time {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
} 

.hero-cards {
    width: 100%;
    position: relative;
    margin-top: -60px;
    z-index: 0;
}

.hero-cards__container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    background: #f9f8be;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26,45,89,0.10);
    padding: 32px 28px;
    font-size: 1.35rem;
    color: #234e70;
    font-weight: 500;
    min-width: 280px;
    max-width: 340px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.hero-card:hover {
    transform: scale(1.07) translateY(-8px);
    box-shadow: 0 16px 48px rgba(26,45,89,0.18);
} 

.about-benefits {
    margin: 32px 0 24px 0;
    padding: 0 0 0 24px;
    font-size: 1.1rem;
    color: #234e70;
}
.about-benefits li {
    margin-bottom: 12px;
    line-height: 1.5;
}
.about-contacts {
    margin-top: 18px;
    font-size: 1.15rem;
    color: #234e70;
}
.about-contacts a {
    color: #234e70;
    font-weight: bold;
    text-decoration: underline;
} 

.about-block-coffeecar {
    background: transparent;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26,45,89,0.10);
    padding: 48px 32px 40px 32px;
    margin-top: 48px;
    margin-bottom: 48px;
    max-width: 1100px;
}
.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #234e70;
    margin-bottom: 18px;
    text-align: center;
}
.about-subtitle {
    font-size: 1.18rem;
    color: #234e70;
    margin-bottom: 36px;
    text-align: center;
}
.about-adv-list {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.about-adv-item {
    background: #f9f8be;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(26,45,89,0.08);
    flex: 1 1 0;
    min-width: 260px;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    padding: 28px 22px 24px 22px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-adv-item:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(26,45,89,0.16);
}
.about-adv-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #234e70;
    margin-right: 18px;
    min-width: 44px;
    text-align: center;
    line-height: 1;
}
.about-adv-content {
    flex: 1;
}
.about-adv-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #234e70;
    margin-bottom: 8px;
}
.about-adv-text {
    font-size: 1.02rem;
    color: #234e70;
}
.about-contacts-coffeecar {
    margin-top: 18px;
    font-size: 1.15rem;
    color: #234e70;
    text-align: center;
}
.about-contacts-coffeecar a {
    color: #234e70;
    font-weight: bold;
    text-decoration: underline;
} 

.ticker-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: #000; /* Черный фон */
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ticker {
    display: flex;
    animation: ticker 15s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    color: #fff; /* Белый текст */
    font-size: 16px;
    font-weight: 600;
    padding: 0 30px;
    text-shadow: none; /* Removed text shadow */
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.brand-name {
    font-size: 18px;
    color: #ff69b4;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.brand-dot {
    color: #ff1493;
}

.section-header h2 {
    color: #000;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.hero-gallery {
    margin-top: 20px;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.masonry {
    columns: 4;
    column-gap: 24px;
    max-width: 100vw;
    margin: 0 auto;
    will-change: transform;
    padding: 0 20px;
}

.masonry img,
.masonry .gallery-form-card {
    display: block;
    max-width: 100%;
    /* margin-bottom: 24px; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Общие стили для формы галереи (ПК версия) */
@media (min-width: 769px) {
    .gallery-form-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px 40px 40px 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 2px solid #1a1a1a;
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
        min-height: 700px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: block;
        break-inside: avoid;
        will-change: transform;
    }

    .gallery-form-card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .form-card-header h3 {
        margin: 0 0 12px 0;
        font-size: 2rem;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .form-card-header p {
        margin: 0 0 24px 0;
        font-size: 1.1rem;
        color: #666666;
        line-height: 1.5;
    }

    .gallery-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-form input,
    .gallery-form select,
    .gallery-form textarea {
        padding: 16px 20px;
        border: 2px solid #1a1a1a;
        border-radius: 8px;
        font-size: 1rem;
        background: #ffffff;
        font-family: inherit;
        transition: all 0.2s ease;
        color: #1a1a1a;
    }

    .gallery-form input:focus,
    .gallery-form select:focus,
    .gallery-form textarea:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

    .gallery-form textarea {
        resize: vertical;
        min-height: 100px;
        max-height: 200px;
    }

    .gallery-form button {
        padding: 18px 32px;
        background: #1a1a1a;
        color: #ffffff;
        border: 2px solid #1a1a1a;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        letter-spacing: 0.3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .gallery-form button:hover {
        background: #ffffff;
        color: #1a1a1a;
        border-color: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .form-card-footer {
        margin-top: 24px;
        text-align: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 24px;
    }

    .form-card-footer p {
        font-size: 1rem;
        color: #666666;
        margin-bottom: 8px;
        font-weight: 500;
    }
}

.image-container {
    position: relative;
    display: block;
    max-width: 100%;
    margin-bottom: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    break-inside: avoid;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
    transition: background 0.3s ease;
}

.image-container:hover::after {
    background: rgba(0, 0, 0, 0.7);
}

/* Убираем темный оверлей на мобильных устройствах */
@media (max-width: 768px) {
    .image-container::after {
        display: none;
    }
    
    .image-container:hover::after {
        display: none;
    }
    
    /* Убираем темный оверлей для masonry-spacer на мобильных */
    .masonry-spacer::after {
        display: none;
    }
    
    /* Исправляем masonry-spacer для мобильных */
    .masonry-spacer {
        height: 200px;
        margin-bottom: 15px;
        border-radius: 12px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        border: 1px solid #e8e8e8;
    }
    
    .masonry-spacer:first-of-type {
        height: 250px;
    }
    
    .masonry-spacer.spacer-column-3 {
        height: 180px;
    }
    
    .masonry-spacer.spacer-column-4 {
        height: 220px;
    }
}

/* Дополнительные исправления для очень маленьких экранов */
@media (max-width: 480px) {
    .masonry-spacer::after {
        display: none;
    }
    
    .masonry-spacer {
        height: 150px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    
    .masonry-spacer:first-of-type {
        height: 200px;
    }
    
    .masonry-spacer.spacer-column-3 {
        height: 140px;
    }
    
    .masonry-spacer.spacer-column-4 {
        height: 180px;
    }
    
    /* Убеждаемся что flexbox работает на маленьких экранах */
    .masonry {
        gap: 15px;
    }
}

/* Меняем порядок элементов на мобилке */
@media (max-width: 768px) {
    /* Переключаем masonry на flexbox для работы order */
    .masonry {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-link,
    .masonry-spacer,
    .gallery-form-card {
        width: 100%;
        margin-bottom: 0;
    }
    
    /* Первый спейсер идет после электроплит */
    .masonry-spacer:first-of-type {
        order: 3;
    }
    
    /* Электроплиты идут перед первым спейсером */
    .gallery-link[href="pages/cooking-equipment.html"] {
        order: 2;
    }
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    z-index: 2;
    pointer-events: none;
}

.gallery-overlay h3 {
    font-family: 'Literature', serif;
    color: #ecc25b;
    font-size: 28px;
    font-weight: normal;
    margin: 0;
    text-align: left;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    padding-right: 20px;
}

.details-btn {
    font-family: 'Literature', serif;
    background: transparent;
    color: #ecc25b;
    border: 1px solid #ecc25b;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.details-btn:hover {
    background: #ecc25b;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.larger-title {
    font-size: 36px;
}

.left-aligned {
    padding-right: 40px;
}

.gallery-overlay .hover-info {
    display: none;
}

.hover-info .problems-title {
    display: none;
}

.hover-info p {
    display: none;
}

.repair-time {
    display: none;
}

.spacer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    z-index: 2;
    pointer-events: none;
}

.spacer-overlay h3 {
    font-family: 'Literature', serif;
    color: #ecc25b;
    font-size: 24px;
    font-weight: normal;
    margin: 0 0 15px 0;
    text-align: left;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 100%;
}

.spacer-overlay p {
    color: #ffffff;
    font-family: 'Literature', serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.gallery-link:hover {
    transform: scale(1.02);
}

.gallery-overlay h3 {
    font-family: 'Literature', serif;
    color: #ecc25b;
    font-size: 28px;
    font-weight: normal;
    margin: 0;
    text-align: left;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    padding-right: 20px;
    position: relative;
    z-index: 4;
}



.horizontal-image {
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: auto;
}

.masonry-spacer {
    height: 400px;
    margin-bottom: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: linear-gradient(135deg, #1a2d59, #234e70);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(26, 45, 89, 0.2);
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    break-inside: avoid;
    page-break-inside: avoid;
    position: relative;
}

.masonry-spacer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

.spacer-column-3 {
    height: 250px;
    border-radius: 8px;
    background-image: url('png/pexels-anntarazevich-5963131.jpg');
    margin-bottom: 24px;
}

.spacer-column-4 {
    height: 300px;
    background-image: url('png/pexels-anete-lusina-4792286.jpg');
    margin-bottom: 24px;
}





/* Responsive */
@media screen and (max-width: 1024px) {
    .masonry {
        columns: 3;
    }
}

@media screen and (max-width: 768px) {
    .masonry {
        columns: 2;
    }
    
    /* Галерея - копируем стили из ПК версии */
    .hero-gallery {
        background: transparent !important;
        padding: 20px 0;
    }

    .masonry {
        padding: 0 20px;
    }

    .image-container {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        border: 1px solid #e8e8e8;
        background: #ffffff;
        margin-bottom: 15px;
        height: auto;
        overflow: hidden;
    }



    .horizontal-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .gallery-form-card {
        background: transparent;
        border-radius: 16px;
        padding: 24px 32px 32px 32px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 2px solid #1a1a1a;
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
        min-height: 650px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: block;
        break-inside: avoid;
        will-change: transform;
    }

    .gallery-form-card:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .form-card-header h3 {
        margin: 0 0 12px 0;
        font-size: 1.75rem;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .form-card-header p {
        margin: 0 0 20px 0;
        font-size: 1rem;
        color: #666666;
        line-height: 1.5;
    }

    .gallery-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .gallery-form input,
    .gallery-form select,
    .gallery-form textarea {
        padding: 14px 16px;
        border: 2px solid #1a1a1a;
        border-radius: 8px;
        font-size: 1rem;
        background: #ffffff;
        font-family: inherit;
        transition: all 0.2s ease;
        color: #1a1a1a;
    }

    .gallery-form input:focus,
    .gallery-form select:focus,
    .gallery-form textarea:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

    .gallery-form textarea {
        resize: vertical;
        min-height: 80px;
        max-height: 200px;
    }

    .gallery-form button {
        padding: 16px 28px;
        background: #1a1a1a;
        color: #ffffff;
        border: 2px solid #1a1a1a;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        letter-spacing: 0.3px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .gallery-form button:hover {
        background: #ffffff;
        color: #1a1a1a;
        border-color: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .form-card-footer {
        margin-top: 20px;
        text-align: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 20px;
    }

    .form-card-footer p {
        font-size: 0.9rem;
        color: #666666;
        margin-bottom: 8px;
        font-weight: 500;
    }
    
    /* Изменяем порядок элементов в галерее для планшетов */
    .gallery-link[href="pages/coffee-machines.html"] {
        order: 1;
    }
    
    .gallery-link[href="pages/dishwashers.html"] {
        order: 2;
    }
    
    .masonry-spacer:first-of-type {
        order: 3;
    }
    
    .gallery-link[href="pages/cooking-equipment.html"] {
        order: 4;
    }
    
    .gallery-link[href="pages/washing-machines.html"] {
        order: 5;
    }
    
    .gallery-link[href="pages/hoods.html"] {
        order: 6;
    }
    
    .gallery-link[href="pages/boilers.html"] {
        order: 7;
    }
    
    .gallery-link[href="pages/ovens.html"] {
        order: 8;
    }
    
    .gallery-link[href="pages/refrigerators.html"] {
        order: 9;
    }
    
    .masonry-spacer.spacer-column-3 {
        order: 10;
    }
    
    .masonry-spacer.spacer-column-4 {
        order: 11;
    }
    
    .gallery-form-card {
        order: 12;
    }
    
    /* Включаем flexbox для masonry на планшетах */
    .masonry {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-link,
    .masonry-spacer,
    .gallery-form-card {
        width: 100%;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .masonry {
        columns: 1;
    }
    
    /* Галерея для самых маленьких экранов */
    .hero-gallery {
        background: transparent;
        padding: 15px 0;
    }

    .masonry {
        padding: 0 15px;
    }

    .image-container {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #e8e8e8;
        background: #ffffff;
        margin-bottom: 10px;
        height: auto;
        overflow: hidden;
    }



    .horizontal-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .gallery-form-card {
        background: transparent;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        border: 2px solid #1a1a1a;
        max-width: 100%;
        width: 100%;
        margin-bottom: 20px;
        min-height: 500px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: block;
        break-inside: avoid;
        will-change: transform;
    }

    .gallery-form-card:hover {
        transform: scale(1.01);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .form-card-header h3 {
        margin: 0 0 10px 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .form-card-header p {
        margin: 0 0 15px 0;
        font-size: 0.9rem;
        color: #666666;
        line-height: 1.4;
    }

    .gallery-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .gallery-form input,
    .gallery-form select,
    .gallery-form textarea {
        padding: 12px 14px;
        border: 2px solid #1a1a1a;
        border-radius: 6px;
        font-size: 0.9rem;
        background: #ffffff;
        font-family: inherit;
        transition: all 0.2s ease;
        color: #1a1a1a;
    }

    .gallery-form input:focus,
    .gallery-form select:focus,
    .gallery-form textarea:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

    .gallery-form textarea {
        resize: vertical;
        min-height: 60px;
        max-height: 150px;
    }

    .gallery-form button {
        padding: 14px 24px;
        background: #1a1a1a;
        color: #ffffff;
        border: 2px solid #1a1a1a;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        letter-spacing: 0.3px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .gallery-form button:hover {
        background: #ffffff;
        color: #1a1a1a;
        border-color: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .form-card-footer {
        margin-top: 15px;
        text-align: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }

    .form-card-footer p {
        font-size: 0.8rem;
        color: #666666;
        margin-bottom: 6px;
        font-weight: 500;
    }
    
    /* Изменяем порядок элементов в галерее для мобильных устройств */
    .gallery-link[href="pages/coffee-machines.html"] {
        order: 1;
    }
    
    .gallery-link[href="pages/dishwashers.html"] {
        order: 2;
    }
    
    .masonry-spacer:first-of-type {
        order: 3;
    }
    
    .gallery-link[href="pages/cooking-equipment.html"] {
        order: 4;
    }
    
    .gallery-link[href="pages/washing-machines.html"] {
        order: 5;
    }
    
    .gallery-link[href="pages/hoods.html"] {
        order: 6;
    }
    
    .gallery-link[href="pages/boilers.html"] {
        order: 7;
    }
    
    .gallery-link[href="pages/ovens.html"] {
        order: 8;
    }
    
    .gallery-link[href="pages/refrigerators.html"] {
        order: 9;
    }
    
    .masonry-spacer.spacer-column-3 {
        order: 10;
    }
    
    .masonry-spacer.spacer-column-4 {
        order: 11;
    }
    
    .gallery-form-card {
        order: 12;
    }
    
    /* Включаем flexbox для masonry на мобилках */
    .masonry {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-link,
    .masonry-spacer,
    .gallery-form-card {
        width: 100%;
        margin-bottom: 0;
    }
} 

.gallery-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 32px 32px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid #1a1a1a;
    max-width: 100%;
    width: 100%;
    margin-bottom: 24px;
    min-height: 650px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    break-inside: avoid;
    will-change: transform;
}

.gallery-form-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-card-header h3 {
    margin: 0 0 12px 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.form-card-header p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

.gallery-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-form input,
.gallery-form select,
.gallery-form textarea {
    padding: 14px 16px;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    font-family: inherit;
    transition: all 0.2s ease;
    color: #1a1a1a;
}

.gallery-form input:focus,
.gallery-form select:focus,
.gallery-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.gallery-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
}

.optional-field {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.optional-field::placeholder {
    color: #999999;
    font-style: italic;
}

.gallery-form button {
    padding: 16px 28px;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-form button:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-card-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.form-card-footer p {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 8px;
    font-weight: 500;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f5f5dc;
    text-align: center;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1F2937; /* Темный цвет для заголовка */
}

/* FAQ SECTION BLACK & WHITE STYLE */
.faq-section {
  background: #111;
  color: #fff;
  padding: 60px 0;
}
.faq-header h2, .faq-header .faq-subtitle {
  color: #fff;
}
.faq-accordion-item, .faq-item {
  background: rgba(51, 51, 51, 0.1);
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(5px);
}
.faq-accordion-header, .faq-question {
  background: rgba(51, 51, 51, 0.2);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.faq-accordion-header:hover, .faq-question:hover {
  background: rgba(51, 51, 51, 0.3);
}
.faq-plus, .faq-toggle {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-left: 16px;
}
.faq-price-tag {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 6px 22px;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 18px;
  box-shadow: none;
}
.faq-accordion-content, .faq-answer {
  background: rgba(51, 51, 51, 0.1);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 20px 25px;
  font-size: 1.08rem;
}
.faq-actions, .faq-action-link, .faq-action-btn {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.faq-action-link:hover, .faq-action-btn:hover {
  background: #fff;
  color: #111;
}
.faq-accordion-item.active .faq-accordion-header, .faq-item.active .faq-question {
  background: rgba(51, 51, 51, 0.3);
  color: #fff;
}
.faq-accordion-item.active, .faq-item.active {
  border: none;
}
@media (max-width: 700px) {
  .faq-accordion-header, .faq-question, .faq-accordion-content, .faq-answer {
    padding: 16px 12px;
    font-size: 1rem;
  }
}

/* Стили для секции примеров работ */
.appliance-repairs-section {
    padding: 80px 0;
    background: #ffffff;
}

.appliance-repairs-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2d59;
    font-weight: bold;
}

.appliance-repairs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.repair-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.repair-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f3f2ea 0%, #e8e6d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.repair-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    text-align: center;
    color: #1a2d59;
    font-weight: 500;
}

.problem-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 45, 89, 0.9);
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.repair-details {
    padding: 20px;
}

.repair-master,
.repair-model,
.repair-description,
.repair-status,
.repair-cost {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.repair-master strong,
.repair-model strong,
.repair-cost strong {
    color: #1a2d59;
}

.repair-description {
    color: #666;
    font-style: italic;
}

.repair-status {
    color: #28a745;
    font-weight: 500;
}

.status-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.repair-cost {
    color: #1a2d59;
    font-weight: 600;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .appliance-repairs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .appliance-repairs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appliance-repairs-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Стили для объединенного контентного блока */
.unified-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.content-block {
    margin-bottom: 80px;
    padding: 40px 0;
}

.content-block:last-child {
    margin-bottom: 0;
}

.brands-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 20px 40px 20px;
}

/* Секция географии */
.geography-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Секция документации */
.documentation-section {
    padding: 80px 0;
    background: #ffffff;
}

.services-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 20px 40px 20px;
}

/* Секция качества */
.quality-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 20px 40px 20px;
}

/* Стили для контактного блока */
.contact-block-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.contact-block {
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.contact-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.contact-block-content {
    text-align: center;
}

.contact-info-text {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-phone-number {
    color: #1f2937;
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
    letter-spacing: -0.5px;
}

/* Стили для кнопки final-cta-btn */
.final-cta-btn {
    background: rgba(51, 51, 51, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.final-cta-btn:hover {
    background: rgba(51, 51, 51, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.final-cta-phone {
    background: rgba(51, 51, 51, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
    backdrop-filter: blur(5px);
}

.final-cta-phone:hover {
    background: rgba(51, 51, 51, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

 

@media (max-width: 1200px) {
    .header {
        padding: 15px 25px;
    }
    
    .hero-main {
        gap: 70px;
    }
    
    .hero-brand {
        font-size: 130px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .master-form {
        max-width: 450px;
    }
    
    .brands-table {
        padding: 50px 40px;
    }
    
    .brand-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .geography-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-stats {
        gap: 30px;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .geography-header h2 {
        font-size: 2.2rem;
    }
    
    .geography-header p {
        font-size: 1rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .geography-submit-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    /* Адаптивные стили для блока услуг */
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-brand {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 22px;
    }
    
    .service-icon img {
        width: 120px;
        height: 120px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    /* Адаптивные стили для блока процесса */
    .documentation-header h2 {
        font-size: 2.5rem;
    }
    
    .documentation-brand {
        font-size: 2.2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-card {
        padding: 30px 20px;
    }
    
    .process-number {
        font-size: 1.2rem;
        padding: 10px 18px;
        top: -18px;
    }
    
    .process-icon img {
        width: 80px;
        height: 80px;
    }
    
    .process-content h3 {
        font-size: 1.2rem;
    }
    
    .process-content p {
        font-size: 0.95rem;
    }
    
    /* Адаптивные стили для блока команды */
    .team-header h2 {
        font-size: 2.5rem;
    }
    
    .team-brand {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team-card {
        padding: 25px 15px;
    }
    
    .member-photo img {
        width: 100px;
        height: 100px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-specialty {
        font-size: 0.85rem;
    }
    
    .experience-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .experience-years {
        font-size: 1rem;
    }
    
    .experience-text {
        font-size: 0.75rem;
    }
    
    /* Адаптивные стили для мобильных устройств */
    .documentation-header h2 {
        font-size: 2.2rem;
    }
    
    .documentation-brand {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 20px;
    }
    
    .process-number {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .process-icon img {
        width: 60px;
        height: 60px;
    }
    
    .process-content h3 {
        font-size: 1rem;
    }
    
    .process-content p {
        font-size: 0.8rem;
    }
    
    /* Адаптивные стили для блока команды на мобильных */
    .team-header h2 {
        font-size: 2.2rem;
    }
    
    .team-brand {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-card {
        padding: 20px;
    }
    
    .member-photo img {
        width: 80px;
        height: 80px;
    }
    
    .member-info h3 {
        font-size: 1rem;
    }
    
    .member-specialty {
        font-size: 0.8rem;
    }
    
    .experience-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .experience-years {
        font-size: 0.9rem;
    }
    
    .experience-text {
        font-size: 0.7rem;
    }
    
    /* Адаптивные стили для блока сокращения поломок */
    .maintenance-header h2 {
        font-size: 2.5rem;
    }
    
    .maintenance-brand {
        font-size: 2.2rem;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .maintenance-card {
        padding: 25px 20px;
    }
    
    .maintenance-number {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .maintenance-content h3 {
        font-size: 1.1rem;
    }
    
    .maintenance-content p {
        font-size: 0.85rem;
    }
    
    .maintenance-content li {
        font-size: 0.8rem;
    }
    
    /* Адаптивные стили для мобильных устройств */
    .maintenance-header h2 {
        font-size: 2.2rem;
    }
    
    .maintenance-brand {
        font-size: 2rem;
    }
    
    .maintenance-card {
        padding: 20px;
    }
    
    .maintenance-number {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .maintenance-content h3 {
        font-size: 1rem;
    }
    
    .maintenance-content p {
        font-size: 0.8rem;
    }
    
    .maintenance-content li {
        font-size: 0.75rem;
    }
    
    /* Адаптивные стили для блока бытовой техники */
    .appliance-header h2 {
        font-size: 2.5rem;
    }
    
    .appliance-brand {
        font-size: 2.2rem;
    }
    
    .appliance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .appliance-card {
        padding: 25px 20px;
    }
    
    .appliance-icon {
        font-size: 2.5rem;
    }
    
    .appliance-content h3 {
        font-size: 1.1rem;
    }
    
    .appliance-content p {
        font-size: 0.85rem;
    }
    
    .appliance-content li {
        font-size: 0.8rem;
    }
    
    .appliance-cta,
    .appliance-conclusion {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    /* Адаптивные стили для мобильных устройств */
    .appliance-header h2 {
        font-size: 2.2rem;
    }
    
    .appliance-brand {
        font-size: 2rem;
    }
    
    .appliance-card {
        padding: 20px;
    }
    
    .appliance-icon {
        font-size: 2rem;
    }
    
    .appliance-content h3 {
        font-size: 1rem;
    }
    
    .appliance-content p {
        font-size: 0.8rem;
    }
    
    .appliance-content li {
        font-size: 0.75rem;
    }
    
    .appliance-cta,
    .appliance-conclusion {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    /* Адаптивные стили для блока 15 лет опыта */
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-brand {
        font-size: 2.2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon img {
        width: 70px;
        height: 70px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content li {
        font-size: 0.8rem;
    }
    
    .about-text-block p {
        font-size: 1rem;
    }
    
    /* Адаптивные стили для мобильных устройств */
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-brand {
        font-size: 2rem;
    }
    
    .about-feature-card {
        padding: 20px;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content li {
        font-size: 0.75rem;
    }
    
    .about-text-block p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .geography-section {
        padding: 60px 15px;
    }
    
    .geography-header h2 {
        font-size: 1.8rem;
    }
    
    .geography-brand {
        font-size: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .geography-cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Адаптивные стили для блока услуг */
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-brand {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon img {
        width: 140px;
        height: 140px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

/* Стили для модального окна географии */
#geographyModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

#geographyModal .modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

#geographyModal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

#geographyModal .close:hover {
    color: #333;
}

#geographyModal .form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

#geographyModal .form-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

#geographyModal .request-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#geographyModal .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#geographyModal .address-input,
#geographyModal .phone-input,
#geographyModal .device-select,
#geographyModal .urgency-select,
#geographyModal .problem-description {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
}

#geographyModal .address-input:focus,
#geographyModal .phone-input:focus,
#geographyModal .device-select:focus,
#geographyModal .urgency-select:focus,
#geographyModal .problem-description:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
    transform: translateY(-1px);
}

#geographyModal .call-master-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff8fab 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
    margin-top: 10px;
}

#geographyModal .call-master-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

#geographyModal .form-footer {
    margin-top: 20px;
    text-align: center;
}

#geographyModal .consultation-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

#geographyModal .phone-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

#geographyModal .privacy-text {
    font-size: 0.8rem;
    color: #999;
}

#geographyModal .privacy-link {
    color: #ff69b4;
    text-decoration: none;
}

#geographyModal .privacy-link:hover {
    text-decoration: underline;
}

 

 

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f2ea 0%, #ffffff 100%);
    z-index: -2;
}

.hero-gear-bg {
    position: fixed;
    top: 200px;
    right: -400px;
    width: 1500px;
    height: 1500px;
    background-image: url('png/image-Photoroom (40).png');
    background-size: 1500px 1500px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    animation: gearSpinForever 4s linear infinite;
    transform: rotate(0deg);
    transform-origin: center center;
}

.hero-gear-bg-left {
    position: fixed;
    top: -350px;
    left: -250px;
    width: 600px;
    height: 600px;
    background-image: url('png/image-Photoroom (40).png');
    background-size: 600px 600px;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
    animation: gearSpinForever 3s linear infinite;
    transform: rotate(0deg);
    transform-origin: center center;
}



@keyframes gearSpinForever {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 242, 234, 0.3);
    z-index: -1;
}

@media (max-width: 1200px) {
    .hero-gear-bg {
        background-size: 500px 500px;
    }
}

@media (max-width: 768px) {
    .hero-gear-bg {
        position: absolute;
        background-size: 400px 400px;
        background-position: right top;
        top: 350px;
        right: 300px;
    }
    
    .hero-gear-bg-left {
        position: absolute;
        background-size: 400px 400px;
        background-position: left top;
        top: -200px;
        left: -150px;
    }
    

}

@media (max-width: 480px) {
    .hero-gear-bg {
        position: absolute;
        background-size: 300px 300px;
        background-position: right top;
        top: 300px;
        right: 200px;
        opacity: 1;
    }
    
    .hero-gear-bg-left {
        position: absolute;
        background-size: 300px 300px;
        background-position: left top;
        top: -150px;
        left: -100px;
        opacity: 1;
    }
    

}

/* Оптимизация изображений галереи */
.horizontal-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.masonry-spacer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* PNG изображения для всех версий */
.masonry-spacer:first-of-type {
    background-image: url('png/pexels-stasknop-1198264.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.masonry-spacer.spacer-column-3 {
    background-image: url('png/pexels-anntarazevich-5963131.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.masonry-spacer.spacer-column-4 {
    background-image: url('png/pexels-anete-lusina-4792286.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Предзагрузка критических изображений */
  .image-container img {
      transition: opacity 0.3s ease;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

.image-container img[loading] {
    opacity: 0;
}

.image-container img.loaded {
    opacity: 1;
}

/* Fallback для изображений которые не загрузились */
.image-container img:not([src]),
.image-container img[src=""],
.image-container img[src*="undefined"] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.image-container img:not([src])::after,
.image-container img[src=""]::after,
.image-container img[src*="undefined"]::after {
    content: "Изображение не загружено";
}

/* Стили для блока сокращения поломок */
.appliance-maintenance-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.appliance-maintenance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.maintenance-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.maintenance-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.maintenance-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.maintenance-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.maintenance-main {
    position: relative;
    z-index: 2;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.maintenance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.maintenance-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.maintenance-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    margin-top: 10px;
}

.maintenance-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.maintenance-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maintenance-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.maintenance-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

/* Стили для блока бытовой техники */
.appliance-expertise-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.appliance-expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.appliance-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.appliance-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.appliance-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.appliance-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.appliance-main {
    position: relative;
    z-index: 2;
}

.appliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.appliance-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.appliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.appliance-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.appliance-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.appliance-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.appliance-content ul,
.appliance-content ol {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.appliance-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.appliance-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

.appliance-content ol li {
    counter-increment: item;
}

.appliance-content ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

.appliance-cta,
.appliance-conclusion {
    font-size: 1rem;
    font-weight: 600;
    color: #ff69b4;
    margin-top: 15px;
    line-height: 1.4;
}



/* Стили для блока 15 лет опыта */
.about-us-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-main {
    position: relative;
    z-index: 2;
}

.about-text-block {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-block strong {
    color: #1a1a1a;
    font-weight: 700;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-feature-card:hover .feature-icon img {
    transform: scale(1.05);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.feature-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

.about-contacts {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-contacts strong {
    color: #1a1a1a;
    font-weight: 700;
}

.about-contacts a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-contacts a:hover {
    color: #ff1493;
}


@media (max-width: 768px) {

}

@media (max-width: 480px) {

}

/* Стили для блока посудомоечной техники */
.dishwasher-expertise-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.dishwasher-expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dishwasher-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.dishwasher-brand {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff69b4;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.dishwasher-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.dishwasher-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.dishwasher-main {
    position: relative;
    z-index: 2;
}

.dishwasher-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dishwasher-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dishwasher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dishwasher-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.dishwasher-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dishwasher-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.dishwasher-content ul,
.dishwasher-content ol {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.dishwasher-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.dishwasher-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

.dishwasher-content ol li {
    counter-increment: item;
}

.dishwasher-content ol li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-weight: bold;
    font-size: 1rem;
}

.dishwasher-cta,
.dishwasher-conclusion {
    font-size: 1rem;
    font-weight: 600;
    color: #ff69b4;
    margin-top: 15px;
    line-height: 1.4;
}

/* Медиа-запросы для посудомоечных машин */
@media (max-width: 768px) {
    .dishwasher-header h2 {
        font-size: 2.5rem;
    }
    
    .dishwasher-brand {
        font-size: 2.2rem;
    }
    
    .dishwasher-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dishwasher-card {
        padding: 25px 20px;
    }
    
    .dishwasher-icon {
        font-size: 2.5rem;
    }
    
    .dishwasher-content h3 {
        font-size: 1.1rem;
    }
    
    .dishwasher-content p {
        font-size: 0.9rem;
    }
    
    .dishwasher-content li {
        font-size: 0.8rem;
    }
    
    .dishwasher-cta,
    .dishwasher-conclusion {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dishwasher-header h2 {
        font-size: 2rem;
    }
    
    .dishwasher-brand {
        font-size: 1.8rem;
    }
    
    .dishwasher-card {
        padding: 20px 15px;
    }
    
    .dishwasher-icon {
        font-size: 2rem;
    }
    
    .dishwasher-content h3 {
        font-size: 1rem;
    }
    
    .dishwasher-content p {
        font-size: 0.85rem;
    }
    
    .dishwasher-content li {
        font-size: 0.75rem;
    }
    
    .dishwasher-cta,
    .dishwasher-conclusion {
        font-size: 0.85rem;
    }
}

/* ФИНАЛЬНАЯ МОБИЛЬНАЯ ВЕРСТКА - ПРИОРИТЕТНАЯ */
@media (max-width: 768px) {
    /* Общий фон как в Figma */
    body {
        background: transparent;
    }

    /* ХЕДЕР НА МОБИЛКЕ - СКРЫТ */
    .header {
        display: none;
    }

    .header .logo {
        display: none;
    }
    
    .header .brand-dot {
        color: var(--color-fuschia-100);
    }

    .header nav {
        display: block;
        width: 100%;
        order: 2;
    }
    
    .header nav ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 2px;
        margin: 0;
        padding: 0 5px 0 5px;
        list-style: none;
        overflow-x: auto;
        width: 100%;
    }
    
    .header nav ul li {
        margin: 0;
        flex-shrink: 0;
    }
    
    .header nav ul li a {
        color: #1a1a1a;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        padding: 6px 8px;
        border-radius: 0;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        white-space: nowrap;
        text-align: center;
        min-width: 40px;
        line-height: 1;
        flex: none;
    }
    
    .header nav ul li a:hover {
        background: var(--color-fuschia-100);
        color: #ffffff;
        transform: translateY(-1px);
    }

    .header .contact-info {
        display: none;
    }
    
    /* Скрываем "Примеры работ" на мобилке */
    .header nav ul li a[href="#works"] {
        display: none;
    }

    /* Hero секция */
    .hero-section {
        background: transparent;
        padding: 20px 15px 60px 15px;
        margin-top: 0px;
    }

    /* ШЕСТЕРЕНКИ НА МОБИЛКЕ - СКРЫТЫ */
    .hero-gear-bg {
        display: none;
    }

    .hero-gear-bg-left {
        display: none;
    }

    /* ПРАВИЛЬНЫЙ ПОРЯДОК - как на ПК */
    .hero-main {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
        gap: 30px;
    }

    /* 1. СНАЧАЛА ТЕКСТ */
    .hero-text {
        order: 1 !important;
        text-align: center !important;
    }

    /* 2. ПОТОМ ФОРМА */
    .hero-form-container {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .hero-brand {
        font-size: 3.6rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        margin-bottom: 25px !important;
        font-weight: 900 !important;
        letter-spacing: -1px !important;
        text-align: left !important;
        margin-left: -15px !important;
        margin-top: 40px !important;
    }



    .hero-title {
        font-family: var(--font-heading) !important;
        font-size: 1.2rem !important;
        font-weight: var(--font-bold) !important;
        color: var(--color-black) !important;
        line-height: 1.3 !important;
        max-width: 320px !important;
        margin: 0 0 20px -15px !important;
        text-align: left !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
        letter-spacing: -0.5px !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 30px !important;
        color: #000 !important;
        font-weight: 400 !important;
        text-align: center !important;
        max-width: 300px !important;
        margin: 0 auto 25px auto !important;
        word-wrap: break-word !important;
        white-space: normal !important;
    }

    /* Все секции светлый фон */
    .about-us-section,
    .brands-section,
    .geography-section,
    .documentation-section,
    .quality-section,
    .appliance-repairs-section,
    .repair-process-section {
        background: transparent !important;
        margin-bottom: 20px !important;
    }

    /* СЕКЦИЯ О КОМПАНИИ - МОБИЛЬНАЯ ВЕРСИЯ */
    .about-us-section {
        padding: 40px 15px !important;
        margin-top: 20px !important;
    }

    .about-header {
        margin-bottom: 30px !important;
        text-align: center !important;
    }

    .about-brand {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .about-header h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .about-header p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #666 !important;
        margin-bottom: 0 !important;
    }

    .about-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .about-text-block {
        text-align: left !important;
    }

    .about-text-block p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        color: #333 !important;
    }

    .about-text-block strong {
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .about-features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .about-feature-card {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .about-feature-card .feature-icon {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        margin-bottom: 12px !important;
        flex-shrink: 0 !important;
    }

    .about-feature-card .feature-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .about-feature-card h3 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .about-feature-card ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .about-feature-card li {
        font-size: 0.8rem !important;
        color: #666 !important;
        margin-bottom: 4px !important;
        line-height: 1.4 !important;
        position: relative !important;
        padding-left: 15px !important;
    }

    .about-feature-card li:before {
        content: "✓" !important;
        position: absolute !important;
        left: 0 !important;
        color: #620518 !important;
        font-weight: bold !important;
        font-size: 0.9rem !important;
    }

    .about-contacts {
        display: none !important;
    }

    /* СЕКЦИЯ БРЕНДОВ - МОБИЛЬНАЯ ВЕРСИЯ */
    .brands-section {
        padding: 40px 0 !important;
        min-height: auto !important;
    }

    .brands-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .brands-section .section-header {
        text-align: center !important;
        margin-bottom: 20px !important;
        padding: 0 15px !important;
    }

    .brands-section .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .brands-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .brands-section p {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
        color: #666 !important;
        text-align: center !important;
    }

    .brands-table {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 5px !important;
        padding: 0 5px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }

    .brand-row {
        display: contents !important;
        margin-bottom: 0 !important;
    }

    .brand-cell {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 6px 8px 6px !important;
        background: #f9f9f9 !important;
        border-radius: 8px !important;
        border: 1px solid #e0e0e0 !important;
        transition: all 0.3s ease !important;
        min-height: 80px !important;
    }

    .brand-cell:hover {
        background: #ffffff !important;
        border-color: #620518 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(98, 5, 24, 0.15) !important;
    }

    .brand-logo {
        max-width: 45px !important;
        max-height: 28px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        margin-bottom: auto !important;
        flex-grow: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .brand-cell .brand-name {
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        color: #ff69b4 !important;
        text-align: center !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }

    /* СЕКЦИЯ ЭКСПЕРТИЗЫ ТЕХНИКИ - МОБИЛЬНАЯ ВЕРСИЯ */
    .appliance-expertise-section {
        padding: 40px 15px !important;
    }

    .appliance-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .appliance-brand {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .appliance-header h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .appliance-header p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #666 !important;
        margin-bottom: 0 !important;
    }

    .appliance-main {
        display: flex !important;
        flex-direction: column !important;
    }

    .appliance-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        padding: 0 15px !important;
    }

    .appliance-card {
        background: #ffffff !important;
        border-radius: 6px !important;
        padding: 8px 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid #e8e8e8 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .appliance-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    .appliance-content h3 {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .appliance-content ul,
    .appliance-content ol {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .appliance-content li {
        font-size: 0.8rem !important;
        color: #333 !important;
        margin-bottom: 0 !important;
        line-height: 1.0 !important;
        position: relative !important;
        padding-left: 0 !important;
    }

    .appliance-content ul li:before {
        content: "•" !important;
        position: relative !important;
        color: #620518 !important;
        font-weight: bold !important;
        font-size: 0.8rem !important;
        margin-right: 5px !important;
    }

    .appliance-content ol li:before {
        content: "•" !important;
        position: relative !important;
        color: #620518 !important;
        font-weight: bold !important;
        font-size: 0.8rem !important;
        margin-right: 5px !important;
    }

    .appliance-content ol {
        counter-reset: list-counter !important;
    }

    .appliance-content strong {
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .appliance-cta,
    .appliance-conclusion {
        font-size: 0.65rem !important;
        color: #620518 !important;
        font-weight: 600 !important;
        margin: 3px 0 0 0 !important;
        text-align: left !important;
        line-height: 1.2 !important;
    }

    /* СЕКЦИЯ ОБСЛУЖИВАНИЯ ТЕХНИКИ - МОБИЛЬНАЯ ВЕРСИЯ */
    .appliance-maintenance-section {
        padding: 40px 15px !important;
    }

    .appliance-maintenance-section .section-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .appliance-maintenance-section .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .appliance-maintenance-section h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
    }

    .appliance-maintenance-section p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #666 !important;
        margin-bottom: 0 !important;
    }

    .maintenance-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .maintenance-card {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 20px 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
        text-align: center !important;
    }

    .maintenance-card .maintenance-icon {
        font-size: 2.5rem !important;
        margin-bottom: 15px !important;
    }

    .maintenance-card h3 {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .maintenance-card p {
        font-size: 0.85rem !important;
        color: #666 !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .maintenance-card ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .maintenance-card li {
        font-size: 0.8rem !important;
        color: #333 !important;
        margin-bottom: 6px !important;
        line-height: 1.4 !important;
        position: relative !important;
        padding-left: 18px !important;
    }

    .maintenance-card li:before {
        content: "✓" !important;
        position: absolute !important;
        left: 0 !important;
        color: #620518 !important;
        font-weight: bold !important;
        font-size: 0.9rem !important;
    }

    /* СЕКЦИЯ ПРИМЕРЫ РАБОТ - МОБИЛЬНАЯ ВЕРСИЯ */
    .appliance-repairs-section {
        padding: 40px 0 !important;
    }

    .appliance-repairs-title {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        padding: 0 15px !important;
    }

    .repairs-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 5px !important;
    }

    .repair-card {
        background: #ffffff !important;
        border-radius: 8px !important;
        padding: 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
        overflow: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 0 !important;
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }

    .repair-card .repair-image {
        width: 100% !important;
        height: 120px !important;
        overflow: hidden !important;
    }

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

    .repair-card .repair-content {
        padding: 12px 15px !important;
    }

    .repair-card h3 {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .repair-card .repair-description {
        font-size: 0.75rem !important;
        color: #666 !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    .repair-card .repair-details {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 8px !important;
    }

    .repair-detail {
        background: #f0f0f0 !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        font-size: 0.7rem !important;
        color: #333 !important;
        font-weight: 500 !important;
    }

    .repair-card .repair-price {
        font-size: 0.9rem !important;
        color: #620518 !important;
        font-weight: 700 !important;
        text-align: right !important;
    }

    /* СЕКЦИЯ ПРОЦЕСС РЕМОНТА - МОБИЛЬНАЯ ВЕРСИЯ */
    .repair-process-section {
        padding: 40px 15px !important;
    }

    .repair-process-title {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .process-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .process-card {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 10px 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
        text-align: center !important;
        position: relative !important;
    }

    .process-card .process-number {
        background: #620518 !important;
        color: #ffffff !important;
        width: auto !important;
        min-width: 35px !important;
        height: auto !important;
        border-radius: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        margin: 0 auto 8px auto !important;
        padding: 8px 12px !important;
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    .process-card .process-icon {
        width: 40px !important;
        height: 40px !important;
        margin: 0 auto 8px auto !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f5f5f5 !important;
    }

    .process-card .process-icon img {
        width: 25px !important;
        height: 25px !important;
        object-fit: contain !important;
    }

    .process-card h3 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }

    .process-card .process-content p {
        font-size: 0.8rem !important;
        color: #666 !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
    }

    .process-card:not(:last-child):after {
        content: "↓" !important;
        position: absolute !important;
        bottom: -8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        color: #620518 !important;
        font-size: 1rem !important;
        font-weight: bold !important;
    }

    /* СЕКЦИЯ ГЕОГРАФИЯ - МОБИЛЬНАЯ ВЕРСИЯ */
    .geography-section {
        padding: 40px 15px !important;
    }

    .geography-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .geography-header .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .geography-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .geography-header p {
        font-size: 0.9rem !important;
        color: #666 !important;
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
    }

    .geography-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .geography-map {
        order: 2 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
    }

    .geography-map img {
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
    }

    .geography-districts {
        order: 1 !important;
    }

    .districts-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .district-group {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 15px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #e8e8e8 !important;
    }

    .district-group h3 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .district-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .district-list li {
        font-size: 0.8rem !important;
        color: #333 !important;
        padding: 6px 8px !important;
        background: #f9f9f9 !important;
        border-radius: 6px !important;
        text-align: center !important;
        border: 1px solid #e0e0e0 !important;
        line-height: 1.2 !important;
    }

    .district-list li:hover {
        background: #620518 !important;
        color: #ffffff !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 6px rgba(98, 5, 24, 0.3) !important;
        transition: all 0.3s ease !important;
    }

    /* СЕКЦИЯ ДОКУМЕНТАЦИЯ - МОБИЛЬНАЯ ВЕРСИЯ */
    .documentation-section {
        padding: 40px 15px !important;
    }

    .documentation-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .documentation-header .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .documentation-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .documentation-header p {
        font-size: 0.9rem !important;
        color: #666 !important;
        margin-bottom: 0 !important;
        line-height: 1.5 !important;
    }

    /* СЕКЦИЯ УСЛУГИ - МОБИЛЬНАЯ ВЕРСИЯ */
    .services-section {
        padding: 40px 15px !important;
    }

    .services-section .section-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .services-section .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .services-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    /* СЕКЦИЯ КАЧЕСТВО - МОБИЛЬНАЯ ВЕРСИЯ */
    .quality-section {
        padding: 40px 15px !important;
    }

    .quality-section .section-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .quality-section .brand-name {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
        color: #1a1a1a !important;
        font-weight: 900 !important;
    }

    .quality-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        color: #1a1a1a !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    /* СЕКЦИЯ FAQ - МОБИЛЬНАЯ ВЕРСИЯ */
    .faq-section {
        padding: 40px 15px !important;
    }

    .faq-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .faq-header {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .faq-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .faq-subtitle {
        font-size: 0.9rem !important;
        color: #999 !important;
        margin: 0 !important;
    }

    .faq-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .faq-category {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        padding: 20px 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .faq-category h3 {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    .faq-list {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .faq-item {
        margin-bottom: 12px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        padding: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .faq-question {
        font-size: 0.9rem !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .faq-answer {
        font-size: 0.8rem !important;
        color: #cccccc !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }

    /* СЕКЦИЯ ФИНАЛЬНЫЙ ПРИЗЫВ - МОБИЛЬНАЯ ВЕРСИЯ */
    .final-cta-section {
        padding: 40px 15px !important;
    }

    .final-cta-content {
        text-align: center !important;
        max-width: 100% !important;
    }

    .final-cta-content h2 {
        font-size: 1.4rem !important;
        color: #ffffff !important;
        margin-bottom: 15px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .final-cta-content p {
        font-size: 0.9rem !important;
        color: #cccccc !important;
        margin-bottom: 20px !important;
        line-height: 1.5 !important;
    }

    .final-cta-features {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
    }

    .final-cta-feature {
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 12px !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .final-cta-feature span {
        font-size: 0.9rem !important;
        color: #ffffff !important;
        font-weight: 600 !important;
    }

    .final-cta-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .final-cta-phone {
        font-size: 1.2rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        padding: 12px 20px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        transition: all 0.3s ease !important;
    }

    .final-cta-phone:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-2px) !important;
    }

    .final-cta-btn {
        background: #620518 !important;
        color: #ffffff !important;
        border: none !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 12px rgba(98, 5, 24, 0.3) !important;
    }

    .final-cta-btn:hover {
        background: #7a0620 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(98, 5, 24, 0.4) !important;
    }

    /* ФУТЕР - МОБИЛЬНАЯ ВЕРСИЯ */
    .site-footer {
        padding: 30px 15px 20px 15px !important;
    }

    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        max-width: 100% !important;
    }

    .footer-section h3 {
        font-size: 1.1rem !important;
        color: #ffffff !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .footer-section .services-list,
    .footer-section .info-list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-section .service-link,
    .footer-section .info-link {
        font-size: 0.85rem !important;
        color: #cccccc !important;
        text-decoration: none !important;
        padding: 8px 12px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 6px !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        line-height: 1.3 !important;
    }

    .footer-section .service-link:hover,
    .footer-section .info-link:hover {
        color: #ffffff !important;
        background: rgba(98, 5, 24, 0.3) !important;
        border-color: #620518 !important;
        transform: translateY(-1px) !important;
    }

    .footer-bottom {
        text-align: center !important;
        margin-top: 25px !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .footer-bottom p {
        font-size: 0.75rem !important;
        color: #999999 !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }

    /* ФОРМА - СКОПИРОВАНА С ПК НО МЕНЬШЕ ПО ВЫСОТЕ */
    .master-form {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 3px 8px 4px 8px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
        border: 2px solid #1a1a1a !important;
        max-width: 300px !important;
        width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    .form-header h3 {
        font-size: 0.95rem !important;
        color: #1a1a1a !important;
        margin-bottom: 1px !important;
        text-align: center !important;
        font-weight: 600 !important;
        letter-spacing: -0.5px !important;
    }

    .form-subtitle {
        color: #666666 !important;
        font-size: 0.8rem !important;
        margin: 0 0 4px 0 !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .form-group {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 4px !important;
    }

    .phone-input,
    .device-select,
    .problem-description {
        padding: 3px 6px !important;
        border: 2px solid #1a1a1a !important;
        border-radius: 6px !important;
        font-size: 0.8rem !important;
        background: #ffffff !important;
        color: #1a1a1a !important;
        transition: all 0.2s ease !important;
        font-family: inherit !important;
    }

    .phone-input:focus,
    .device-select:focus,
    .problem-description:focus {
        outline: none !important;
        border-color: #ffd700 !important;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
    }

    .call-master-btn {
        background: #ecc25b !important;
        color: var(--color-white) !important;
        border: 2px solid #ecc25b !important;
        padding: 5px 10px !important;
        border-radius: 6px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.2s ease !important;
        margin-bottom: 4px !important;
    }

    .consultation-text {
        font-size: 0.7rem !important;
        color: var(--color-text-muted) !important;
        margin-bottom: 1px !important;
        text-align: center !important;
        font-weight: 500 !important;
    }

    .phone-number {
        font-size: 1.3rem !important;
        font-weight: 700 !important;
        color: var(--color-black) !important;
        margin-bottom: 3px !important;
        text-align: center !important;
    }

    .privacy-text {
        font-size: 0.6rem !important;
        color: #999999 !important;
        text-align: center !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    /* Белые карточки */
    .repair-card,
    .process-card,
    .image-container {
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid #e8e8e8 !important;
        border-radius: 12px !important;
    }
    

}


