/* ========================================
   PIXEL PERFECT LANDING - AUTO FROM ASIA
   Strict visual matching to reference screenshots
   ======================================== */

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* STRICT Colors from reference */
    --dark-blue: #0a192f;
    --orange: #f26b1d;
    --orange-hover: #d85a15;
    --white: #ffffff;
    --gray-bg: #f0f2f5;
    --gray-text: #64748b;
    --surface-elevated: #fafbfd;
    --trust-icon-bg: linear-gradient(152deg, #f3f6fa 0%, #e8eef6 100%);
    
    /* Radii */
    --radius-card: 15px;
    --radius-button: 10px;
    
    /* Shadows */
    --shadow-soft: 0 2px 15px rgba(0,0,0,0.06);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-premium: 0 18px 50px rgba(10, 25, 47, 0.1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   SECTION 1: HERO
   ======================================== */
.section-hero {
    background: url('images/фон_первого_экрана.png') center center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 0;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,25,47,0.85) 0%, rgba(242,107,29,0.15) 50%, rgba(10,25,47,0.9) 100%);
    z-index: 0;
}

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

/* Header - Dark Bar */
.header {
    background: linear-gradient(180deg, #0b1f3d 0%, var(--dark-blue) 100%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header--premium {
    backdrop-filter: blur(8px);
    overflow-x: clip;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.header__contacts {
    display: flex;
    gap: 24px;
}

.header__phone,
.header__email {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    text-align: center;
    padding: 28px 24px 0;
}

.hero-content > .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.3;
}

.dot-separator {
    color: var(--orange);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn--primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242,107,29,0.3);
}

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

/* Hero trust strip + CTA (premium) */
.hero-bottom-bar {
    margin-top: auto;
    width: 100%;
    background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 55%);
    border-top: 1px solid rgba(10, 25, 47, 0.07);
    box-shadow: 0 -16px 48px rgba(10, 25, 47, 0.08);
    padding: 0 0 8px;
}

.hero-trust {
    padding: 36px 24px 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto 32px;
}

.trust-divider {
    display: none;
    width: 1px;
    height: 76px;
    justify-self: center;
    background: linear-gradient(
        180deg,
        rgba(10, 25, 47, 0) 0%,
        rgba(242, 107, 29, 0.45) 22%,
        rgba(10, 25, 47, 0.14) 50%,
        rgba(242, 107, 29, 0.45) 78%,
        rgba(10, 25, 47, 0) 100%
    );
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .trust-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: 0;
    }

    .trust-divider {
        display: block;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 16px;
    min-height: 0;
}

.trust-item__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--trust-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 8px 20px rgba(10, 25, 47, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.trust-item__icon {
    width: 42px;
    height: 42px;
    color: var(--dark-blue);
}

.trust-item__icon--premium {
    width: 46px;
    height: 46px;
}

.trust-item__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-blue);
    line-height: 1.4;
    max-width: 148px;
    margin: 0 auto;
}

.btn--hero-cta {
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #ff8f4a 0%, var(--orange) 28%, #e85f12 100%);
    box-shadow:
        0 10px 28px rgba(242, 107, 29, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.btn--hero-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 14px 36px rgba(242, 107, 29, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn--hero-cta:focus-visible {
    outline: 2px solid var(--dark-blue);
    outline-offset: 3px;
}

/* Legacy hero bar classes (unused) */
.benefits-fullwidth {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
}

.benefit-item-fw {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    flex: 1;
    justify-content: center;
}

.btn--hero-fw {
    width: 100%;
    max-width: 1200px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
    background: var(--orange);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--hero-fw:hover {
    background: var(--orange-hover);
    transform: none;
    box-shadow: none;
}

/* CTA Section */
.section-cta {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn--outline {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

/* Hero Benefits Bar (White strip at bottom) */
.hero-benefits {
    background: var(--white);
    padding: 24px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.benefits-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefit-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-bar-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-bar-item__text {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
}

/* ========================================
   SECTION 2: ABOUT US
   ======================================== */
.section-about {
    background: var(--white);
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-blue);
    line-height: 1.4;
}

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

.about-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-card__image {
    height: 200px;
    overflow: hidden;
}

.about-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card__body {
    padding: 20px;
}

.about-card__body p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
    margin: 0;
}

/* Dark card */
.about-card--dark {
    background: var(--dark-blue);
}

.about-card--dark .about-card__body {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 10px;
}

.about-stats-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.about-stat-icon {
    font-size: 20px;
}

/* ========================================
   SECTION 3: REVIEWS
   ======================================== */
.section-reviews {
    background: var(--gray-bg);
    padding: 60px 0;
}

.reviews-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.review-side-photo {
    flex: 0 0 280px;
    height: 200px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-center {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Message Bubble */
.message-bubble {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--orange);
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--white);
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: translateX(-50%) rotate(45deg);
}

.message-bubble__text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--dark-blue);
    text-align: center;
    font-style: italic;
}

.review-author {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
}

/* Happy Clients Bar */
.happy-clients-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-card);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.happy-clients-icon svg {
    stroke: var(--orange);
}

.happy-clients-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-blue);
}

/* ========================================
   ABOUT V2 - Compact 3 cards
   ======================================== */
.about-grid--compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.about-card-v2 {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
    transition: transform 0.3s ease;
}

.about-card-v2:hover {
    transform: translateY(-5px);
}

.about-card-v2__image {
    height: 220px;
    overflow: hidden;
}

.about-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card-v2__body {
    padding: 20px;
}

.about-card-v2__body p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--gray-text);
    margin: 0;
}

/* Dark card with orange checks */
.about-card-v2--dark {
    background: var(--dark-blue);
}

.about-card-v2--dark .about-card-v2__body {
    padding: 25px;
    height: 100%;
}

.about-card-v2__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.3;
}

.about-check-icon {
    color: var(--orange);
    font-weight: 800;
    font-size: 16px;
}

/* About full text */
.about-full-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.about-highlight {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 1.3;
}

/* ========================================
   REVIEWS V2 - Photos + Cloud + 100+
   ======================================== */
.reviews-layout-v2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.review-side-photo-v2 {
    flex: 0 0 300px;
    height: 220px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.review-side-photo-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-center-v2 {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-bubble-v2 {
    background: var(--white);
    padding: 35px 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--orange);
}

.message-bubble-v2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    border-right: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    transform: translateX(-50%) rotate(45deg);
}

.message-bubble-v2__text {
    font-size: 17px;
    line-height: 1.5;
    color: var(--dark-blue);
    text-align: center;
    font-style: italic;
    font-weight: 500;
}

.review-author-v2 {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-text);
}

/* 100+ Block */
.happy-clients-v2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 50px;
}

.happy-clients-v2__number {
    font-size: 72px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.happy-clients-v2__text {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.3;
}

/* Reviews grid v2 */
.reviews-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card-v2 {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.review-card-v2__content p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark-blue);
    font-style: italic;
    margin-bottom: 15px;
}

.review-card-v2__author {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
}

/* ========================================
   LEAD FORM (main page) — шапка брендом, форма отдельным «языком»
   ======================================== */
.section-lead {
    position: relative;
    padding: 0 0 clamp(40px, 7vw, 72px);
    background: #e8ecf3;
    border-top: 1px solid rgba(10, 25, 47, 0.06);
    overflow-x: hidden;
}

/* Иначе под full-bleed фото остаётся полоса цвета фона секции (#e8ecf3) */
.section-lead--people3-wrap {
    padding-bottom: 0;
}

.section-lead__top {
    position: relative;
    padding: clamp(2.25rem, 7vw, 3.75rem) 0 clamp(2.75rem, 8vw, 4rem);
    background: linear-gradient(145deg, #050f1f 0%, #0a1f3d 42%, #0d2648 78%, #123252 100%);
    overflow: hidden;
}

.section-lead__top::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(85vw, 640px);
    height: 200%;
    background: radial-gradient(ellipse 70% 50% at 70% 40%, rgba(242, 107, 29, 0.42) 0%, rgba(242, 107, 29, 0.12) 38%, transparent 62%);
    pointer-events: none;
}

.section-lead__top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(242, 107, 29, 0.35) 28%, rgba(242, 107, 29, 0.2) 55%, var(--dark-blue) 100%);
    opacity: 0.95;
}

.section-lead__top-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-lead__title {
    font-size: clamp(1.4rem, 3.8vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 0.5rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.section-lead__subtitle {
    font-size: 0.98rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

/* people3: фото на всю ширину, полная высота кадра без crop; форма поверх */
.section-lead__split--people3 {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 0;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    background-color: var(--dark-blue);
}

.section-lead__split--people3 .about-glass-screen__media {
    position: relative;
    z-index: 0;
    width: 100%;
    flex: 0 0 auto;
    display: block;
    line-height: 0;
}

.section-lead__split--people3 .about-glass-screen__img {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.section-lead__split--people3::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.12) 45%,
        rgba(10, 25, 47, 0.18) 100%
    );
    pointer-events: none;
}

.section-lead__split-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Форма поверх фото; высота ряда = высота изображения (или min 100dvh) */
.section-lead__split--people3 .section-lead__split-inner.container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 56px max(8px, env(safe-area-inset-right, 8px)) 56px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100%;
    box-sizing: border-box;
    pointer-events: none;
    /* сдвиг всего слоя — надёжнее, чем transform на flex-ребёнке */
    transform: translateY(-clamp(1.75rem, 5vmin, 4rem));
}

@media (min-width: 769px) {
    .section-lead__split--people3 .section-lead__split-inner.container {
        max-width: min(100%, 1640px);
        padding-left: clamp(40px, 11vw, 220px);
        padding-right: max(clamp(40px, 9vw, 120px), env(safe-area-inset-right, 0px));
    }
}

.section-lead__form-col {
    min-width: 0;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: 0;
}

/* Блок с people3: форма правее (меньше padding-right на десктопе), шире и выше */
.section-lead__split--people3 .section-lead__form-col {
    max-width: 572px;
    pointer-events: auto;
}

.section-lead__split--people3 .lead-form {
    padding: clamp(2.35rem, 5vw, 3.1rem) clamp(1.65rem, 4.6vw, 2.5rem) clamp(2.35rem, 4.9vw, 2.95rem);
}

.section-lead__split--people3 .lead-form__field {
    margin-bottom: 1.42rem;
}

.section-lead__split--people3 .lead-form__field:last-of-type {
    margin-bottom: 1.58rem;
}

.section-lead__split--people3 .lead-form__textarea {
    min-height: 132px;
}

.lead-form {
    max-width: none;
    margin: 0;
    padding: clamp(2rem, 4.5vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem) clamp(2.1rem, 4vw, 2.6rem);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: var(--white);
    box-shadow:
        0 1px 2px rgba(10, 25, 47, 0.04),
        0 12px 40px rgba(10, 25, 47, 0.08),
        0 32px 64px rgba(10, 25, 47, 0.06);
    position: relative;
    overflow: hidden;
}

/* Тонкая линия бренда сверху карточки */
.lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--orange) 52%, #ff9a56 100%);
    opacity: 0.95;
}

.lead-form__field {
    margin-bottom: 1.35rem;
}

.lead-form__field:last-of-type {
    margin-bottom: 1.5rem;
}

.lead-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.lead-form__optional {
    font-weight: 500;
    color: var(--gray-text);
    font-size: 0.72rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.lead-form__input,
.lead-form__select,
.lead-form__textarea {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--dark-blue);
    background: #f0f3f9;
    border: 1px solid rgba(10, 25, 47, 0.07);
    border-radius: 12px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form__input::placeholder,
.lead-form__textarea::placeholder {
    color: rgba(100, 116, 139, 0.8);
}

.lead-form__input:hover,
.lead-form__select:hover,
.lead-form__textarea:hover {
    background: #ebeef5;
}

.lead-form__input:focus,
.lead-form__select:focus,
.lead-form__textarea:focus {
    border-color: rgba(242, 107, 29, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(242, 107, 29, 0.12);
}

.lead-form__textarea {
    min-height: 112px;
    resize: vertical;
    line-height: 1.55;
}

.lead-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230a192f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #f0f3f9;
    padding-right: 44px;
    cursor: pointer;
    color: var(--dark-blue);
}

.lead-form__select:focus,
.lead-form__select:hover {
    background-color: var(--white);
}

.lead-form__select option {
    background: var(--white);
    color: var(--dark-blue);
}

.lead-form__phone {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 12px;
    border: 1px solid rgba(10, 25, 47, 0.07);
    background: #f0f3f9;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form__phone:hover {
    background: #ebeef5;
}

.lead-form__phone:focus-within {
    border-color: rgba(242, 107, 29, 0.55);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(242, 107, 29, 0.12);
}

.lead-form__phone-prefix {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 0 14px 0 16px;
    background: rgba(10, 25, 47, 0.05);
    border-right: 1px solid rgba(10, 25, 47, 0.07);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.lead-form__flag {
    width: 22px;
    height: 16px;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(10, 25, 47, 0.1);
    background: linear-gradient(
        180deg,
        #fff 0%,
        #fff 33.33%,
        #0039a6 33.33%,
        #0039a6 66.66%,
        #d52b1e 66.66%,
        #d52b1e 100%
    );
}

.lead-form__input--phone {
    border: none;
    border-radius: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
    padding: 13px 14px 13px 12px;
    box-shadow: none;
}

.lead-form__input--phone:focus {
    box-shadow: none;
}

.lead-form__phone:focus-within .lead-form__input--phone {
    background: transparent;
}

.lead-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

.lead-form__row .lead-form__field {
    margin-bottom: 1.35rem;
}

.lead-form__submit {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0.35rem auto 0;
    padding: 15px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: linear-gradient(180deg, #ff8f4a 0%, var(--orange) 32%, #e85f12 100%);
    box-shadow:
        0 8px 24px rgba(242, 107, 29, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lead-form__submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 12px 32px rgba(242, 107, 29, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lead-form__submit:active {
    transform: translateY(0);
}

.lead-form__submit:focus-visible {
    outline: 2px solid var(--dark-blue);
    outline-offset: 3px;
}

.lead-form__hint {
    margin: 1.1rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-text);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .section-lead__split-inner {
        justify-content: center;
    }

    .section-lead__form-col {
        max-width: 480px;
    }

    .section-lead__split--people3 .section-lead__form-col {
        max-width: min(572px, 92vw);
    }

    .section-lead__split--people3 {
        left: 50%;
        width: 100vw;
        margin-left: -50vw;
        min-height: 100dvh;
        min-height: 100svh;
    }

    .section-lead__split--people3 .section-lead__split-inner.container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

@media (max-width: 520px) {
    .lead-form__row {
        grid-template-columns: 1fr;
    }

    .lead-form__phone-prefix {
        padding: 0 12px 0 14px;
    }

    .section-lead__split--people3 {
        left: 50%;
        width: 100vw;
        margin-left: -50vw;
    }

    .section-lead__split--people3 .section-lead__split-inner.container {
        padding-left: max(14px, env(safe-area-inset-left));
        padding-right: max(14px, env(safe-area-inset-right));
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark-blue);
    padding: 30px 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav__link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--white);
}

.nav__link--contact {
    background: var(--orange);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white) !important;
}

/* ========================================
   QUICK ABOUT SECTION (Main page)
   ======================================== */
.section-quick-about {
    background: var(--white);
    padding: 80px 0;
}

.quick-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quick-about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.quick-about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.btn--outline {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn--outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.quick-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quick-stat {
    text-align: center;
    padding: 30px;
    background: var(--gray-bg);
    border-radius: var(--radius-card);
}

.quick-stat__number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px;
}

.quick-stat__label {
    font-size: 14px;
    color: var(--gray-text);
}

/* ========================================
   QUICK REVIEWS SECTION (Main page)
   ======================================== */
.section-quick-reviews {
    background: var(--gray-bg);
    padding: 80px 0;
}

.quick-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.quick-review {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.quick-review p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-style: italic;
}

.quick-review__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
}

.quick-reviews-cta {
    text-align: center;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.section-about-page {
    background: var(--white);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text-block {
    max-width: 600px;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.about-highlight {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 18px;
}

.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-photo-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    display: block;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-blue);
    background: var(--white);
}

/* Why Us Block */
.why-us-block {
    background: var(--gray-bg);
    padding: 50px;
    border-radius: var(--radius-card);
    margin-bottom: 60px;
}

.why-us-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark-blue);
}

.why-us-check {
    color: var(--orange);
    font-size: 18px;
}

.about-list-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 30px 0 15px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--gray-text);
}

.about-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* History Block */
.about-history {
    background: var(--gray-bg);
    padding: 50px;
    border-radius: var(--radius-card);
}

.history-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.history-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 30px 0 20px;
}

.history-list {
    list-style: none;
    padding: 0;
}

.history-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--gray-text);
}

.history-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ========================================
   REVIEWS PAGE
   ======================================== */
.section-reviews-page {
    background: var(--gray-bg);
    padding: 80px 0;
}

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card-full {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card__avatar {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.review-card__info {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 16px;
}

.review-card__car {
    font-size: 14px;
    color: var(--gray-text);
}

.review-card__content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-blue);
    font-style: italic;
    margin-bottom: 15px;
}

.review-card__rating {
    color: var(--orange);
    font-size: 18px;
}

/* Happy Clients Banner */
.happy-clients-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.happy-clients__number {
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
}

.happy-clients__text {
    font-size: 20px;
    color: var(--dark-blue);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 40px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav__link {
        font-size: 13px;
    }
    
    .car-placeholder {
        width: 150px;
        height: 75px;
    }
    
    .car-red {
        width: 165px;
        height: 82px;
    }
    
    .quick-about-content {
        grid-template-columns: 1fr;
    }
    
    .quick-reviews-grid,
    .reviews-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-photos {
        order: -1;
    }
    
    .why-us-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero-cars {
        flex-direction: column;
        align-items: center;
    }
    
    .car-placeholder {
        width: 180px;
        height: 90px;
    }
    
    .benefits-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .benefit-bar-item {
        flex: 0 0 45%;
    }
    
    .quick-about-stats {
        grid-template-columns: 1fr;
    }
    
    .quick-reviews-grid,
    .reviews-grid-full {
        grid-template-columns: 1fr;
    }
    
    .about-photos {
        grid-template-columns: 1fr;
    }
    
    .why-us-list {
        grid-template-columns: 1fr;
    }
    
    .why-us-block,
    .about-history {
        padding: 30px 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ========================================
   Layout refresh: brand header, about, reviews, footer
   ======================================== */
.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-link--footer {
    justify-content: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--white);
}

.header__inner {
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.header__tagline {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    text-align: right;
    max-width: 320px;
    line-height: 1.35;
}

.footer__bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.footer-brand {
    text-decoration: none;
}

.footer__line {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer__sep {
    opacity: 0.55;
    margin: 0 10px;
}

.footer__telegram {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.footer__telegram:hover {
    color: var(--orange);
    text-decoration: underline;
}

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

/* Logo: stripes converge (premium entrance + hover) */
.logo-svg {
    display: block;
    overflow: visible;
}

.logo-svg__bar {
    will-change: transform;
}

.logo-svg:not(.logo-svg--footer) .logo-svg__bar--from-top {
    animation: logoStripeFromTop 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    transform-origin: 50% 45%;
}

.logo-svg:not(.logo-svg--footer) .logo-svg__bar--from-bottom {
    animation: logoStripeFromBottom 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    transform-origin: 50% 55%;
}

.logo-svg--footer .logo-svg__bar--from-top,
.logo-svg--footer .logo-svg__bar--from-bottom {
    animation-duration: 0.85s;
    animation-delay: 0.05s;
}

@keyframes logoStripeFromTop {
    0% {
        transform: translateY(-11px);
        opacity: 0.75;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes logoStripeFromBottom {
    0% {
        transform: translateY(11px);
        opacity: 0.75;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-link:hover .logo-svg:not(.logo-svg--footer) .logo-svg__bar--from-top {
    animation: logoStripeHoverTop 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.logo-link:hover .logo-svg:not(.logo-svg--footer) .logo-svg__bar--from-bottom {
    animation: logoStripeHoverBottom 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes logoStripeHoverTop {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes logoStripeHoverBottom {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

.logo-link:hover .logo-mark {
    filter: drop-shadow(0 0 10px rgba(242, 107, 29, 0.35));
}

@media (prefers-reduced-motion: reduce) {
    .logo-svg__bar--from-top,
    .logo-svg__bar--from-bottom {
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .logo-link:hover .logo-mark {
        filter: none;
    }
}

/* About: title → photo row → readable article */
.container--split {
    max-width: 1140px;
}

.about-hero {
    padding: 40px 0 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #f1f4f9 100%);
}

.about-hero__head {
    text-align: center;
    padding-bottom: 36px;
    max-width: 40rem;
    margin: 0 auto;
}

.about-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 14px;
}

.about-hero__title {
    font-size: clamp(34px, 4.5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark-blue);
    margin: 0 0 14px;
    line-height: 1.12;
}

.about-hero__lead {
    font-size: 17px;
    font-weight: 500;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

.about-photo-row-wrap {
    padding: 8px 0 44px;
}

.about-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2.5vw, 22px);
    align-items: stretch;
}

.about-photo-row__fig {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: #e2e8f0;
}

.about-photo-row__fig img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 380px;
    object-fit: cover;
    aspect-ratio: 16 / 11;
    display: block;
}

.about-article__title {
    font-size: clamp(1.2rem, 2.1vw, 1.42rem);
    font-weight: 700;
    line-height: 1.42;
    color: var(--dark-blue);
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.about-prose--readable {
    font-size: 1.0625rem;
    line-height: 1.88;
    color: #3d4a5c;
}

.about-prose--readable p {
    margin-bottom: 1.15em;
}

.about-prose--readable p:last-child {
    margin-bottom: 0;
}

/* About page (editorial layout) */
.page-about {
    background: #f7f8fa;
}

.page-about--glass {
    background: var(--dark-blue);
}

.about-glass-screen {
    position: relative;
    min-height: 100vh;
    min-height: max(100vh, 800px);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.about-glass-screen + .about-glass-screen {
    margin-top: 0;
}

.about-section-divider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 3vw, 28px);
    width: 100%;
    min-height: 52px;
    padding: 12px 24px;
    background: linear-gradient(
        180deg,
        rgba(5, 12, 24, 0.98) 0%,
        var(--dark-blue) 42%,
        rgba(5, 12, 24, 0.98) 100%
    );
    border-top: 1px solid rgba(242, 107, 29, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-section-divider__wing {
    flex: 1;
    height: 2px;
    max-width: min(200px, 32vw);
    border-radius: 1px;
}

.about-section-divider__wing--left {
    background: linear-gradient(90deg, transparent 0%, rgba(242, 107, 29, 0.85) 100%);
}

.about-section-divider__wing--right {
    background: linear-gradient(270deg, transparent 0%, rgba(242, 107, 29, 0.85) 100%);
}

.about-section-divider__accent {
    display: block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border: 2px solid var(--orange);
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 18px rgba(242, 107, 29, 0.45);
}

.about-glass-screen__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-blue);
    overflow: hidden;
}

.about-glass-screen__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    user-select: none;
    pointer-events: none;
}

.about-glass-screen__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px max(8px, env(safe-area-inset-right, 8px)) 56px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: max(100vh, 800px);
}

@media (min-width: 769px) {
    .about-glass-screen__img {
        object-position: 28% 50%;
    }

    .about-glass-screen__inner {
        max-width: min(100%, 1480px);
        padding-left: clamp(40px, 11vw, 220px);
        padding-right: clamp(24px, 3.8vw, 64px);
    }
}

.about-glass-panel {
    width: 100%;
    max-width: min(92vw, 780px);
    margin-left: auto;
    padding: 44px 46px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(150deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.82) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.75),
        0 2px 18px rgba(0, 0, 0, 0.45);
}

.about-glass-panel p,
.about-glass-panel li {
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.72;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 2px 14px rgba(0, 0, 0, 0.4);
}

.about-glass-panel p {
    margin: 0 0 1rem;
}

.about-glass-panel strong {
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 12px rgba(0, 0, 0, 0.4);
}

.about-glass-panel__h1 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.1rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-glass-panel__title {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 1.25rem;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.55),
        0 3px 18px rgba(0, 0, 0, 0.4);
}

.about-glass-panel__title--history {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.about-glass-panel__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.35rem 0 0.75rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-glass-panel__subhead {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.98);
    margin: 1.35rem 0 0.75rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 12px rgba(0, 0, 0, 0.38);
}

.about-glass-panel__accent {
    font-weight: 700;
    margin-top: 1.15rem;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 14px rgba(0, 0, 0, 0.4);
}

.about-glass-list {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
}

.about-glass-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.15rem;
    margin: 0;
    border: none;
}

.about-glass-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.about-glass-list--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 1rem;
}

@media (max-width: 520px) {
    .about-glass-list--compact {
        grid-template-columns: 1fr;
    }
}

.about-main {
    padding: 0 0 80px;
}

.about-main.about-main--glass {
    padding: 0;
}

.container--wide {
    max-width: 1120px;
}

.container--article {
    max-width: 680px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.about-main__page-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark-blue);
    margin: 0;
    padding: 40px 24px 28px;
}

.about-chapter {
    padding-bottom: 48px;
}

.about-chapter--history {
    padding-top: 8px;
    background: linear-gradient(180deg, #eef1f5 0%, #f7f8fa 100%);
    padding-bottom: 64px;
}

.about-chapter__photo {
    margin: 0 auto 36px;
    padding: 0 24px;
    max-width: 1120px;
}

.about-chapter__photo img {
    width: 100%;
    height: auto;
    max-height: min(480px, 70vw);
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-premium);
}

.about-chapter__text {
    padding-bottom: 8px;
}

.about-chapter__title {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.38;
    color: var(--dark-blue);
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.about-chapter__subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 28px 0 14px;
    line-height: 1.35;
}

.about-chapter__checklist {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.about-chapter__checklist li {
    position: relative;
    padding: 10px 0 10px 4px;
    border-bottom: 1px solid rgba(10, 25, 47, 0.07);
    font-size: 1.02rem;
    line-height: 1.55;
    color: #3d4a5c;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-chapter__checklist li:last-child {
    border-bottom: 0;
}

.about-history-list--chapter {
    margin: 12px 0 28px;
}

.about-intro {
    text-align: center;
    padding: 48px 24px 32px;
}

.about-intro__title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark-blue);
    margin: 0 0 12px;
}

.about-intro__hint {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-text);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.about-photos-band {
    padding: 0 0 48px;
}

.about-photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 28px);
}

.about-photo-pair__fig {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(10, 25, 47, 0.04),
        0 20px 50px rgba(10, 25, 47, 0.1);
    background: var(--white);
}

.about-photo-pair__fig img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.about-block {
    margin-bottom: 40px;
}

.about-block--lead {
    padding-top: 8px;
}

.about-block--pick {
    margin-bottom: 32px;
}

.about-block__h {
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 20px;
    color: var(--dark-blue);
}

.about-block__h--sm {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

.about-prose p {
    margin: 0 0 18px;
    color: #4a5568;
    line-height: 1.82;
    font-size: 1.02rem;
}

.about-prose--tight {
    margin-bottom: 28px;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-features__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(10, 25, 47, 0.07);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.45;
    box-shadow: 0 2px 8px rgba(10, 25, 47, 0.04);
}

.about-features__check {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1.3;
}

.about-tags--polished {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-tags--polished li {
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    background: linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
    border: 1px solid rgba(10, 25, 47, 0.1);
    box-shadow: 0 1px 2px rgba(10, 25, 47, 0.06);
}

.about-emphasis {
    font-weight: 600 !important;
    color: var(--dark-blue) !important;
    font-size: 1.08rem !important;
    margin-top: 12px !important;
    line-height: 1.55 !important;
}

.about-history-wrap {
    margin-top: 24px;
    padding: 56px 0 0;
    border-top: 1px solid rgba(10, 25, 47, 0.08);
    background: linear-gradient(180deg, #eef1f5 0%, #f7f8fa 32%, #f7f8fa 100%);
}

.about-history-wrap .about-block__h {
    text-align: center;
    margin-bottom: 28px;
}

.about-history-wrap .about-prose {
    margin-bottom: 8px;
}

.about-history-callout {
    margin: 32px 0 28px;
    padding: 28px 28px 8px;
    background: var(--white);
    border-radius: 18px;
    border-left: 4px solid var(--orange);
    box-shadow: 0 12px 40px rgba(10, 25, 47, 0.08);
}

.about-history-callout__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--dark-blue);
    margin: 0 0 16px;
}

.about-history-list {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
}

.about-history-list li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: #4a5568;
    line-height: 1.65;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(10, 25, 47, 0.06);
}

.about-history-list li:last-child {
    border-bottom: 0;
}

.about-history-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 1.15em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(242, 107, 29, 0.2);
}

/* Reviews page */
.page-reviews {
    background: #eef1f5;
}

.reviews-hero {
    background: var(--white);
    padding: 44px 24px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(10, 25, 47, 0.06);
}

.reviews-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 12px;
}

.reviews-hero__title {
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.reviews-hero__sub {
    margin: 0;
    font-size: 15px;
    color: var(--gray-text);
    font-weight: 500;
}

.reviews-board {
    padding: 40px 0 56px;
}

.reviews-showcase {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 40px;
}

.reviews-frame {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews-frame__inner {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow:
        0 4px 6px rgba(10, 25, 47, 0.05),
        0 18px 44px rgba(10, 25, 47, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.reviews-frame__inner img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    display: block;
}

.reviews-frame__cap {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-text);
    text-align: center;
    margin: 0;
}

.reviews-spotlight {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(10, 25, 47, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.reviews-spotlight__media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 15%, rgba(242, 107, 29, 0.2) 0%, transparent 52%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(168deg, #071021 0%, #0f2744 42%, #0a192f 100%);
}

.reviews-spotlight__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(10, 25, 47, 0.91) 0%,
        rgba(10, 25, 47, 0.78) 45%,
        rgba(10, 25, 47, 0.94) 100%
    );
}

.reviews-spotlight__veil::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 40% 30%, rgba(242, 107, 29, 0.22), transparent 60%);
    pointer-events: none;
}

.reviews-spotlight__content {
    position: relative;
    z-index: 2;
    margin: 22px;
    padding: 28px 26px 30px;
    width: calc(100% - 44px);
    max-width: 320px;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 18px;
    border: 2px solid rgba(242, 107, 29, 0.45);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.reviews-spotlight__brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.reviews-spotlight__price {
    font-size: 0.98rem;
    color: var(--gray-text);
    margin: 0 0 8px;
    line-height: 1.45;
}

.reviews-spotlight__delivery {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}

.reviews-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px 0;
}

.reviews-trust__icon {
    color: var(--dark-blue);
    opacity: 0.9;
}

.reviews-trust__text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dark-blue);
}

@media (max-width: 1024px) {
    .benefits-fullwidth {
        flex-wrap: wrap;
        row-gap: 16px;
        padding: 18px 12px;
    }

    .benefit-item-fw {
        flex: 1 1 40%;
        min-width: 140px;
    }

    .benefit-divider {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 14px;
        margin-bottom: 28px;
    }

    .trust-item__icon-wrap {
        width: 64px;
        height: 64px;
    }

    .trust-item__icon {
        width: 36px;
        height: 36px;
    }

    .trust-item__icon--premium {
        width: 40px;
        height: 40px;
    }

    .about-photo-row {
        grid-template-columns: 1fr;
    }

    .about-photo-row__fig img {
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .reviews-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reviews-spotlight {
        order: -1;
        min-height: 280px;
    }

    .reviews-frame__inner img {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .about-photo-pair {
        grid-template-columns: 1fr;
    }

    .about-intro {
        padding-top: 32px;
    }

    .reviews-spotlight__content {
        padding: 22px 20px;
    }
}

/* ========================================
   HEAVY PREMIUM — logo master / trust / about / reviews
   ======================================== */

.logo-link--master {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 10px;
    text-decoration: none;
    isolation: isolate;
    font-size: 17px;
}

.logo-sticks {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
}

.logo-link--master .logo-line {
    display: block;
    width: 2px;
    height: 1.35em;
    min-height: 22px;
    flex-shrink: 0;
    align-self: center;
    border-radius: 1px;
    will-change: transform, opacity;
    transform: skewX(-22deg);
    transform-origin: center center;
}

.logo-line--gray {
    background: #94a3b8;
    animation: logoStickGrayDown 0.88s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-line--orange {
    background: #f26b1d;
    animation: logoStickOrangeUp 0.88s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoStickGrayDown {
    from {
        opacity: 0;
        transform: skewX(-22deg) translateY(-2.25em);
    }
    to {
        opacity: 1;
        transform: skewX(-22deg) translateY(0);
    }
}

@keyframes logoStickOrangeUp {
    from {
        opacity: 0;
        transform: skewX(-22deg) translateY(2.25em);
    }
    to {
        opacity: 1;
        transform: skewX(-22deg) translateY(0);
    }
}

.logo-link--master .logo-text {
    position: relative;
    z-index: 2;
    font-size: 1em;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: logoTextDiagonalReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

@keyframes logoTextDiagonalReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-link--footer {
    text-decoration: none;
}

.logo-link--footer .logo-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--white);
    text-shadow: none;
}

.hero-bottom-bar--overlap {
    margin-top: 0;
    z-index: 5;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding-top: 0;
    background: var(--white);
    border-top: 1px solid rgba(10, 25, 47, 0.1);
    border-bottom: 1px solid rgba(10, 25, 47, 0.1);
    box-shadow: none;
}

.hero-bottom-bar--overlap .hero-trust {
    padding: 22px 20px 26px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.trust-item__icon-wrap--lucide {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(152deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid rgba(10, 25, 47, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 10px 28px rgba(10, 25, 47, 0.07);
}

.trust-lucide {
    color: var(--dark-blue);
}

.trust-item__label {
    font-size: 10px;
    letter-spacing: 0.11em;
}

/* About — 12-col mosaic */
.about-kicker {
    text-align: left;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark-blue);
    padding: 28px 24px 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.container--grid12 {
    max-width: 1200px;
    padding: 0 20px;
}

.about-main--grid {
    padding-bottom: 40px;
}

.about-mosaic {
    padding: 20px 0 36px;
}

.about-mosaic--history {
    background: linear-gradient(180deg, #eceff4 0%, #f7f8fa 100%);
    padding: 28px 0 48px;
}

.about-mosaic__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px 18px;
    align-items: start;
}

.about-mosaic__heading {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
    margin: 0 0 6px;
    max-width: 22ch;
}

.about-mosaic__heading--sub {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: none;
}

.about-mosaic__photo {
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.12);
}

.about-mosaic__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 260px;
    max-height: 440px;
}

.about-mosaic__photo--a {
    grid-column: 1 / span 7;
    grid-row: 2;
}

.about-mosaic__copy {
    grid-column: 6 / -1;
    grid-row: 2;
    padding: 0 0 8px 8px;
}

.about-mosaic__grid--flip .about-mosaic__heading {
    grid-row: 1;
}

.about-mosaic__grid--flip .about-mosaic__photo--solo,
.about-mosaic__grid--flip .about-mosaic__copy--wide {
    grid-row: 2;
}

.about-hit {
    font-weight: 300;
    font-size: 0.98rem;
    line-height: 1.68;
    color: #334155;
    margin: 0 0 0.9rem;
}

.about-hit strong {
    font-weight: 700;
    color: var(--dark-blue);
}

.about-hit--accent {
    font-weight: 700;
    color: var(--dark-blue);
    margin-top: 1rem;
}

.about-mosaic__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dark-blue);
    margin: 1.35rem 0 0.65rem;
}

.about-mosaic__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #334155;
}

.about-mosaic__list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.06);
}

.about-mosaic__list li:last-child {
    border-bottom: 0;
}

.about-tags--inline {
    margin-bottom: 1rem;
}

.about-mosaic__list--dots li {
    padding-left: 14px;
    position: relative;
    border: 0;
}

.about-mosaic__list--dots li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.about-mosaic__grid--flip .about-mosaic__photo--solo {
    grid-column: 6 / span 7;
    grid-row: 2;
}

.about-mosaic__grid--flip .about-mosaic__copy--wide {
    grid-column: 1 / span 6;
    grid-row: 2;
    padding: 0 12px 8px 0;
}

/* Reviews — эталон: боковые фото + огромный бабл */
.reviews-hero--tight {
    padding: 20px 24px 12px;
}

.reviews-hero--tight .reviews-hero__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.reviews-board--ref {
    padding: 12px 0 18px;
}

.reviews-showcase--ref {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 1.35fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.reviews-side {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 25, 47, 0.12);
}

.reviews-side img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.reviews-bubble-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.reviews-bubble {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: 28px;
    padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 40px);
    border: 3px solid var(--orange);
    box-shadow:
        0 28px 70px rgba(10, 25, 47, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    text-align: center;
}

.reviews-bubble__model {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.reviews-bubble__deal {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: #475569;
    margin: 0 0 10px;
    line-height: 1.4;
}

.reviews-bubble__delivery {
    font-size: clamp(1.2rem, 2.3vw, 1.55rem);
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}

.reviews-trust--tight {
    padding: 10px 12px 0;
}

/* ——— Галерея отзывов (manifest + модальное окно) ——— */
.reviews-gallery-section {
    padding: 28px 0 56px;
    background: linear-gradient(180deg, #eef1f5 0%, #e4e9f0 100%);
    border-top: 1px solid rgba(10, 25, 47, 0.06);
}

.reviews-gallery-heading {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 800;
    color: var(--dark-blue);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.reviews-gallery-lead {
    margin: 0 0 24px;
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.5;
    max-width: 42rem;
}

.reviews-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: clamp(18px, 3vw, 26px);
}

.reviews-gallery-error {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(10, 25, 47, 0.08);
    box-shadow: 0 8px 28px rgba(10, 25, 47, 0.08);
    display: flex;
    flex-direction: column;
}

.review-card__zoom {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: #0a1525;
    cursor: zoom-in;
    position: relative;
    line-height: 0;
}

.review-card__thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.review-card__media-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card__play-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.75);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.review-card__caption {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    padding: 14px 16px 8px;
    line-height: 1.35;
}

.review-card__chat {
    padding: 0 16px 16px;
    font-size: 12px;
    line-height: 1.45;
    color: #334155;
    font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
}

.review-card__tg-line {
    margin: 0 0 6px;
    word-break: break-word;
}

.review-card__tg-line--client {
    color: #0f172a;
}

.review-card__tg-line--team {
    color: #2563eb;
    padding-left: 8px;
    border-left: 3px solid rgba(242, 107, 29, 0.55);
}

@media (max-width: 1024px) {
    .reviews-gallery .review-card__thumb {
        aspect-ratio: auto;
        min-height: 200px;
        max-height: min(62vw, 460px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0c1525;
    }

    .reviews-gallery .review-card__media-el {
        width: 100%;
        height: auto;
        max-height: min(62vw, 460px);
        object-fit: contain;
        object-position: center center;
    }
}

body.review-lightbox-open {
    overflow: hidden;
}

.review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

.review-lightbox[hidden] {
    display: none;
}

.review-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.88);
    backdrop-filter: blur(6px);
}

.review-lightbox__shell {
    position: relative;
    z-index: 1;
    width: min(96vw, 1400px);
    max-height: min(92vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox__stage {
    max-width: 100%;
    max-height: min(92vh, 900px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox__img,
.review-lightbox__video {
    max-width: 100%;
    max-height: min(92vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.review-lightbox__video {
    background: #000;
}

.review-lightbox__close {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.review-lightbox__close:hover {
    background: #fff;
}

.review-lightbox__fs {
    position: absolute;
    top: -4px;
    right: 52px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-blue);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .review-lightbox__shell {
        width: 100%;
        padding: 0 8px;
    }

    .review-lightbox__close {
        top: max(8px, env(safe-area-inset-top));
        right: max(8px, env(safe-area-inset-right));
    }

    .review-lightbox__fs {
        top: max(8px, env(safe-area-inset-top));
        right: calc(max(8px, env(safe-area-inset-right)) + 52px);
    }
}

@media (max-width: 1024px) {
    .about-mosaic__photo--a,
    .about-mosaic__copy,
    .about-mosaic__grid--flip .about-mosaic__photo--solo,
    .about-mosaic__grid--flip .about-mosaic__copy--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 0;
    }

    .about-mosaic__photo--a {
        order: 1;
    }

    .about-mosaic__copy {
        order: 2;
    }

    .about-mosaic__grid--flip .about-mosaic__photo--solo {
        order: 1;
    }

    .about-mosaic__grid--flip .about-mosaic__copy--wide {
        order: 2;
    }

    .reviews-showcase--ref {
        grid-template-columns: 1fr;
    }

    .reviews-bubble-wrap {
        order: -1;
    }
}

/* ========================================
   MOBILE PREMIUM (≤768px) — не затрагивает десктоп
   ======================================== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .header {
        padding: 12px 0 max(12px, env(safe-area-inset-top));
    }

    .header__inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .header__right {
        align-items: center;
        width: 100%;
    }

    .header__tagline {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        max-width: 22rem;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 12px;
        width: 100%;
        max-width: 100%;
    }

    .nav__link {
        font-size: 12px;
        padding: 4px 2px;
    }

    .nav__link--contact {
        padding: 8px 16px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
    }

    .logo-link--master {
        font-size: clamp(14px, 3.8vw, 16px);
        padding: 8px 6px;
        gap: 10px;
        justify-content: center;
    }

    .logo-sticks {
        gap: 5px;
    }

    .section-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 16px max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
    }

    .hero__title {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
        line-height: 1.18;
        padding: 0 4px;
    }

    .hero__subtitle {
        flex-direction: column;
        gap: 6px;
        font-size: 15px;
        padding: 0 8px;
    }

    .dot-separator {
        display: none;
    }

    .hero-bottom-bar--overlap {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-bottom-bar--overlap .hero-trust {
        padding: 20px max(14px, env(safe-area-inset-left)) 22px max(14px, env(safe-area-inset-right));
        max-width: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
        margin-bottom: 18px;
    }

    .trust-item {
        gap: 10px;
    }

    .trust-item__icon-wrap--lucide {
        width: 52px;
        height: 52px;
    }

    .hero-bottom-bar .trust-lucide {
        width: 44px;
        height: 44px;
    }

    .trust-item__label {
        font-size: clamp(10px, 2.85vw, 12px);
        letter-spacing: 0.06em;
        line-height: 1.35;
        max-width: 100%;
    }

    .btn--hero-cta {
        padding: 16px 22px;
        font-size: 13px;
        letter-spacing: 0.1em;
        border-radius: 12px;
        max-width: none;
    }

    .footer {
        padding: 24px 0 max(28px, env(safe-area-inset-bottom));
    }

    .page-about--glass {
        overflow-x: hidden;
    }

    .about-glass-screen {
        min-height: auto;
    }

    .about-glass-screen__inner {
        justify-content: flex-start;
        align-items: stretch;
        min-height: auto;
        padding: 28px max(14px, env(safe-area-inset-left)) 36px max(14px, env(safe-area-inset-right));
        max-width: none;
    }

    .about-glass-screen__media {
        background: #050b14;
        align-items: center;
        justify-content: center;
        padding: max(8px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) 0 max(10px, env(safe-area-inset-left));
    }

    .about-glass-screen__img {
        position: relative;
        width: auto;
        max-width: 100%;
        height: auto;
        min-height: 0;
        max-height: min(68vh, 620px);
        object-fit: contain;
        object-position: center center;
        margin: 0 auto;
    }

    .section-lead__split--people3 .about-glass-screen__media {
        position: relative;
        height: auto;
    }

    .section-lead__split--people3 .about-glass-screen__img {
        position: relative;
        object-fit: unset;
        min-height: 0;
        width: 100%;
        height: auto;
    }

    .section-lead__split--people3 {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
    }

    .section-lead__split--people3 .section-lead__split-inner.container {
        justify-content: center;
        align-items: stretch;
        min-height: 100%;
        padding: 28px max(14px, env(safe-area-inset-left)) 36px max(14px, env(safe-area-inset-right));
        max-width: none;
        transform: translateY(-0.5rem);
    }

    .about-glass-panel {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .about-glass-panel p,
    .about-glass-panel li {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .about-glass-panel__title {
        font-size: clamp(1.05rem, 4.2vw, 1.35rem);
    }

    .about-glass-panel__title--history {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .about-section-divider {
        min-height: 44px;
        padding: 10px 16px;
        gap: 12px;
    }

    .about-section-divider__wing {
        max-width: min(120px, 26vw);
        height: 2px;
    }

    .about-section-divider__accent {
        width: 9px;
        height: 9px;
    }

    .reviews-hero--tight {
        padding: 18px 16px 10px;
    }

    .reviews-hero__title {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        line-height: 1.2;
    }

    .reviews-board--ref {
        padding: 8px 0 16px;
    }

    .reviews-showcase--ref {
        gap: 16px;
        margin-bottom: 12px;
    }

    .reviews-side {
        background: #0a1220;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
    }

    .reviews-side img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: min(52vh, 380px);
        object-fit: contain;
        object-position: center center;
        border-radius: 14px;
    }

    .reviews-bubble {
        padding: clamp(22px, 5vw, 32px) clamp(18px, 4vw, 28px);
        border-radius: 22px;
    }

    .reviews-bubble__model {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .reviews-trust--tight {
        padding: 8px 8px 0;
    }

    .reviews-trust__text {
        font-size: 1rem;
        text-align: center;
    }

    .reviews-gallery-section {
        padding: 22px 0 max(40px, env(safe-area-inset-bottom));
    }

    .reviews-gallery-lead {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .reviews-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-gallery .review-card__thumb {
        aspect-ratio: auto;
        min-height: 200px;
        max-height: min(72vw, 440px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #0c1525;
    }

    .reviews-gallery .review-card__media-el {
        width: 100%;
        height: auto;
        max-height: min(72vw, 440px);
        object-fit: contain;
        object-position: center center;
    }

    .review-card__caption {
        font-size: 0.95rem;
        padding: 12px 14px 6px;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .review-card__chat {
        padding: 0 14px 14px;
        font-size: 12.5px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .review-card__tg-line {
        word-break: break-word;
    }

    .review-lightbox__img,
    .review-lightbox__video {
        max-height: min(88vh, 900px);
        width: 100%;
        max-width: 100%;
    }

    .footer__line {
        max-width: 100%;
        padding: 0 4px;
        line-height: 1.45;
        word-wrap: break-word;
    }

    .about-chapter__photo {
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .about-chapter__photo img {
        object-fit: contain;
        max-height: min(68vh, 520px);
        width: 100%;
        height: auto;
    }

    .section-lead__title {
        padding: 0 4px;
    }

    .section-lead__subtitle {
        padding: 0 8px;
        font-size: 0.94rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        gap: 12px 8px;
    }

    .trust-item__label {
        font-size: clamp(9px, 2.65vw, 11px);
        letter-spacing: 0.05em;
        max-width: none;
    }

    .about-glass-panel {
        padding: 22px 16px;
    }

    .reviews-showcase--ref .reviews-side img {
        min-height: 0;
        max-height: min(48vh, 320px);
    }

    .reviews-gallery .review-card__thumb {
        min-height: 180px;
        max-height: min(78vw, 400px);
    }

    .reviews-gallery .review-card__media-el {
        max-height: min(78vw, 400px);
    }

    .hero__subtitle {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .hero-bottom-bar--overlap {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-line--gray,
    .logo-line--orange {
        animation: none !important;
        transform: skewX(-22deg) !important;
        opacity: 1 !important;
    }

    .logo-link--master .logo-text {
        animation: none !important;
        opacity: 1 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }
}
