:root {
    --bg: #050608;
    --bg-soft: #0a0d14;
    --panel: #10131e;
    --panel-soft: #151929;
    --stroke: rgba(255, 255, 255, 0.08);
    --muted: #a2a8b9;
    --text: #f6f7fb;
    --accent: #d8b46a;
    --accent-strong: #f2d59f;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Universal 3D Parallax Effect for Sections */
section[data-parallax="true"] {
    transform: perspective(1200px) rotateX(var(--section-tilt-y, 0deg)) rotateY(var(--section-tilt-x, 0deg));
    transition: transform 0.4s ease;
}

/* Universal Card Effects */
.card-3d,
.service-card,
.why-feature,
.process-stage,
.brand-card,
.portfolio-item,
.team-card,
.review-card,
.contact-info,
.why-core-panel {
    position: relative;
    transform: perspective(1000px) rotateX(var(--card-tilt-y, 0deg)) rotateY(var(--card-tilt-x, 0deg));
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

/* Universal Hover Overlay */
.card-3d::before,
.service-card::before,
.why-feature::before,
.process-stage::before,
.brand-card::before,
.portfolio-item::before,
.team-card::before,
.review-card::before,
.contact-info::before,
.why-core-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card-3d:hover::before,
.service-card:hover::before,
.why-feature:hover::before,
.process-stage:hover::before,
.brand-card:hover::before,
.portfolio-item:hover::before,
.team-card:hover::before,
.review-card:hover::before,
.contact-info:hover::before,
.why-core-panel:hover::before {
    opacity: 1;
}

/* Universal Content Z-Index */
.card-3d > *,
.service-card > *,
.why-feature > *,
.process-stage > *,
.brand-card > *,
.portfolio-item > *,
.team-card > *,
.review-card > *,
.contact-info > *,
.why-core-panel > * {
    position: relative;
    z-index: 2;
}

/* Universal Float Animation for Lists */
ul li,
.hero-panel__list li,
.process-stage ul li,
.why-feature ul li,
.contact-info ul li {
    animation: floatBadge 6s ease-in-out infinite;
}

ul li:nth-child(2),
.process-stage ul li:nth-child(2),
.why-feature ul li:nth-child(2),
.contact-info ul li:nth-child(2) {
    animation-delay: 0.6s;
}

ul li:nth-child(3),
.process-stage ul li:nth-child(3),
.why-feature ul li:nth-child(3),
.contact-info ul li:nth-child(3) {
    animation-delay: 1.2s;
}

ul li:nth-child(4),
.process-stage ul li:nth-child(4),
.why-feature ul li:nth-child(4),
.contact-info ul li:nth-child(4) {
    animation-delay: 1.8s;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(5, 6, 8, 0.82);
    border-bottom: 1px solid var(--stroke);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.logo-text {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: 24px;
    letter-spacing: 0.08em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.quiz-btn {
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0b0b0f;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 35px rgba(216, 180, 106, 0.25);
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(216, 180, 106, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
    padding: 170px 0 120px;
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(216, 180, 106, 0.15), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(107, 110, 255, 0.18), transparent 35%),
                var(--bg-soft);
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    --hero-glow-x: 50%;
    --hero-glow-y: 40%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y),
            rgba(216, 180, 106, 0.25), transparent 55%);
    filter: blur(30px);
    opacity: 0.5;
    pointer-events: none;
    animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="300" height="300" viewBox="0 0 300 300" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 150H300" stroke="rgba(255,255,255,0.02)"/%3E%3Cpath d="M150 0V300" stroke="rgba(255,255,255,0.02)"/%3E%3C/svg%3E');
    opacity: 0.35;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 60px;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-eyebrow {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(216, 180, 106, 0.12);
    color: var(--accent-strong);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    padding: 16px 34px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0a0b10;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 45px rgba(216, 180, 106, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(216, 180, 106, 0.45);
}

.btn-secondary {
    padding: 16px 34px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    color: var(--text);
    font-weight: 600;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-strong);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-link::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-strong);
    border-bottom: 2px solid var(--accent-strong);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-link:hover::after {
    transform: translateX(4px) rotate(-45deg);
}

.hero-metrics {
    display: flex;
    gap: 32px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.metric span {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent-strong);
}

.metric p {
    margin-top: 6px;
    color: var(--muted);
}

.hero-panel {
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.08), transparent 70%),
        var(--panel);
    border: 1px solid var(--stroke);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    transform: perspective(1200px) rotateX(var(--hero-tilt-y)) rotateY(var(--hero-tilt-x));
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: url('logo.gif');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) opacity(0.25);
    pointer-events: none;
    z-index: 0;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.hero-panel:hover::before {
    opacity: 1;
}

.hero-panel > * {
    position: relative;
    z-index: 2;
}

.hero-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 4px;
}

.hero-panel__header p {
    color: var(--accent-strong);
    font-weight: 600;
    font-size: 16px;
}

.hero-panel__header span {
    color: var(--accent-strong);
    font-weight: 600;
}

.hero-panel__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-panel__list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--stroke);
    animation: floatBadge 6s ease-in-out infinite;
}

.hero-panel__list li:last-child {
    border-bottom: none;
}

.hero-panel__list p {
    font-weight: 600;
}

.hero-panel__list span {
    color: var(--muted);
    font-size: 14px;
}

.hero-panel__list strong {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: var(--accent-strong);
    white-space: nowrap;
}

.hero-panel__discount {
    color: #4ade80 !important;
}

.hero-panel__gift {
    color: var(--accent-strong) !important;
}

.hero-panel__installment {
    color: #60a5fa !important;
}

.hero-panel__list li:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-panel__list li:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.6; }
}

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

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

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

.hero-panel__cta {
    background: rgba(255, 255, 255, 0.02);
    padding: 18px;
    border-radius: 20px;
    border: 1px dashed var(--stroke);
    margin-top: 8px;
}

.hero-panel__cta p {
    color: var(--muted);
    margin-bottom: 10px;
}

.hero-panel__promo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid var(--stroke);
    position: relative;
    z-index: 2;
}

.hero-panel__promo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(216, 180, 106, 0.3);
    color: var(--accent-strong);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 auto;
}

.hero-panel__promo-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.hero-panel__promo-description {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.hero-panel__promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    border: 1px solid rgba(216, 180, 106, 0.3);
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0a0b10;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(216, 180, 106, 0.25);
    margin: 0 auto;
    min-height: 52px;
}

.hero-panel__promo-btn span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.hero-panel__promo-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.hero-panel__promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(216, 180, 106, 0.35);
    border-color: rgba(216, 180, 106, 0.5);
}

.hero-panel__promo-btn:active {
    transform: translateY(0);
}

.hero-panel__contacts {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-panel__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.hero-panel__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-strong);
    opacity: 0.8;
}

.hero-panel__contact-item span {
    color: var(--text);
}

.hero-panel__contacts p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 6px;
}

.hero-panel__contacts p:last-child {
    margin-bottom: 0;
}

.hero-highlight-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.hero-highlight {
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 24px;
    background: var(--panel);
    position: relative;
    overflow: hidden;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    inset: -60%;
    background: conic-gradient(from 0deg, transparent, rgba(216, 180, 106, 0.4), transparent 70%);
    animation: rotateGlow 8s linear infinite;
    opacity: 0.4;
}

.hero-highlight > * {
    position: relative;
    z-index: 1;
}

.hero-highlight span {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-highlight h4 {
    margin: 14px 0 10px;
    font-size: 20px;
}

.hero-highlight p {
    color: var(--muted);
}

.hero-marquee {
    margin-top: 40px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.02);
}

.hero-marquee__track {
    display: inline-flex;
    gap: 24px;
    animation: marqueeSlide 18s linear infinite;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-marquee__track span {
    white-space: nowrap;
}

/* SECTION TITLES */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 60px;
    text-align: center;
}

/* SECTION DIVIDER */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 0;
    overflow: visible;
    z-index: 1;
}

/* Скрытие разделителя перед контактами на мобильных */
@media (max-width: 1024px) {
    section.contacts + .section-divider,
    .section-divider + section.contacts {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(216, 180, 106, 0.3) 20%, 
        rgba(216, 180, 106, 0.6) 50%, 
        rgba(216, 180, 106, 0.3) 80%, 
        transparent 100%);
}

.divider-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(216, 180, 106, 0.9), 
        rgba(242, 213, 159, 1), 
        rgba(216, 180, 106, 0.9), 
        transparent);
    box-shadow: 0 0 15px rgba(216, 180, 106, 0.8),
                0 0 30px rgba(216, 180, 106, 0.6),
                0 0 45px rgba(216, 180, 106, 0.4);
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) translateY(0) scaleY(1);
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(216, 180, 106, 0.8),
                    0 0 30px rgba(216, 180, 106, 0.6),
                    0 0 45px rgba(216, 180, 106, 0.4);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-8px) scaleY(1.2);
        opacity: 1;
        box-shadow: 0 0 20px rgba(216, 180, 106, 1),
                    0 0 40px rgba(216, 180, 106, 0.8),
                    0 0 60px rgba(216, 180, 106, 0.6);
    }
    50% {
        transform: translate(-50%, -50%) translateY(0) scaleY(1);
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(216, 180, 106, 0.8),
                    0 0 30px rgba(216, 180, 106, 0.6),
                    0 0 45px rgba(216, 180, 106, 0.4);
    }
    75% {
        transform: translate(-50%, -50%) translateY(8px) scaleY(1.2);
        opacity: 1;
        box-shadow: 0 0 20px rgba(216, 180, 106, 1),
                    0 0 40px rgba(216, 180, 106, 0.8),
                    0 0 60px rgba(216, 180, 106, 0.6);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0) scaleY(1);
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(216, 180, 106, 0.8),
                    0 0 30px rgba(216, 180, 106, 0.6),
                    0 0 45px rgba(216, 180, 106, 0.4);
    }
}

/* MISSION */
.mission {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(145deg, rgba(5, 6, 8, 0.95), rgba(10, 13, 20, 0.95));
    overflow: hidden;
    margin-top: -1px;
}

.mission::before,
.mission::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: missionAurora 18s ease-in-out infinite;
}

.mission::before {
    background: radial-gradient(circle, rgba(216, 180, 106, 0.6), transparent 70%);
    top: -120px;
    left: -80px;
}

.mission::after {
    background: radial-gradient(circle, rgba(123, 97, 255, 0.4), transparent 70%);
    bottom: -180px;
    right: -120px;
    animation-delay: -6s;
}

.mission-content {
    position: relative;
    display: grid;
    gap: 32px;
    text-align: center;
    padding: 70px 50px;
    border-radius: 32px;
    background: rgba(16, 19, 30, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    overflow: hidden;
    animation: fadeInUp 1.1s ease both;
}

.mission-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 65%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.mission-content:hover::after {
    opacity: 1;
}

.mission-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    animation: missionGlow 8s ease-in-out infinite;
}

@keyframes missionAurora {
    0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate3d(40px, -30px, 0) scale(1.1); opacity: 0.5; }
    100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.3; }
}

@keyframes missionGlow {
    0%, 100% { text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(216, 180, 106, 0.25); }
    50% { text-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 35px rgba(216, 180, 106, 0.45); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translate3d(0, 40px, 0); }
    100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-item {
    padding: 28px;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    background: var(--panel);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-strong);
    display: block;
}

.stat-label {
    color: var(--muted);
}

/* SERVICES */
.services {
    background: var(--bg-soft);
}

.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    padding: 0;
}

.services-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
    height: 100%;
    padding: 0;
}

.service-card {
    border: 1px solid var(--stroke);
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.06), transparent 70%),
        linear-gradient(160deg, var(--panel), var(--panel-soft));
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    min-width: 320px;
    max-width: 320px;
    align-items: flex-start;
    text-align: left;
    align-self: stretch;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(216, 180, 106, 0.5);
    box-shadow: 0 30px 70px rgba(216, 180, 106, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -120% 30% 50%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: translateX(40%) rotate(25deg);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--bg-soft);
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 36px;
    background: rgba(255, 255, 255, 0.04);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
}

.service-title {
    font-size: 20px;
    text-align: left;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 56px;
    display: flex;
    align-items: flex-start;
}

.service-description {
    color: var(--muted);
    flex: 1;
    text-align: left;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-strong);
    text-align: left;
    margin: 0;
    white-space: nowrap;
}

.service-btn {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    background: transparent;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.service-btn:hover {
    border-color: var(--accent);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: var(--panel);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    border-color: var(--accent);
    background: rgba(216, 180, 106, 0.1);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* WHY US */
.why-us {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.why-us::before,
.why-us::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    background: radial-gradient(circle, rgba(216, 180, 106, 0.35), transparent 55%);
}

.why-us::before {
    top: 40px;
    left: -120px;
}

.why-us::after {
    bottom: -120px;
    right: -80px;
}

.why-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.why-showcase {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.why-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    height: 100%;
}

.why-column--left::before,
.why-column--right::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(216, 180, 106, 0.7), transparent);
    opacity: 0.6;
    transform: translateX(-12px);
    pointer-events: none;
}

.why-column--right::before {
    left: auto;
    right: 0;
    transform: translateX(12px);
}

.why-feature {
    border-radius: 22px;
    padding: 28px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.05), transparent 70%),
        linear-gradient(160deg, rgba(20, 22, 28, 0.85), rgba(20, 22, 28, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-feature::after {
    content: '';
    position: absolute;
    inset: -80% 50% auto -30%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-feature:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(216, 180, 106, 0.5);
    box-shadow: 0 25px 60px rgba(216, 180, 106, 0.15);
}

.why-feature:hover::after {
    opacity: 0.7;
}

.why-feature__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.why-feature h3 {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.why-feature p {
    color: var(--muted);
    margin: 0;
    flex: 1;
}

.why-core-panel {
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(18, 19, 27, 0.95), rgba(28, 30, 41, 0.7));
    border: 1px solid rgba(216, 180, 106, 0.25);
    padding: 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-core-panel__halo {
    position: absolute;
    inset: 20px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.35), transparent 60%);
    opacity: 0.4;
    filter: blur(25px);
    pointer-events: none;
}

.why-core-panel__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-core-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.why-core-chip {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    background: rgba(216, 180, 106, 0.15);
    border: 1px solid rgba(216, 180, 106, 0.4);
    color: var(--accent-strong);
}

.why-core-chip.subtle {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.why-core-panel h3 {
    font-size: 28px;
    margin: 0;
}

.why-core-panel p {
    color: var(--muted);
    margin: 0;
}

.why-core-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.why-stat {
    border-radius: 18px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.why-stat span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-strong);
}

.why-stat small {
    color: var(--muted);
    font-size: 13px;
}

.why-core-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.why-track-pill {
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text);
}

.why-core-orbit {
    position: relative;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(216, 180, 106, 0.35);
    border-radius: 50%;
    animation: orbitPulse 6s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: 0.8s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 1.6s;
}

.orbit-label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

@keyframes orbitPulse {
    0% {
        opacity: 0.2;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.2;
        transform: scale(0.9);
    }
}

/* PROCESS */
.process {
    background: var(--bg-soft);
}

.process-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.legend-item {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
}

.legend-label {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.legend-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.process-roadmap {
    position: relative;
    padding: 32px 0 32px 32px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(140deg, rgba(12, 13, 18, 0.95), rgba(21, 23, 31, 0.75));
    overflow: hidden;
}

.process-roadmap::before {
    content: '';
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(216, 180, 106, 0.85), rgba(216, 180, 106, 0.2));
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.process-roadmap__glow {
    position: absolute;
    top: 0;
    left: 8px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 180, 106, 0.45), transparent 60%);
    filter: blur(40px);
    opacity: 0.5;
    animation: glowFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.process-stage {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 44px 24px 24px 24px;
    border-radius: 24px;
    position: relative;
    margin-left: 16px;
    margin-bottom: 40px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.04), transparent 70%),
        rgba(255, 255, 255, 0.01);
    opacity: 0.65;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.process-stage:last-child {
    margin-bottom: 0;
}

.process-stage:not(:last-child) {
    margin-bottom: 40px;
}

.process-stage::after {
    content: attr(data-duration) ' • ' attr(data-output);
    position: absolute;
    top: 8px;
    left: 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.85);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    z-index: 10;
    pointer-events: none;
}

.process-stage:hover {
    transform: translateX(8px) scale(1.02);
    border-color: rgba(216, 180, 106, 0.5);
    box-shadow: 0 25px 60px rgba(216, 180, 106, 0.15);
    opacity: 1;
}

.process-stage.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.process-stage__index {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(216, 180, 106, 0.15);
    color: var(--accent-strong);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid rgba(216, 180, 106, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.process-stage__content {
    text-align: left;
}

.process-stage__content h3 {
    margin: 0 0 10px;
    text-align: left;
}

.process-stage__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: flex-start;
    align-items: flex-start;
}

.process-stage__meta span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.process-stage__content p {
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.6;
    text-align: left;
}

.process-stage__content ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    display: grid;
    gap: 4px;
    text-align: left;
}

@keyframes glowFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(40px);
    }
}


/* MATERIALS */
.materials {
    background: var(--bg);
}

.brands-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.brands-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.brands-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: stretch;
    padding: 0;
}

.brand-card {
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 30px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.05), transparent 70%),
        var(--panel);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 320px;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.brand-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(216, 180, 106, 0.2);
}

.brand-logo {
    width: 100%;
    height: auto;
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
    margin-bottom: 20px;
}

.brand-card:hover .brand-logo {
    filter: brightness(1.1);
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
}

.brand-description {
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
    max-width: 100%;
    margin: 0;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
}

/* PORTFOLIO */
.portfolio {
    background: var(--bg-soft);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.portfolio-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--stroke);
    background: var(--panel);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.portfolio-nav-btn:hover {
    border-color: var(--accent);
    background: rgba(216, 180, 106, 0.1);
    transform: scale(1.1);
}

.portfolio-nav-btn:active {
    transform: scale(0.95);
}

.portfolio-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.portfolio-nav-btn svg {
    width: 20px;
    height: 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
    flex: 1;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: var(--panel);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1;
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(216, 180, 106, 0.2);
    border-color: rgba(216, 180, 106, 0.4);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.portfolio-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.portfolio-overlay p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Модальное окно для просмотра фото */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-modal.active {
    display: flex;
}

.portfolio-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
}

.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.portfolio-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.portfolio-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.portfolio-modal-nav.prev {
    left: 20px;
}

.portfolio-modal-nav.next {
    right: 20px;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .portfolio-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .portfolio-wrapper {
        gap: 12px;
    }
    
    .portfolio-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .portfolio-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .portfolio-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .portfolio-nav-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* TEAM */
.team {
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.team-card {
    padding: 28px;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.05), transparent 70%),
        var(--panel);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-avatar {
    font-size: 42px;
    margin-bottom: 14px;
}

.team-card:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(216, 180, 106, 0.4);
    box-shadow: 0 25px 60px rgba(216, 180, 106, 0.15);
}

.team-card p {
    color: var(--muted);
}

/* REVIEWS */
.reviews {
    background: var(--bg-soft);
    overflow: visible;
}

.reviews .container {
    overflow: visible;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    margin: 60px 0;
    padding: 0 20px;
    position: relative;
}

.review-card {
    position: relative;
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 32px;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.08), transparent 70%),
        linear-gradient(135deg, 
        rgba(216, 180, 106, 0.05) 0%, 
        rgba(242, 213, 159, 0.02) 50%,
        var(--panel) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(216, 180, 106, 0.6), 
        rgba(242, 213, 159, 0.8),
        rgba(216, 180, 106, 0.6),
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(216, 180, 106, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(216, 180, 106, 0.1),
                0 0 80px rgba(216, 180, 106, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

.review-rating {
    font-size: 20px;
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.review-text {
    color: var(--text);
    margin: 20px 0 24px;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    color: rgba(216, 180, 106, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
    border-top: 1px solid rgba(216, 180, 106, 0.1);
}

.review-author strong {
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.review-author span {
    color: var(--muted);
    font-size: 14px;
    opacity: 0.8;
}

.review-loading {
    text-align: center;
    color: var(--muted);
    padding: 60px 28px;
}

.review-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.reviews-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding-top: 40px;
}

.btn-reviews-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, 
        rgba(216, 180, 106, 0.15), 
        rgba(242, 213, 159, 0.1));
    border: 1px solid rgba(216, 180, 106, 0.3);
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-reviews-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(216, 180, 106, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.btn-reviews-all:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 180, 106, 0.5);
    box-shadow: 0 8px 24px rgba(216, 180, 106, 0.2),
                0 0 0 1px rgba(216, 180, 106, 0.1);
    background: linear-gradient(135deg, 
        rgba(216, 180, 106, 0.2), 
        rgba(242, 213, 159, 0.15));
}

.btn-reviews-all:hover::before {
    left: 100%;
}

.btn-reviews-all svg {
    transition: transform 0.3s ease;
}

.btn-reviews-all:hover svg {
    transform: translateX(4px);
}

.yandex-link {
    margin-top: 50px;
    text-align: center;
}

/* TELEGRAM */
.telegram-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.telegram-section::before,
.telegram-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.4), transparent 55%);
}

.telegram-section::before {
    top: -150px;
    left: -150px;
}

.telegram-section::after {
    bottom: -150px;
    right: -150px;
}

.telegram-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 80px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.1), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 136, 204, 0.08), transparent 50%),
        linear-gradient(145deg, rgba(18, 19, 27, 0.95), rgba(28, 30, 41, 0.85));
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: perspective(1200px) rotateX(var(--card-tilt-y, 0deg)) rotateY(var(--card-tilt-x, 0deg));
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.telegram-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.telegram-card:hover::before {
    opacity: 1;
}

.telegram-card:hover {
    border-color: rgba(0, 136, 204, 0.4);
    box-shadow: 0 50px 110px rgba(0, 136, 204, 0.2),
                0 0 0 1px rgba(0, 136, 204, 0.1),
                0 0 80px rgba(0, 136, 204, 0.15);
}

.telegram-logo {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    display: inline-block;
    animation: floatBadge 6s ease-in-out infinite;
}

.telegram-logo-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 10px 30px rgba(0, 136, 204, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.telegram-card:hover .telegram-logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(0, 136, 204, 0.5));
}

.telegram-content {
    position: relative;
    z-index: 2;
}

.telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 999px;
    padding: 8px 18px;
    background: rgba(0, 136, 204, 0.1);
    color: #4fc3f7;
    margin-bottom: 20px;
}

.telegram-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text), rgba(79, 195, 247, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.telegram-card p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}

.telegram-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.telegram-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.telegram-feature:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
    color: #4fc3f7;
    transform: translateY(-2px);
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0088cc, #0066aa);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-telegram::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0099dd, #0077bb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-telegram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
}

.btn-telegram:hover::before {
    opacity: 1;
}

.btn-telegram svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-telegram:hover svg {
    transform: translateX(4px);
}

.btn-telegram > * {
    position: relative;
    z-index: 1;
}

/* CONTACTS */
.contacts {
    background: var(--bg-soft);
}

/* Гарантированная видимость на мобильных */
@media (max-width: 1024px) {
    section#contacts.contacts {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
        clip: auto !important;
        clip-path: none !important;
    }
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.contact-info,
.contact-map {
    height: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at top, rgba(216, 180, 106, 0.15), transparent 55%) rgba(18, 19, 27, 0.95);
    position: relative;
    overflow: hidden;
}

.contact-info::after {
    content: '';
    position: absolute;
    inset: -100px auto auto -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(216, 180, 106, 0.3), transparent 70%);
    opacity: 0.4;
    filter: blur(10px);
    pointer-events: none;
}

.contact-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.contact-lead {
    color: var(--muted);
    margin: 0;
}

.contact-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}

.contact-meta-card {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-meta-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.contact-meta-card strong,
.contact-meta-card a {
    font-size: 20px;
    color: var(--text);
    text-decoration: none;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-action {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-badges span {
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-messengers small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.messengers {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.whatsapp-btn,
.telegram-btn-small {
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-btn {
    background: #25d366;
    color: #041b08;
}

.telegram-btn-small {
    background: #0088cc;
    color: var(--white);
}

.contact-map iframe {
    border-radius: 20px;
    border: 1px solid var(--stroke);
    min-height: 420px;
}

.contact-map {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.contact-map-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    flex: 1;
    background: var(--bg-soft);
    min-height: 420px;
}

.contact-map-embed > a {
    position: absolute;
    left: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    z-index: 1;
}

.contact-map-embed > a:first-child {
    top: 10px;
}

.contact-map-embed > a:last-of-type {
    top: 26px;
}

.contact-map-embed iframe {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}

.contact-map-card {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    border-radius: 20px;
    padding: 20px 24px;
    background: rgba(6, 7, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.contact-map-card span {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.contact-map-card strong {
    font-size: 16px;
    color: var(--text);
}

.contact-map-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-map-links a {
    font-size: 14px;
    color: var(--accent);
    border: 1px solid rgba(216, 180, 106, 0.4);
    border-radius: 999px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-map-links a:hover {
    background: rgba(216, 180, 106, 0.15);
}

/* FOOTER */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--stroke);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding-bottom: 40px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid var(--stroke);
    padding: 24px 0;
    text-align: center;
    color: var(--muted);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.35);
    z-index: 900;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 8, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 40px 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--panel);
    border-radius: 28px;
    border: 1px solid var(--stroke);
    padding: 40px;
    max-width: 760px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 28px;
    cursor: pointer;
}

/* SERVICE MODAL */
.service-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stroke);
}

.service-modal-header h2 {
    flex: 1;
    font-size: 24px;
    margin: 0;
}

.service-modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-strong);
    white-space: nowrap;
}

.service-modal-image {
    width: 100%;
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
}

.service-modal-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-modal-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.service-modal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-modal-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.service-modal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

#serviceModalContent h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text);
    text-align: left;
}

#serviceModalContent p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

#serviceModalContent {
    text-align: left;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--bg-soft);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(216, 180, 106, 0.3);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(216, 180, 106, 0.5);
}

/* QUIZ */
.quiz-container {
    width: 100%;
}

/* Progress Indicator */
.quiz-progress {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--stroke);
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    border-radius: 999px;
    transition: width 0.4s ease;
    width: 25%;
    box-shadow: 0 0 10px rgba(216, 180, 106, 0.5);
}

.quiz-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.quiz-progress-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--stroke);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quiz-progress-step.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    border-color: var(--accent-strong);
    color: #0a0b10;
    box-shadow: 0 0 15px rgba(216, 180, 106, 0.4);
    transform: scale(1.1);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-step-header {
    margin-bottom: 24px;
}

.quiz-step-number {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(216, 180, 106, 0.1);
    border: 1px solid rgba(216, 180, 106, 0.2);
    border-radius: 999px;
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.quiz-step-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text);
    line-height: 1.3;
}

.quiz-step-subtitle {
    color: var(--muted);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 2px solid var(--stroke);
    border-radius: 16px;
    background: var(--panel-soft);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quiz-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216, 180, 106, 0.1), rgba(216, 180, 106, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quiz-option:hover {
    border-color: rgba(216, 180, 106, 0.4);
    background: rgba(216, 180, 106, 0.05);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(216, 180, 106, 0.15);
}

.quiz-option:hover::before {
    opacity: 1;
}

.quiz-option.selected {
    border-color: var(--accent-strong);
    background: rgba(216, 180, 106, 0.1);
    box-shadow: 0 0 20px rgba(216, 180, 106, 0.25);
}

.quiz-option.selected::before {
    opacity: 1;
}

.quiz-option.selected::after {
    content: '✓';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-strong);
    color: #0a0b10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.quiz-option-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.quiz-option:hover .quiz-option-icon {
    transform: scale(1.1);
}

.quiz-option.selected .quiz-option-icon {
    background: rgba(216, 180, 106, 0.2);
    transform: scale(1.1);
}

.quiz-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quiz-option-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.quiz-option-text small {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.quiz-input {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: var(--panel-soft);
    color: var(--text);
}

.quiz-next,
.quiz-submit {
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0a0b10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 180, 106, 0.3);
}

.quiz-next:hover,
.quiz-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 180, 106, 0.4);
}

.quiz-next:active,
.quiz-submit:active {
    transform: translateY(0);
}

.quiz-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Form Grid for Date and Time */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    width: 100%;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin: 0;
    padding: 0;
    line-height: 20px;
    height: 20px;
}

.form-label span {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

/* Calendar Inline Container */
.calendar-inline-container {
    display: block;
    margin: 0;
    padding: 0;
}

.calendar-inline-container .flatpickr-calendar {
    background: var(--panel-soft);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 320px;
}

.calendar-inline-container .flatpickr-months {
    margin-bottom: 16px;
}

.calendar-inline-container .flatpickr-month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.calendar-inline-container .flatpickr-current-month {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.calendar-inline-container .flatpickr-prev-month,
.calendar-inline-container .flatpickr-next-month {
    color: var(--accent-strong);
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.calendar-inline-container .flatpickr-prev-month:hover,
.calendar-inline-container .flatpickr-next-month:hover {
    background: rgba(216, 180, 106, 0.1);
}

.calendar-inline-container .flatpickr-weekdays {
    margin-bottom: 8px;
}

.calendar-inline-container .flatpickr-weekday {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.calendar-inline-container .flatpickr-day {
    color: var(--text);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.calendar-inline-container .flatpickr-day:hover {
    background: rgba(216, 180, 106, 0.1);
    border-color: rgba(216, 180, 106, 0.3);
}

.calendar-inline-container .flatpickr-day.selected {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #0a0b10;
    border-color: var(--accent-strong);
    box-shadow: 0 0 10px rgba(216, 180, 106, 0.4);
}

.calendar-inline-container .flatpickr-day.flatpickr-disabled {
    color: var(--muted);
    opacity: 0.3;
}

/* Time Picker Wrapper */
.time-picker-wrapper {
    display: block;
    margin: 0;
    padding: 0;
}

.time-picker {
    position: relative;
    width: 100%;
    height: 320px;
    background: var(--panel-soft);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.time-picker-arrows {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--stroke);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.time-picker-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--stroke);
    background: var(--panel);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.time-picker-arrow:hover {
    border-color: var(--accent-strong);
    background: rgba(216, 180, 106, 0.1);
    color: var(--accent-strong);
}

.time-picker-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-picker-arrow svg {
    width: 16px;
    height: 16px;
}

.time-picker-wheel {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 0;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.time-picker-wheel::-webkit-scrollbar {
    width: 6px;
}

.time-picker-wheel::-webkit-scrollbar-track {
    background: transparent;
}

.time-picker-wheel::-webkit-scrollbar-thumb {
    background: rgba(216, 180, 106, 0.3);
    border-radius: 3px;
}

.time-picker-wheel::-webkit-scrollbar-thumb:hover {
    background: rgba(216, 180, 106, 0.5);
}

.time-picker-item {
    padding: 16px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-picker-item:hover {
    color: var(--text);
    background: rgba(216, 180, 106, 0.05);
}

.time-picker-item.selected {
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 20px;
    background: rgba(216, 180, 106, 0.1);
    transform: scale(1.1);
}

.time-picker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        var(--panel-soft) 0%,
        transparent 20%,
        transparent 80%,
        var(--panel-soft) 100%
    );
    z-index: 1;
}

.success-animation {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(216, 180, 106, 0.15);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .process-legend {
        grid-template-columns: 1fr;
    }

    .process-roadmap {
        padding: 24px 0 24px 24px;
    }

    .process-roadmap::before {
        display: none !important;
    }
    
    .process-roadmap__glow {
        display: none !important;
    }

    .process-stage {
        margin-left: 0;
    }

    .container {
        width: min(1200px, 94%);
    }

    .nav-content {
        padding: 18px 0;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-menu {
    position: fixed;
    top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 6, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid var(--stroke);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
    width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
    font-size: 18px;
    }

    .quiz-btn {
        display: none;
    }

    .mobile-menu-toggle {
    display: flex;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-panel {
        order: -1;
        padding: 24px;
    }

    .hero-panel__promo {
        padding: 20px;
        gap: 16px;
    }

    .hero-panel__promo-title {
        font-size: 22px;
    }

    .hero-panel__promo-description {
        font-size: 15px;
    }

    .hero-panel__promo-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }

    .hero-panel__contacts {
        font-size: 11px;
    }

    .hero-panel__contacts p {
        font-size: 11px;
        line-height: 1.5;
    }

    .hero-panel__contact-item {
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-metrics {
        gap: 24px;
        justify-content: space-around;
    }

    .metric {
        text-align: center;
        flex: 1;
        min-width: 120px;
    }

    .metric span {
        font-size: 28px;
    }

    .hero-highlight-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .hero-marquee {
        margin-top: 30px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
}

    .services-carousel-wrapper {
        gap: 8px;
        position: relative;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .services-carousel {
        width: 100%;
        overflow: hidden;
        padding: 0 50px;
    }

    .services-grid {
        padding: 0;
        gap: 16px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        z-index: 10;
        position: absolute;
        background: var(--panel);
        border: 1px solid var(--stroke);
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-btn-left {
        left: 0;
        margin: 0;
    }

    .carousel-btn-right {
        right: 0;
        margin: 0;
    }

    .service-card {
        padding: 24px;
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }

    .service-image {
        height: 180px;
    }

    .contact-info {
        padding: 32px;
    }

    .contact-meta {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-action {
        width: 100%;
    }

    .contact-map-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding: 16px 18px;
        background: rgba(6, 7, 10, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(216, 180, 106, 0.2);
    }

    .contact-map-card span {
        font-size: 11px;
        display: block;
        margin-bottom: 8px;
        color: var(--muted);
    }

    .contact-map-card strong {
        font-size: 15px;
        line-height: 1.5;
        display: block;
        color: var(--text);
        margin-bottom: 12px;
    }

    .contact-map-links {
        flex-direction: column;
        gap: 8px;
    }

    .contact-map-links a {
        font-size: 13px;
        padding: 8px 14px;
        text-align: center;
    }

    .contact-map-embed {
        min-height: 350px;
        border-radius: 16px;
    }

    .contact-map-embed iframe {
        min-height: 350px;
        height: 350px;
        border-radius: 16px;
    }

    .contact-map-embed > a {
        display: none;
    }

    .brands-carousel-wrapper {
        gap: 8px;
        position: relative;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .brands-carousel {
        width: 100%;
        overflow: hidden;
        padding: 0 50px;
    }

    .brands-grid {
        padding: 0;
        gap: 16px;
    }

    .brand-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
        padding: 24px;
        min-height: 300px;
    }

    .mission-content {
        padding: 50px 30px;
    }

    .mission-text {
        font-size: 18px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px;
    }

    .stat-number {
        font-size: 40px;
    }

    .why-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-column--left::before,
    .why-column--right::before {
        display: none;
    }

    .why-column {
        height: auto !important;
    }

    .why-core-panel {
        order: -1;
    }

    .why-core-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .why-stat {
        padding: 16px 12px;
    }

    .why-stat span {
        font-size: 22px;
    }

    .why-stat small {
        font-size: 12px;
    }

    .process-dashboard {
        grid-template-columns: 1fr;
    }

    .process-legend {
        gap: 16px;
    }

    .legend-item {
        padding: 18px 20px;
    }

    .telegram-card {
        padding: 40px 32px;
    }

    .telegram-logo-img {
        width: 100px;
        height: 100px;
    }

    .telegram-card h2 {
        font-size: 28px;
    }

    .telegram-card p {
        font-size: 16px;
    }

    .telegram-features {
        flex-direction: column;
        gap: 12px;
    }

    .process-roadmap {
        padding-left: 24px;
    }

    .process-roadmap::before {
        left: 56px;
    }

    .process-stage {
        margin-left: 16px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-filters {
        flex-wrap: wrap;
        gap: 12px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .yandex-reviews-widget-container {
        min-height: 700px;
        border-radius: 16px;
    }

    .yandex-reviews-widget-container iframe {
        min-height: 700px;
        height: 700px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 0 !important;
    }

    .section-divider {
        margin: 0 !important;
        padding: 0 !important;
        height: 1px !important;
        display: block !important;
        opacity: 0.3;
    }

    .contacts {
        padding-top: 50px !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .contacts .container {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        visibility: visible !important;
    }

    .contacts-grid {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contacts-grid > * {
        margin-bottom: 0 !important;
    }

    .contact-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map-card {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .contact-map-embed {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        border: 1px solid var(--stroke) !important;
        min-height: 350px !important;
        background: var(--bg-soft) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map-embed iframe {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 350px !important;
        min-height: 350px !important;
        border: 0 !important;
        border-radius: 20px !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .footer {
        padding-top: 0 !important;
        margin-top: -50px !important;
    }

    .footer .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .contact-info {
        order: -1;
    }

    .contact-map {
        order: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding-bottom: 24px;
    }

    .modal {
        padding: 20px;
    }

    .modal-content {
        padding: 32px 24px;
        border-radius: 24px;
        max-height: 90vh;
    }

    .close-modal {
        top: 16px;
        right: 20px;
        font-size: 24px;
    }

    .service-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-modal-price {
        font-size: 24px;
    }

    .btn-telegram {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .container {
        width: 92%;
    }

    .nav-content {
        padding: 16px 0;
        gap: 16px;
    }

    .hero-panel__promo {
        padding: 18px;
        gap: 14px;
    }

    .hero-panel__promo-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .hero-panel__promo-title {
        font-size: 20px;
    }

    .hero-panel__promo-description {
        font-size: 14px;
    }

    .hero-panel__promo-btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 46px;
        gap: 10px;
    }

    .hero-panel__promo-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-panel__contact-item {
        font-size: 12px;
        gap: 8px;
    }

    .hero-panel__contact-item svg {
        width: 16px;
        height: 16px;
    }

    .logo-img {
        width: 56px;
        height: 56px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-menu {
        width: 100%;
        padding: 90px 24px 30px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .hero-panel__header {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-panel__header p {
        font-size: 14px;
    }

    .hero-panel__list {
        gap: 14px;
    }

    .hero-panel__list li {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 14px;
    }

    .hero-panel__list li > div {
        width: 100%;
    }

    .hero-panel__list p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .hero-panel__list span {
        font-size: 12px;
    }

    .hero-panel__list strong {
        font-size: 11px;
        margin-top: 4px;
        align-self: flex-start;
    }

    .hero-panel__cta {
        padding: 14px;
        margin-top: 4px;
    }

    .hero-panel__contacts {
        margin-top: 16px;
        padding-top: 16px;
    }

    .hero-panel__contacts p {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 4px;
    }

    .hero-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }

    .metric {
    text-align: center;
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .metric span {
        font-size: 28px;
        display: block;
    }

    .metric p {
        font-size: 13px;
        margin-top: 4px;
    }

    .hero-highlight {
        padding: 20px;
    }

    .hero-highlight span {
        font-size: 11px;
    }

    .hero-highlight h4 {
    font-size: 18px;
        margin: 12px 0 8px;
    }

    .hero-highlight p {
        font-size: 13px;
    }

    .hero-marquee__track {
        font-size: 12px;
        gap: 16px;
    }

    section {
        padding: 35px 0;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .mission-content {
        padding: 40px 24px;
    }

    .mission-text {
    font-size: 16px;
        line-height: 1.6;
    }

    .services-carousel-wrapper {
        gap: 6px;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .services-carousel {
        padding: 0 45px;
        overflow: hidden;
    }

    .services-grid {
        padding: 0;
        gap: 14px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-btn-left {
        left: 0;
        margin: 0;
    }

    .carousel-btn-right {
        right: 0;
        margin: 0;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .service-card {
        padding: 20px;
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }

    .service-image {
        height: 160px;
    }

    .service-title {
        font-size: 18px;
        min-height: auto;
    }

    .service-description {
        font-size: 14px;
        min-height: auto;
    }

    .service-price {
        font-size: 22px;
    }

    .contact-info {
        padding: 24px;
    }

    .contact-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-meta-card {
        padding: 14px;
    }

    .contact-meta-card strong,
    .contact-meta-card a {
        font-size: 18px;
    }

    .contact-action {
        min-width: auto;
        width: 100%;
    }

    .contact-badges {
        flex-direction: column;
    }

    .contact-badges span {
        width: 100%;
        text-align: center;
    }

    .contact-map-embed {
        min-height: 300px;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        border: 1px solid var(--stroke) !important;
        background: var(--bg-soft) !important;
        display: block !important;
    }

    .contact-map-embed iframe {
        min-height: 300px;
        height: 300px;
        width: 100% !important;
        border: 0 !important;
        border-radius: 20px !important;
        display: block !important;
        position: relative !important;
    }

    .contacts-grid {
        gap: 0 !important;
    }

    .section-divider {
        margin: 0 !important;
        padding: 0 !important;
        height: 1px !important;
        display: block !important;
        opacity: 0.3;
    }

    .contacts {
        padding-top: 35px !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .contacts .container {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .contacts-grid {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contacts-grid > * {
        margin-bottom: 0 !important;
    }

    .contact-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map-embed {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        border: 1px solid var(--stroke) !important;
        min-height: 300px !important;
        background: var(--bg-soft) !important;
    }

    .contact-map-embed iframe {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        border: 0 !important;
        border-radius: 20px !important;
    }

    .footer {
        padding-top: 0 !important;
        margin-top: -60px !important;
    }

    .footer .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .footer-content {
        padding-bottom: 16px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .brands-carousel-wrapper {
        gap: 6px;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .brands-carousel {
        padding: 0 45px;
        overflow: hidden;
    }

    .brands-grid {
        padding: 0;
        gap: 14px;
    }

    .brand-card {
        min-width: calc(100vw - 90px);
        max-width: calc(100vw - 90px);
        padding: 20px;
        min-height: 280px;
    }

    .brand-logo {
        max-width: 120px;
        max-height: 50px;
        margin-bottom: 16px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-description {
        font-size: 13px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
    font-size: 36px;
    }

    .why-feature {
        padding: 24px;
    }

    .why-feature__tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .why-feature h3 {
        font-size: 18px;
    }

    .why-feature p {
        font-size: 14px;
    }

    .why-core-panel {
        padding: 28px 24px;
    }

    .why-core-panel h3 {
        font-size: 22px;
    }

    .why-core-panel p {
        font-size: 14px;
    }

    .why-core-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .why-stat {
        padding: 14px 10px;
    }

    .why-stat span {
        font-size: 20px;
    }

    .why-stat small {
        font-size: 11px;
    }

    .why-core-track {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .why-track-pill {
        font-size: 12px;
        padding: 8px 14px;
    }

    .process-legend {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .legend-item {
        padding: 18px 20px;
    }

    .legend-label {
        font-size: 11px;
    }

    .legend-item p {
        font-size: 13px;
    }

    .process-roadmap {
        padding: 16px 0 16px 16px;
        border-radius: 24px;
    }

    .process-roadmap::before {
        display: none !important;
    }
    
    .process-roadmap__glow {
        display: none !important;
    }

    .process-stage {
        grid-template-columns: 1fr;
        margin-left: 0;
        padding: 20px;
        gap: 16px;
    }

    .process-stage::after {
        left: 16px;
        top: -10px;
        font-size: 10px;
        padding: 5px 10px;
    }

    .process-stage__index {
        width: 48px;
        height: 48px;
        font-size: 14px;
        margin: 0 auto;
    }

    .process-stage__content {
        text-align: left;
    }

    .process-stage__meta {
        justify-content: flex-start;
    }
    
    .process-stage__index {
        margin: 0;
    }

    .process-stage__content h3 {
        font-size: 20px;
    }

    .process-stage__content p {
        font-size: 14px;
    }

    .process-stage__content ul {
        text-align: left;
        font-size: 13px;
    }

    .portfolio-filters {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .portfolio-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    .portfolio-item {
        border-radius: 16px;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-overlay {
        padding: 16px;
    }

    .portfolio-overlay h3 {
        font-size: 18px;
    }

    .portfolio-overlay p {
        font-size: 14px;
    }

    .review-card {
        padding: 24px;
    }

    .review-rating {
        font-size: 18px;
    }

    .review-text {
        font-size: 15px;
        padding-left: 16px;
    }

    .review-text::before {
        font-size: 40px;
        left: -4px;
    }

    .review-author strong {
        font-size: 15px;
    }

    .review-author span {
        font-size: 13px;
    }

    .reviews-footer {
    margin-top: 40px;
        padding-top: 30px;
    }

    .btn-reviews-all {
        padding: 14px 28px;
        font-size: 15px;
    }

    .team-card {
        padding: 24px;
    }

    .team-avatar {
        font-size: 38px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card p {
        font-size: 14px;
    }

    .messengers {
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-btn,
    .telegram-btn-small {
    width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }

    .modal {
        padding: 16px;
    }

    .modal-content {
        padding: 28px 20px;
        border-radius: 20px;
        max-height: 95vh;
    }

    .close-modal {
        top: 12px;
        right: 16px;
        font-size: 22px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 16px;
    }

    .service-modal-header h2 {
        font-size: 20px;
    }

    .service-modal-price {
        font-size: 22px;
    }

    .service-modal-image {
        margin: 20px 0;
    }

    .service-modal-description {
        font-size: 15px;
    }

    #serviceModalContent h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    #serviceModalContent p {
        font-size: 14px;
    }

    .service-modal-list li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 20px;
    }

    .quiz-progress {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .quiz-progress-step {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .quiz-step-header h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .quiz-step-subtitle {
        font-size: 15px;
    }

    .quiz-options {
        gap: 10px;
    }

    .quiz-option {
        padding: 16px 18px;
        gap: 14px;
    }

    .quiz-option-icon {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .quiz-option-text strong {
        font-size: 15px;
    }

    .quiz-option-text small {
        font-size: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .time-picker {
        height: 280px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }

    .quiz-input {
        padding: 14px;
        font-size: 15px;
    }

    .quiz-next,
    .quiz-submit {
        padding: 14px;
    font-size: 16px;
    }

    .success-animation {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .telegram-card {
        padding: 32px 20px;
        border-radius: 32px;
    }

    .telegram-logo-img {
        width: 80px;
        height: 80px;
    }

    .telegram-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .telegram-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .telegram-card p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .telegram-features {
        gap: 10px;
        margin-bottom: 32px;
    }

    .telegram-feature {
        font-size: 13px;
        padding: 8px 16px;
    }

    .btn-telegram {
        padding: 14px 28px;
        font-size: 14px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-logo p {
        font-size: 14px;
    }

    .footer-links a,
    .footer-social a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 90%;
    }

    .nav-content {
        padding: 14px 0;
    }

    .hero-panel__promo {
        padding: 16px;
        gap: 12px;
    }

    .hero-panel__promo-badge {
        padding: 5px 10px;
        font-size: 9px;
    }

    .hero-panel__promo-title {
        font-size: 18px;
    }

    .hero-panel__promo-description {
        font-size: 13px;
    }

    .hero-panel__promo-btn {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 44px;
        gap: 8px;
    }

    .hero-panel__promo-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-panel__contact-item {
        font-size: 11px;
        gap: 6px;
    }

    .hero-panel__contact-item svg {
        width: 14px;
        height: 14px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-toggle span {
        width: 16px;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-eyebrow {
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .hero-panel__header p {
        font-size: 13px;
    }

    .hero-panel__list {
        gap: 12px;
    }

    .hero-panel__list li {
        padding-bottom: 12px;
    }

    .hero-panel__list p {
        font-size: 13px;
    }

    .hero-panel__list span {
        font-size: 11px;
    }

    .hero-panel__list strong {
        font-size: 10px;
    }

    .hero-panel__cta {
        padding: 12px;
    }

    .hero-panel__contacts {
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero-panel__contacts p {
        font-size: 9px;
    }

    .hero-metrics {
        gap: 12px;
    }

    .metric {
        min-width: calc(50% - 6px);
    }

    .metric span {
        font-size: 24px;
    }

    .metric p {
        font-size: 12px;
    }

    .hero-highlight {
        padding: 18px;
    }

    .hero-highlight span {
        font-size: 10px;
    }

    .hero-highlight h4 {
        font-size: 16px;
        margin: 10px 0 6px;
    }

    .hero-highlight p {
        font-size: 12px;
    }

    section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .mission-content {
        padding: 32px 20px;
    }

    .mission-text {
        font-size: 15px;
    }

    .services-carousel-wrapper {
        gap: 4px;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .services-carousel {
        padding: 0 40px;
        overflow: hidden;
    }

    .services-grid {
        padding: 0;
        gap: 12px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-btn-left {
        left: 0;
        margin: 0;
    }

    .carousel-btn-right {
        right: 0;
        margin: 0;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .service-card {
        padding: 18px;
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
    }

    .service-image {
        height: 140px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-description {
        font-size: 13px;
    }

    .service-price {
        font-size: 20px;
    }

    .service-btn {
        padding: 12px;
        font-size: 14px;
    }

    .contact-info {
        padding: 20px;
        border-radius: 24px;
    }

    .contact-eyebrow {
        font-size: 11px;
    }

    .contact-info h3 {
        font-size: 18px;
    }

    .contact-lead {
        font-size: 14px;
    }

    .contact-meta-card {
        padding: 12px;
    }

    .contact-meta-card span {
        font-size: 11px;
    }

    .contact-meta-card strong,
    .contact-meta-card a {
        font-size: 16px;
    }

    .contact-actions {
        gap: 10px;
    }

    .contact-action {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-badges {
        gap: 8px;
    }

    .contact-badges span {
        font-size: 11px;
        padding: 6px 12px;
    }

    .contact-map-card {
        padding: 14px 16px;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        background: rgba(6, 7, 10, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(216, 180, 106, 0.2);
    }

    .contact-map-card span {
        font-size: 10px;
        margin-bottom: 6px;
        display: block;
        color: var(--muted);
    }

    .contact-map-card strong {
        font-size: 14px;
        line-height: 1.5;
        display: block;
        color: var(--text);
        margin-bottom: 10px;
    }

    .contact-map-links {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .contact-map-links a {
        font-size: 12px;
        padding: 10px 16px;
        text-align: center;
        width: 100%;
        display: block;
    }

    .contact-map-embed {
        min-height: 300px;
        border-radius: 14px;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        border: 1px solid var(--stroke) !important;
        background: var(--bg-soft) !important;
        display: block !important;
    }

    .contact-map-embed iframe {
        min-height: 300px;
        height: 300px;
        width: 100% !important;
        border: 0 !important;
        border-radius: 14px !important;
        display: block !important;
        position: relative !important;
    }

    .contact-map-embed > a {
        display: none;
    }

    .contacts-grid {
        gap: 0 !important;
    }

    .section-divider {
        margin: 0 !important;
        padding: 0 !important;
        height: 1px !important;
        display: block !important;
        opacity: 0.3;
    }

    .contacts {
        padding-top: 30px !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .contacts .container {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        display: block !important;
        visibility: visible !important;
    }

    .contacts-grid {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contacts-grid > * {
        margin-bottom: 0 !important;
    }

    .contact-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-map-embed {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 14px !important;
        border: 1px solid var(--stroke) !important;
        min-height: 300px !important;
        background: var(--bg-soft) !important;
    }

    .contact-map-embed iframe {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        border: 0 !important;
        border-radius: 14px !important;
    }

    .footer {
        padding-top: 0 !important;
        margin-top: -70px !important;
    }

    .footer .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .footer-content {
        padding-bottom: 12px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .brands-carousel-wrapper {
        gap: 4px;
        padding: 0;
        margin: 0 -4%;
        width: 108%;
        overflow: hidden;
    }

    .brands-carousel {
        padding: 0 40px;
        overflow: hidden;
    }

    .brands-grid {
        padding: 0;
        gap: 12px;
    }

    .brand-card {
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        padding: 18px;
        min-height: 260px;
    }

    .brand-logo {
        max-width: 100px;
        max-height: 45px;
        margin-bottom: 14px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-description {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .why-feature {
        padding: 20px;
    }

    .why-feature__tag {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .why-feature h3 {
        font-size: 16px;
    }

    .why-feature p {
        font-size: 13px;
    }

    .why-core-panel {
        padding: 24px 20px;
    }

    .why-core-chip {
        font-size: 11px;
        padding: 6px 12px;
    }

    .why-core-panel h3 {
        font-size: 20px;
    }

    .why-core-panel p {
        font-size: 13px;
    }

    .why-core-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .why-stat {
        padding: 16px 12px;
    }

    .why-stat span {
        font-size: 22px;
    }

    .why-stat small {
        font-size: 11px;
    }

    .why-core-track {
        gap: 6px;
    }

    .why-track-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .process-legend {
        gap: 12px;
    }

    .legend-item {
        padding: 16px 18px;
    }

    .legend-label {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .legend-item p {
        font-size: 12px;
    }

    .process-roadmap {
        padding: 14px 0 14px 14px;
        border-radius: 20px;
    }

    .process-roadmap::before {
        display: none !important;
    }
    
    .process-roadmap__glow {
        display: none !important;
    }

    .process-stage {
        padding: 18px;
        gap: 14px;
    }

    .process-stage::after {
        left: 14px;
        top: -8px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .process-stage__index {
        width: 44px;
        height: 44px;
        font-size: 13px;
        margin: 0 0 0 0;
    }

    .process-stage__content h3 {
        font-size: 18px;
    }

    .process-stage__content p {
        font-size: 13px;
    }

    .process-stage__meta {
        justify-content: flex-start;
        gap: 6px;
    }
    
    .process-stage__content {
        text-align: left;
    }
    
    .process-stage__index {
        margin: 0;
    }

    .process-stage__meta span {
        font-size: 10px;
        padding: 4px 8px;
        width: auto;
    }

    .process-stage__content ul {
        font-size: 12px;
    }

    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

    .portfolio-image {
        height: 180px;
    }

    .portfolio-overlay {
        padding: 14px;
    }

    .portfolio-overlay h3 {
        font-size: 16px;
    }

    .portfolio-overlay p {
        font-size: 13px;
    }

    .review-card {
        padding: 20px;
    }

    .review-rating {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .review-text {
        font-size: 14px;
        padding-left: 14px;
    }

    .review-text::before {
        font-size: 36px;
    }

    .review-author {
        padding-top: 16px;
    }

    .review-author strong {
        font-size: 14px;
    }

    .review-author span {
        font-size: 12px;
    }

    .team-card {
        padding: 20px;
    }

    .team-avatar {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 13px;
    }

    .yandex-reviews-widget-container {
        min-height: 600px;
        border-radius: 12px;
    width: 100%;
        margin: 0;
        padding: 0;
    }

    .yandex-reviews-widget-container iframe {
        min-height: 600px;
        height: 600px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
        font-size: 24px;
    }

    .modal {
        padding: 12px;
    }

    .modal-content {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .close-modal {
        top: 10px;
        right: 14px;
        font-size: 20px;
        width: 30px;
        height: 30px;
    }

    .service-modal-header h2 {
        font-size: 18px;
    }

    .service-modal-price {
        font-size: 20px;
    }

    .service-modal-description {
        font-size: 14px;
    }

    #serviceModalContent h3 {
        font-size: 16px;
    }

    #serviceModalContent p {
        font-size: 13px;
    }

    .service-modal-list li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 18px;
    }

    .quiz-progress {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .quiz-progress-bar {
        height: 3px;
    }

    .quiz-progress-step {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .quiz-step-number {
        font-size: 11px;
        padding: 5px 10px;
    }

    .quiz-step-header h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .quiz-step-subtitle {
        font-size: 14px;
    }

    .quiz-options {
        gap: 8px;
    }

    .quiz-option {
        padding: 14px 16px;
        gap: 12px;
    }

    .quiz-option-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .quiz-option-text strong {
        font-size: 14px;
    }

    .quiz-option-text small {
        font-size: 11px;
    }

    .quiz-option.selected::after {
        width: 20px;
        height: 20px;
        font-size: 12px;
        right: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .quiz-input {
        padding: 12px;
        font-size: 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .time-picker {
        height: 260px;
    }

    .time-picker-item {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 44px;
    }

    .time-picker-item.selected {
        font-size: 18px;
    }

    .time-picker-arrow {
        width: 28px;
        height: 28px;
    }

    .time-picker-arrow svg {
        width: 14px;
        height: 14px;
    }

    .quiz-next,
    .quiz-submit {
        padding: 12px;
        font-size: 15px;
    }

    .success-animation {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .telegram-card {
        padding: 28px 18px;
        border-radius: 28px;
    }

    .telegram-logo-img {
        width: 70px;
        height: 70px;
    }

    .telegram-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .telegram-card h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .telegram-card p {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .telegram-feature {
        font-size: 12px;
        padding: 7px 14px;
    }

    .btn-telegram {
        padding: 12px 24px;
        font-size: 13px;
    }

    .footer-content {
        gap: 28px;
    }

    .footer-logo p {
        font-size: 13px;
    }

    .footer-links a,
    .footer-social a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 13px;
    }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }

    .nav-link:hover::after {
        transform: scaleX(0);
    }

    /* Улучшение касаний для мобильных */
    button,
    a,
    .service-card,
    .portfolio-item,
    .review-card,
    .team-card,
    .brand-card {
        -webkit-tap-highlight-color: rgba(216, 180, 106, 0.2);
    }

    /* Отключение параллакса на мобильных */
    section[data-parallax="true"] {
        transform: none !important;
    }

    .card-3d,
    .service-card,
    .why-feature,
    .process-stage,
    .brand-card,
    .portfolio-item,
    .team-card,
    .review-card,
    .contact-info,
    .why-core-panel {
        transform: none !important;
    }
}

/* Дополнительные мобильные оптимизации */
@media (max-width: 768px) {
    /* Улучшение скролла */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Предотвращение горизонтального скролла */
    body {
        overflow-x: hidden;
        position: relative;
    }

    /* Улучшение каруселей на мобильных */
    .services-grid,
    .brands-grid {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .service-card,
    .brand-card {
        scroll-snap-align: start;
    }

    /* Улучшение модальных окон */
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }

    /* Улучшение форм */
    input,
    select,
    textarea {
        font-size: 16px; /* Предотвращает зум на iOS */
    }

    /* Улучшение кнопок */
    .carousel-btn {
        touch-action: manipulation;
    }

    /* Улучшение навигации */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
}

/* Оптимизация для очень маленьких экранов */
@media (max-width: 360px) {
    .container {
        width: 88%;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .service-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
    }

    .brand-card {
        min-width: calc(100vw - 60px);
        max-width: calc(100vw - 60px);
    }
}

