/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5B6CF5;
    --primary-dark: #4456E8;
    --primary-light: #7B8BFF;
    --secondary: #00D4AA;
    --accent: #FF6B6B;
    --gradient: linear-gradient(135deg, #5B6CF5 0%, #00D4AA 100%);
    --gradient-text: linear-gradient(135deg, #5B6CF5, #00D4AA);
    --dark: #0D0F1A;
    --dark-2: #131629;
    --dark-3: #1A1E35;
    --dark-4: #222742;
    --card-bg: #181C30;
    --card-border: rgba(91, 108, 245, 0.15);
    --text: #E8EAF6;
    --text-muted: #8892B0;
    --text-light: #CDD3F0;
    --white: #FFFFFF;
    --success: #00D4AA;
    --warning: #FFB547;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 60px rgba(0,0,0,0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===========================
   TYPOGRAPHY
=========================== */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   CONTAINER
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(91, 108, 245, 0.4);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 108, 245, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid rgba(91, 108, 245, 0.5);
}
.btn--outline:hover {
    background: rgba(91, 108, 245, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn--gradient {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 4px 20px rgba(255,107,107,0.4);
}
.btn--gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,107,0.5);
}

.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; }

.btn--consultant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0088cc, #00a8e8);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn--consultant:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 136, 204, 0.55);
    background: linear-gradient(135deg, #0099dd, #00bbff);
}
.btn--consultant svg { flex-shrink: 0; }

/* ===========================
   SECTION BASE
=========================== */
.section { padding: 100px 0; }
.section--dark { background: var(--dark-2); }

.section__header {
    text-align: center;
    margin-bottom: 60px;
}
.section__header--left { text-align: left; }

.section__tag {
    display: inline-block;
    background: rgba(91, 108, 245, 0.15);
    border: 1px solid rgba(91, 108, 245, 0.3);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.section__desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section__header--left .section__desc { margin: 0; }

/* ===========================
   HEADER
=========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(13, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo__icon { font-size: 28px; }

.logo__text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo__accent {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.nav__link--cta {
    background: rgba(91, 108, 245, 0.15);
    border: 1px solid rgba(91, 108, 245, 0.3);
    color: var(--primary-light) !important;
    margin-left: 8px;
}
.nav__link--cta:hover {
    background: var(--primary) !important;
    color: white !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    backdrop-filter: blur(4px);
}
.nav__overlay.show { display: block; }

/* ===========================
   HERO
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #5B6CF5, transparent);
    top: -200px;
    left: -200px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00D4AA, transparent);
    bottom: -150px;
    right: -150px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FF6B6B, transparent);
    top: 50%;
    left: 50%;
    animation: orbFloat 6s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -30px) scale(1.05); }
    66%  { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 108, 245, 0.12);
    border: 1px solid rgba(91, 108, 245, 0.25);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__subtitle strong { color: var(--white); }

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    width: fit-content;
}

.stat { text-align: center; }

.stat__num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__text {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

.stat__divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===========================
   PHONE MOCKUP
=========================== */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.phone__frame {
    width: 300px;
    background: var(--dark-3);
    border: 2px solid rgba(91, 108, 245, 0.3);
    border-radius: 40px;
    padding: 20px 16px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
    animation: phoneFloat 4s ease-in-out infinite;
    box-sizing: border-box;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

/* Экран — жёсткая фиксированная высота */
.phone__screen {
    background: var(--dark);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 440px;
    min-height: 440px;
    max-height: 440px;
    width: 100%;
    box-sizing: border-box;
}

/* Шапка чата */
.chat__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.chat__avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.chat__info { flex: 1; min-width: 0; }

.chat__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat__status {
    display: block;
    font-size: 11px;
    color: var(--secondary);
}

/* Область сообщений */
.chat__messages {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Сообщения */
.msg {
    max-width: 78%;
    width: fit-content;
    min-width: 0;
    box-sizing: border-box;
    padding: 9px 13px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    flex-shrink: 0;
    /* Отключаем все старые анимации из HTML */
    animation: none !important;
    opacity: 1 !important;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.msg--bot {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    border-bottom-left-radius: 4px;
    color: var(--text);
    margin-right: auto;
}

.msg--user {
    align-self: flex-end;
    background: linear-gradient(135deg, #5B6CF5, #7B8CFF);
    color: white;
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.msg--typing {
    align-self: flex-start;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    padding: 12px 16px;
    width: auto;
    max-width: fit-content;
    margin-right: auto;
}

/* Typing dots */
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: block;
    animation: typingBounce 1.2s ease-in-out infinite;
    font-style: normal;
}

.typing-dots i:nth-child(2) { animation-delay: 0.2s; }
.typing-dots i:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0);   opacity: 0.5; }
    30%            { transform: translateY(-5px); opacity: 1;   }
}

/* Поле ввода */
.chat__input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--dark-3);
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.chat__input span,
.chat__input input {
    flex: 1;
    min-width: 0;
    font-size: 11px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    cursor: default;
}

.chat__input button {
    background: var(--gradient);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone__glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(91,108,245,0.2) 0%, transparent 70%);
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.05); }
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.hero__scroll a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.hero__scroll a:hover { color: var(--primary-light); }

.scroll__arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(5px); }
}

/* ===========================
   PROBLEMS
=========================== */
.problems__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.problem__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.problem__card:hover::before { transform: scaleX(1); }
.problem__card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 108, 245, 0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.problem__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.problem__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.problem__card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.problem__loss {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.25);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.problems__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(91, 108, 245, 0.08);
    border: 1px solid rgba(91, 108, 245, 0.2);
    border-radius: var(--radius);
    padding: 24px 32px;
    flex-wrap: wrap;
}

.problems__cta-text {
    font-size: 17px;
    color: var(--text-light);
}
.problems__cta-text strong { color: var(--white); }

/* ===========================
   SOLUTIONS
=========================== */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.solution__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(91, 108, 245, 0.4);
}

.solution__img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.solution__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution__card:hover .solution__img img { transform: scale(1.08); }

.solution__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13,15,26,0.9));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.solution__overlay span { font-size: 32px; }

.solution__body { padding: 20px; }

.solution__body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.solution__list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.solution__list li {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===========================
   COMPARISON
=========================== */
.comparison__wrapper { overflow-x: auto; }

.comparison__table {
    min-width: 600px;
    border: 1px solid rgba(91, 108, 245, 0.25);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.comp__header,
.comp__row,
.comp__footer {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.comp__header {
    background: var(--dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comp__header .comp__cell {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.comp__header .comp__cell:last-child {
    border-right: none;
    background: rgba(91, 108, 245, 0.06);
    border-left: 1px solid rgba(91, 108, 245, 0.2);
}

.comp__row {
    border-top: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}

.comp__row:hover { background: rgba(255,255,255,0.025); }

.comp__footer {
    background: var(--dark-3);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.comp__footer .comp__cell {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
    justify-content: center;
}

.comp__footer .comp__cell:last-child {
    border-right: none;
    background: rgba(91, 108, 245, 0.06);
    border-left: 1px solid rgba(91, 108, 245, 0.2);
}

.comp__cell {
    padding: 18px 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.comp__cell:last-child { border-right: none; }

.comp__cell--label {
    color: var(--text-light);
    font-weight: 500;
}

.comp__cell--highlight {
    background: rgba(91, 108, 245, 0.06);
    color: var(--white);
    border-left: 1px solid rgba(91, 108, 245, 0.2);
    font-weight: 500;
}

.comp__cell--faq,
.comp__cell--ai {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.comp__cell--ai {
    background: rgba(91, 108, 245, 0.06);
    border-left: 1px solid rgba(91, 108, 245, 0.15);
}

.comp__badge {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.comp__badge--basic {
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
}

.comp__badge--pro {
    background: var(--gradient);
    color: white;
}

.comp__popular {
    font-size: 12px;
    color: var(--warning);
    font-weight: 600;
}

/* ===========================
   HOW IT WORKS
=========================== */
.howit__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.howit__step {
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 32px 0;
    position: relative;
}

.howit__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(91,108,245,0.5), rgba(0,212,170,0.5));
    margin-left: 39px;
}

.step__number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(91, 108, 245, 0.15);
    line-height: 1;
    text-align: center;
    padding-top: 4px;
    flex-shrink: 0;
}

.step__icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(91, 108, 245, 0.1);
    border: 1px solid rgba(91, 108, 245, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.howit__step:hover .step__icon-wrap {
    background: rgba(91, 108, 245, 0.2);
    transform: scale(1.05);
}

.step__icon { font-size: 32px; }

.step__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.step__content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.step__content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.step__content ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.step__content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.howit__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.howit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.howit__image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91,108,245,0.3), rgba(0,212,170,0.2));
}

.howit__image-overlay span {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 0 20px;
}

/* ===========================
   CASES
=========================== */
.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.case__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.case__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.case__img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case__card:hover .case__img img { transform: scale(1.06); }

.case__tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(13, 15, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.case__body { padding: 24px; }

.case__body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.case__body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.case__results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
}

.result { text-align: center; }

.result__num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result__text {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

.case__quote {
    background: rgba(91, 108, 245, 0.06);
    border-left: 3px solid var(--primary);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

.case__quote cite {
    display: block;
    font-style: normal;
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 6px;
}

/* ===========================
   PRICING
=========================== */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.price__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.price__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.price__card--popular {
    border-color: var(--primary);
    background: rgba(91, 108, 245, 0.07);
    transform: scale(1.03);
}

.price__card--popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.price__popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(91, 108, 245, 0.4);
}

.price__header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price__icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.price__header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.price__sub {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}

.price__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price__from {
    font-size: 14px;
    color: var(--text-muted);
}

.price__num {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price__cur {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-muted);
}

.price__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.price__features li {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price__features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.price__time {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}

.pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 181, 71, 0.07);
    border: 1px solid rgba(255, 181, 71, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.note__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.note__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.note__text strong { color: var(--white); }

/* ===========================
   TRUST / PROCESS
=========================== */
.trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.trust__process {
    min-width: 0;
    width: 100%;
}

.trust__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.process__steps {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.process__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding-bottom: 32px;
    position: relative;
    align-items: flex-start;
}

.process__step:last-child { padding-bottom: 0; }
.process__step:last-child .process__line { display: none; }

.process__dot {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(91, 108, 245, 0.4);
    z-index: 1;
}

.process__line {
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(91,108,245,0.1));
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
}

.process__info {
    padding-top: 8px;
    min-width: 0;
    width: 100%;
}

.process__info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    white-space: normal;
    word-break: normal;
}

.process__info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    max-width: 100%;
}

.process__time {
    display: inline-block;
    background: rgba(91, 108, 245, 0.1);
    border: 1px solid rgba(91, 108, 245, 0.2);
    color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.guarantee__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.guarantee__card:hover {
    border-color: rgba(91, 108, 245, 0.3);
    transform: translateX(4px);
}

.guarantee__icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(91, 108, 245, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee__card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.guarantee__card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===========================
   FAQ
=========================== */
.faq__wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.open {
    border-color: rgba(91, 108, 245, 0.35);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
    user-select: none;
}

.faq__question:hover { background: rgba(255,255,255,0.02); }

.faq__q-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq__num {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(91, 108, 245, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    flex-shrink: 0;
}

.faq__q-left span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

.faq__arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item.open .faq__arrow {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease;
    padding: 0 24px;
}

.faq__item.open .faq__answer {
    max-height: 300px;
    padding: 0 24px 22px;
}

.faq__answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 42px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.contact__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.contact__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -100px;
    left: -100px;
}

.contact__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: -100px;
    right: -100px;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact__perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 36px;
}

.contact__perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.perk__icon {
    width: 36px;
    height: 36px;
    background: rgba(91, 108, 245, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact__channels p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.channels__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
}

.channel__link--tg {
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.25);
    color: #29B6F6;
}
.channel__link--tg:hover {
    background: rgba(0, 136, 204, 0.2);
    transform: translateX(4px);
}

.channel__link--vb {
    background: rgba(122, 80, 184, 0.1);
    border: 1px solid rgba(122, 80, 184, 0.25);
    color: #B39DDB;
}
.channel__link--vb:hover {
    background: rgba(122, 80, 184, 0.2);
    transform: translateX(4px);
}

.channel__link--ph {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.25);
    color: var(--secondary);
}
.channel__link--ph:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateX(4px);
}

/* Form */
.contact__form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.form__header { margin-bottom: 28px; }

.form__header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.form__header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form__group { margin-bottom: 18px; }

.form__group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 14px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    resize: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: var(--text-muted);
}

.form__group select option {
    background: var(--dark-3);
    color: var(--white);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--primary);
    background: rgba(91, 108, 245, 0.05);
    box-shadow: 0 0 0 3px rgba(91, 108, 245, 0.1);
}

.form__group input.error,
.form__group select.error {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.form__privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

.form__privacy a {
    color: var(--primary-light);
    text-decoration: none;
}

.form__success {
    display: none;
    text-align: center;
    padding: 30px 20px;
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form__success.show { display: flex; }

.success__icon {
    font-size: 52px;
    margin-bottom: 8px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

.form__success h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.form__success p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 260px;
}

/* ===========================
   CONSULTANT BLOCK
=========================== */
.consultant-block {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.consultant-block__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, rgba(91,108,245,0.1), rgba(0,212,170,0.08));
    border: 1px solid rgba(91, 108, 245, 0.25);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    flex-wrap: wrap;
}

.consultant-block__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.consultant-block__icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: phoneFloat 4s ease-in-out infinite;
}

.consultant-block__text h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.consultant-block__text p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 70px 0 30px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 14px 0 22px;
    max-width: 280px;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.social__link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.social__link--tg {
    background: rgba(0, 136, 204, 0.1);
    color: #29B6F6;
}

.social__link--vb {
    background: rgba(122, 80, 184, 0.1);
    color: #B39DDB;
}

.social__link--ig {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.social__link:hover {
    transform: translateY(-3px);
    filter: brightness(1.3);
}

.footer__nav-group h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    width: fit-content;
}

.footer__nav a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
}

.footer__contact:hover { color: var(--text-light); }

.footer__contact span:first-child {
    flex-shrink: 0;
    font-size: 16px;
}

.footer__bottom {
    display: flex;
        align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer__legal a:hover { color: var(--primary-light); }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 14px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(91, 108, 245, 0.5);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(91, 108, 245, 0.6);
}

/* ===========================
   AOS ANIMATIONS
=========================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos="flip-left"]  { transform: perspective(600px) rotateY(-20deg); }

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
    .solutions__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .hero__visual { display: none; }
    .problems__grid { grid-template-columns: 1fr; }
    .cases__grid { grid-template-columns: 1fr; }
    .pricing__grid { grid-template-columns: 1fr; }
    .price__card--popular { transform: none; }
    .price__card--popular:hover { transform: translateY(-6px); }
    .trust__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .howit__step { grid-template-columns: 60px 60px 1fr; }
    .process__step { grid-template-columns: 44px 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        border-left: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 24px 40px;
        gap: 4px;
        z-index: 999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }


    .howit__image {
        width: 100%;
        overflow: hidden;
    }

    .howit__image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .nav.open { right: 0; }
    .nav__link { width: 100%; font-size: 16px; padding: 12px 16px; }
    .burger { display: flex; }

    .hero__stats { flex-wrap: wrap; gap: 16px; width: 100%; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .solutions__grid { grid-template-columns: 1fr; }

    .howit__step {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }
    .step__number { display: none; }

    .cases__grid { grid-template-columns: 1fr; }

    .consultant-block__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }
    .consultant-block__left { gap: 14px; }
    .consultant-block__icon { font-size: 36px; }
    .consultant-block__text h3 { font-size: 18px; }
    .consultant-block__text p { font-size: 14px; }
    .btn--consultant { width: 100%; justify-content: center; padding: 16px 24px; }

    .footer__top { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .contact__form-wrap { padding: 24px; }

    .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }

    .process__info p { font-size: 13px; }
    .comp__cell { padding: 14px 16px; font-size: 13px; }
    .comp__header .comp__cell,
    .comp__footer .comp__cell { padding: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 28px; }
    .section__title { font-size: 24px; }
    .comp__header,
    .comp__row,
    .comp__footer { grid-template-columns: 1.5fr 1fr 1fr; }
    .comp__cell { padding: 12px 14px; font-size: 12px; }
    .case__results { grid-template-columns: repeat(3, 1fr); }
}