/* ===== VARIABLES ===== */
:root {
    --color-black: #141414;
    --color-white: #ffffff;
    --color-bg: #f5f5f7;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-secondary: #5a5a5a;
    --color-border: #e0e0e0;
    --color-red: #D3382D;
    --color-green: #68D949;
    --color-blue: #478EF6;
    --color-light: #EEEEEE;
    --color-red-light: rgba(211, 56, 45, 0.1);
    --color-green-light: rgba(104, 217, 73, 0.1);
    --color-blue-light: rgba(71, 142, 246, 0.1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Play', 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    padding: 10px 24px;
    background: var(--color-red);
    color: var(--color-white);
}

.btn:hover {
    background: #b82f25;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(211, 56, 45, 0.35);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
    box-shadow: none;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 8px;
}

.section-title--light {
    color: var(--color-white);
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 18px;
    margin-bottom: 48px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-black);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__link {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.header__link:hover {
    color: var(--color-white);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
}

.header__phone:hover {
    color: var(--color-red);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero-wrapper {
    position: sticky;
    top: 0;
    z-index: 0;
}

.hero {
    padding: 120px 0 80px;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 700px;
    background: linear-gradient(160deg, #1a3a2e, #0d2840);
    opacity: 0.5;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 300px;
    height: 450px;
    background: var(--color-blue);
    opacity: 0.08;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-white);
}

.accent {
    color: var(--color-red);
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.hero__video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 80px 0;
    background: var(--color-bg);
    position: relative;
    z-index: 1;
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
}

.advantages::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) skew(-33deg);
    width: 80px;
    height: 4px;
    background: var(--color-blue);
    border-radius: 2px;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.advantage-card__icon--red {
    background: var(--color-red-light);
    color: var(--color-red);
}

.advantage-card__icon--green {
    background: var(--color-green-light);
    color: var(--color-green);
}

.advantage-card__icon--blue {
    background: var(--color-blue-light);
    color: var(--color-blue);
}

.advantage-card__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-card__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 600px;
    background: var(--color-green);
    opacity: 0.05;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.service-card:hover {
    border-color: var(--color-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card__number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(71,142,246,0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card__text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card__price {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-red);
}

/* ===== WORKS ===== */
.works {
    padding: 80px 0;
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.work-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-blue);
    transform: scaleX(0) skew(-33deg);
    transition: var(--transition);
    z-index: 2;
}

.work-card:hover::after {
    transform: scaleX(1) skew(-33deg);
}

.work-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: var(--transition);
}

.work-card:hover .work-card__overlay {
    transform: translateY(0);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 80px 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
}

.review-card__stars {
    color: var(--color-red);
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.review-card__text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blue);
    opacity: 0.3;
    line-height: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-card__name {
    font-weight: 600;
    font-size: 15px;
}

.review-card__car {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.reviews__yandex {
    margin-top: 48px;
}

.reviews__yandex-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.reviews__yandex-widget {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.reviews__yandex-widget iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.reviews__yandex-link {
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    color: var(--color-text-secondary);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.reviews__yandex-link:hover {
    color: var(--color-blue);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item[open] {
    border-color: var(--color-red);
    border-left: 4px solid var(--color-red);
}

.faq__question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--color-text-secondary);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq__item[open] .faq__question::after {
    content: '−';
    color: var(--color-red);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ===== BOOKING ===== */
.booking {
    padding: 80px 0;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.booking::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 350px;
    height: 500px;
    background: var(--color-red);
    opacity: 0.06;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.booking__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking__text {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.booking__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking__list li {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    padding-left: 24px;
    position: relative;
}

.booking__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-red);
}

.booking__form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 15px;
    transition: var(--transition);
    background: var(--color-bg);
    color: var(--color-text);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px var(--color-red-light);
}

.form-input::placeholder {
    color: #999;
}

.form-group--file {
    position: relative;
}

.form-file {
    cursor: pointer;
    display: block;
}

.form-file input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.form-file__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: var(--transition);
    background: var(--color-bg);
}

.form-file__label:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.form-file__name {
    font-size: 13px;
    color: var(--color-green);
    margin-top: 4px;
    display: block;
}

.form-hint {
    color: #999;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.form-disclaimer {
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* ===== CONTACTS ===== */
.contacts {
    padding: 80px 0;
    background: var(--color-bg);
    position: relative;
    z-index: 1;
}

.contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 48px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    flex-shrink: 0;
    border: 1px solid rgba(71,142,246,0.2);
}

.contact-item__label {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 2px;
}

.contact-item__value {
    font-weight: 600;
    font-size: 15px;
}

.contact-item__value--link:hover {
    color: var(--color-red);
}

.contacts__socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.contacts__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contacts__map iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    padding: 24px 0;
    background: var(--color-black);
    border-top: 2px solid var(--color-blue);
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer__logo img {
    height: 32px;
    width: auto;
}

.footer__copy {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer__links a:hover {
    color: var(--color-white);
}

/* ===== OVERLAY ===== */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* ===== PHONE MODAL ===== */
.phone-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.phone-modal.active {
    display: flex;
}

.phone-modal__content {
    background: var(--color-black);
    border-radius: var(--radius-lg);
    padding: 48px 44px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 360px;
    border: 1px solid rgba(255,255,255,0.08);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(24px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.phone-modal__decor {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 220px;
    height: 320px;
    background: var(--color-blue);
    opacity: 0.08;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.phone-modal__decor2 {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 180px;
    height: 260px;
    background: var(--color-red);
    opacity: 0.06;
    transform: skew(-33deg);
    border-radius: 12px;
    pointer-events: none;
}

.phone-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.phone-modal__close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
}

.phone-modal__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.phone-modal__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-blue), #5a9ff7);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(71,142,246,0.3);
}

.phone-modal__label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.phone-modal__number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.phone-modal__copy {
    min-width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.phone-modal__copied {
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-green);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.phone-modal__copied.visible {
    opacity: 1;
}

.phone-modal__divider {
    margin: 24px 0;
    position: relative;
    z-index: 1;
}

.phone-modal__divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.phone-modal__divider span {
    position: relative;
    background: var(--color-black);
    padding: 0 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-modal__messengers {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.phone-modal__msg {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    transition: var(--transition);
}

.phone-modal__msg--tg {
    background: rgba(38,165,220,0.15);
    border: 1px solid rgba(38,165,220,0.25);
}

.phone-modal__msg--tg:hover {
    background: #26A5DC;
    border-color: #26A5DC;
    box-shadow: 0 4px 16px rgba(38,165,220,0.35);
}

.phone-modal__msg--wa {
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.25);
}

.phone-modal__msg--wa:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 38px;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .works__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* Header mobile */
    .header__nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 0;
        transition: var(--transition);
        z-index: 1001;
    }

    .header__nav.active {
        right: 0;
    }

    .header__link {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        width: 100%;
    }

    .header__actions {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 1002;
    }

    /* Hero mobile */
    .hero {
        padding: 96px 0 48px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero::before {
        width: 250px;
        height: 400px;
        top: -20%;
        right: -15%;
    }

    .hero::after {
        width: 180px;
        height: 300px;
        bottom: -10%;
        left: -15%;
    }

    .services::before {
        width: 200px;
        height: 350px;
        right: -20%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    /* Grids mobile */
    .advantages__grid,
    .services__grid,
    .works__grid,
    .reviews__grid {
        grid-template-columns: 1fr;
    }

    /* Booking mobile */
    .booking__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title--light {
        text-align: center;
    }

    .booking__text {
        text-align: center;
    }

    .booking__form {
        padding: 24px;
    }

    /* Contacts mobile */
    .contacts__inner {
        grid-template-columns: 1fr;
    }

    .contacts__map iframe {
        height: 300px;
    }

    /* Footer mobile */
    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
