/* SoftExpert — softexpert.ua */
:root {
  --navy: #0B1B3A;
  --navy-2: #13264D;
  --ink: #1B2437;
  --muted: #5B6680;
  --line: #E3E8F2;
  --bg: #FFFFFF;
  --bg-soft: #F4F7FC;
  --brand: #1479B8;
  --brand-dark: #0D5E93;
  --brand-soft: #E7F4FB;
  --sky: #4FC3E8;
  --sky-soft: #E4F6FC;
  --green: #0FB38A;
  --green-soft: #E3F7F0;
  --red: #E5484D;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(16, 30, 60, .05), 0 8px 24px rgba(16, 30, 60, .07);
  --shadow-lg: 0 24px 60px rgba(11, 27, 58, .18);
  --wrap: 1200px;
  --header: 72px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Brand fonts, matched to the logo: wide geometric "SOFT", monospaced "expert" */
  --font-head: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-head); line-height: 1.2; letter-spacing: -.01em; color: var(--navy); }
h1 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; }
h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; }
h3 { font-size: 17px; font-weight: 600; letter-spacing: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(20, 121, 184, .45); outline-offset: 2px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; color: #fff; }

.ico { width: 24px; height: 24px; flex: none; }
.ico-sm { width: 18px; height: 18px; }
.eyebrow { display: inline-block; font-family: var(--font-mono); font-size: 13.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.lead { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); margin-top: 18px; }

/* Buttons */
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 16px; line-height: 1.2; border: 1.5px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s; white-space: nowrap; }
.btn .ico { transition: transform .2s; }
.btn:hover .ico { transform: translateX(3px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(20, 121, 184, .3); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--brand-soft); color: var(--navy); }
.btn-sm { padding: 10px 16px; font-size: 15px; border-radius: 10px; }
.btn-lg { padding: 15px 28px; font-size: 17px; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .88); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(11, 27, 58, .05); }
.nav-bar { display: flex; align-items: center; height: var(--header); gap: 24px; }
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 56px; width: auto; }
.site-footer .logo img { height: 60px; }
.nav { display: flex; align-items: center; flex: 1; gap: 24px; }
.nav-list { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.nav-link { display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: 15.5px; background: none; border: 0; cursor: pointer; }
.nav-link:hover, .nav-link[aria-current], .has-mega.on > .nav-link { color: var(--brand); }
.nav-link[aria-current] { background: var(--brand-soft); }
.nav-link .ico { transition: transform .2s; }
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lang-switch { display: flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 700; }
.lang-switch > * { padding: 5px 9px; border-radius: 7px; }
.lang-switch .cur { background: var(--navy); color: #fff; }
.lang-switch a { color: var(--muted); }
.lang-switch a:hover { color: var(--brand); }

.has-mega { position: relative; }
.mega { position: absolute; top: calc(100% + 10px); left: -20px; width: 640px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; }
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.open .mega { opacity: 1; visibility: visible; transform: none; }
.has-mega:hover > .nav-link .ico, .has-mega.open > .nav-link .ico { transform: rotate(180deg); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item { display: flex; gap: 14px; padding: 14px; border-radius: 14px; color: var(--ink); }
.mega-item:hover { background: var(--bg-soft); color: var(--ink); }
.mega-item b { display: block; color: var(--navy); font-size: 15.5px; }
.mega-item small { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.45; margin-top: 3px; }
.mega-all { display: flex; align-items: center; gap: 6px; margin-top: 6px; padding: 12px 14px; border-top: 1px solid var(--line); font-weight: 700; font-size: 14.5px; }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; cursor: pointer; color: var(--navy); }
.burger .i-close { display: none; }

/* Hero */
.hero, .pagehero { position: relative; overflow: hidden; }
.hero { padding: 72px 0 88px; }
.pagehero { padding: 56px 0 72px; }
.pagehero.small { padding: 64px 0 48px; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(900px 480px at 85% -10%, rgba(20, 121, 184, .16), transparent 60%),
  radial-gradient(700px 420px at -10% 110%, rgba(79, 195, 232, .12), transparent 60%),
  linear-gradient(180deg, #F7F9FE 0%, #fff 100%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(11, 27, 58, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 27, 58, .045) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.hero .hero-grid, .pagehero.has-visual .hero-grid { grid-template-columns: 1.02fr 1fr; }
.pagehero:not(.has-visual) .hero-copy { max-width: 820px; }
.pagehero.small .hero-copy { max-width: 720px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: var(--muted); font-size: 15px; font-weight: 600; }
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points .ico, .checks .ico, .band .ico { color: var(--green); }
.crumbs { display: flex; gap: 8px; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.ph-icon { display: flex; width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--brand), var(--sky)); color: #fff; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 10px 24px rgba(20, 121, 184, .3); }
.ph-icon .ico { width: 28px; height: 28px; }
.pagehero h1 { font-size: clamp(26px, 3vw, 40px); }

/* App mock illustration */
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 8% -4% -6% 10%; background: linear-gradient(135deg, rgba(20, 121, 184, .35), rgba(79, 195, 232, .3)); filter: blur(50px); border-radius: 40px; z-index: -1; }
.mock { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; font-size: 12.5px; transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transition: transform .6s; }
.hero-visual:hover .mock { transform: none; }
.mk-top { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.mk-top i { width: 10px; height: 10px; border-radius: 50%; background: #D5DBE8; }
.mk-top i:nth-child(1) { background: #FF6B6B; } .mk-top i:nth-child(2) { background: #FFC24B; } .mk-top i:nth-child(3) { background: #3DD68C; }
.mk-top span { margin-left: 10px; font-weight: 700; color: var(--navy); }
.mk-body { display: grid; grid-template-columns: 124px 1fr; min-height: 330px; }
.mk-side { background: var(--navy); padding: 14px 10px; display: flex; flex-direction: column; gap: 2px; }
.mk-side li { color: rgba(255, 255, 255, .62); padding: 7px 10px; border-radius: 8px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-side li.on { background: rgba(255, 255, 255, .12); color: #fff; }
.mk-main { padding: 14px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.mk-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mk-kpi { border: 1px solid var(--line); border-radius: 12px; padding: 10px; min-width: 0; }
.mk-kpi span { display: block; color: var(--muted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-kpi b { display: block; color: var(--navy); font-size: 15px; margin: 2px 0; white-space: nowrap; }
.mk-kpi em { font-style: normal; font-weight: 700; font-size: 11px; }
.mk-kpi em.up { color: var(--green); } .mk-kpi em.dn { color: var(--red); }
.mk-chart { width: 100%; height: 110px; border: 1px solid var(--line); border-radius: 12px; padding: 6px; }
.mk-bars rect { fill: var(--brand-soft); }
.mk-bars rect:nth-last-child(-n+3) { fill: rgba(20, 121, 184, .5); }
.mk-line { fill: none; stroke: var(--brand); stroke-width: 2.5; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.mk-rows { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.mk-row { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 8px; padding: 8px 10px; align-items: center; }
.mk-row + .mk-row { border-top: 1px solid var(--line); }
.mk-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-row span:first-child { font-weight: 600; color: var(--navy); }
.mk-row span:nth-child(2) { color: var(--muted); }
.mk-pill { background: var(--green-soft); color: #08795D; font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 99px; }

/* Band */
.band { background: var(--navy); color: #fff; }
.band ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 0; }
.band li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, .88); }
.band .ico { color: #4FC3E8; }

/* Sections */
.sec { padding: 96px 0; }
.sec.tint { background: var(--bg-soft); }
.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-more { margin-top: 40px; text-align: center; }

.grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; color: var(--ink); transition: transform .25s, box-shadow .25s, border-color .25s; }
.tint .card { border-color: transparent; box-shadow: var(--shadow); }
.card h3 { margin: 18px 0 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-link:hover { color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-link .more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 20px; font-weight: 700; font-size: 15px; color: var(--brand); }
.card-link:hover .more .ico { transform: translateX(3px); }
.more .ico { transition: transform .2s; }
.card-ico { display: inline-flex; width: 48px; height: 48px; flex: none; border-radius: 14px; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand); }
.card:nth-child(3n+2) .card-ico { background: var(--sky-soft); color: #0B7FA8; }
.card:nth-child(3n+3) .card-ico { background: #FFF3E0; color: #D97706; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tags li { font-family: var(--font-mono); font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 99px; background: var(--bg-soft); color: var(--navy-2); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.checks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checks .ico { margin-top: 3px; }
.split-visual { position: relative; padding: 36px; border-radius: 28px; background: linear-gradient(145deg, var(--navy) 0%, #1A3A7A 100%); overflow: hidden; }
.split-visual::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(79, 195, 232, .45), transparent 70%); }
.flow { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; counter-reset: f; }
.flow li { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: 14px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); color: #fff; font-weight: 700; margin-left: calc(var(--i) * 14px); position: relative; }
.flow li + li::before { content: ""; position: absolute; left: 35px; top: -13px; width: 2px; height: 12px; background: rgba(255, 255, 255, .25); }
.flow .n { font-family: var(--font-mono); display: inline-flex; width: 36px; height: 36px; border-radius: 10px; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand), var(--sky)); font-size: 13px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.steps.n5 { grid-template-columns: repeat(5, 1fr); }
.steps li { position: relative; padding: 28px 24px; border-radius: var(--radius-lg); background: var(--bg-soft); }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 48px; right: -20px; width: 20px; height: 2px; background: repeating-linear-gradient(90deg, var(--brand) 0 4px, transparent 4px 8px); }
.step-n { font-family: var(--font-mono); display: inline-flex; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; background: var(--brand); color: #fff; font-weight: 800; margin-bottom: 18px; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 15px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { transition: transform .2s; color: var(--brand); }
.faq details[open] summary .ico { transform: rotate(180deg); }
.faq details p { padding: 0 24px 22px; color: var(--muted); }

/* CTA */
.cta-sec { padding: 24px 0 96px; }
.sec.tint + .cta-sec { padding-top: 96px; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 56px; border-radius: 28px; color: #fff; background: radial-gradient(600px 300px at 100% 0%, rgba(79, 195, 232, .45), transparent 60%), linear-gradient(135deg, #0E5E93 0%, var(--navy) 100%); box-shadow: var(--shadow-lg); }
.cta h2 { color: #fff; font-size: clamp(22px, 2.4vw, 32px); }
.cta p { color: rgba(255, 255, 255, .8); margin-top: 10px; font-size: 18px; max-width: 620px; }
.cta .btns { margin-top: 0; flex: none; }

/* Prose */
.prose { font-size: 17px; }
.prose h2 { font-size: 21px; margin: 36px 0 12px; }
.prose p, .prose ul { color: #394258; margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose li { margin-bottom: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fld { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.fld input, .fld select, .fld textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; font-size: 16px; font-weight: 500; transition: border-color .2s, box-shadow .2s; }
.fld textarea { resize: vertical; min-height: 120px; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(20, 121, 184, .14); }
.fld.invalid input, .fld.invalid textarea { border-color: var(--red); }
.fld.invalid input:focus, .fld.invalid textarea:focus { box-shadow: 0 0 0 4px rgba(229, 72, 77, .14); }
.fld input::placeholder, .fld textarea::placeholder { color: #9AA3B5; opacity: 1; font-weight: 400; }
.fld-err { color: #C4262B; font-size: 13.5px; font-weight: 500; line-height: 1.4; }
.fld-err:empty { display: none; }
.chk-err { margin-top: -10px; padding-left: 28px; }
.req { color: var(--red); }
.chk { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.chk input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--brand); flex: none; }
.chk.invalid span { color: var(--red); }
.form .btn { align-self: flex-start; }
.form-msg { font-weight: 600; font-size: 15px; }
.form-msg:empty { display: none; }
.form-msg.ok { color: #08795D; background: var(--green-soft); padding: 14px 16px; border-radius: 12px; }
.form-msg.err { color: #B42318; background: #FEEDEC; padding: 14px 16px; border-radius: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-info { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.contact-info h2 { color: #fff; font-size: 21px; margin-bottom: 26px; }
.contact-info ul { display: flex; flex-direction: column; gap: 22px; }
.contact-info li { display: flex; gap: 16px; align-items: center; }
.contact-info .card-ico { background: rgba(255, 255, 255, .1); color: #4FC3E8; }
.contact-info small { display: block; color: rgba(255, 255, 255, .6); font-size: 13px; font-weight: 600; }
.contact-info a, .contact-info div { color: #fff; font-weight: 600; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .7); font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-top: 72px; padding-bottom: 48px; }
.foot-brand p { margin-top: 16px; max-width: 320px; }
.site-footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, .7); }
.site-footer a:hover { color: #fff; }
.foot-contacts li { display: flex; gap: 10px; align-items: center; }
.foot-contacts .ico { color: #4FC3E8; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; padding-bottom: 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 14px; }

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .06s; }
.grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .12s; }
.grid .reveal:nth-child(4), .steps .reveal:nth-child(4) { transition-delay: .18s; }
.grid .reveal:nth-child(5), .steps .reveal:nth-child(5) { transition-delay: .24s; }
.grid .reveal:nth-child(6) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .mock { transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.n5 { grid-template-columns: repeat(2, 1fr); }
  .steps li::after { display: none; }
  .band ul { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  :root { --header: 64px; }
  .logo img { height: 42px; }
  .burger { display: inline-flex; }
  /* backdrop-filter would become the containing block of the fixed menu */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav { position: fixed; inset: var(--header) 0 0 0; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 20px 32px; background: #fff; overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .25s, visibility .25s; }
  .nav-open .nav { transform: none; visibility: visible; }
  .nav-open .burger .i-open { display: none; }
  .nav-open .burger .i-close { display: block; }
  .nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; margin: 0; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 4px; font-size: 17px; border-radius: 0; }
  .nav-link[aria-current] { background: none; }
  .mega { position: static; width: auto; box-shadow: none; border: 0; padding: 0 0 12px; display: none; opacity: 1; visibility: visible; transform: none; }
  .has-mega:hover .mega, .has-mega:focus-within .mega { display: none; }
  .has-mega.open .mega { display: block; }
  .has-mega:hover > .nav-link .ico { transform: none; }
  .has-mega.open > .nav-link .ico { transform: rotate(180deg); }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-item { padding: 10px 4px; }
  .nav-actions { margin: 24px 0 0; justify-content: space-between; }
  .nav-actions .btn { flex: 1; padding: 13px 16px; }

  .hero .hero-grid, .pagehero.has-visual .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 64px; }
  .mock { transform: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-copy { order: 0; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  .sec { padding: 72px 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .cols-2, .cols-3, .cols-4, .steps, .steps.n5, .band ul, .row2 { grid-template-columns: 1fr; }
  .band ul { gap: 12px; padding: 22px 0; }
  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 36px; }
  .card { padding: 24px; }
  .btns .btn { flex: 1 1 100%; }
  .mk-body { grid-template-columns: 1fr; min-height: 0; }
  .mk-side { display: none; }
  .mk-kpi b { font-size: 13px; }
  .split-visual { padding: 24px; }
  .flow li { margin-left: calc(var(--i) * 6px); }
  .form, .contact-info { padding: 24px; }
  .cta { padding: 32px 24px; border-radius: 22px; }
  .cta .btns { width: 100%; }
  .cta-sec { padding-bottom: 56px; }
  .sec.tint + .cta-sec { padding-top: 56px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
  .lang-switch { font-size: 12px; }
}
