/* ===== Глобальные сбросы и переменные ===== */
:root {
    --bg: #f5f7fa;
    --surface: rgba(255, 255, 255, 0.75);
    --surface-hover: rgba(255, 255, 255, 0.92);
    --text: #1a1d23;
    --text-secondary: #4a5568;
    --accent: #1e5fbb;
    --accent-light: #3b82f6;
    --accent-glow: rgba(30, 95, 187, 0.25);
    --border: rgba(203, 213, 224, 0.6);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    --phone-size: 64px;
}

/* ===== Подключение локального шрифта Inter ===== */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter'), local('Inter-Regular'),
         url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local('Inter'), local('Inter-Medium'),
         url('../fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter'), local('Inter-SemiBold'),
         url('../fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter'), local('Inter-Bold'),
         url('../fonts/Inter-Bold.woff2') format('woff2');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* ===== Three.js фон ===== */
#three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
#three-bg canvas {
    display: block;
}

/* ===== Контейнер ===== */
.app-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Хедер ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    margin-top: 16px;
    background: var(--surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: sticky;
    top: 16px;
    z-index: 100;
    gap: 12px;
    flex-wrap: wrap;
}
.header:hover {
    box-shadow: var(--shadow-md);
    background: var(--surface-hover);
}
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text);
    padding: 4px 8px;
    border-radius: 12px;
    transition: background 0.2s;
    order: -1;
}
.burger:hover {
    background: rgba(0,0,0,0.05);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.25s ease;
}
.nav a:hover {
    color: var(--accent);
}
.nav a:hover::after {
    width: 100%;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
    white-space: nowrap;
    flex-shrink: 0;
}
.header-phone:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 24px rgba(30, 95, 187, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 16px;
        border-radius: var(--radius-md);
    }
    .burger {
        display: block;
        align-self: flex-start;
        order: -1;
    }
    .logo {
        order: 0;
        justify-content: center;
        margin: 8px 0;
    }
    .header-phone {
        order: 1;
        justify-content: center;
        width: 100%;
    }
    .nav {
        display: none;
        flex-direction: column;
        gap: 12px;
        background: var(--surface);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 8px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        order: 1;
        width: 100%;
    }
    .nav.active {
        display: flex;
    }
    .nav a {
        font-size: 1rem;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav a:last-child {
        border-bottom: none;
    }
}

/* ===== Герой ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 70vh;
    padding: 40px 0;
}
.hero-content h1 {
    font-size: clamp(1.7rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text);
    overflow-wrap: break-word;
}
.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition);
    box-shadow: 0 8px 28px var(--accent-glow);
    cursor: pointer;
    border: none;
}
.hero-cta:hover {
    background: var(--accent-light);
    box-shadow: 0 12px 36px rgba(30, 95, 187, 0.45);
    transform: translateY(-2px);
}
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 500px;
    max-height: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    object-position: center;
    transition: all var(--transition);
}
.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

/* ===== Бегущая строка ===== */
.ticker-section {
    background: #f5c400;
    padding: 12px 0;
    margin: 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}
.ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}
.ticker {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
.ticker a {
    color: #1a1d23;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-right: 50px;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s;
    display: inline-block;
}
.ticker a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* ===== Отзывы карусель ===== */
.reviews-carousel {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}
.reviews-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}
.reviews-track img {
    height: auto;
    max-height: 220px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: contain;
    flex-shrink: 0;
}

/* ===== Секция "Кому нужна прочистка" ===== */
.services-detail {
    margin: 60px 0;
}
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.detail-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    will-change: transform;
    cursor: default;
}
.detail-card .icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 95, 187, 0.1);
    border-radius: 12px;
}
.detail-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
}
.detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.detail-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--surface-hover);
}
@media (hover: none) and (pointer: coarse) {
    .detail-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-md);
        background: var(--surface-hover);
    }
}

/* ===== Виды засоров ===== */
.clog-types {
    margin: 60px 0;
}
.clog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.clog-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    text-align: center;
    cursor: default;
    will-change: transform;
}
.clog-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.clog-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent);
}
.clog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.clog-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--surface-hover);
}
@media (hover: none) and (pointer: coarse) {
    .clog-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-md);
        background: var(--surface-hover);
    }
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--text);
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.service-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-table-wrapper {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
}
thead th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
}
tbody td {
    padding: 16px 16px;
    border-bottom: 1px solid rgba(203, 213, 224, 0.4);
    font-size: 0.95rem;
}
tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}
.price {
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}
.pricing-footer {
    margin-top: 15px;
}
.pricing-footer p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.pricing-footer ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 5px;
}
.pricing-footer ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.2), padding 0.5s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 24px 20px 24px;
}

.service-area {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}
.service-area h2 {
    margin-bottom: 16px;
}
.service-area ul {
    columns: 2;
    list-style: none;
    padding: 0;
    gap: 8px;
}
.service-area li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.service-area li::before {
    content: "•";
    color: var(--accent);
    margin-right: 8px;
}

/* ===== Футер ===== */
.footer {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 40px 20px 20px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}
.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text);
}
.footer-col p, .footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col .footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
    white-space: nowrap;
    margin-top: 10px;
}
.footer-phone-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 24px rgba(30, 95, 187, 0.4);
    transform: translateY(-2px);
}
.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Плавающая кнопка (Исправлена безопасная зона) ===== */
.phone-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Добавляем поддержку вырезов на экранах (iPhone) */
    bottom: max(30px, env(safe-area-inset-bottom));
    right: max(30px, env(safe-area-inset-right));
}
.phone-btn {
    width: var(--phone-size);
    height: var(--phone-size);
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
    outline: none;
}
.phone-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 14px 40px rgba(30, 95, 187, 0.5);
    transform: scale(1.06);
}
.phone-btn:active {
    transform: scale(0.94);
}
.phone-btn svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    pointer-events: none;
}
.cat-paw {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    pointer-events: none;
    transform-origin: bottom right;
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cat-paw.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.cat-paw svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: pawPress 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes pawPress {
    0% { transform: translateY(20px) rotate(-15deg); }
    40% { transform: translateY(-10px) rotate(5deg); }
    70% { transform: translateY(2px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
.ripple {
    position: absolute;
    width: var(--phone-size);
    height: var(--phone-size);
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.5);
    animation: rippleOut 1.8s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.ripple:nth-child(2) { animation-delay: 0.6s; }
.ripple:nth-child(3) { animation-delay: 1.2s; }
@keyframes rippleOut {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ===== Cookie ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}
.cookie-banner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}
.cookie-banner button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-banner button:hover {
    background: var(--accent-light);
}

/* ===== Анимации GSAP ===== */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== Адаптивность для мобильных ===== */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-area ul {
        columns: 1;
    }
    .detail-card {
        flex-direction: column;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}