/* ===== ЕСЛИ ПОПРОСИЛИ ДОДЕЛАТЬ САЙТ - ЗНАЧИТ ЗАКАЗЧИК МЕНЯ КИНУЛ ===== */
/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

:root {
    --accent: #2979FF;
    --accent-hover: #1565E0;
    --accent-light: #E3F2FD;
    --accent-glow: rgba(41, 121, 255, 0.3);
    --green: #00C853;
    --green-light: #E8F5E9;
    --orange: #FF6D00;
    --dark: #1a1a2e;
    --dark-2: #2d2d44;
    --text: #222;
    --text-light: #555;
    --text-muted: #888;
    --bg-white: #ffffff;
    --bg-light: #f5f7fb;
    --bg-warm: #fafafa;
    --border: #e8ecf2;
    --radius: 16px;
    --radius-lg: 50px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-color: 0 8px 30px rgba(41, 121, 255, 0.15);
    --transition: all 0.3s ease-out;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PARTICLES ===== */
.particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--dark);
    line-height: 1.25;
}

.section-title--center { text-align: center; }

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn--small { padding: 10px 26px; font-size: 0.875rem; }
.btn--large { padding: 16px 42px; font-size: 1.05rem; }
.btn--full { width: 100%; padding: 16px 42px; font-size: 1.05rem; }

.btn--primary {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-color);
}

.btn--primary:active {
    transform: translateY(-1px);
}

.btn--glow {
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(41,121,255,0.2); }
    50% { box-shadow: 0 4px 30px rgba(41,121,255,0.4); }
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.btn--white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn__arrow { transition: transform 0.3s; }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ===== HERO (Full-screen photo style) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%),
        url('../img/bg/hero-bg.jpg') center/cover no-repeat;
    z-index: 2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

.hero__topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.hero__topbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: opacity 0.3s;
}

.hero__topbar-phone svg {
    flex-shrink: 0;
}

.hero__topbar-phone:hover {
    opacity: 0.8;
}

.hero__topbar-cta {
    display: inline-block;
    padding: 10px 28px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(41, 121, 255, 0.4);
}

.hero__topbar-cta:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 121, 255, 0.5);
}

.hero__content-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero__brand {
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 4px 30px rgba(0,0,0,0.6), 0 0 60px rgba(0,0,0,0.3);
    animation: brand-appear 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero__brand-accent {
    color: var(--accent);
    text-shadow: 2px 4px 30px rgba(41,121,255,0.4);
}

@keyframes brand-appear {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero__nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero__nav-btn {
    padding: 12px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.45);
    transition: var(--transition);
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero__nav-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.hero__nav-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.hero__nav-btn + .hero__nav-btn {
    border-left: none;
}

.hero__nav-btn:hover {
    background: rgba(0,0,0,0.6);
    border-color: #fff;
}

.hero__nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ===== HERO SLIDER ===== */
.hero__slider {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 90vw;
}

.hero__slider-track {
    display: flex;
    gap: 8px;
    align-items: center;
    overflow: hidden;
}

.hero__slide {
    width: 90px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.25);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    position: relative;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__slide:hover {
    opacity: 0.9;
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.05);
}

.hero__slide--active {
    width: 110px;
    height: 74px;
    opacity: 1;
    border-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: scale(1.08);
}

.hero__slide--active:hover {
    transform: scale(1.12);
}

.hero__slider-arr {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
    line-height: 1;
}

.hero__slider-arr:hover {
    background: rgba(255,255,255,0.3);
    border-color: #fff;
    transform: scale(1.1);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.hero__scroll-mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Hero animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slide-up 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-fade-in { opacity: 0; animation: fade-in 1s ease forwards; }

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }

@keyframes slide-up { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { to { opacity: 1; } }

/* ===== HEADER (sticky on scroll) ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    transform: translateY(-100%);
    opacity: 0;
}

.header--visible {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    transition: transform 0.3s;
}

.header__logo:hover { transform: scale(1.05); }
.header__logo-icon { margin-right: 4px; }
.header__logo-dot { color: var(--accent); }

.header__nav { display: flex; gap: 32px; }

.header__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 1px;
}

.header__link:hover, .header__link.active { color: var(--accent); }
.header__link:hover::after, .header__link.active::after { width: 100%; }

.header__cta {
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-lg);
    font-weight: 700;
    border-color: var(--accent);
}

.header__cta:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-color);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
                filter 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); filter: none; }

/* Slide from right */
.reveal--right { transform: translateX(60px); }
.reveal--right.visible { transform: translateX(0); }

/* Slide from left */
.reveal--left { transform: translateX(-60px); }
.reveal--left.visible { transform: translateX(0); }

/* Scale up (zoom in) */
.reveal--zoom { transform: scale(0.85); filter: blur(4px); }
.reveal--zoom.visible { transform: scale(1); filter: none; }

/* Flip in */
.reveal--flip { transform: perspective(800px) rotateY(25deg); transform-origin: left center; }
.reveal--flip.visible { transform: perspective(800px) rotateY(0); }

/* Rise and rotate */
.reveal--rotate { transform: translateY(40px) rotate(-3deg); }
.reveal--rotate.visible { transform: translateY(0) rotate(0); }

/* Bounce up */
.reveal--bounce {
    transform: translateY(60px);
    transition: opacity 0.6s ease,
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal--bounce.visible { transform: translateY(0); }

/* Stagger delays */
.delay-0 { transition-delay: 0s !important; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ===== COUNTERS ===== */
.counters {
    background:
        linear-gradient(135deg, rgba(41,121,255,0.78), rgba(41,121,255,0.65)),
        url('../img/bg/counters-bg.jpg') center/cover no-repeat;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counters__item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.counters__item:hover {
    transform: scale(1.1);
}

.counters__item.visible .counters__value {
    animation: counter-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes counter-pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.counters__value {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

.counters__label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    padding: 110px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.about__photo-wrap {
    float: right;
    margin: 0 0 20px 30px;
}

.about__photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(41,121,255,0.18);
    border: 4px solid var(--accent-light);
    pointer-events: none;
    transition: transform 0.4s, box-shadow 0.4s;
}

.about__photo-wrap:hover .about__photo {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(41,121,255,0.25);
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__intro { font-size: 1.1rem; margin-bottom: 16px; color: var(--text); }

.about__text p { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }
.about__text strong { color: var(--accent); font-weight: 700; }

.about__quote {
    margin: 28px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--accent-light), #f0faf0);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
    overflow: hidden;
}

.about__quote::before {
    content: '❝';
    position: absolute;
    top: -10px; right: 20px;
    font-size: 5rem;
    opacity: 0.08;
    color: var(--accent);
}

.about__quote blockquote {
    font-style: italic;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about__card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.about__card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41,121,255,0.04), transparent);
    transition: left 0.7s;
}

.about__card:hover::after { left: 100%; }

.about__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.2);
}

.about__card-icon { font-size: 2rem; margin-bottom: 14px; }
.about__card-text { color: var(--text-light); line-height: 1.7; }

/* ===== WHY SECTION ===== */
.why {
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(248,250,252,0.82), rgba(248,250,252,0.85)),
        url('../img/bg/why-bg.jpg') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.why__stars {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 8px;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    animation: stars-glow 2.5s ease-in-out infinite;
}

@keyframes stars-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 8px rgba(255,193,7,0.4)); }
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why__card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.why__card-shine {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(41,121,255,0.04) 50%,
        transparent 60%
    );
    transform: rotate(0deg);
    transition: transform 0.8s;
}

.why__card:hover .why__card-shine { transform: rotate(180deg); }

.why__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.2);
}

.why__card-icon-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.why__card:hover .why__card-icon-wrap {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-color);
    background: var(--accent);
}

.why__card:hover .why__card-icon-wrap .why__card-icon {
    filter: brightness(10);
}

.why__card-icon { font-size: 2rem; transition: filter 0.4s; }

.why__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.why__card-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* ===== SERVICES ===== */
.services {
    padding: 110px 0;
    background:
        linear-gradient(180deg, rgba(245,247,251,0.88), rgba(245,247,251,0.92)),
        url('../img/bg/services-bg.jpg') center/cover no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Floating SVG decorations */

.service__content {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 32px;
    align-items: stretch;
}

.service__body { min-width: 0; }

.service__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    pointer-events: none;
}

.service--alt .service__content {
    grid-template-columns: 180px 1fr;
}

.service--alt .service__image {
    order: -1;
}

.service {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service__number {
    position: absolute;
    top: 20px; right: 35px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(41,121,255,0.06);
    line-height: 1;
    transition: color 0.4s;
}

.service:hover .service__number { color: rgba(41,121,255,0.12); }

.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.15);
}

.service--alt { border-left: 4px solid var(--accent); }

.service__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.service__icon { font-size: 2.5rem; flex-shrink: 0; }

.service__title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
}

.service__desc {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service__list { margin-bottom: 20px; }

.service__list li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.service__list li::before {
    content: '✓';
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.service__list li:hover {
    color: var(--accent);
}

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

.service__note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
    padding: 18px 24px;
    background: var(--accent-light);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.services__cta { text-align: center; margin-top: 48px; }

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(15,23,42,0.82), rgba(30,41,59,0.78)),
        url('../img/bg/pricing-bg.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pricing__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.pricing__orb--1 {
    width: 500px; height: 500px;
    background: rgba(41,121,255,0.12);
    top: -30%; right: -10%;
    animation: orb-float 15s ease-in-out infinite;
}

.pricing__orb--2 {
    width: 400px; height: 400px;
    background: rgba(0,200,83,0.06);
    bottom: -25%; left: -10%;
    animation: orb-float 18s ease-in-out infinite reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

.pricing .section-title { color: #fff; }

.pricing__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing__lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    font-weight: 500;
}

.pricing__text {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.pricing__card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(41,121,255,0.4);
    border-radius: 28px;
    padding: 45px 80px;
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.pricing__card:hover {
    border-color: var(--accent);
    transform: scale(1.06);
    box-shadow: 0 0 50px rgba(41,121,255,0.2);
}

.pricing__card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(41,121,255,0.2), transparent, rgba(0,200,83,0.1));
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.pricing__card:hover .pricing__card-glow { opacity: 1; }

.pricing__amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
}

.pricing__currency { color: var(--accent); }

.pricing__period {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.pricing__note { color: rgba(255,255,255,0.5); font-size: 0.95rem; }

.pricing__decor {
    display: block;
    max-width: 120px;
    margin: 0 auto 24px;
    pointer-events: none;
}

/* ===== BONUSES ===== */
.bonuses {
    padding: 110px 0 60px;
    background: var(--bg-light);
    position: relative;
}

.bonuses__card-img {
    display: block;
    width: 100%;
    height: 280px;
    margin: 0 0 16px;
    pointer-events: none;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1;
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.bonuses__subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--dark);
}

.bonuses__card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.bonuses__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(180deg, var(--accent), var(--green));
    transition: height 0.6s;
    border-radius: 0 0 4px 0;
}

.bonuses__card:hover::before { height: 100%; }

.bonuses__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.15);
}

.bonuses__card-icon-wrap {
    width: 64px; height: 64px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    transition: all 0.4s;
}

.bonuses__card:hover .bonuses__card-icon-wrap {
    transform: rotate(-10deg) scale(1.1);
    background: var(--accent);
    box-shadow: var(--shadow-color);
}

.bonuses__card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.bonuses__card-text { color: var(--text-light); line-height: 1.7; }

/* ===== CONTACTS ===== */
.contacts {
    padding: 60px 0 110px;
    background:
        linear-gradient(180deg, rgba(248,250,252,0.84), rgba(255,255,255,0.87)),
        url('../img/bg/contacts-bg.jpg') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.contacts__grid { margin-top: 10px; }

/* Contact cards row */
.contacts__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    color: var(--text);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.2);
}

a.contact-card:hover .contact-card__icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.contact-card__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s;
}

.contact-card__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-card__value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* ===== SUBSCRIBE ===== */
.subscribe {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.subscribe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(41,121,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.subscribe__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.subscribe__text {
    margin-bottom: 30px;
}

.subscribe__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.subscribe__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe__form {
    flex-shrink: 0;
}

.subscribe__form {
    max-width: 750px;
    margin: 0 auto;
}

.subscribe__form-row {
    display: flex;
    gap: 12px;
}

.subscribe__input {
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
    transition: var(--transition);
    outline: none;
}

.subscribe__input::placeholder {
    color: rgba(255,255,255,0.4);
}

.subscribe__input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 20px rgba(41,121,255,0.2);
}

.subscribe__btn {
    display: block;
    margin: 24px auto 0;
    white-space: nowrap;
    padding: 16px 48px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.subscribe__consent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    cursor: pointer;
    position: relative;
}

.subscribe__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.subscribe__checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
    position: relative;
}

.subscribe__checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.subscribe__checkbox:checked + .subscribe__checkmark {
    background: var(--accent);
    border-color: var(--accent);
}

.subscribe__checkbox:checked + .subscribe__checkmark::after {
    transform: rotate(45deg) scale(1);
}

.subscribe__consent-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.subscribe__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.subscribe__status {
    margin-top: 12px;
    font-size: 0.9rem;
    min-height: 1.4em;
}

.subscribe__status--success {
    color: var(--green);
}

.subscribe__status--error {
    color: #ff5252;
}

@media (max-width: 768px) {
    .subscribe__form-row {
        flex-direction: column;
    }
    .subscribe__consent {
        justify-content: center;
    }
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.modal--hidden {
    display: none;
}

.modal {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
    border-radius: var(--radius);
    padding: 44px 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: modal-appear 0.35s ease;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.modal__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal__icon--envelope {
    background: rgba(41, 121, 255, 0.15);
    color: var(--accent);
}

.modal__icon--check {
    background: rgba(0, 200, 83, 0.15);
    color: var(--green);
}

.modal__icon--warning {
    background: rgba(255, 109, 0, 0.15);
    color: var(--orange);
}

.modal__icon svg {
    width: 36px;
    height: 36px;
}

.modal__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.modal__text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.modal__btn {
    padding: 14px 40px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

@media (max-width: 480px) {
    .modal {
        padding: 32px 24px;
    }
    .modal__title {
        font-size: 1.2rem;
    }
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews {
    padding: 50px 0;
    background:
        linear-gradient(180deg, rgba(248,250,252,0.83), rgba(248,250,252,0.86)),
        url('../img/bg/reviews-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.reviews__carousel {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.reviews__track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews__card {
    min-width: 100%;
    padding: 48px 52px;
    box-sizing: border-box;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.reviews__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.reviews__star {
    font-size: 1.3rem;
    color: var(--border);
    transition: color 0.3s;
}

.reviews__star--filled {
    color: #FFB400;
}

.reviews__text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.reviews__text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.5rem;
    color: var(--accent);
    font-style: normal;
    line-height: 1;
    opacity: 0.5;
}

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

.reviews__avatar-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5c6bc0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviews__name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.reviews__city {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reviews__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.reviews__arrow:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-color);
}

.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.reviews__dot--active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.15);
}

/* Bottom: person + form */
.contacts__bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.contacts__person-block {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.contacts__person-block .contacts__map {
    margin-top: 20px;
}

.contacts__person-block .contacts__map iframe {
    height: 100%;
    min-height: 200px;
}

.contacts__avatar-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin: 0 auto 16px;
    display: block;
    box-shadow: var(--shadow-color);
    border: 3px solid var(--accent-light);
    animation: avatar-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes avatar-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(41,121,255,0.3); }
    50% { box-shadow: 0 0 0 14px rgba(41,121,255,0); }
}

.contacts__name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.contacts__role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.contacts__info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.contacts__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--accent-light);
    border-radius: var(--radius);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-align: left;
}

a.contacts__info-item:hover {
    background: var(--accent);
    color: #fff;
}

a.contacts__info-item:hover svg {
    stroke: #fff;
}

.contacts__office-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    text-align: left;
}

/* ===== FORM ===== */
.contacts__form-wrap {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.contacts__form-wrap:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(41,121,255,0.12);
}

.contacts__form-wrap form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contacts__form-wrap form .form__group:last-of-type {
    flex: 1;
}

.contacts__form-wrap form .form__group:last-of-type textarea {
    flex: 1;
    min-height: 100px;
}

.contacts__form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.5;
    text-align: center;
}

.contacts__form-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form__group { margin-bottom: 16px; position: relative; }

.form__input,
.form__textarea {
    width: 100%;
    padding: 15px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: var(--bg-light);
    color: var(--text);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--text-muted); }

.form__input:focus,
.form__textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(41,121,255,0.08);
    background: var(--bg-white);
}

.form__textarea { resize: vertical; min-height: 100px; }

.form__submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.form__submit-btn {
    flex: 1;
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.form__submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form__captcha {
    flex-shrink: 0;
}

.form__status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    display: none;
    animation: status-appear 0.4s ease;
}

@keyframes status-appear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form__status--success {
    display: block;
    background: var(--green-light);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form__status--error {
    display: block;
    background: #ffeef0;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(41,121,255,0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(41,121,255,0.5);
}

.scroll-top:active {
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background:
        linear-gradient(180deg, rgba(15,23,42,0.85), rgba(15,23,42,0.90)),
        url('../img/bg/footer-bg.jpg') center/cover no-repeat;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.footer__cta-block {
    text-align: center;
    padding: 50px 40px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer__cta-text {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.footer__office-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    line-height: 1.5;
}

.footer__top-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 40px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand { }

.footer__logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer__logo-dot { color: var(--accent); }

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
}

.footer__link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
    display: block;
}

a.footer__link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer__nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px 0;
    width: 100%;
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer__copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer__counter {
    justify-self: end;
}

.footer__counter-widget {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.78rem;
}

.footer__counter img {
    filter: invert(1) brightness(2);
}

.footer__counter-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.footer__counter-rows {
    padding: 4px 0;
}

.footer__counter-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 12px;
    color: rgba(255,255,255,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer__counter-row:last-child {
    border-bottom: none;
}

.footer__quote {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    line-height: 1.8;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin: 0;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.footer__social {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.footer__social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(41,121,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__brand { font-size: 5rem; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .counters__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .header__nav.active { display: flex; }
    .header__cta { display: none; }
    .header__burger { display: flex; }

    .header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .header__burger.active span:nth-child(2) { opacity: 0; }
    .header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero__topbar { padding: 14px 20px; }
    .hero__topbar-phone { font-size: 0.85rem; }
    .hero__topbar-cta { padding: 8px 20px; font-size: 0.8rem; }
    .hero__brand { font-size: 3.5rem; }
    .hero__tagline { font-size: 0.8rem; letter-spacing: 2px; }
    .hero__nav-btn { padding: 10px 18px; font-size: 0.75rem; }

    .hero__slider { bottom: 60px; gap: 8px; }
    .hero__slide { width: 64px; height: 44px; }
    .hero__slide--active { width: 80px; height: 54px; }
    .hero__slider-arr { width: 30px; height: 30px; font-size: 1.1rem; }

    .about__visual { grid-template-columns: 1fr; }
    .about__photo-wrap { float: none; display: block; text-align: center; margin: 0 0 20px 0; }
    .why__grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
    .service { padding: 32px 24px; }
    .service__content { grid-template-columns: 1fr; }
    .service--alt .service__content { grid-template-columns: 1fr; }
    .service__image { height: 200px; }
    .service__title { font-size: 1.2rem; }
    .service__number { font-size: 3rem; }
    .bonuses__grid { grid-template-columns: 1fr; }
    .reviews__card { padding: 36px 28px; }
    .reviews__arrow { width: 40px; height: 40px; }
    .contacts__cards { grid-template-columns: repeat(2, 1fr); }
    .contacts__bottom { grid-template-columns: 1fr; }
    .contacts__person-block { padding: 30px 20px; }
    .contacts__info-list { flex-direction: column; }
    .form__submit-row { flex-direction: column; align-items: stretch; }
    .form__captcha { display: flex; justify-content: center; }
    .footer__top-row { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer__nav-columns { flex-direction: column; gap: 8px; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; align-items: center; padding-bottom: 80px; }
    .footer__socials { justify-content: center; }
    .footer__top-row { display: flex; flex-direction: column; gap: 30px; }
    .footer__counter { order: 99; display: flex; flex-direction: column; align-items: center; }
    .footer__counter .footer__col-title { font-size: 0.75rem; margin-bottom: 8px; }
    .counters__value { font-size: 2.4rem; }
    .pricing__amount { font-size: 2.4rem; }
    .pricing__card { padding: 30px 45px; }

    .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero__topbar { padding: 10px 16px; }
    .hero__topbar-phone { font-size: 0.78rem; gap: 5px; }
    .hero__topbar-phone svg { width: 14px; height: 14px; }
    .hero__topbar-cta { padding: 7px 16px; font-size: 0.75rem; }
    .hero__brand { font-size: 2.5rem; }
    .hero__nav { flex-wrap: wrap; gap: 6px; }
    .hero__nav-btn { border-radius: 6px !important; border-left: 2px solid rgba(255,255,255,0.5) !important; }
    .btn--large { padding: 14px 28px; font-size: 0.95rem; }
    .reviews__card { padding: 28px 20px; }
    .reviews__text { font-size: 0.95rem; padding-left: 18px; }
    .reviews__arrow { display: none; }
    .reviews__carousel { gap: 0; }
    .contacts__form-wrap { padding: 28px 20px; }
    .contacts__cards { grid-template-columns: 1fr; }
    .contacts__info-item { font-size: 0.85rem; padding: 12px 14px; }
    .contacts__name { font-size: 1.2rem; }
    .form__row { grid-template-columns: 1fr; }
    .footer__top-row { grid-template-columns: 1fr; }
    .footer__brand { text-align: center; }
    .counters__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .counters__value { font-size: 1.8rem; }
    .service__image { height: 180px; }
    .hero__nav { flex-wrap: wrap; justify-content: center; }
    .pricing__grid { grid-template-columns: 1fr; }
    .subscribe__btn { width: 100%; }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100vh; }
    .hero__brand { font-size: 2.8rem; }
    .hero__tagline { font-size: 0.7rem; margin-bottom: 16px; }
    .hero__nav { margin-bottom: 20px; }
    .hero__nav-btn { padding: 8px 16px; font-size: 0.7rem; }
    .hero__slider { bottom: 10px; gap: 6px; }
    .hero__slide { width: 56px; height: 38px; }
    .hero__slide--active { width: 70px; height: 48px; }
    .hero__slider-arr { width: 28px; height: 28px; font-size: 1rem; }
    .hero__topbar { padding: 8px 16px; }
    .hero__topbar-cta { padding: 6px 14px; font-size: 0.75rem; }
}
