* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-bottom: 60px;
}


.section-title {
    text-align: center;
}

.section-description {
    text-align: center;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #007BFF;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-number {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.phone-subtext {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.btn-order {
    padding: 12px 24px;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #A0D0FF 0%, #0056B3 100%);
}

.btn-order svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero {
    padding: 60px 40px;
    background-color: #fff;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-orange {
    background-color: #FF6B35;
    color: #fff;
}

.badge-green {
    background-color: #90EE90;
    color: #1a1a1a;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
}

.hero-title-blue {
    color: #007BFF;
    text-decoration: underline;
    text-decoration-color: #007BFF;
    text-underline-offset: 8px;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.text-blue {
    color: #007BFF;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-person {
    background-color: #E3F2FD;
}

.stat-icon-shield {
    background-color: #E8F5E9;
}

.stat-icon-star {
    background-color: #FFF3E0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    align-items: center;
}

.hero-buttons .btn-primary {
    padding: 16px 32px;
    height: auto;
    min-height: 40px;
}

.hero-buttons .btn-secondary {
    padding: 16px 32px;
    height: auto;
    min-height: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    border: none;
    transition: all 0.3s;
    font-size: 14px;
    padding: 12px 24px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    border-radius: 6px;
    min-height: 40px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A0D0FF 0%, #0056B3 100%);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.4);
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

.btn-secondary {
    background-color: #fff;
    color: #1a1a1a;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    min-height: 40px;
    font-weight: 500;
}

.btn-secondary:hover {
    border-color: #dc2626;
    color: #dc2626;
    background-color: #fff;
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid #d1d5db;
    outline-offset: 2px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.btn-full:hover {
    background: linear-gradient(135deg, #A0D0FF 0%, #0056B3 100%);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.4);
}

.btn svg {
    pointer-events: none;
    flex-shrink: 0;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-image-card {
    width: 568px;
    height: 320px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.overlay-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.overlay-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.overlay-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
}

.overlay-badge {
    padding: 8px 16px;
    background: linear-gradient(135deg, #90EE90 0%, #7ED87E 100%);
    color: #1a1a1a;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(144, 238, 144, 0.3);
}

.consultation-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.consultation-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.consultation-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #007BFF;
}

.form-disclaimer {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 8px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 48px;
}

.services-section {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-badge-urgent {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-blue {
    background-color: #E3F2FD;
    color: #007BFF;
}

.service-icon-orange {
    background-color: #FFF3E0;
    color: #FF6B35;
}

.service-icon-green {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.service-icon-purple {
    background-color: #F3E5F5;
    color: #9C27B0;
}

.service-icon-yellow {
    background-color: #FFF9C4;
    color: #FBC02D;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.service-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 20px 0;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.info-item svg {
    color: #999;
}

.info-item strong {
    color: #1a1a1a;
    margin-left: auto;
}

.service-warranty {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
}

.service-urgent-info {
    margin-top: 16px;
    color: #007BFF;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.equipment-section {
    background-color: #f8f9fa;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equipment-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.equipment-image {
    width: 100%;
    height: 200px;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.equipment-image-watch {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.equipment-image-camera {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.equipment-image-phone {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.equipment-image-scanner {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.equipment-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.equipment-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.equipment-content {
    padding: 24px;
}

.equipment-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.equipment-services {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.equipment-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.equipment-services svg {
    color: #4CAF50;
    flex-shrink: 0;
}

.equipment-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007BFF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.equipment-link:hover {
    gap: 12px;
}

.masters-section {
    background-color: #fff;
}

.masters-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 32px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.masters-banner svg {
    color: #4CAF50;
}

.masters-carousel {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex: 1;
}

.master-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.master-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.master-rating {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: #FFD700;
    color: #1a1a1a;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.master-photo {
    width: 462px;
    max-width: 100%;
    height: 259px;
    min-height: 259px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    object-fit: cover;
    display: block;
}

.master-photo-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.master-photo-2 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.master-photo-3 {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.master-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.master-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.master-experience {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f8f9fa;
    color: #666;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.master-specialization {
    color: #007BFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.master-stats {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.master-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.master-stat-label {
    font-size: 14px;
    color: #666;
}

.stats-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-card-blue {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.stat-card-blue .stat-card-number {
    color: #007BFF;
}

.stat-card-green {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.stat-card-yellow {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

.stat-card-pink {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
}

.stat-card-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-card-green .stat-card-number {
    color: #4CAF50;
}

.stat-card-yellow .stat-card-number {
    color: #FF9800;
}

.stat-card-pink .stat-card-number {
    color: #E91E63;
}

.stat-card-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.addresses-section {
    background-color: #fff;
}

.addresses-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.address-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.address-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.address-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
}

.btn-route:hover {
    background: linear-gradient(135deg, #A0D0FF 0%, #0056B3 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-route svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.address-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.address-title svg {
    color: #007BFF;
}

.address-subtitle {
    font-size: 14px;
    color: #666;
}

.address-actions {
    display: flex;
    gap: 12px;
}

.address-actions svg {
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.address-actions svg:hover {
    color: #007BFF;
}

.address-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars svg {
    color: #FFD700;
    width: 20px;
    height: 20px;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

.map-container {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.yandex-reviews-section {
    background-color: #f8f9fa;
}

.yandex-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.yandex-icon {
    width: 64px;
    height: 64px;
    background-color: #007BFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.yandex-content {
    flex: 1;
}

.yandex-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.yandex-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.reviews-section {
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.review-user {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C0E0FF 0%, #007BFF 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.review-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #999;
}

.review-location svg {
    width: 14px;
    height: 14px;
}

.review-verified {
    padding: 4px 8px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 64px;
    color: #f0f0f0;
    font-weight: 300;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: #FFD700;
}

.review-service {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E3F2FD;
    color: #007BFF;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.review-date svg {
    width: 14px;
    height: 14px;
}

.faq-section {
    background-color: #f8f9fa;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0 !important;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-left svg {
    color: #007BFF;
}

.faq-category {
    padding: 6px 12px;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.faq-category-general {
    background-color: #007BFF;
}

.faq-category-repair {
    background-color: #007BFF;
}

.faq-category-warranty {
    background-color: #9C27B0;
}

.faq-question {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 0 !important;
    background-color: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-answer {
    display: none;
    width: 100%;
    padding-top: 20px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-left: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item * {
    border-radius: 0 !important;
}

.faq-item button,
.faq-item div,
.faq-item span,
.faq-item svg {
    border-radius: 0 !important;
}

.faq-item .faq-icon,
.faq-item [data-slot="badge"],
.faq-item .bg-red-100,
.faq-item .bg-blue-100 {
    border-radius: 0 !important;
}

#faq-container .faq-item {
    border-radius: 0 !important;
}

#faq-container .faq-item button {
    border-radius: 0 !important;
}

#faq-container .faq-item > div {
    border-radius: 0 !important;
}

#faq-container [data-slot="badge"] {
    border-radius: 0 !important;
}

.footer {
    background-color: #1A202C;
    padding: 32px 0 0 0;
    color: #fff;
    border-top: 1px solid #374151;
    margin-bottom: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-left {
        text-align: left;
    }
}

.footer-copyright {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.5;
    margin: 0;
}

.footer-details {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 4px 0 0 0;
}

.footer-address {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 4px 0 0 0;
}

.footer-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .footer-right {
        justify-content: flex-end;
    }
}

.footer-social-text {
    font-size: 14px;
    color: #9CA3AF;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.marquee-container {
    width: 100%;
    background-color: #1A202C;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    height: 60px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.stat-icon-person {
    background-color: #E3F2FD;
    color: #007BFF;
}

.stat-icon-shield {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.stat-icon-star {
    background-color: #FFF3E0;
    color: #FF9800;
}

.marquee-wrapper {
    display: flex;
    width: 200%;
    position: relative;
    animation: marquee 60s linear infinite;
    will-change: transform;
    height: 100%;
    box-sizing: border-box;
    align-items: stretch;
    gap: 0;
    overflow: visible;
}

.marquee-container:hover .marquee-wrapper {
    animation-play-state: paused;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    white-space: nowrap;
    overflow: visible;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    color: #60A5FA;
    font-size: 14px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    height: 100%;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    padding: 0 16px;
    margin: 0;
    line-height: 1.5;
    position: relative;
    min-width: max-content !important;
    width: max-content !important;
    box-sizing: border-box;
    isolation: isolate;
}

.marquee-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0 !important;
    color: #60A5FA;
    stroke: #60A5FA;
    fill: none;
    margin-right: 12px;
    display: block;
    vertical-align: middle;
}

.marquee-item:not(:last-child)::after {
    display: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .masters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addresses-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .header-right {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .phone-info {
        align-items: center;
        text-align: center;
    }
    
    .btn-order {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .masters-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .masters-carousel {
        flex-direction: column;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .marquee-container {
        height: 50px;
        overflow: hidden;
    }
    
    .marquee-wrapper {
        animation: marquee 40s linear infinite;
        overflow: hidden;
    }
    
    .marquee-content {
        padding: 0 16px;
        min-width: 50%;
        max-width: 50%;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: visible;
        display: inline-flex;
    }
    
    .marquee-item {
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        flex-basis: auto !important;
        margin: 0;
        height: 100%;
        line-height: 1.5;
        padding: 0 10px;
        min-width: max-content !important;
        width: max-content !important;
        box-sizing: border-box;
    }
    
    .marquee-item svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0 !important;
        margin-right: 10px;
        display: block;
        vertical-align: middle;
    }
    
    .marquee-item:not(:last-child)::after {
        margin-left: 12px;
        margin-right: 12px;
        flex-shrink: 0 !important;
        min-width: 24px;
        width: 24px;
        white-space: pre;
        text-align: center;
    }
}
