/* ========== CSS VARIABLES ========== */
:root {
    --orange: #EF4137;
    --light-orange: #F47920;
    --amber: #DB8E39;
    --yellow: #FFC20E;
    --mint: #007C66;
    --purple: #6E3781;
    --bg: #FFFFFF;
    --bg2: #F4F4F4;
    --glass: rgba(0,0,0,0.04);
    --glass-border: rgba(0,0,0,0.10);
    --text: #1A1A1A;
    --text-muted: rgba(30,30,30,0.88);
    --grad1: linear-gradient(135deg, #EF4137, #F47920);
    --grad2: linear-gradient(135deg, #EF4137, #007C66);
    --grad3: linear-gradient(135deg, #007C66, #007C66);
    --grad-full: linear-gradient(135deg, #EF4137 0%, #F47920 30%, #FFC20E 60%, #007C66 100%);
    --r: 20px;
    --r2: 32px;
    --shadow: 0 24px 60px rgba(239,65,55,0.3);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--purple);
}

a {
    text-decoration: none;
    color: var(--mint);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f4f4f4; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ========== NOISE OVERLAY ========== */
body::before { display: none; }

/* ========== BLOBS / GLOW ========== */
.blob {
    position: absolute; border-radius: 50%;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    pointer-events: none; z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: rgba(0,124,102,0.35); top: -200px; right: -150px; }
.blob-2 { width: 400px; height: 400px; background: rgba(0,124,102,0.2); top: 300px; left: -100px; }
.blob-3 { width: 500px; height: 500px; background: rgba(239,65,55,0.15); bottom: -100px; right: 20%; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }
p { line-height: 1.75; color: var(--text-muted); }

.grad-text {
    background: var(--grad-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== LAYOUT ========== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ========== NAVIGATION ========== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
nav.scrolled { padding: 10px 24px; background: rgba(255,255,255,0.98); box-shadow: 0 2px 24px rgba(0,0,0,0.12); }

.nav-logo {
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.6rem;
    text-decoration: none;
    background: var(--grad-full);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex; align-items: center;
    gap: 10px;
}
@supports not (gap: 10px) {
    .nav-logo > * + * { margin-left: 10px; }
}

.nav-logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hamburger {
    width: 44px; height: 44px; background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px; display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; cursor: pointer; transition: all 0.3s; padding: 0;
}
@supports not (gap: 6px) {
    .hamburger span + span { margin-top: 6px; }
}
.hamburger:hover { background: rgba(0,124,102,0.2); border-color: var(--pink); }
.hamburger span {
    display: block; width: 22px; height: 2px; background: #1A1A1A;
    border-radius: 2px; transition: all 0.3s; transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-cta {
    display: flex; gap: 10px; align-items: center;
}
@supports not (gap: 10px) {
    .nav-cta > * + * { margin-left: 10px; }
}
@media(max-width: 600px) { .nav-cta { display: none; } }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
    z-index: 999;
    background: rgba(255,255,255,0.99);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    transform: translateX(-100%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
@supports not (gap: 8px) {
    .mobile-menu > * + * { margin-top: 8px; }
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
    list-style: none !important;
    margin: 0; padding: 0;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px;
}
@supports not (gap: 8px) {
    .mobile-menu ul > * + * { margin-top: 8px; }
}
.mobile-menu ul li {
    list-style: none !important;
    display: block; width: 100%; text-align: center;
}
.mobile-menu li::marker {
    content: '' !important;
}

.mobile-menu a,
.mobile-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700; text-decoration: none; color: #1A1A1A;
    padding: 14px 40px; border-radius: 16px; transition: all 0.3s;
    position: relative; overflow: hidden; display: inline-block;
}
.mobile-menu a::after,
.mobile-menu ul li a::after {
    content: ''; position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
    background: var(--grad1);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s; border-radius: 16px; z-index: -1;
}
.mobile-menu a:hover::after,
.mobile-menu ul li a:hover::after { transform: scaleX(1); }

.mobile-menu a:hover,
.mobile-menu ul li a:hover { color: #fff; }

.menu-close {
    position: absolute; top: 16px; right: 24px;
    font-size: 2rem; background: none; border: none;
    color: #1A1A1A; cursor: pointer;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; background: var(--glass); transition: all 0.3s;
}
.menu-close:hover { background: rgba(0,124,102,0.3); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; border: none; cursor: pointer; transition: all 0.3s;
    font-family: 'Montserrat', sans-serif; white-space: nowrap; text-align: center;
}
@supports not (gap: 8px) {
    .btn > * + * { margin-left: 8px; }
}
.btn-primary {
    background: linear-gradient(135deg, #EF4137 0%, #F47920 50%, #FFC20E 100%); color: #fff;
    box-shadow: 0 8px 32px rgba(239,65,55,0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 48px rgba(239,65,55,0.55); }
.btn-secondary {
    background: var(--glass); color: var(--text); border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--pink); transform: translateY(-2px); }
.btn-ghost {
    background: transparent; color: var(--text); border: 1px solid var(--glass-border); padding: 10px 20px; font-size: 0.875rem;
}
.btn-ghost:hover { background: var(--grad1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: var(--orange); }
.btn-max { background: linear-gradient(315deg, #aa60df, #1a3eeb); box-shadow: 0 8px 24px rgba(34,158,217,0.4); color: #fff; }
.btn-max:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(34,158,217,0.5); }
.btn-vk { background: linear-gradient(135deg, #4A76A8, #2787F5); box-shadow: 0 8px 24px rgba(39,135,245,0.4); color: #fff; }
.btn-vk:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(39,135,245,0.5); }
.btn-large { padding: 20px 44px; font-size: 1.1rem; }
.btn-cta { background: linear-gradient(135deg, #EF4137 0%, #F47920 50%, #FFC20E 100%); color: #fff; font-size: 1.1rem; padding: 20px 48px; border-radius: 50px; box-shadow: 0 12px 48px rgba(239,65,55,0.4); }
.btn-cta:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 64px rgba(239,65,55,0.55); }



/* ========== HERO ========== */
#home {
    min-height: 100vh; display: flex; align-items: center;
    padding: 100px 0 80px; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,124,102,0.12) 0%, transparent 70%);
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 720px;
    text-align: center;
    width: 100%;
}
@supports not (gap: 40px) {
    .hero-inner > * + * { margin-top: 40px; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
@supports not (gap: 24px) {
    .hero-content > * + * { margin-top: 24px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246, 191, 73, 0.1); border: 1px solid var(--yellow);
    margin: 0;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 18px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}
@supports not (gap: 8px) {
    .hero-badge > * + * { margin-left: 8px; }
}

.hero-badge p {
    color: var(--light-orange);
}

.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }

.hero-title { margin-bottom: 24px; }
.hero-title span { display: block; }

.hero-sub { font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }
@media(max-width: 900px) { .hero-sub { margin: 0; } }

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
@supports not (gap: 16px) {
    .hero-btns > * + * { margin-left: 16px; }
}

@media(max-width: 900px) { .hero-btns { justify-content: center; } }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
@supports not (gap: 32px) {
    .hero-stats > * + * { margin-left: 32px; }
}
@media(max-width: 900px) { .hero-stats { justify-content: center; } }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Hero Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-orb {
    width: 420px; height: 420px; border-radius: 50%;
    /* conic-gradient fallback для Safari < 12.1 */
    background: var(--grad-full);
    background: conic-gradient(from 0deg, #EF4137, #F47920, #FFC20E, #007C66, #007C66, #007C66, #EF4137);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    animation: spin 8s linear infinite; opacity: 0.85;
    position: relative;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-orb::after {
    content: ''; position: absolute;
    top: 20px; right: 20px; bottom: 20px; left: 20px; /* inset: 20px — Safari fix */
    border-radius: 50%;
    background: #ffffff;
    -webkit-filter: blur(0);
    filter: blur(0);
}
.hero-orb-center {
    position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(239,65,55,0.3), rgba(0,124,102,0.4), rgba(0,124,102,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-chips {
    position: absolute; width: 100%; height: 100%;
}
.chip {
    position: absolute; padding: 8px 16px; border-radius: 50px;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 0.75rem; font-weight: 600;
    white-space: nowrap; animation: float-chip 5s ease-in-out infinite;
}
.chip:nth-child(1) { top: 8%; left: 5%; animation-delay: 0s; border-color: rgba(239,65,55,0.4); color: var(--orange); }
.chip:nth-child(2) { top: 20%; right: 2%; animation-delay: 1s; border-color: rgba(0,124,102,0.4); color: var(--pink); }
.chip:nth-child(3) { bottom: 25%; left: 2%; animation-delay: 2s; border-color: rgba(0,124,102,0.4); color: var(--purple); }
.chip:nth-child(4) { bottom: 10%; right: 5%; animation-delay: 1.5s; border-color: rgba(0,124,102,0.4); color: var(--mint); }
.chip:nth-child(5) { top: 50%; right: -2%; animation-delay: 0.8s; border-color: rgba(255,194,14,0.4); color: var(--yellow); }
@keyframes float-chip { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@media(max-width: 900px) { .hero-orb, .hero-orb-center { width: 280px; height: 280px; } .hero-orb::after { top: 14px; right: 14px; bottom: 14px; left: 14px; } }



/* ========== SECTION HEADER ========== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; padding: 6px 18px; border-radius: 50px;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.78rem; color: var(--orange); font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ========== SERVICES SECTION ========== */
#services {
    padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(0,124,102,0.04) 50%, transparent);
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.services-grid svg { width: 40px; }

.service-card {
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--r2); padding: 36px 32px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.4s;
    position: relative; overflow: hidden; cursor: pointer;
    text-decoration: none; display: block;
    color: #007C66;
}
.service-card::before {
    content: ''; position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
    background: var(--grad2); opacity: 0; transition: opacity 0.4s; border-radius: var(--r2);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(0,124,102,0.5); box-shadow: 0 32px 80px rgba(0,124,102,0.35); }
.service-card:hover::before { opacity: 0.07; }
.service-icon {
    width: 60px; height: 60px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 24px; position: relative; z-index: 1;
    background: linear-gradient(135deg, rgba(0,124,102,.15), rgba(0,124,102,.15));
}

.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; position: relative; z-index: 1; }
.service-card p { font-size: 0.9rem; position: relative; z-index: 1; }
.service-link {
    display: inline-flex; align-items: center;
    gap: 6px;
    margin-top: 20px; font-size: 0.85rem; color: var(--orange); font-weight: 600;
    text-decoration: none; position: relative; z-index: 1; transition: gap 0.3s;
}
@supports not (gap: 6px) {
    .service-link > * + * { margin-left: 6px; }
}
.service-card:hover .service-link { gap: 12px; }

/* ========== ABOUT ========== */
#about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }

.about-visual {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-card {
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--r); padding: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}
.about-card svg { width: 35px; }

.about-card:hover { transform: scale(1.03); }
.about-card:nth-child(2) { margin-top: 0; }
.about-card:nth-child(4) { margin-top: 0; }
.about-card-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.about-card p { font-size: 0.82rem; }

.about-content .section-tag { text-align: left; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 20px; }
.about-content { width: 100%; }

.advantages-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
@supports not (gap: 40px) {
    .advantages-wrapper > * + * { margin-left: 40px; }
}

.advantages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-top: 0;
}
@supports not (gap: 12px) {
    .advantages-list > * + * { margin-top: 12px; }
}

.adv-item {
    border-radius: var(--r);
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.03);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    overflow: hidden;
}

.adv-item:hover { border-color: rgba(0,124,102,0.4); }
.adv-item.active { border-color: var(--mint); background: rgba(0,124,102,0.05); }

.adv-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 0.9rem;
    width: 100%;
}
@supports not (gap: 14px) {
    .adv-row > * + * { margin-left: 14px; }
}

.adv-icon { flex-shrink: 0; }
.adv-icon svg { width: 30px; }

/* Мобильная картинка */
.adv-image-mobile {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.adv-image-mobile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0 0 var(--r) var(--r);
    display: block;
}

/* Десктопная панель */
.adv-image-desktop {
    flex: 1;
    flex-shrink: 0;
    border-radius: var(--r2);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.03);
    min-height: 320px;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.adv-image-desktop.visible {
    opacity: 1;
    transform: translateX(0);
}
.adv-image-desktop img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
    transition: opacity 0.3s ease;
}
.adv-image-desktop img.img-hidden { opacity: 0; }
.adv-image-desktop img.img-shown { opacity: 1; }

/* Мобильная версия */
@media(max-width: 768px) {
    .advantages-wrapper { flex-direction: column; gap: 0; }
    .adv-image-desktop { display: none; }
    .adv-item.active .adv-image-mobile { max-height: 260px; }
}

@media(min-width: 769px) {
    .adv-image-mobile { display: none; }
}

/* ========== TEAM ========== */
#team { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(0,124,102,0.04) 50%, transparent); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.team-card {
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--r2); overflow: hidden; transition: all 0.4s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,124,102,0.2); }

/* aspect-ratio fallback для Safari < 15 */
.team-photo {
    width: 100%;
    padding-top: 100%; /* fallback */
    position: relative;
    font-size: 5rem;
    overflow: hidden;
}
/* Современные браузеры перекрывают padding-top */
@supports (aspect-ratio: 1) {
    .team-photo {
        padding-top: 0;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.team-photo-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
}
.team-photo-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
/* В современных браузерах убираем absolute-позиционирование эмодзи */
@supports (aspect-ratio: 1) {
    .team-photo-emoji {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
}

.team-info { padding: 24px; }
.team-info h3 { font-size: 1rem; margin-bottom: 6px; }
.team-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 0.82rem; }

/* ========== PORTFOLIO / SLIDER ========== */
#portfolio { padding: 100px 0; overflow: hidden; }
.slider-wrap { position: relative; overflow: hidden; }
.slider-track {
    display: flex; gap: 24px;
    animation: slide 25s linear infinite;
    width: -webkit-max-content;
    width: max-content;
}
.slider-track:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.slider-item {
    width: 340px; height: 240px; border-radius: var(--r2);
    flex-shrink: 0; position: relative; overflow: hidden;
    border: 1px solid var(--glass-border); cursor: pointer;
    transition: transform 0.3s;
    margin-top: 10px;
}
.slider-item:hover { transform: scale(1.04); }
.slider-item-bg {
    position: absolute; top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}
.slider-item-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px;
    font-size: 0.85rem; font-weight: 600;
}
.slider-item-tag {
    position: absolute; top: 16px; right: 16px;
    background: var(--mint); border: 1px solid rgba(0,0,0,0.08);
    padding: 4px 12px; border-radius: 50px; font-size: 0.72rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.slider-fade-l, .slider-fade-r {
    position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.slider-fade-l { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.slider-fade-r { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.slider-item {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transform: translateZ(0);
}

.slider-item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slider-item-tag,
.slider-item-label {
    color: white;
    z-index: 3;
}

/* ========== NEURO UNIVERSE ========== */
#neuro { padding: 100px 0; }
.neuro-inner {
    background: transparent; border: none;
    border-radius: 40px; padding: 60px;
    position: relative; overflow: hidden;
}
.neuro-inner::before { display: none; }
.neuro-grid { display: block; }
.neuro-tech-list svg { width: 35px; }
.neuro-tech-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
@media(max-width: 900px) { .neuro-tech-list { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 500px) { .neuro-tech-list { grid-template-columns: 1fr; } }
.tech-pill {
    padding: 20px 24px; border-radius: var(--r);
    border: 1px solid var(--glass-border); background: rgba(255,255,255,0.04);
    display: flex; align-items: center;
    gap: 16px;
    transition: all 0.3s; cursor: default;
}
@supports not (gap: 16px) {
    .tech-pill > * + * { margin-left: 16px; }
}
.tech-pill:hover { border-color: var(--mint); }
.tech-pill-icon { font-size: 1.5rem; flex-shrink: 0; }
.tech-pill-name { font-size: 0.85rem; font-weight: 600; }
.tech-pill-cat { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }


/* ========== CTA SECTION ========== */
#cta { padding: 100px 0; }
.cta-box {
    background: linear-gradient(135deg, #EF4137 0%, #F47920 50%, #FFC20E 100%); border-radius: 40px; padding: 80px 60px;
    text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute;
    top: 0; right: 0; bottom: 0; left: 0; /* inset: 0 — Safari fix */
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 70%);
}
.cta-box h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 40px; font-size: 1.1rem; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
@supports not (gap: 16px) {
    .cta-btns > * + * { margin-left: 16px; }
}
.btn-white { background: #fff; color: var(--mint); font-weight: 700; }
.btn-white:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
@media(max-width: 700px) { .cta-box { padding: 48px 24px; } }

/* ========== PAGES / SECTIONS ========== */
.page-section { display: none; }
.page-section.active { display: block; }

/* ========== BRIEF FORM ========== */
#brief { padding: 100px 0; }
.form-wrap {
    max-width: 720px; margin: 0 auto;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 40px; padding: 56px 48px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
@media(max-width: 600px) { .form-wrap { padding: 32px 20px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
@supports not (gap: 8px) {
    .form-group > * + * { margin-top: 8px; }
}
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
    background: #f8f8f8; border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px; padding: 14px 18px; color: var(--text);
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    transition: all 0.3s; outline: none;
    /* Safari убирает дефолтные стили у select и input */
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mint); background: rgba(0,124,102,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #f4f4f4; }
.form-error { font-size: 0.78rem; color: var(--pink); display: none; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--pink); }
.form-group.has-error .form-error { display: block; }
.form-submit { text-align: center; margin-top: 32px; }
.form-success {
    display: none; text-align: center; padding: 32px;
    background: rgba(0,124,102,0.1); border: 1px solid rgba(0,124,102,0.3);
    border-radius: 20px; margin-top: 24px;
}
.form-success h3 { color: var(--mint); margin-bottom: 8px; }

/* === BRIEF FORM === */

/* Прогресс */
.form-progress { padding: 20px 48px 0; display: flex; gap: 4px; }
.prog-bar { height: 3px; border-radius: 3px; flex: 1; background: var(--glass-border); transition: background .4s; }
.prog-bar.done { background: var(--grad1); }

/* Секционные заголовки */
.form-section { padding: 0 48px 28px; }
.form-section-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 48px; margin: 0 -48px 24px;
  border-bottom: 1px solid var(--glass-border);
}
.section-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.s1 .section-num { background: rgba(239,65,55,.1); color: var(--orange); border: 1px solid rgba(239,65,55,.3); }
.s2 .section-num { background: rgba(0,124,102,.1); color: var(--mint); border: 1px solid rgba(0,124,102,.3); }
.s3 .section-num { background: rgba(110,55,129,.1); color: var(--purple); border: 1px solid rgba(110,55,129,.3); }
.section-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.s1 .section-title { color: var(--orange); }
.s2 .section-title { color: var(--mint); }
.s3 .section-title { color: var(--purple); }

/* Счётчик символов */
.char-hint { font-size: .75rem; color: var(--text-muted); text-align: right; margin-top: 3px; }
.char-hint.ok  { color: var(--mint); }
.char-hint.bad { color: var(--orange); }

/* Ошибки */
.form-error { font-size: .78rem; color: var(--orange); display: none; margin-top: 2px; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error .custom-select-trigger,
.form-group.has-error .multiselect-trigger { border-color: var(--orange) !important; }
.form-group.has-error .form-error { display: block; }
label .req { color: var(--orange); margin-left: 2px; }

/* Кастомный single-select */
.custom-select { position: relative; }
.custom-select-trigger {
  display: flex; align-items: center; justify-content: space-between;
  background: #f8f8f8; border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px; padding: 14px 18px; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: .95rem; color: var(--text-muted);
  transition: all .3s; user-select: none; -webkit-appearance: none; appearance: none;
}
.custom-select-trigger.selected { color: var(--text); }
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger { border-color: var(--mint); background: rgba(0,124,102,.06); }
.select-arrow { transition: transform .2s; flex-shrink: 0; color: var(--text-muted); }
.custom-select.open .select-arrow { transform: rotate(180deg); }
.custom-select-dropdown {
  position: absolute; z-index: 100; top: calc(100% + 5px); left: 0; right: 0;
  background: #fff; border: 1px solid rgba(0,124,102,.3);
  border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.12);
  overflow: hidden; display: none; animation: dropIn .15s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.custom-select.open .custom-select-dropdown { display: block; }
.select-option { padding: 11px 18px; cursor: pointer; font-size: .9rem; transition: background .2s; color: var(--text); }
.select-option:hover { background: rgba(0,124,102,.07); }
.select-option.active { color: var(--mint); font-weight: 600; }

/* Мультиселект */
.multiselect { position: relative; }
.multiselect-trigger {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
  background: #f8f8f8; border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px; padding: 12px 18px; cursor: pointer; min-height: 48px;
  font-family: 'Montserrat', sans-serif; font-size: .95rem;
  transition: all .3s; user-select: none;
}
.multiselect-trigger:hover,
.multiselect.open .multiselect-trigger { border-color: var(--mint); background: rgba(0,124,102,.06); }
.multiselect-tags { display: flex; flex-wrap: wrap; gap: 5px; flex: 1; }
.ms-placeholder { color: var(--text-muted); font-size: .9rem; opacity: .7; line-height: 1.6; }
.ms-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,124,102,.1); border: 1px solid rgba(0,124,102,.25);
  border-radius: 50px; padding: 2px 10px;
  font-size: .76rem; font-weight: 600; color: var(--mint); white-space: nowrap;
}
.ms-tag-remove { cursor: pointer; opacity: .6; transition: opacity .15s; line-height: 1; }
.ms-tag-remove:hover { opacity: 1; }
.ms-arrow { flex-shrink: 0; transition: transform .2s; color: var(--text-muted); margin-top: 4px; }
.multiselect.open .ms-arrow { transform: rotate(180deg); }
.multiselect-dropdown {
  position: absolute; z-index: 100; top: calc(100% + 5px); left: 0; right: 0;
  background: #fff; border: 1px solid rgba(0,124,102,.3);
  border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.12);
  overflow: auto; max-height: 240px; display: none; animation: dropIn .15s ease;
}
.multiselect.open .multiselect-dropdown { display: block; }
.ms-option { display: flex; align-items: center; gap: 10px; padding: 10px 18px; cursor: pointer; font-size: .9rem; transition: background .2s; color: var(--text); }
.ms-option:hover { background: rgba(0,124,102,.06); }
.ms-option.checked { background: rgba(0,124,102,.04); }
.ms-checkbox {
  width: 16px; height: 16px; border: 1.5px solid rgba(0,0,0,.2);
  border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.ms-option.checked .ms-checkbox { background: var(--mint); border-color: var(--mint); }
.ms-check-icon { display: none; color: #fff; font-size: .65rem; }
.ms-option.checked .ms-check-icon { display: block; }

/* Экран успеха */
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,124,102,.12); border: 2px solid rgba(0,124,102,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
}

/* Мобильная адаптация */
@media(max-width: 600px) {
  .form-section { padding: 0 20px 20px; }
  .form-section-header { padding: 16px 20px; margin: 0 -20px 18px; }
  .form-progress { padding: 14px 20px 0; }
}

/* ===== FIX MULTISELECT MOBILE + SAFARI ===== */

.multiselect-trigger {
  align-items: flex-start;
  flex-wrap: nowrap;
  min-width: 0;
}

.multiselect-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.76rem;
  line-height: 1.2;
  box-sizing: border-box;
}

.ms-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

/* КРЕСТИК — фикс для Safari */
.ms-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* Убираем странные клики на iOS */
.ms-tag-remove:active {
  transform: scale(0.9);
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .multiselect-trigger {
    padding: 10px 14px;
  }

  .ms-tag {
    max-width: 100%;
  }

  .ms-tag span {
    max-width: 100px;
  }
}

.custom-select-trigger,
.multiselect-trigger {
  -webkit-user-select: none;
  user-select: none;
}

/* ========== CONTACTS ========== */
#contacts { padding: 100px 0; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media(max-width: 800px) { .contacts-grid { grid-template-columns: 1fr; } }
.contact-item {
    display: flex; align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    text-decoration: none; color: var(--text);
}
@supports not (gap: 18px) {
    .contact-item > * + * { margin-left: 18px; }
}
.contact-item:hover { border-color: var(--mint); transform: translateY(-3px); }
.contact-icon { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--glass); display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 30px; }
.contact-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-value { font-weight: 600; }
.map-placeholder {
    border-radius: 24px; overflow: hidden; height: 320px;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; flex-direction: column;
    gap: 16px;
    grid-column: 1 / -1;
}
@supports not (gap: 16px) {
    .map-placeholder > * + * { margin-top: 16px; }
}
.map-placeholder p { font-size: 0.9rem; color: var(--text-muted); }
.map-placeholder a { color: var(--orange); text-decoration: none; font-weight: 600; }
.map-placeholder a:hover { text-decoration: underline; }

/* ========== FOOTER ========== */
footer {
    padding: 60px 0 32px; border-top: 1px solid var(--glass-border);
    position: relative;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media(max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 260px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: var(--text-muted); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
@supports not (gap: 10px) {
    .footer-col ul > * + * { margin-top: 10px; }
}
.footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
@supports not (gap: 16px) {
    .footer-bottom > * + * { margin-left: 16px; }
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
@supports not (gap: 12px) {
    .social-links > * + * { margin-left: 12px; }
}
.social-link {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none; transition: all 0.3s;
}
.social-link svg { width: 25px; }
.social-link:hover { background: linear-gradient(135deg, rgba(0,124,102,.15), rgba(0,124,102,.15)); }

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.2s; }
.reveal-delay-4 { transition-delay: 0.2s; }
.reveal-delay-5 { transition-delay: 0.2s; }

/* ========== PAGE TRANSITIONS ========== */
main { position: relative; }
.page { opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; }
.page.visible { opacity: 1; transform: none; }

/* ========== RESPONSIVE ========== */
@media(max-width: 768px) {
    #home { padding: 80px 0 60px; background: none; }
    .hero-chips { display: none; }
    .blob { display: none; }

    .hero-inner { align-items: center; text-align: center; }

    .hero-title {
        font-size: clamp(1.8rem, 7.5vw, 3rem);
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-title span[style*="white-space"] {
        white-space: normal !important;
    }

    .hero-sub {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .hero-sub { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 16px; }

    .services-grid { grid-template-columns: 1fr; }

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

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

    .page-hero { padding: 100px 0 48px; }
    .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    .services-detail-grid { grid-template-columns: 1fr; padding: 32px 0; }

    .neuro-inner { padding: 32px 24px; }
    .neuro-tech-list { grid-template-columns: 1fr 1fr; }

    .cta-box { padding: 48px 24px; }
    .cta-btns { flex-direction: column; align-items: center; }

    .slider-track { gap: 12px; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.polytic p a { display: none; }

@media(max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .hero-btns .btn { width: auto; min-width: 240px; max-width: 320px; justify-content: center; }

    .about-visual { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .neuro-tech-list { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; }

    .cta-box h2 { font-size: 1.4rem; }
    .btn-cta { font-size: 0.95rem; padding: 16px 28px;}

    .page-hero { padding: 90px 0 40px; }
    .page-hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); }

    .section-header h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

    .hero-badge p { font-size: 0.8rem; }
}


/* ========== INTERNAL PAGES ========== */
.page-hero {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,124,102,0.15) 0%, transparent 70%);
    text-align: center;
}
.page-hero p { max-width: 600px; margin: 20px auto 0; font-size: 1.1rem; }

.services-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; padding: 60px 0; align-items: stretch; }
.service-detail-card {
    background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--r2); padding: 40px 32px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.4s;
    display: flex; flex-direction: column; justify-content: space-between;
}

.service-detail-card a.btn {
    margin-top: 28px;
    display: inline-flex;
    width: -webkit-fit-content;
    width: fit-content;
}

.service-detail-card:hover { transform: translateY(-6px); border-color: var(--mint); }
.service-detail-card h3 { margin-bottom: 16px; }
.service-detail-card p {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-detail-card svg { width: 40px; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
@supports not (gap: 8px) {
    .service-features > * + * { margin-top: 8px; }
}
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
@supports not (gap: 10px) {
    .service-features li > * + * { margin-left: 10px; }
}
.service-features li::before { content: '→'; color: var(--orange); flex-shrink: 0; }

/* Additional utility */
.divider { width: 60px; height: 4px; border-radius: 2px; background: var(--grad1); margin: 24px auto; }
.mt-8 { margin-top: 32px; }
.text-center { text-align: center; }