* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 3px solid #00838f;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 900;
}

.logo-dark { color: #222; }
.logo-accent { color: #00838f; }

.header-geo {
    text-align: right;
    font-weight: 700;
    color: #222;
}

.small-text {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* Главный экран */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.6)), url('img/hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 900;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Кнопки */
.btn {
    display: inline-block;
    background: #00838f;
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 131, 143, 0.3);
}

.btn:hover {
    background: #006064;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 131, 143, 0.4);
}

.btn-outline {
    background: transparent;
    color: #00838f;
    border: 2px solid #00838f;
    box-shadow: none;
}

.btn-outline:hover {
    background: #00838f;
    color: #fff;
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #222;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00838f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title-left {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #00838f;
    margin-top: 10px;
    border-radius: 2px;
}

.accent {
    color: #00838f;
    font-weight: 700;
}

/* Преимущества */
.advantages {
    background-color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.adv-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.adv-card:hover {
    border-color: #00838f;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.adv-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.adv-card h3 {
    color: #222;
    margin-bottom: 10px;
    font-size: 20px;
}

/* Услуги */
.services {
    background-color: #f0f2f5;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card h3 {
    color: #222;
    margin-bottom: 10px;
    font-size: 20px;
}

.price {
    font-size: 24px;
    color: #00838f;
    font-weight: 900;
    margin-bottom: 10px;
}

/* НОВЫЙ БЛОК: Чеклист (Бирюзовый баннер) */
.trust-banner {
    background: linear-gradient(135deg, #00838f, #006064);
    color: #fff;
    padding: 60px 0;
}

.trust-banner h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 800;
}

.trust-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 17px;
    line-height: 1.5;
}

.trust-list .check {
    font-size: 24px;
    line-height: 1.2;
}

.trust-list strong {
    color: #fff;
}

/* Блок О сервисе (Новый с инфографикой) */
.about-section {
    background-color: #ffffff;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #00838f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 131, 143, 0.4);
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

/* Инфографика (Цифры) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    border-bottom: 4px solid #00838f;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background: #fff;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #00838f;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Доп услуги и марки */
.extra-services {
    background-color: #f0f2f5;
}

.extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.extra-list {
    list-style: none;
}

.extra-list li {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #00838f;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.extra-list li:hover {
    transform: translateX(10px);
}

.brands-text {
    color: #555;
    font-size: 17px;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Как мы работаем */
.how-we-work {
    background-color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    position: relative;
    padding: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: #00838f;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 5px rgba(0, 131, 143, 0.2);
}

.step h3 {
    color: #222;
    margin-bottom: 10px;
}

/* FAQ */
.faq {
    background-color: #f0f2f5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-color: #00838f;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #222;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.faq-icon {
    font-size: 24px;
    color: #00838f;
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

/* Форма */
.contact {
    background: linear-gradient(rgba(240, 242, 245, 0.5), rgba(240, 242, 245, 0.6)), url('img/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

input, textarea {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00838f;
    background-color: #fff;
}

form button {
    font-size: 16px;
    margin-top: 10px;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #00838f;
}

/* Подвал */
footer {
    background-color: #222;
    text-align: center;
    padding: 30px 0;
    color: #888;
    font-size: 14px;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero-content { padding: 20px; }
    .section-title { font-size: 26px; }
    header .container { flex-direction: column; gap: 10px; }
    .header-geo { text-align: center; }
    .extra-grid { grid-template-columns: 1fr; }
    .about-grid-new { grid-template-columns: 1fr; }
    .about-image img { max-height: 300px; margin-bottom: 20px; }
    .faq-question { font-size: 16px; }
    .hero { background-attachment: scroll; }
    .contact { background-attachment: scroll; }
    .trust-list { grid-template-columns: 1fr; }
}