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

:root {
    /* === Bone & ink palette — soft blue + muted rose accents === */
    --primary: #5B92D6;          /* muted soft blue (голубой) */
    --primary-light: #F2F0EA;    /* warm off-white surface */
    --primary-hover: #4178BC;
    --accent: #E89595;           /* muted light red (приглушённый светлый) */
    --accent-warm: #D77979;
    --dark: #0E0E0F;             /* near-black — primary heading colour */
    --text: #2A2826;             /* body text */
    --text-light: #76746F;       /* muted body */
    --bg: #FAFAF7;               /* warm off-white page bg */
    --bg-gray: #F2F0EA;          /* tonal alt surface */
    --bg-dark: #0E0E0F;          /* for dark zones (hero, footer) */
    --card-bg: #FFFFFF;
    --card-border: rgba(14, 14, 15, 0.09);
    --card-border-strong: rgba(14, 14, 15, 0.20);
    --icon-bg: rgba(91, 146, 214, 0.10);
    --border: transparent;
    --border-subtle: rgba(14, 14, 15, 0.08);
    --hairline: rgba(14, 14, 15, 0.10);
    --hairline-dark: rgba(244, 241, 234, 0.12);

    /* Type system */
    --font-display: 'Unbounded', 'PT Sans', sans-serif;
    --font-body: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

    --radius: 12px;
    --radius-lg: 24px;
    --radius-pill: 200px;
    --shadow: 0 4px 24px rgba(14,14,15,0.06);
    --shadow-lg: 0 18px 48px rgba(14,14,15,0.12);
    --transition: 0.25s ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.section-tag::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.section-subtitle {
    font-family: var(--font-body);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.55;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(91, 146, 214, 0.35);
}

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

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px;
}

.btn--full {
    width: 100%;
}

.btn--white {
    background: #fff;
    color: var(--primary);
}

.btn--white:hover {
    background: var(--primary-light);
    box-shadow: 0 4px 12px rgba(255,255,255,0.25);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hairline);
    transition: box-shadow var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.logo__icon {
    display: flex;
    align-items: center;
}

.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    margin-right: 2px;
    /* emoji renders via system colour fonts */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.nav__link:hover {
    color: var(--primary);
}

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

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 24px 32px;
    gap: 0;
    background: var(--bg);
    z-index: 99;
    overflow-y: auto;
    border-top: 1px solid var(--hairline);
    animation: mobileMenuIn 0.22s ease;
}

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

@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.015em;
    padding: 18px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--transition);
}

.mobile-menu__link::after {
    content: "↗";
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    opacity: 0.4;
    transition: opacity var(--transition), transform var(--transition);
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
    color: var(--primary);
}

.mobile-menu__link:hover::after,
.mobile-menu__link:active::after {
    opacity: 1;
    transform: translate(2px, -2px);
}

.mobile-menu .btn {
    margin-top: 28px;
    font-size: 16px;
    padding: 16px 28px;
}

.mobile-menu__phone {
    display: block;
    margin-top: 24px;
    padding: 18px 22px;
    border-radius: 18px;
    background: var(--bg-dark);
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: center;
    transition: transform var(--transition);
}

.mobile-menu__phone:hover,
.mobile-menu__phone:active {
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Mini contacts row at bottom of mobile menu */
.mobile-menu__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
}

.mobile-menu__contact {
    flex: 1;
    min-width: 110px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    transition: all var(--transition);
}

.mobile-menu__contact:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* === Hero === */
.hero {
    padding: 120px 0 0;
    background: var(--bg-dark);
}

/* === Hero — mosaic (light) === */
.hero--mosaic {
    background: var(--bg);
    padding: 110px 0 56px;
    color: var(--dark);
    position: relative;
    overflow: visible;
    min-height: 0;
}

.hero--mosaic .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.hero--mosaic .hero__left {
    display: flex;
    flex-direction: column;
}

.hero--mosaic .section-tag {
    color: var(--primary);
    margin-bottom: 18px;
}

.hero--mosaic .hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--dark);
    text-transform: uppercase;
    text-shadow: none;
    margin-bottom: 18px;
    padding-left: 0;
}

.hero--mosaic .hero__title .accent {
    color: var(--primary);
}

.hero__title-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 6px;
    transform: translateY(-4px) rotate(-6deg);
}

.hero__lead {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 28px;
    max-width: 480px;
}

.hero__tiles {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: auto;
}

.hero-tile {
    position: relative;
    border-radius: 24px;
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    text-decoration: none;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    font-family: inherit;
    min-height: 124px;
    overflow: hidden;
}

.hero-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-tile--tall {
    grid-row: span 2;
    min-height: 260px;
}

.hero-tile--blue { background: var(--primary); color: #FFFFFF; }
.hero-tile--rose { background: var(--accent); color: #FFFFFF; }
.hero-tile--dark { background: var(--bg-dark); color: #FFFFFF; }

.hero-tile__art {
    position: absolute;
    top: 22px;
    left: 22px;
    opacity: 0.95;
}

.hero-tile__arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 22px;
    line-height: 1;
    opacity: 0.85;
    transition: transform var(--transition);
}

.hero-tile:hover .hero-tile__arrow {
    transform: translate(2px, -2px);
}

.hero-tile__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: inherit;
}

.hero-tile--tall .hero-tile__title {
    font-size: 26px;
}

.hero-tile__sub {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-top: 4px;
}

.hero--mosaic .hero__right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero--mosaic .hero__media {
    position: relative;
    flex: 1;
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero--mosaic .hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* hide KlingAI watermark in bottom-right by scaling from top-left */
    transform: scale(1.10);
    transform-origin: top left;
}

.hero--mosaic .hero__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(14, 14, 15, 0.55);
    backdrop-filter: blur(8px);
    padding: 7px 12px;
    border-radius: 50px;
}

.hero--mosaic .hero__quote {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 14px 18px;
}

.hero--mosaic .hero__quote-avatars {
    display: flex;
    flex-shrink: 0;
}

.hero--mosaic .hero__quote-avatars span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 2px solid #FFFFFF;
    margin-left: -10px;
}

.hero--mosaic .hero__quote-avatars span:first-child { margin-left: 0; }
.hero--mosaic .hero__quote-avatars span:nth-child(2) {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}
.hero--mosaic .hero__quote-avatars span:nth-child(3) {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary));
}

.hero--mosaic .hero__quote p {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--dark);
    margin: 0;
}

.hero--mosaic .hero__quote strong {
    color: var(--primary);
    font-weight: 700;
}

.hero--mosaic .hero__stats-bar {
    margin-top: 48px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
}

.hero--mosaic .hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero--mosaic .hero__stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark);
    line-height: 1;
}

.hero--mosaic .hero__stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero--mosaic .hero__stat-divider {
    width: 1px;
    background: var(--hairline);
    margin: 4px 0;
}

.hero--dark {
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.hero--dark::before {
    display: none;
}

.hero--dark::after {
    display: none;
}

.hero__bg-text {
    display: none;
}

.hero--dark .hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 60px;
    gap: 40px;
}

.hero__image {
    flex-shrink: 0;
    max-width: 600px;
    width: 50%;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero--video {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(95deg, rgba(15, 12, 9, 0.78) 0%, rgba(15, 12, 9, 0.55) 38%, rgba(15, 12, 9, 0.18) 62%, transparent 82%),
        linear-gradient(180deg, rgba(15, 12, 9, 0.35) 0%, transparent 35%, rgba(15, 12, 9, 0.55) 100%);
}

.hero--video > .container {
    max-width: none;
    margin: 0;
    padding-left: clamp(24px, 5vw, 72px);
    padding-right: 24px;
    position: relative;
    z-index: 2;
}

.hero--video .hero__inner {
    justify-content: flex-start;
}

.hero--video .hero__content {
    max-width: 600px;
    position: relative;
}

.hero--video .hero__content::before {
    content: none;
}

.hero--video .hero__title {
    color: #FFFFFF;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero--video .hero__subtitle {
    color: #E8E2D6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero--video .hero__tag {
    color: var(--accent);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero--video .accent-light {
    color: var(--accent);
}

.hero--video .hero__stat-num {
    color: #FFFFFF;
    font-size: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero--video .hero__stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero--video .hero__stat-divider {
    background: rgba(255, 255, 255, 0.3);
}

.hero--video .hero__stats-bar {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.hero--dark .hero__content {
    max-width: 560px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.hero__tag::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.hero--dark .hero__title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.12;
    margin-bottom: 20px;
}

.accent-light {
    color: var(--primary);
}

.hero--dark .hero__subtitle {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero--dark .hero__actions {
    margin-bottom: 0;
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    box-shadow: none;
}

.hero__stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    background: transparent;
    padding: 28px 0;
    border-top: 1px solid rgba(13,43,78,0.08);
}

.hero__stats-bar .hero__stat {
    align-items: flex-start;
}

.hero--dark .hero__stat-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.hero--dark .hero__stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(13,43,78,0.1);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero__stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* === Advantages — pill cards === */
.advantages {
    padding: 24px 0 64px;
    background: var(--bg);
}

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

.adv-pill {
    position: relative;
    padding: 32px 28px 30px;
    border-radius: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.adv-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.adv-pill__label {
    position: absolute;
    top: 28px;
    left: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}

.adv-pill__title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.025em;
    margin: 0;
}

.adv-pill__text {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.45;
    opacity: 0.85;
    margin: 0;
}

.adv-pill--blue {
    background: var(--primary);
    color: #FFFFFF;
}

.adv-pill--dark {
    background: var(--bg-dark);
    color: #FFFFFF;
}

.adv-pill--neutral {
    background: #FFFFFF;
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.adv-pill--rose {
    background: var(--accent);
    color: #FFFFFF;
}

.advantage-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-strong);
    background: rgba(255, 255, 255, 0.05);
}

.advantage-card__icon,
.b2b-service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 132, 60, 0.2);
    color: var(--primary);
    margin-bottom: 20px;
}

.b2b-feature-card > svg {
    width: 56px;
    height: 56px;
    padding: 10px;
    border-radius: 14px;
    background: var(--icon-bg);
    border: 1px solid rgba(232, 132, 60, 0.2);
    box-sizing: border-box;
    color: var(--primary);
    margin: 0 auto 16px;
}

.advantage-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.advantage-card__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === About === */
.about {
    padding: 48px 0;
    background: var(--bg);
}

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

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

.about__numbers {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.about__number {
    display: flex;
    flex-direction: column;
}

.about__number-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.about__number-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.about__image-placeholder svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* === Products === */
.products {
    padding: 48px 0;
    background: var(--bg);
}

.products__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 8px;
}

.carousel-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition);
}

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

.products__carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.products__carousel::-webkit-scrollbar {
    display: none;
}

.products__carousel .product-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

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

.product-card {
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--card-border-strong);
}

.product-card__image svg {
    width: 100%;
    height: auto;
}

.product-card__body {
    padding: 20px 24px 24px;
}

.product-card__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* === Gallery / Витрина === */
.gallery {
    padding: 48px 0;
    background: var(--bg);
}

.gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.gallery__header .section-subtitle {
    margin-bottom: 0;
    max-width: 680px;
}

.gallery__intro {
    max-width: 720px;
    margin-bottom: 8px;
}

.gallery__intro .section-subtitle {
    margin-bottom: 0;
}

.gallery__row {
    margin-top: 40px;
}

.gallery__row:first-of-type {
    margin-top: 28px;
}

.gallery__row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.gallery__row-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
}

.gallery__row-sub {
    color: var(--text-light);
    font-weight: 500;
    font-size: 16px;
}

.gallery__carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 20px;
    margin: -4px -4px 0;
    scrollbar-width: none;
}

.gallery__carousel::-webkit-scrollbar {
    display: none;
}

@media (min-width: 769px) {
    .gallery__carousel {
        cursor: grab;
    }
    .gallery__carousel.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
    }
    .gallery__carousel.is-dragging img {
        pointer-events: none;
    }
}

.gallery-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--card-border-strong);
}

.gallery-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f3f0ea;
    overflow: hidden;
}

.gallery-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card__media img {
    transform: scale(1.05);
}

.gallery-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 11px;
    border-radius: 6px;
    background: rgba(14, 14, 15, 0.78);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 20px 20px;
}

.gallery-card__cat {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.gallery-card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.gallery-card__desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.45;
    margin-bottom: 18px;
}

.gallery-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.gallery-card__price {
    display: flex;
    flex-direction: column;
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.gallery-card__price span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-card__btn {
    flex-shrink: 0;
}

.gallery__footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 28px;
    padding: 22px 28px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    text-align: center;
}

.gallery__footnote span {
    font-size: 16px;
    color: var(--text);
}

.gallery__footnote strong {
    color: var(--accent);
    font-weight: 700;
}

.gallery__footnote-btn {
    flex-shrink: 0;
}

/* === Marketplaces — editorial cards === */
.marketplaces {
    padding: 56px 0 64px;
    background: var(--bg);
}

.marketplaces__head {
    margin-bottom: 36px;
    max-width: 720px;
}

.marketplaces__head .section-title {
    font-size: 38px;
    line-height: 1.05;
    margin: 0;
}

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

.mp-card {
    position: relative;
    padding: 28px 28px 30px;
    border-radius: 26px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.mp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.mp-card__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
}

.mp-card__arrow {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 22px;
    line-height: 1;
    opacity: 0.55;
    transition: opacity var(--transition), transform var(--transition);
}

.mp-card:hover .mp-card__arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.mp-card__logo {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    align-self: flex-start;
}

.mp-card__logo img,
.mp-card__logo svg {
    max-height: 32px;
    max-width: 100%;
    object-fit: contain;
}

.mp-card__desc {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.85;
    margin: auto 0 0;
}

.mp-card--white {
    background: #FFFFFF;
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.mp-card--gray {
    background: var(--bg-gray);
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.mp-card--blue {
    background: var(--primary);
    color: #FFFFFF;
}

.mp-card--rose {
    background: var(--accent);
    color: #FFFFFF;
}

.mp-card--dark {
    background: var(--bg-dark);
    color: #FFFFFF;
}

/* === How it works — zigzag timeline === */
.how {
    padding: 64px 0 72px;
    background: var(--bg);
}

.how__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

.how__head .section-title {
    font-size: 56px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0;
}

.how__intro {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    max-width: 380px;
    margin: 0;
}

.how__timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 8px;
}

.how__line {
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.4;
    border-radius: 2px;
}

.how__row {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 28px;
    align-items: start;
    margin-bottom: 18px;
    position: relative;
}

.how__row:last-child {
    margin-bottom: 0;
}

.how__node {
    grid-column: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--card-border-strong);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    z-index: 2;
    position: relative;
    margin-top: 6px;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.how__row:hover .how__node {
    border-color: var(--primary);
    background: var(--primary);
    color: #FFFFFF;
}

.how__row .how__card {
    grid-column: 2;
    width: 100%;
    position: relative;
}

.how__row .how__card::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 100%;
    width: 24px;
    height: 1px;
    background: var(--card-border-strong);
}

.how__card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 22px 24px 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.how__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--card-border-strong);
}

.how__card--accent {
    background:
        linear-gradient(135deg, rgba(91, 146, 214, 0.12) 0%, rgba(232, 149, 149, 0.06) 100%),
        var(--card-bg);
    border-color: rgba(91, 146, 214, 0.25);
}

.how__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.how__card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.how__pill {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(232, 178, 116, 0.10);
    border: 1px solid rgba(232, 178, 116, 0.22);
    padding: 5px 11px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.how__card--accent .how__pill {
    background: rgba(91, 146, 214, 0.14);
    border-color: rgba(91, 146, 214, 0.40);
    color: var(--primary);
}

.how__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.how__list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    line-height: 1.45;
}

.how__check {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.how__card--accent .how__check {
    color: var(--primary);
}

/* === CTA Banner — mosaic block === */
.cta-banner {
    padding: 24px 0 24px;
    background: var(--bg);
}

.cta-banner__inner {
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 56px 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 32px;
    text-align: left;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 146, 214, 0.45), transparent 70%);
    pointer-events: none;
}

.cta-banner__inner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 149, 149, 0.30), transparent 70%);
    pointer-events: none;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 460px;
    margin: 0;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    justify-self: end;
    position: relative;
    z-index: 1;
}

/* === Articles === */
.articles {
    padding: 48px 0;
    background: var(--bg);
}

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

.article-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--card-border-strong);
}

.article-card__image svg {
    width: 100%;
    height: auto;
}

.article-card__body {
    padding: 20px 24px 24px;
}

.article-card__date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: block;
}

.article-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 10px;
}

.article-card__excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.article-card__link:hover {
    text-decoration: underline;
}

/* === Contacts === */
.contacts {
    padding: 48px 0;
    background: var(--bg);
}

.contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contacts__text strong {
    color: var(--dark);
    font-weight: 600;
}

.contacts__phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px;
    border-radius: 20px;
    background: var(--bg-dark);
    color: #FFFFFF;
    margin-bottom: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contacts__phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #FFFFFF;
}

.contacts__phone-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

.contacts__phone-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.contacts__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts__channel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: all var(--transition);
}

.contacts__channel:hover {
    color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--card-border-strong);
}

.contacts__channel-icon {
    display: flex;
    color: var(--primary);
}

.contacts__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-lg);
}

.form-input {
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: #FFFFFF;
    color: var(--dark);
    outline: none;
    transition: all var(--transition);
}

.form-input:focus {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(91, 146, 214, 0.18);
}

.form-input::placeholder {
    color: var(--text-light);
}

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

.contacts__form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

/* === Form consent checkboxes (152-ФЗ compliant) === */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
}

.form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--card-border-strong);
    background: #FFFFFF;
    margin: 1px 0 0 0;
    cursor: pointer;
    position: relative;
    transition: border-color var(--transition), background var(--transition);
}

.form-check input[type="checkbox"]:hover {
    border-color: var(--primary);
}

.form-check input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.form-check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-check a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(91, 146, 214, 0.35);
    text-underline-offset: 2px;
}

.form-check a:hover {
    color: var(--primary-hover);
    text-decoration-color: var(--primary);
}

/* === Hero Bottom Facts === */
.hero__bottom {
    position: relative;
    z-index: 2;
}

.hero__bottom-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__fact {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.01em;
}

.hero__fact strong {
    color: #fff;
    font-weight: 700;
}

/* === Trust Row === */
.trust {
    padding: 40px 0;
    border-bottom: 1px solid rgba(13,43,78,0.06);
}

.trust__row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust__item {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.4;
    transition: opacity var(--transition);
}

.trust__item:hover {
    opacity: 1;
}

/* === Showcase Grid === */
.showcase {
    padding: 48px 0;
}

.showcase__heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.showcase__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.showcase__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.showcase__card:hover img {
    transform: scale(1.05);
}

.showcase__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,30,53,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 24px;
}

.showcase__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.showcase__card-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.showcase__card--large {
    grid-row: span 2;
}

/* === Story === */
.story {
    padding: 100px 0;
}

.story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story__map img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.story__heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.15;
}

.story__text {
    font-size: 17px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.story__highlights {
    display: flex;
    gap: 40px;
    margin: 32px 0;
}

.story__highlight {
    display: flex;
    flex-direction: column;
}

.story__highlight-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.story__highlight-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.story__link {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: color var(--transition);
}

.story__link:hover {
    color: var(--primary);
}

/* === Services Strip === */
.services-strip {
    padding: 60px 0;
    border-top: 1px solid rgba(13,43,78,0.06);
    border-bottom: 1px solid rgba(13,43,78,0.06);
}

.services-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.services-strip__item {
    text-align: center;
}

.services-strip__icon {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.services-strip__item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.services-strip__item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* === Final CTA === */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
}

.final-cta__heading {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.final-cta__text {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* === Responsive — New Sections === */
@media (max-width: 1024px) {
    .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .showcase__card--large {
        grid-row: span 1;
    }

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

    .services-strip__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero__bottom-inner {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .trust__row {
        gap: 24px;
    }

    .showcase__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .story__heading {
        font-size: 28px;
    }

    .story__highlights {
        flex-direction: column;
        gap: 16px;
    }

    .services-strip__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .final-cta__heading {
        font-size: 28px;
    }
}

/* === Modal === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,30,53,0.5);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 24px 64px rgba(10,30,53,0.2);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal__close:hover {
    color: var(--dark);
}

.modal__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal__desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.modal__success {
    text-align: center;
    padding: 20px 0;
}

.modal__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal__success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal__success p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* === Gratitude letters === */
.letters {
    padding: 56px 0 64px;
    background: var(--bg);
}

.letters__head {
    margin-bottom: 36px;
    max-width: 720px;
}

.letters__head .section-title {
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.letters__intro {
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
    margin: 0;
    max-width: 540px;
}

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

.letter-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    color: var(--dark);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.letter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--card-border-strong);
    color: var(--dark);
}

.letter-card__sheet {
    position: relative;
    aspect-ratio: 3 / 4;
    background: var(--bg-gray);
    overflow: hidden;
}

.letter-card__sheet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.letter-card:hover .letter-card__sheet img {
    transform: scale(1.04);
}

.letter-card__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 14, 15, 0.78);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(6px);
}

.letter-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.letter-card__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.letter-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--dark);
    margin: 0;
}

.letter-card__quote {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.letter-card__author {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: auto;
}

/* === Footer === */
.footer {
    background: var(--bg-dark);
    color: rgba(244, 241, 234, 0.72);
    padding: 60px 0 0;
}

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

.logo--footer .logo__text {
    color: #fff;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(244, 241, 234, 0.65);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--primary);
}

.footer__link--strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
    white-space: nowrap;
}

.footer__worktime {
    font-family: var(--font-mono);
    font-size: 11px;
    margin-top: 12px;
    color: rgba(244, 241, 234, 0.45);
    line-height: 1.55;
    letter-spacing: 0.04em;
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__copy {
    font-size: 13px;
    color: rgba(244, 241, 234, 0.55);
    line-height: 1.7;
}

.footer__legal {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(244, 241, 234, 0.35);
    letter-spacing: 0.04em;
}

.footer__legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(244, 241, 234, 0.08);
    border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

.footer__legal-link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.55);
    transition: color var(--transition);
}

.footer__legal-link:hover {
    color: var(--primary);
}

/* === Sticky lead widget (floating CTA) === */
.lead-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 95;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 18px;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    cursor: pointer;
    box-shadow:
        0 12px 32px rgba(91, 146, 214, 0.40),
        0 0 0 4px rgba(91, 146, 214, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, bottom 0.3s ease;
}

.lead-widget:hover {
    background: var(--primary-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 18px 40px rgba(91, 146, 214, 0.55),
        0 0 0 5px rgba(91, 146, 214, 0.22);
}

.lead-widget__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-widget__pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--primary);
    opacity: 0.45;
    z-index: -1;
    animation: leadPulse 2.4s ease-out infinite;
}

@keyframes leadPulse {
    0%   { transform: scale(1);    opacity: 0.45; }
    70%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* Move widget up while cookie banner is visible so they don't overlap */
body.has-cookie .lead-widget {
    bottom: 100px;
}

@media (max-width: 768px) {
    .lead-widget {
        bottom: 20px;
        right: 16px;
        padding: 14px 18px;
        font-size: 13px;
    }
    body.has-cookie .lead-widget {
        bottom: 130px;
    }
}

@media (max-width: 420px) {
    .lead-widget__label { display: none; }
    .lead-widget {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

/* === Cookie consent banner === */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 20px;
    background: var(--bg-dark);
    color: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.25);
    display: none;
    align-items: center;
    gap: 16px;
    animation: cookieIn 0.35s ease;
}

.cookie-banner.active { display: flex; }

@keyframes cookieIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner__text {
    flex: 1;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    color: rgba(244, 241, 234, 0.85);
    margin: 0;
}

.cookie-banner__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__btn {
    flex-shrink: 0;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.cookie-banner__btn:hover { background: var(--primary-hover); }

@media (max-width: 560px) {
    .cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-banner__btn { width: 100%; }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero--dark .hero__inner {
        flex-direction: column-reverse;
    }

    .hero__image {
        width: 60%;
        max-width: 320px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__stats-bar {
        gap: 24px;
        padding: 24px 32px;
        flex-wrap: wrap;
    }

    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about__image {
        display: none;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .marketplaces__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav, .header .btn {
        display: none;
    }

    .burger {
        display: flex;
    }

    .section-title {
        font-size: 28px;
    }

    .hero {
        padding: 100px 0 0;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
    }

    .hero__stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }

    .hero__stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero__bg-text {
        font-size: 80px;
    }

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

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

    .marketplaces__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about__numbers {
        flex-direction: column;
        gap: 16px;
    }

    .cta-banner__title {
        font-size: 28px;
    }

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

/* ============================================
   NEW PAGES & COMPONENTS
   ============================================ */

/* === Active Nav Link === */
.nav__link--active {
    color: var(--accent);
}

/* === Page Hero (inner pages) === */
.page-hero {
    padding: 120px 0 60px;
    background: var(--bg);
}

.page-hero__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

/* === B2B Section (homepage) === */
.b2b-section {
    padding: 48px 0;
    background: var(--bg);
}

.b2b-section__centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.b2b-section__centered .section-subtitle,
.b2b-section__centered .b2b-section__text {
    margin-left: auto;
    margin-right: auto;
}

.b2b-section__text {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.b2b-section__features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.b2b-feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.b2b-feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--card-border-strong);
}

.b2b-feature-card svg {
    margin: 0 auto 16px;
}

.b2b-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.b2b-feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.b2b-section__cta {
    text-align: center;
    margin-top: 40px;
}

/* B2B mosaic head */
.b2b-section__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 40px;
    max-width: none;
    text-align: left;
}

.b2b-section__head .section-title {
    font-size: 38px;
    line-height: 1.05;
    margin: 0;
}

.b2b-section__head .b2b-section__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    max-width: 460px;
    margin: 0;
}

/* B2B mosaic tiles */
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.b2b-tile {
    position: relative;
    padding: 28px 28px 30px;
    border-radius: 26px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.b2b-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.b2b-tile__num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    opacity: 0.55;
}

.b2b-tile__icon {
    color: inherit;
    opacity: 0.9;
}

.b2b-tile__title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0;
    margin-top: auto;
}

.b2b-tile__text {
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

.b2b-tile--white {
    background: #FFFFFF;
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.b2b-tile--gray {
    background: var(--bg-gray);
    color: var(--dark);
    border: 1px solid var(--card-border);
}

.b2b-tile--blue {
    background: var(--primary);
    color: #FFFFFF;
}

.b2b-tile--rose {
    background: var(--accent);
    color: #FFFFFF;
}

.b2b-tile--dark {
    background: var(--bg-dark);
    color: #FFFFFF;
}

.b2b-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.b2b-section__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.b2b-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.b2b-section__image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* === B2B Services Page === */
.hero--b2b {
    background: linear-gradient(135deg, #0D2B4E 0%, #1B4F8A 50%, #0D2B4E 100%);
}

.hero--b2b .hero__title,
.hero--b2b .hero__stat-num {
    color: #fff;
}

.hero--b2b .hero__subtitle,
.hero--b2b .hero__stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.hero--b2b .section-tag {
    color: var(--primary);
}

.b2b-services {
    padding: 48px 0;
    background: var(--bg);
}

.b2b-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.b2b-service-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.b2b-service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--card-border-strong);
}

.b2b-service-card__icon {
    margin-bottom: 20px;
}

.b2b-service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.b2b-service-card__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === B2B Advantages === */
.b2b-advantages {
    padding: 48px 0;
    background: var(--bg);
}

.b2b-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.b2b-adv-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.b2b-adv-card:hover {
    border-color: var(--card-border-strong);
    transform: translateY(-4px);
}

.b2b-adv-card__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 16px;
    line-height: 1;
}

.b2b-adv-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.b2b-adv-card__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === B2B Steps === */
.b2b-steps {
    padding: 48px 0;
    background: var(--bg);
}

.b2b-steps__grid {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 48px;
}

.b2b-step {
    flex: 1;
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    background: transparent;
    text-align: center;
}

.b2b-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.b2b-step__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.b2b-step__text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.b2b-step__arrow {
    display: flex;
    align-items: center;
    padding-top: 48px;
    flex-shrink: 0;
}

/* === B2B Form Section === */
.b2b-form-section {
    padding: 48px 0;
    background: var(--bg);
}

.b2b-form-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.b2b-form-section__text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

/* === About Story === */
.about-story {
    padding: 48px 0;
    background: var(--bg);
}

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

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

.about-story__image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* === About Numbers === */
.about-numbers {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-numbers__value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.about-numbers__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* === About Values === */
.about-values {
    padding: 48px 0;
    background: var(--bg);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-values__card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.about-values__card:hover {
    border-color: var(--card-border-strong);
    transform: translateY(-4px);
}

.about-values__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-values__card-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === Services List === */
.services-list {
    padding: 48px 0;
    background: var(--bg);
}

.services-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-detail-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--card-border-strong);
}

.service-detail-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-detail-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.service-detail-card__text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-detail-card__list {
    list-style: none;
    padding: 0;
}

.service-detail-card__list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 6px;
}

.service-detail-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* === Blog Filter === */
.blog-filter {
    padding: 0 0 40px;
    background: var(--bg);
}

.blog-filter__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-filter__tag {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

.blog-filter__tag:hover,
.blog-filter__tag--active {
    background: var(--primary);
    color: #fff;
}

/* === Blog Grid === */
.blog-grid {
    padding: 0 0 80px;
    background: var(--bg);
}

.articles__grid--blog {
    grid-template-columns: repeat(3, 1fr);
}

/* === Breadcrumbs === */
.breadcrumbs {
    padding: 88px 0 16px;
    background: var(--bg);
}

.breadcrumbs__link {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs__link:hover {
    color: var(--primary);
}

.breadcrumbs__sep {
    margin: 0 8px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs__current {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

/* === Article Page === */
.article-page {
    padding: 40px 0 80px;
    background: var(--bg);
}

.article-page__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-page__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.article-page__date,
.article-page__reading {
    font-size: 14px;
    color: var(--text-light);
}

.article-page__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 32px;
}

.article-page__body h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 12px;
}

.article-page__body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
}

.article-page__body p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-page__body ul,
.article-page__body ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.article-page__body li {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 4px;
}

.article-page__body a {
    color: var(--primary);
    font-weight: 500;
}

.article-page__body a:hover {
    text-decoration: underline;
}

/* === Sidebar === */
.sidebar-cta {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(232, 132, 60, 0.15) 0%, rgba(232, 132, 60, 0.04) 100%);
    border: 1px solid rgba(232, 132, 60, 0.2);
    margin-bottom: 24px;
}

.sidebar-cta__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.sidebar-cta__text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
}

.sidebar-articles {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.sidebar-articles__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.sidebar-articles__link {
    display: block;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid var(--card-border);
    transition: color var(--transition);
}

.sidebar-articles__link:last-child {
    border-bottom: none;
}

.sidebar-articles__link:hover {
    color: var(--primary);
}

/* === Contacts Page === */
.contacts-page {
    padding: 60px 0 80px;
    background: var(--bg);
}

.contacts-page__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacts-page__heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.contacts-page__channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    transition: all var(--transition);
}

.contact-channel-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--card-border-strong);
}

.contact-channel-card__icon {
    flex-shrink: 0;
}

.contact-channel-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-channel-card__text {
    font-size: 13px;
    color: var(--text-light);
}

.contacts-page__worktime {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--bg);
}

.contacts-page__worktime-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contacts-page__worktime p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE — NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .b2b-section__features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-section__inner {
        grid-template-columns: 1fr;
    }

    .b2b-section__image {
        display: none;
    }

    .b2b-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-steps__grid {
        flex-wrap: wrap;
    }

    .b2b-step {
        flex: 0 0 calc(50% - 28px);
    }

    .b2b-step__arrow {
        display: none;
    }

    .b2b-form-section__inner {
        grid-template-columns: 1fr;
    }

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

    .about-story__image {
        display: none;
    }

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

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

    .article-page__inner {
        grid-template-columns: 1fr;
    }

    .contacts-page__inner {
        grid-template-columns: 1fr;
    }

    .articles__grid--blog {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 32px;
    }

    .b2b-section__features {
        grid-template-columns: 1fr;
    }

    .b2b-section__features-grid {
        grid-template-columns: 1fr;
    }

    .products__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products__carousel .product-card {
        flex: 0 0 260px;
    }

    .gallery__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery__header .carousel-nav {
        display: none;
    }

    .hero--mosaic {
        padding: 96px 0 36px;
    }

    .hero--mosaic .hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero--mosaic .hero__title {
        font-size: 36px;
    }

    .hero--mosaic .hero__tiles {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-tile {
        min-height: 110px;
        padding: 18px 18px 18px;
    }

    .hero-tile--tall {
        grid-row: span 1;
        min-height: 140px;
    }

    .hero-tile__title {
        font-size: 16px;
        line-height: 1.05;
    }

    .hero-tile--tall .hero-tile__title {
        font-size: 18px;
    }

    .hero-tile__art {
        top: 14px;
        left: 14px;
    }

    .hero-tile__art svg {
        width: 44px;
        height: 44px;
    }

    .hero-tile__arrow {
        top: 14px;
        right: 14px;
        font-size: 18px;
    }

    .hero-tile__sub {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .hero--mosaic .hero__media {
        min-height: 280px;
        aspect-ratio: 4/3;
    }

    .hero--mosaic .hero__stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero--mosaic .hero__stat-divider { display: none; }

    .hero--mosaic .hero__stat {
        flex: 1 1 calc(50% - 10px);
    }

    .cta-banner__inner {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 24px;
    }

    .cta-banner__title {
        font-size: 28px;
    }

    .cta-banner .btn {
        justify-self: start;
        width: 100%;
    }

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

    .marketplaces__head .section-title {
        font-size: 28px;
    }

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

    .contacts__phone-num {
        font-size: 22px;
        white-space: nowrap;
    }

    .contacts__phone {
        padding: 18px 22px;
    }

    .advantages__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .adv-pill {
        min-height: auto;
        padding: 22px 20px 22px;
        justify-content: flex-start;
        gap: 10px;
    }

    .adv-pill__label {
        position: static;
        font-size: 10px;
    }

    .adv-pill__title {
        font-size: 22px;
        line-height: 1;
    }

    .adv-pill__text {
        font-size: 12.5px;
        line-height: 1.4;
    }

    .how__head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .how__head .section-title {
        font-size: 34px;
    }

    .how__intro {
        max-width: none;
    }

    .how__timeline {
        max-width: none;
        padding: 0;
    }

    .how__line {
        left: 28px;
    }

    .how__row {
        grid-template-columns: 48px 1fr;
        column-gap: 14px;
        margin-bottom: 14px;
    }

    .how__line {
        left: 24px;
    }

    .how__node {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .how__row .how__card::before {
        display: none;
    }

    .b2b-section__head {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .b2b-section__head .section-title {
        font-size: 28px;
    }

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

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

    .letters__head .section-title {
        font-size: 28px;
    }

    .gallery__row {
        margin-top: 40px;
    }

    .gallery__row-head .carousel-nav {
        display: none;
    }

    .gallery__row-title {
        font-size: 19px;
    }

    .gallery__row-sub {
        display: none;
    }

    .gallery-card {
        flex: 0 0 78%;
    }

    .gallery__footnote {
        flex-direction: column;
        padding: 20px;
    }

    .b2b-services__grid {
        grid-template-columns: 1fr;
    }

    .b2b-advantages__grid {
        grid-template-columns: 1fr;
    }

    .b2b-steps__grid {
        flex-direction: column;
    }

    .b2b-step {
        flex: none;
        width: 100%;
    }

    .about-numbers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .article-page__title {
        font-size: 28px;
    }

    .articles__grid--blog {
        grid-template-columns: 1fr;
    }
}
