/*
 * Project: QazMarketing.kz
 * File: assets/css/site.css
 * Author: Beck Sarbassov
 * Version: 2.0.0
 * Release date: 2026-08-30
 * Last updated: 2026-08-30
 * Copyright: © Beck Sarbassov. All rights reserved.
 *
 * EN: Main responsive design system for the multilingual public website.
 * RU: Основная адаптивная дизайн-система мультиязычного публичного сайта.
 */

:root {
    --white: #ffffff;
    --canvas: #f5f8fc;
    --navy-950: #041a38;
    --navy-900: #06234a;
    --navy-800: #0b3266;
    --blue-600: #075fea;
    --blue-500: #1378ff;
    --cyan-400: #28b8f5;
    --ink: #0a2347;
    --muted: #52657e;
    --line: #dbe5f1;
    --success: #108a58;
    --danger: #c33945;
    --shadow: 0 22px 55px rgba(11, 50, 102, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --container: 1240px;
    --header-height: 78px;
    --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.75rem, 4.4vw, 4rem); font-weight: 760; }
h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); font-weight: 740; }
h3 { font-size: 1.24rem; font-weight: 720; }
p { color: var(--muted); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 16px; color: var(--white); background: var(--navy-950); border-radius: var(--radius-sm); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(40, 184, 245, 0.55); outline-offset: 3px; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 229, 241, 0.88);
    backdrop-filter: blur(18px);
}
.header-row { display: flex; align-items: center; min-height: var(--header-height); gap: 28px; }
.brand { display: inline-flex; flex: none; align-items: center; gap: 11px; letter-spacing: -0.04em; }
.brand > span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--blue-600); border-radius: 9px 3px 9px 3px; font-weight: 850; }
.brand strong { color: var(--navy-950); font-size: 1.12rem; }
.brand em { color: var(--blue-600); font-style: normal; }
.primary-nav { margin-inline: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-nav a { position: relative; color: var(--navy-900); font-size: .91rem; font-weight: 620; }
.primary-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--blue-600); transform-origin: left; transition: transform .22s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-tools { display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; align-items: center; gap: 3px; }
.language-switch a { padding: 6px 5px; color: var(--muted); font-size: .72rem; font-weight: 780; }
.language-switch a[aria-current="true"] { color: var(--blue-600); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy-950); transition: transform .2s ease, opacity .2s ease; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: var(--radius-sm); font-size: .95rem; font-weight: 740; line-height: 1.2; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--blue-600); box-shadow: 0 13px 28px rgba(7, 95, 234, 0.22); }
.button--primary:hover { background: #0055db; box-shadow: 0 16px 34px rgba(7, 95, 234, 0.3); }
.button--ghost { color: var(--navy-900); background: rgba(255, 255, 255, .76); border-color: var(--line); }
.button--small { min-height: 44px; padding: 10px 17px; font-size: .84rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 730; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { overflow: hidden; }
.hero--home { background: linear-gradient(90deg, #fff 0%, #fff 35%, #f4f8fc 100%); }
.hero-grid { display: grid; min-height: min(720px, calc(100vh - var(--header-height))); grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr); align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 84px 64px 84px 0; }
.hero-copy h1 { max-width: 790px; margin-bottom: 28px; }
.hero-copy p { max-width: 660px; margin-bottom: 34px; font-size: clamp(1.1rem, 1.7vw, 1.32rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; min-height: 620px; margin: 0; }
.hero-media::before { position: absolute; z-index: 1; inset: 0 auto 0 0; width: 26%; content: ""; background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0)); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero--inner { background: var(--canvas); border-bottom: 1px solid var(--line); }
.hero--inner .hero-grid { min-height: 500px; grid-template-columns: minmax(0, 1.4fr) minmax(330px, .6fr); }
.hero--inner .hero-copy { padding-block: 92px; }
.hero--inner h1 { font-size: clamp(2.65rem, 5vw, 4.9rem); }
.hero-signal { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--white); background: var(--navy-900); }
.hero-signal > span { position: relative; z-index: 2; display: grid; width: 140px; height: 140px; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 38px 12px 38px 12px; font-size: 5rem; font-weight: 850; }
.hero-signal div { position: absolute; inset: 0; }
.hero-signal i { position: absolute; display: block; width: 10px; height: 10px; background: var(--cyan-400); border-radius: 50%; box-shadow: 0 0 0 11px rgba(40, 184, 245, .12); }
.hero-signal i:nth-child(1) { top: 18%; left: 20%; }.hero-signal i:nth-child(2) { top: 35%; right: 13%; }.hero-signal i:nth-child(3) { right: 27%; bottom: 16%; }.hero-signal i:nth-child(4) { bottom: 27%; left: 12%; }

.outcome-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.outcome-item { display: flex; min-height: 116px; align-items: center; gap: 17px; padding: 24px 26px; border-right: 1px solid var(--line); }
.outcome-item:last-child { border-right: 0; }
.outcome-item span { color: var(--blue-600); font-size: .76rem; font-weight: 800; }
.outcome-item strong { max-width: 180px; color: var(--navy-900); line-height: 1.35; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading > a { flex: none; color: var(--blue-600); font-weight: 700; }

.process-section { background: var(--white); }
.process-section h2 { margin-bottom: 52px; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; margin: 0; padding: 0; list-style: none; }
.process-list::before { position: absolute; top: 27px; right: 8%; left: 8%; height: 1px; content: ""; background: var(--line); }
.process-list li { position: relative; z-index: 1; }
.process-list li > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 23px; color: var(--blue-600); background: var(--white); border: 1px solid var(--line); border-radius: 50%; box-shadow: 0 8px 20px rgba(11, 50, 102, .07); font-weight: 800; }
.process-list h3 { margin-bottom: 12px; font-size: 1.06rem; letter-spacing: -.02em; }
.process-list p { margin-bottom: 0; font-size: .92rem; }

.services-section { background: var(--canvas); }
.service-panorama { height: 360px; margin-bottom: 8px; background: url("/assets/images/digital-services-panorama.jpg") center / cover no-repeat; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; align-items: center; gap: 22px; padding: 30px 4px; border-bottom: 1px solid var(--line); }
.service-row > span { color: var(--blue-600); font-size: .76rem; font-weight: 800; }
.service-row h3 { margin-bottom: 6px; }
.service-row p { max-width: 760px; margin-bottom: 0; }

.industry-section { background: var(--white); }
.industry-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 16px; }
.industry-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; color: var(--white); background-color: var(--navy-900); background-image: linear-gradient(180deg, rgba(4, 26, 56, .05), rgba(4, 26, 56, .88)), url("/assets/images/digital-services-panorama.jpg"); background-size: auto, 205% auto; border-radius: var(--radius-md); isolation: isolate; transition: transform .25s ease, box-shadow .25s ease; }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.industry-card span { max-width: 320px; font-size: 1.35rem; font-weight: 760; line-height: 1.2; letter-spacing: -.025em; }
.industry-card small { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .25s ease, opacity .25s ease; }
.industry-card:hover small { max-height: 80px; margin-top: 8px; opacity: .82; }
.industry-card:nth-child(1), .industry-card:nth-child(4) { grid-column: span 5; }
.industry-card:nth-child(2), .industry-card:nth-child(3), .industry-card:nth-child(5) { grid-column: span 7; }
.industry-card--1 { background-position: center, 0 center; }.industry-card--2 { background-position: center, 33% center; }.industry-card--3 { background-position: center, 67% center; }.industry-card--4 { background-position: center, 100% center; }.industry-card--5 { background-image: linear-gradient(180deg, rgba(4, 26, 56, .08), rgba(4, 26, 56, .86)), url("/assets/images/crm-consulting-hero.jpg"); background-size: auto, cover; background-position: center, 76% center; }

.partner-section { color: var(--white); background: var(--navy-900); }
.partner-section h2, .partner-section p { color: var(--white); }
.partner-section p { max-width: 670px; opacity: .78; }
.partner-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.partner-badge { display: block; padding: 18px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-md); }
.partner-badge img { width: 290px; }

.knowledge-section { background: var(--canvas); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { display: flex; min-height: 290px; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card time { margin-bottom: 30px; color: var(--blue-600); font-size: .78rem; font-weight: 760; }
.article-card h2, .article-card h3 { margin-bottom: 15px; font-size: 1.45rem; }
.article-card p { flex: 1; }
.article-card > a { color: var(--blue-600); font-weight: 720; }

.faq-contact { background: var(--white); }
.faq-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 2px; color: var(--navy-900); background: transparent; border: 0; text-align: left; font-weight: 700; cursor: pointer; }
.accordion-item button b { color: var(--blue-600); font-size: 1.35rem; transition: transform .2s ease; }
.accordion-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.accordion-panel p { padding: 0 44px 20px 0; }
.lead-form-panel { padding: 40px; background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius-md); }
.lead-form-panel > p { margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; color: var(--navy-900); font-size: .82rem; font-weight: 670; }
.form-grid input, .form-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #cfdbe9; border-radius: var(--radius-sm); outline: 0; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(7, 95, 234, .1); }
.form-grid .form-wide { grid-column: 1 / -1; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--muted); font-size: .8rem; }
.checkbox input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue-600); }
.checkbox a { color: var(--blue-600); }
.honeypot { position: absolute; left: -9999px; }
.form-status { margin: 16px 0 0; font-size: .88rem; font-weight: 650; }
.form-status.is-success { color: var(--success); }.form-status.is-error { color: var(--danger); }

.detail-section { background: var(--white); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .65fr); gap: 84px; align-items: start; }
.prose { color: var(--muted); font-size: 1.08rem; }
.prose h2 { margin: 1.9em 0 .7em; }.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.7em 0 .6em; }
.prose p, .prose li { max-width: 780px; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .75em; }
.prose a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }
.detail-aside { position: sticky; top: calc(var(--header-height) + 28px); padding: 32px; background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius-md); }
.detail-aside > strong { display: block; margin-bottom: 18px; color: var(--navy-900); font-size: 1.2rem; }
.detail-aside ul { margin: 0 0 26px; padding: 0; list-style: none; }
.detail-aside li { position: relative; margin-bottom: 13px; padding-left: 25px; color: var(--muted); }
.detail-aside li::before { position: absolute; top: .55em; left: 0; width: 8px; height: 8px; content: ""; background: var(--cyan-400); border-radius: 50%; }
.related-section { background: var(--canvas); }
.related-section h2 { margin-bottom: 38px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; min-height: 245px; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.related-card p { flex: 1; }.related-card span { color: var(--blue-600); font-weight: 720; }

.index-list-section { background: var(--white); }
.index-list { border-top: 1px solid var(--line); }
.index-list-item { display: grid; grid-template-columns: 70px minmax(0, 1fr) 30px; align-items: center; gap: 22px; padding: 32px 4px; border-bottom: 1px solid var(--line); }
.index-list-item > span, .index-list-item > b { color: var(--blue-600); }
.index-list-item h2 { margin-bottom: 7px; font-size: clamp(1.45rem, 2.4vw, 2.25rem); }
.index-list-item p { max-width: 780px; margin-bottom: 0; }
.index-list-item > b { font-size: 1.5rem; transition: transform .2s ease; }.index-list-item:hover > b { transform: translateX(6px); }

.contact-details { background: var(--white); }
.contact-detail-grid { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.contact-detail-grid > div { min-height: 210px; padding: 34px; border-right: 1px solid var(--line); }
.contact-detail-grid > div:last-child { border-right: 0; }.contact-detail-grid h2 { font-size: 1.2rem; }.contact-detail-grid a { color: var(--blue-600); font-size: 1.08rem; font-weight: 720; }
.details-section { padding-top: 0; }
.details-list { margin: 0; border-top: 1px solid var(--line); }
.details-list div { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.details-list dt { color: var(--muted); }.details-list dd { margin: 0; color: var(--navy-900); font-weight: 680; overflow-wrap: anywhere; }
.legal-copy { max-width: 860px; }

.article-page { padding: 96px 0 120px; }
.article-container { max-width: 880px; }
.article-page .back-link { display: inline-block; margin-bottom: 50px; color: var(--blue-600); font-weight: 700; }
.article-page time { display: block; margin-bottom: 18px; color: var(--muted); }
.article-page h1 { margin-bottom: 25px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.article-page .lead { margin-bottom: 56px; font-size: 1.3rem; }

.site-footer { padding: 78px 0 26px; color: rgba(255, 255, 255, .78); background: var(--navy-950); }
.site-footer .brand strong, .site-footer .brand em { color: var(--white); }
.brand--footer { margin-bottom: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .65fr 1fr; gap: 56px; }
.footer-grid > div:first-child p { max-width: 300px; }
.footer-grid a { display: block; width: fit-content; margin-bottom: 8px; }
.footer-grid h2 { margin-bottom: 19px; color: var(--white); font-size: .95rem; letter-spacing: 0; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-partner { padding: 10px; background: rgba(255, 255, 255, .06); border-radius: 12px; }
.footer-partner img { width: 220px; }
.footer-grid > div:last-child p { font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 80; right: 24px; bottom: 24px; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); background: #16a568; border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 14px 36px rgba(10, 35, 71, .25); font-size: .78rem; font-weight: 850; }
.cookie-notice { position: fixed; z-index: 110; right: 24px; bottom: 24px; left: 24px; display: flex; max-width: 650px; align-items: center; gap: 20px; margin-inline: auto; padding: 16px 18px; color: var(--white); background: var(--navy-950); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.cookie-notice[hidden] { display: none; }.cookie-notice p { margin: 0; color: inherit; font-size: .82rem; }.cookie-notice button { margin-left: auto; padding: 8px 14px; color: var(--navy-950); background: var(--white); border: 0; border-radius: 5px; font-weight: 780; cursor: pointer; }
.error-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: var(--canvas); text-align: center; }
.error-page .error-brand { margin-bottom: 28px; }
.error-page .error-code { display: block; color: var(--blue-600); font-size: clamp(6rem, 20vw, 13rem); font-weight: 850; line-height: 1; }
.error-page p { max-width: 520px; margin: 0 auto 26px; }
.error-page .error-languages { justify-content: center; margin-top: 24px; }

@media (max-width: 1120px) {
    .header-row { gap: 16px; }
    .primary-nav ul { gap: 17px; }.primary-nav a { font-size: .82rem; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr); }
    .hero-copy { padding-right: 38px; }.hero-media { min-height: 560px; }
    .process-list { grid-template-columns: repeat(3, 1fr); }.process-list::before { display: none; }
    .industry-grid { grid-auto-rows: 210px; }
    .faq-contact-grid { gap: 38px; }.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }.footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    :root { --header-height: 68px; }
    .container { width: min(calc(100% - 34px), var(--container)); }
    .section { padding: 78px 0; }
    .nav-toggle { display: block; order: 3; margin-left: auto; }
    .primary-nav { position: absolute; z-index: 101; top: 100%; right: 0; left: 0; display: none; height: calc(100dvh - var(--header-height)); margin: 0; padding: 28px; overflow-y: auto; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 28px 50px rgba(4, 26, 56, .12); }
    .primary-nav.is-open { display: block; }.primary-nav ul { flex-direction: column; align-items: flex-start; gap: 22px; }.primary-nav a { font-size: 1.2rem; }
    .header-tools { margin-left: auto; }.header-cta { display: none; }
    .hero-grid, .hero--inner .hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy, .hero--inner .hero-copy { padding: 74px 0 58px; }
    .hero-media { min-height: 460px; margin-right: -17px; margin-left: -17px; }.hero-media::before { top: 0; right: 0; bottom: auto; width: 100%; height: 16%; background: linear-gradient(180deg, #fff, rgba(255,255,255,0)); }
    .hero-signal { min-height: 300px; margin: 0 -17px; }
    .outcome-grid { grid-template-columns: 1fr 1fr; }.outcome-item:nth-child(2) { border-right: 0; }.outcome-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-panorama { height: 300px; }
    .industry-card:nth-child(n) { grid-column: span 6; }.industry-card:last-child { grid-column: span 12; }
    .partner-grid, .faq-contact-grid, .detail-layout { grid-template-columns: 1fr; }.detail-aside { position: static; }
    .article-grid, .related-grid { grid-template-columns: 1fr 1fr; }
    .contact-detail-grid { grid-template-columns: 1fr 1fr; }.contact-detail-grid > div:nth-child(2) { border-right: 0; }.contact-detail-grid > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
    h2 { font-size: 2rem; }
    .site-header .brand strong { font-size: .98rem; }.language-switch a { padding-inline: 3px; }
    .hero-copy, .hero--inner .hero-copy { padding-top: 56px; }.hero-copy p { font-size: 1.05rem; }
    .hero-actions, .hero-actions .button { width: 100%; }
    .hero-media { min-height: 320px; }.hero-media img { object-position: 61% center; }
    .outcome-grid { grid-template-columns: 1fr; }.outcome-item { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); }.outcome-item:last-child { border-bottom: 0; }
    .process-list { grid-template-columns: 1fr; gap: 20px; }.process-list li { display: grid; grid-template-columns: 48px 1fr; column-gap: 17px; }.process-list li > span { width: 46px; height: 46px; grid-row: span 2; margin: 0; }.process-list h3 { margin: 2px 0 6px; }
    .service-panorama { height: 230px; background-position: 33% center; }
    .service-row { grid-template-columns: 42px 1fr; }.service-row .text-link { grid-column: 2; }
    .industry-grid { display: flex; flex-direction: column; }.industry-card { min-height: 220px; }
    .partner-grid { gap: 38px; }.partner-badge img { width: 100%; }
    .article-grid, .related-grid { grid-template-columns: 1fr; }.article-card { min-height: 0; }
    .lead-form-panel { padding: 26px 20px; }.form-grid { grid-template-columns: 1fr; }.form-grid .form-wide { grid-column: auto; }
    .index-list-item { grid-template-columns: 38px minmax(0, 1fr); }.index-list-item > b { display: none; }
    .contact-detail-grid { grid-template-columns: 1fr; }.contact-detail-grid > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }.contact-detail-grid > div:last-child { grid-column: auto; border-top: 0; }
    .details-list div { grid-template-columns: 1fr; gap: 5px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }.footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
