* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

:root {
    --accent: #b98a43;
    --accent-dark: #8c652f;
    --accent-soft: rgba(185, 138, 67, 0.14);
    --ink: #121920;
    --ink-soft: #53606d;
    --panel: #18212b;
    --panel-2: #243241;
    --surface: #ffffff;
    --surface-alt: #f4f0e8;
    --surface-muted: #ebe5da;
    --line: #d7d2c7;
    --success: #1f8f5f;
    --success-dark: #166746;
    --info: #334a62;
    --shadow-sm: 0 12px 28px rgba(18, 25, 32, 0.06);
    --shadow-md: 0 22px 56px rgba(18, 25, 32, 0.12);
    --shadow-lg: 0 36px 80px rgba(18, 25, 32, 0.2);
    --hero-gradient: linear-gradient(135deg, #18212b 0%, #223244 60%, #101820 100%);
    --section-gradient: linear-gradient(180deg, #f7f4ee 0%, #f1ebe0 100%);
}

body {
    font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--surface-alt);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 3000;
    display: flex;
    justify-content: center;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-banner--hidden {
    opacity: 0;
    transform: translateY(12px);
}

.cookie-banner__inner {
    width: min(940px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(24, 33, 43, 0.96);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__button {
    flex-shrink: 0;
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(24, 33, 43, 0.08);
    box-shadow: 0 8px 24px rgba(18, 25, 32, 0.05);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 22px 0 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-title {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.phone a,
.mobile-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--panel);
    text-decoration: none;
}

.working-hours,
.mobile-hours {
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--panel);
    border-radius: 999px;
    transition: all 0.28s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    padding: 16px 0 18px;
    border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform 0.24s ease;
}

.nav-menu a:hover {
    color: var(--ink);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 25, 32, 0.35);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: var(--surface-alt);
    padding: 96px 24px 32px;
    overflow-y: auto;
    transform: translateX(24px);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(24, 33, 43, 0.12);
    border-radius: 14px;
    background: var(--surface);
    color: var(--panel);
    font-size: 20px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li + li {
    margin-top: 8px;
}

.mobile-menu-list a {
    display: block;
    padding: 15px 18px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(24, 33, 43, 0.08);
    color: var(--panel);
    font-weight: 600;
}

.mobile-menu-contact {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(24, 33, 43, 0.08);
}

.mobile-whatsapp-btn {
    width: 100%;
    margin-top: 16px;
}

section {
    padding: 96px 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--hero-gradient);
    color: #f6f1e7;
    padding: 88px 0 96px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(185, 138, 67, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d6b076;
    margin-bottom: 22px;
}

.hero-title {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    max-width: 11ch;
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.45;
    color: rgba(246, 241, 231, 0.86);
    margin-bottom: 14px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(246, 241, 231, 0.74);
    max-width: 620px;
}

.hero-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 34px;
}

.hero-highlights li {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: #f6f1e7;
    font-size: 14px;
    line-height: 1.5;
}

.hero-cta,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: #141b22;
    box-shadow: 0 18px 34px rgba(185, 138, 67, 0.24);
}

.btn-primary:hover {
    background: #cb9a52;
    box-shadow: 0 20px 38px rgba(185, 138, 67, 0.3);
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f6f1e7;
}

.btn-whatsapp:hover {
    background: rgba(31, 143, 95, 0.18);
    border-color: rgba(31, 143, 95, 0.34);
}

.btn-max {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f6f1e7;
}

.btn-max:hover {
    background: rgba(185, 138, 67, 0.15);
    border-color: rgba(185, 138, 67, 0.3);
}

.hero-metrics {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-metric {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric strong {
    display: block;
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #f5d2a0;
    margin-bottom: 8px;
}

.hero-metric span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(246, 241, 231, 0.74);
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-lg);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 36%;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 18, 0.58));
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hero-summary {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-summary-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d6b076;
}

.hero-summary-item {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-summary-item span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(246, 241, 231, 0.58);
}

.hero-summary-item strong {
    font-size: 16px;
    line-height: 1.5;
    color: #f6f1e7;
}

.section-title {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 52px;
    color: var(--ink);
}

.seo-links {
    background: var(--surface);
}

.seo-links-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.seo-link-card,
.faq-item,
.seo-panel,
.seo-hero-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 33, 43, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.seo-link-card {
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.seo-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.seo-link-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.seo-link-card strong,
.faq-item h3,
.seo-panel h2,
.seo-hero-card h2,
.seo-article h2,
.seo-title {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
}

.seo-link-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--ink);
}

.faq {
    background: var(--surface);
}

.faq-item p,
.seo-link-card p {
    color: var(--ink-soft);
}

.seo-page {
    background: var(--section-gradient);
}

.seo-page--general {
    --page-accent: #b98a43;
    --page-accent-soft: rgba(185, 138, 67, 0.18);
    --page-glow: rgba(185, 138, 67, 0.26);
}

.seo-page--logistics {
    --page-accent: #4d87c7;
    --page-accent-soft: rgba(77, 135, 199, 0.18);
    --page-glow: rgba(77, 135, 199, 0.24);
}

.seo-page--warehouse {
    --page-accent: #2e8f78;
    --page-accent-soft: rgba(46, 143, 120, 0.18);
    --page-glow: rgba(46, 143, 120, 0.24);
}

.seo-page--construction {
    --page-accent: #c96b39;
    --page-accent-soft: rgba(201, 107, 57, 0.18);
    --page-glow: rgba(201, 107, 57, 0.24);
}

.seo-page--outsourcing {
    --page-accent: #7a5ed1;
    --page-accent-soft: rgba(122, 94, 209, 0.18);
    --page-glow: rgba(122, 94, 209, 0.24);
}

.seo-page--region {
    --page-accent: #268a95;
    --page-accent-soft: rgba(38, 138, 149, 0.18);
    --page-glow: rgba(38, 138, 149, 0.24);
}

.seo-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 48px;
    background: var(--hero-gradient);
    color: #f6f1e7;
}

.seo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, var(--page-glow, rgba(185, 138, 67, 0.24)), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 24%);
    pointer-events: none;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(246, 241, 231, 0.75);
    margin-bottom: 24px;
}

.breadcrumbs a {
    text-decoration: none;
}

.seo-title {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 13ch;
    margin-bottom: 18px;
}

.seo-lead {
    font-size: 20px;
    line-height: 1.6;
    max-width: 760px;
    color: rgba(246, 241, 231, 0.86);
}

.seo-hero-grid,
.seo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.seo-hero-grid {
    position: relative;
    z-index: 1;
    margin-top: 12px;
}

.seo-content {
    padding: 72px 0;
}

.seo-article,
.seo-article-wide {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(24, 33, 43, 0.08);
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.seo-article-wide {
    max-width: 940px;
}

.seo-article h2 + p,
.seo-article p + p {
    margin-top: 14px;
}

.seo-article p,
.seo-checklist li,
.seo-link-list a {
    color: var(--ink-soft);
}

.seo-sidebar {
    display: grid;
    gap: 24px;
}

.seo-checklist,
.seo-link-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.seo-checklist li {
    padding-left: 18px;
    position: relative;
}

.seo-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--page-accent, var(--accent));
}

.seo-link-list a {
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    color: #f6f1e7;
}

.seo-hero-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

.seo-hero-card::after,
.seo-panel::after,
.signal-card::after {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--page-accent, var(--accent)), rgba(255, 255, 255, 0.28));
}

.signal-band {
    padding: 0 0 72px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.signal-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(24, 33, 43, 0.08);
    background:
        radial-gradient(circle at top right, var(--page-accent-soft, rgba(185, 138, 67, 0.18)), transparent 34%),
        rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.signal-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--panel), var(--panel-2));
    color: #f7efe1;
    font-size: 22px;
    box-shadow: 0 16px 28px rgba(24, 33, 43, 0.16);
}

.signal-card h2,
.signal-card h3 {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 26px;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 12px;
}

.signal-card p {
    color: var(--ink-soft);
    line-height: 1.72;
}

.signal-tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--page-accent-soft, var(--accent-soft));
    color: var(--page-accent, var(--accent-dark));
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 900px) {
    .seo-hero-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-title {
        max-width: none;
    }
}

.services,
.about,
.reviews {
    background: var(--section-gradient);
}

.pricing,
.advantages {
    background: var(--surface-alt);
}

.portfolio {
    background: var(--surface);
}

.services-grid,
.advantages-grid,
.reviews-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card,
.pricing-card,
.advantage-item,
.review-card,
.portfolio-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(24, 33, 43, 0.08);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before,
.pricing-card::before,
.advantage-item::before,
.review-card::before,
.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #d7b781);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.service-card:hover,
.pricing-card:hover,
.advantage-item:hover,
.review-card:hover,
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(185, 138, 67, 0.18);
}

.service-card:hover::before,
.pricing-card:hover::before,
.advantage-item:hover::before,
.review-card:hover::before,
.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-card {
    min-height: 260px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 232, 0.92));
}

.portfolio-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.portfolio-card h3 {
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 12px;
    color: var(--ink);
}

.portfolio-card p:last-child {
    color: var(--ink-soft);
    line-height: 1.75;
}

.service-icon,
.advantage-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--panel), var(--panel-2));
    color: #f2e1c5;
    font-size: 28px;
    box-shadow: 0 16px 28px rgba(24, 33, 43, 0.16);
    margin-bottom: 22px;
}

.service-card h3,
.pricing-card h3,
.advantage-item h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--ink);
}

.service-card p,
.advantage-item p,
.review-text,
.about-text p,
.price-features li,
.contact-description,
.footer-section p,
.footer-section a {
    color: var(--ink-soft);
}

.price {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--panel);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    text-align: left;
}

.price-features li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(24, 33, 43, 0.08);
}

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

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.about-content {
    max-width: 900px;
}

.about-text {
    padding: 38px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 33, 43, 0.08);
    box-shadow: var(--shadow-sm);
}

.about-text h3 {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 34px 0 14px;
    color: var(--ink);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 22px;
}

.review-author {
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--ink);
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-rating i {
    font-size: 13px;
    color: var(--accent);
}

.review-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(24, 33, 43, 0.14);
    font-size: 32px;
}

.review-text {
    font-size: 16px;
    line-height: 1.75;
}

.contacts {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #16202a 0%, #203142 100%);
    color: #f6f1e7;
}

.contacts-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.24;
    pointer-events: none;
}

.contacts-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.contacts .section-title,
.contact-info h3,
.contact-phone a {
    color: #f6f1e7;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.contact-phone {
    margin: 30px 0 28px;
}

.contact-phone a {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -0.04em;
    text-decoration: none;
}

.contact-buttons {
    margin: 30px 0 18px;
}

.contacts .btn-whatsapp,
.contacts .btn-max {
    background: rgba(255, 255, 255, 0.08);
}

.contact-description {
    color: rgba(246, 241, 231, 0.72);
    font-size: 17px;
}

.footer {
    background: #101820;
    color: #f6f1e7;
    padding: 72px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-bottom: 36px;
}

.footer-section h3 {
    font-family: 'IBM Plex Sans Condensed', 'IBM Plex Sans', sans-serif;
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 10px;
}

.footer-section a {
    text-decoration: none;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(246, 241, 231, 0.52);
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .contacts-content {
        max-width: none;
    }

    .hero-title {
        max-width: none;
    }

    .hero-highlights,
    .hero-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 1280px);
    }

    section {
        padding: 72px 0;
    }

    .header-contact,
    .nav {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-toggle {
        display: block;
    }

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

    .logo-title {
        font-size: 18px;
    }

    .hero {
        padding: 72px 0 80px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta,
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn,
    .contact-buttons .btn {
        width: 100%;
    }

    .services-grid,
    .pricing-content,
    .advantages-grid,
    .reviews-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 28px 22px;
    }
}

.page-hero {
    padding: 78px 0 88px;
}

.page-hero .hero-title {
    max-width: 12ch;
}

.page-hero .hero-image img {
    aspect-ratio: 16 / 11;
}

.page-section-alt {
    background: var(--surface);
}

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

    .hero-kicker {
        font-size: 11px;
        line-height: 1.4;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .service-card,
    .pricing-card,
    .advantage-item,
    .review-card {
        padding: 24px 20px;
    }

    .price {
        font-size: 38px;
    }
}
