:root {
  --navy: #0f2238;
  --navy-2: #162f4b;
  --blue: #176ff2;
  --blue-2: #4a9cff;
  --sky: #eaf4ff;
  --ice: #f4f8fc;
  --white: #fff;
  --ink: #152437;
  --muted: #627286;
  --line: #dce6f0;
  --orange: #ff6d35;
  --green: #18a76c;
  --shadow: 0 22px 60px rgba(18, 43, 72, .12);
  --shadow-soft: 0 12px 38px rgba(18, 43, 72, .09);
  --radius: 24px;
  --header-height: 126px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3, strong { font-weight: 750; }

.container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-light { background: var(--ice); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; border-radius: 8px; color: #fff; background: var(--navy); }
.skip-link:focus { transform: none; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 0; border-radius: 12px; cursor: pointer; font-weight: 720; line-height: 1.15; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #338cfa); box-shadow: 0 12px 28px rgba(23,111,242,.28); }
.button-primary:hover { box-shadow: 0 16px 34px rgba(23,111,242,.35); }
.button-accent { color: #fff; background: var(--orange); box-shadow: 0 10px 22px rgba(255,109,53,.24); }
.button-accent:hover { background: #f25d28; }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-white { color: var(--blue); background: #fff; box-shadow: 0 12px 30px rgba(8,36,76,.15); }
.button-large { min-height: 58px; padding: 17px 26px; }
.button-full { width: 100%; }
.button svg { width: 22px; height: 22px; fill: currentColor; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow-light { color: #92c5ff; }
.section-heading { max-width: 770px; margin-bottom: 48px; }
.section-heading h2, .production-intro h2, .calculator-copy h2, .advantages-copy h2, .faq-intro h2, .contact-copy h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p, .production-intro p, .calculator-copy > p, .advantages-copy > p, .faq-intro > p, .contact-copy > p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.section-heading-row { display: flex; max-width: none; align-items: flex-end; justify-content: space-between; gap: 30px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; color: var(--ink); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,230,240,.85); backdrop-filter: blur(18px); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(15,34,56,.09); }
.header-top { display: grid; min-height: 82px; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { position: relative; display: grid; width: 49px; height: 49px; place-items: center; border-radius: 13px; background: linear-gradient(145deg, var(--navy), #203d5c); box-shadow: 0 10px 24px rgba(15,34,56,.18); overflow: hidden; }
.brand-mark::before { content: ""; position: absolute; inset: 9px; border: 3px solid #fff; border-radius: 3px; }
.brand-mark::after { content: ""; position: absolute; top: 9px; bottom: 9px; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); }
.brand-mark span { position: absolute; z-index: 1; right: 9px; bottom: 9px; width: 14px; height: 14px; border-right: 3px solid #9ed1ff; border-bottom: 3px solid #9ed1ff; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 20px; letter-spacing: -.025em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.header-region { justify-self: start; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 8px; padding-left: 28px; border-left: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 720; }
.header-region small { grid-column: 2; color: var(--muted); font-size: 12px; font-weight: 500; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(24,167,108,.12); }
.header-contact { display: grid; text-align: right; }
.header-contact a { font-size: 18px; font-weight: 780; line-height: 1.2; }
.header-contact .header-phone-secondary { color: var(--blue); font-size: 13px; }
.header-hours { color: var(--muted); font-size: 11px; }
.header-button { min-height: 44px; font-size: 14px; }
.main-nav { border-top: 1px solid var(--line); }
.nav-inner { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 18px; }
.nav-inner a { position: relative; padding: 12px 4px 10px; color: #3d4f63; font-size: 13px; font-weight: 670; }
.nav-inner a::after { content: ""; position: absolute; right: 50%; bottom: 5px; left: 50%; height: 2px; background: var(--blue); transition: right .2s ease, left .2s ease; }
.nav-inner a:hover { color: var(--blue); }
.nav-inner a:hover::after { right: 4px; left: 4px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 12px; background: var(--ice); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.hero { position: relative; min-height: 680px; color: #fff; background: var(--navy); overflow: hidden; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(7,22,38,.98) 0%, rgba(7,22,38,.92) 34%, rgba(7,22,38,.48) 58%, rgba(7,22,38,.14) 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; min-height: 680px; grid-template-columns: minmax(0, 1fr) 345px; align-items: center; gap: 90px; padding-top: 54px; padding-bottom: 58px; }
.hero-copy { max-width: 700px; }
.hero h1 { max-width: 720px; margin-bottom: 25px; font-size: clamp(48px, 5.1vw, 73px); line-height: .98; letter-spacing: -.052em; }
.hero h1 em { display: block; margin-top: 10px; color: #92c5ff; font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 25px; color: #d4e1ed; font-size: 18px; line-height: 1.6; }
.hero-price { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; }
.hero-price strong { font-size: 31px; letter-spacing: -.025em; }
.hero-price span { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.25); color: #bfcfe0; font-size: 13px; }
.hero-actions { display: flex; gap: 13px; }
.hero-actions-mobile { display: none; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 27px 0 0; padding: 0; color: #d4e1ed; list-style: none; font-size: 13px; font-weight: 620; }
.hero-benefits span { color: #79c9a9; }
.hero-card { padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(18,45,72,.78); box-shadow: 0 28px 80px rgba(0,0,0,.23); backdrop-filter: blur(18px); }
.hero-card-label { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: #a8d2ff; background: rgba(72,145,232,.18); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-card h2 { margin: 18px 0 11px; font-size: 26px; line-height: 1.12; letter-spacing: -.025em; }
.hero-card > p { margin-bottom: 20px; color: #c9d8e7; font-size: 14px; }
.messenger-list { display: grid; gap: 9px; }
.messenger { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; min-height: 52px; padding: 8px 12px; border-radius: 12px; color: #fff; font-size: 13px; font-weight: 700; transition: transform .2s ease, filter .2s ease; }
.messenger:hover { transform: translateX(3px); filter: brightness(1.08); }
.messenger b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 9px; background: rgba(255,255,255,.18); font-size: 12px; }
.messenger-max { background: #5e3df5; }
.messenger-tg { background: #279bdc; }
.text-button { margin-top: 16px; padding: 0; border: 0; color: #a8d2ff; background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }

.trust-bar { position: relative; z-index: 2; color: #fff; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); }
.trust-grid { display: grid; grid-template-columns: .8fr .75fr .9fr 1.55fr; }
.trust-grid > div { display: grid; min-height: 120px; align-content: center; padding: 20px 30px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { padding-right: 0; border: 0; }
.trust-grid strong { font-size: 26px; letter-spacing: -.03em; }
.trust-grid > div:last-child strong { font-size: 16px; }
.trust-grid span { color: #91c6ff; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.trust-grid small { color: #aebed0; font-size: 12px; }

/* Problems */
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card { min-width: 0; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 8px 26px rgba(20,45,75,.05); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.problem-image { height: 230px; padding: 0; background: #e7edf2; }
.problem-image img { width: 100%; height: 100%; object-fit: cover; }
.before-after { position: relative; width: 100%; height: 100%; overflow: hidden; background: #e7edf2; isolation: isolate; }
.before-after > img, .before-after-after, .before-after-after img { position: absolute; inset: 0; width: 100%; height: 100%; }
.before-after > img, .before-after-after img { display: block; object-fit: cover; }
.before-after-after { clip-path: inset(0 0 0 var(--compare-position)); }
.before-after input { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; touch-action: pan-y; }
.before-after-divider { position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--compare-position); width: 2px; background: rgba(255,255,255,.96); box-shadow: 0 0 0 1px rgba(18,38,58,.2); transform: translateX(-50%); pointer-events: none; }
.before-after-handle { position: absolute; top: 50%; left: 50%; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(19,43,66,.12); border-radius: 50%; color: #14283b; background: #fff; box-shadow: 0 5px 18px rgba(17,40,62,.2); transform: translate(-50%,-50%); }
.before-after-handle svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.before-after:focus-within .before-after-handle { box-shadow: 0 0 0 3px rgba(25,105,255,.22), 0 5px 18px rgba(17,40,62,.2); }
.problem-content { padding: 23px; }
.problem-content > span, .type-number { display: inline-flex; min-width: 38px; height: 27px; align-items: center; justify-content: center; margin-bottom: 13px; border-radius: 999px; color: var(--blue); background: var(--sky); font-size: 11px; font-weight: 800; }
.problem-content h3 { min-height: 50px; margin-bottom: 11px; font-size: 19px; line-height: 1.25; letter-spacing: -.015em; }
.problem-content p { min-height: 84px; margin-bottom: 16px; color: var(--muted); font-size: 14px; }
.problem-content button, .service-card button, .work-copy button { padding: 0; border: 0; color: var(--blue); background: none; cursor: pointer; font-size: 13px; font-weight: 750; }

/* Glass type cards */
.price-note { display: grid; min-width: 270px; padding: 16px 19px; border-left: 3px solid var(--blue); background: var(--ice); }
.price-note b { font-size: 14px; }
.price-note span { color: var(--muted); font-size: 12px; }
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.type-card { display: grid; grid-template-columns: 45% 55%; min-height: 295px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.type-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.type-card-body { display: flex; min-width: 0; flex-direction: column; padding: 23px 14px 34px 24px; }
.type-card h3 { margin-bottom: 9px; font-size: 18px; line-height: 1.22; letter-spacing: -.018em; }
.type-card p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.type-price { display: grid; justify-items: stretch; gap: 12px; margin-top: 10px; }
.type-price strong { color: var(--orange); font-size: 24px; letter-spacing: -.03em; line-height: 1.05; white-space: nowrap; }
.type-price button { width: 100%; min-height: 48px; padding: 13px 18px; border: 0; border-radius: 12px; color: #fff; background: var(--blue); box-shadow: 0 9px 21px rgba(23,111,242,.23); cursor: pointer; font-size: 14px; font-weight: 780; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.type-price button:hover { transform: translateY(-2px); background: #0f61db; box-shadow: 0 11px 24px rgba(23,111,242,.28); }
.glass-visual { position: relative; min-height: 100%; overflow: hidden; background: #edf7fe; }
.glass-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .35s ease; }
.glass-visual::after { content: ""; position: absolute; z-index: 1; top: -35%; bottom: -35%; left: -65%; width: 38%; pointer-events: none; opacity: 0; background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.08) 24%, rgba(255,255,255,.74) 49%, rgba(204,238,255,.28) 65%, transparent 100%); filter: blur(1px); transform: translateX(0) skewX(-14deg); mix-blend-mode: screen; will-change: transform, opacity; }
.glass-visual.is-glinting::after { animation: glass-glint 1.35s cubic-bezier(.22,.61,.36,1) both; }
.type-card:hover .glass-visual img { transform: scale(1.025); }
.glass-badge { --badge-accent: #1673e6; position: absolute; z-index: 2; top: 13px; left: 12px; display: flex; width: calc(100% - 24px); max-width: 158px; align-items: center; gap: 9px; padding: 8px 10px 8px 8px; border: 1px solid rgba(255,255,255,.78); border-radius: 13px; color: #102c4a; background: rgba(255,255,255,.9); box-shadow: 0 7px 22px rgba(19,54,89,.16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.glass-badge-icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 10px; color: #fff; background: var(--badge-accent); box-shadow: 0 4px 12px color-mix(in srgb, var(--badge-accent) 35%, transparent); }
.glass-badge-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.glass-badge-copy { display: grid; min-width: 0; line-height: 1.08; }
.glass-badge-copy strong { font-size: 11px; letter-spacing: -.01em; }
.glass-badge-copy small { margin-top: 3px; color: #60778f; font-size: 8.5px; font-weight: 700; white-space: nowrap; }
.glass-badge--energy-one, .glass-badge--energy-two { --badge-accent: #f28a1b; }
.glass-badge--solar-one, .glass-badge--solar-two { --badge-accent: #e9aa14; }
.glass-badge--soundproof { --badge-accent: #7356d8; }
.glass-badge--tinted { --badge-accent: #40586d; }
.glass-badge--armored { --badge-accent: #dc4c50; }
.glass-badge--tempered { --badge-accent: #169d9b; }
.glass-badge--triplex { --badge-accent: #3576bc; }
.glass-badge--large-format { --badge-accent: #168c68; }

@keyframes glass-glint {
  0% { opacity: 0; transform: translateX(0) skewX(-14deg); }
  18% { opacity: .82; }
  78% { opacity: .65; }
  100% { opacity: 0; transform: translateX(450%) skewX(-14deg); }
}

@media (prefers-reduced-motion: reduce) {
  .glass-visual.is-glinting::after { animation: none; }
}

.quick-cta { padding: 34px 0; color: #fff; background: linear-gradient(120deg, #176ff2, #0e58c0); }
.quick-cta-inner { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 26px; }
.quick-icon { display: grid; width: 76px; height: 76px; place-items: center; border-radius: 19px; background: rgba(255,255,255,.12); }
.quick-icon svg { width: 50px; height: 50px; fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.5; }
.quick-cta span { color: #bcdcff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.quick-cta h2 { margin: 3px 0 5px; font-size: 25px; letter-spacing: -.02em; }
.quick-cta p { margin: 0; color: #d9e9ff; font-size: 14px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 8px 24px rgba(20,45,75,.05); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-card img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; background: #f3f6f9; }
.service-card > div { padding: 22px; }
.service-card > div > span { display: block; margin-bottom: 8px; color: var(--blue); font-size: 11px; font-weight: 800; }
.service-card h3 { min-height: 50px; margin-bottom: 10px; font-size: 19px; line-height: 1.25; }
.service-card p { min-height: 69px; margin-bottom: 15px; color: var(--muted); font-size: 13px; }

/* Calculator */
.calculator-section { color: #fff; background: var(--navy); }
.calculator-shell { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; }
.calculator-copy h2 { color: #fff; }
.calculator-copy > p { color: #bfcedd; }
.calculator-copy ol { display: grid; gap: 16px; margin: 31px 0; padding: 0; list-style: none; }
.calculator-copy li { display: flex; align-items: center; gap: 15px; }
.calculator-copy li b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #91c5ff; background: rgba(255,255,255,.05); }
.calculator-copy li span { color: #d0dce8; font-size: 14px; }
.calc-photo { padding: 17px 19px; border-left: 3px solid var(--blue-2); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.06); }
.calc-photo span { color: #8fc5ff; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.calc-photo p { margin: 3px 0 8px; color: #c6d4e2; font-size: 13px; }
.calc-photo a { margin-right: 15px; color: #fff; font-size: 13px; font-weight: 720; }
.calculator-card { padding: 34px; border-radius: 26px; color: var(--ink); background: #fff; box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.calc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 25px; }
.calc-head span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.calc-head h3 { margin: 4px 0 0; font-size: 24px; }
.calc-step { display: grid; min-width: 58px; height: 34px; place-items: center; border-radius: 999px; color: var(--blue); background: var(--sky); font-size: 12px; font-weight: 800; }
.calc-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.calc-controls label { display: grid; gap: 6px; color: #46596c; font-size: 12px; font-weight: 700; }
.calc-controls select, .calc-controls input { width: 100%; height: 49px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fbfdff; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.calc-controls select:focus, .calc-controls input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,111,242,.1); }
.calc-size { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto 1fr auto .7fr; align-items: end; gap: 9px; }
.calc-size > span { padding-bottom: 13px; color: #8090a2; }
.calc-result { display: grid; margin: 22px 0 18px; padding: 18px 20px; border-radius: 14px; background: var(--ice); }
.calc-result > span { color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; }
.calc-result strong { color: var(--blue); font-size: 30px; letter-spacing: -.03em; }
.calc-result small { color: var(--muted); font-size: 11px; }
.calc-disclaimer { margin: 12px 0 0; color: #8391a0; font-size: 10px; text-align: center; }

/* Improvements */
.improvement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.improvement { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 8px 30px rgba(20,45,75,.05); }
.improvement-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; margin: 0; background: #e9f1f8; }
.improvement-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 -22px 28px rgba(12,31,52,.08); }
.improvement-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.improvement:hover .improvement-photo img { transform: scale(1.025); }
.improvement-body { flex: 1; padding: 22px 24px 25px; }
.improvement strong { display: block; margin: 0 0 8px; font-size: 22px; }
.improvement p { margin: 0; color: var(--muted); font-size: 14px; }

/* Production */
.production-section { color: #fff; background: linear-gradient(135deg, #0f2238, #173653); }
.production-intro { display: grid; grid-template-columns: 1fr .85fr; align-items: end; gap: 80px; margin-bottom: 45px; }
.production-intro p { color: #c0cfde; }
.production-gallery { display: grid; grid-template-columns: 1.35fr .65fr .65fr; grid-template-rows: 255px 210px; gap: 16px; }
.production-gallery figure { position: relative; margin: 0; border-radius: 19px; overflow: hidden; }
.production-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.production-gallery figure:hover img { transform: scale(1.035); }
.production-main { grid-row: 1 / 3; }
.production-main img { object-position: center 42%; }
.production-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; padding: 42px 21px 18px; color: #fff; background: linear-gradient(transparent, rgba(6,18,31,.86)); font-size: 12px; }
.production-gallery figcaption b { font-size: 17px; }
.production-crop-a img { object-position: 18% center; }
.production-crop-b img { object-position: 8% center; }
.production-facts { display: grid; grid-column: 2 / 4; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 23px; border: 1px solid rgba(255,255,255,.1); border-radius: 19px; background: rgba(255,255,255,.06); }
.production-facts > div { display: grid; align-content: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,.1); }
.production-facts > div:last-child { border: 0; }
.production-facts strong { font-size: 15px; }
.production-facts span { color: #9eb2c6; font-size: 12px; }

/* Process and works */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-grid article { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 15px; padding-right: 28px; }
.process-grid article:not(:last-child)::after { content: ""; position: absolute; top: 29px; right: 12px; width: 25px; border-top: 1px dashed #b8c9dc; }
.process-grid article > span { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 16px; color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(23,111,242,.22); font-weight: 800; }
.process-grid h3 { margin: 2px 0 6px; font-size: 18px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.slider-controls { display: flex; align-items: center; gap: 12px; }
.slider-controls button { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-size: 18px; transition: background .2s ease, color .2s ease; }
.slider-controls button:hover { color: #fff; background: var(--blue); }
.slider-controls span { min-width: 58px; color: var(--muted); font-size: 12px; font-weight: 750; text-align: center; }
.works-slider { display: grid; grid-auto-columns: calc((100% - 40px) / 3); grid-auto-flow: column; gap: 20px; overflow: hidden; scroll-behavior: smooth; scrollbar-width: none; }
.work-card { border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 8px 26px rgba(20,45,75,.05); overflow: hidden; }
.work-image { position: relative; height: 285px; overflow: hidden; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.work-card:hover .work-image img { transform: scale(1.045); }
.work-image > span { position: absolute; top: 15px; left: 15px; display: grid; width: 38px; height: 30px; place-items: center; border-radius: 9px; color: #fff; background: rgba(15,34,56,.78); backdrop-filter: blur(6px); font-size: 11px; font-weight: 800; }
.work-copy { padding: 21px; }
.work-copy h3 { margin-bottom: 8px; font-size: 18px; }
.work-copy p { min-height: 43px; margin-bottom: 13px; color: var(--muted); font-size: 13px; }
.slider-dots { display: none; justify-content: center; gap: 7px; margin-top: 20px; }
.slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: #c5d2df; transition: width .2s ease, background .2s ease; }
.slider-dots button.active { width: 26px; background: var(--blue); }

/* Advantages, reviews, FAQ */
.advantages-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.advantages-copy .button { margin-top: 19px; }
.advantage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.advantage-list article { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.advantage-list article > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 12px; color: var(--blue); background: var(--sky); font-size: 12px; font-weight: 800; }
.advantage-list h3 { margin: 1px 0 5px; font-size: 17px; }
.advantage-list p { margin: 0; color: var(--muted); font-size: 13px; }
.reviews-section { color: #fff; background: var(--navy); }
.reviews-section .section-heading p { color: #b9c9d9; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-grid blockquote { margin: 0; padding: 29px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(255,255,255,.055); }
.stars { margin-bottom: 15px; color: #ffbf35; letter-spacing: .13em; }
.review-grid blockquote > p { min-height: 105px; margin-bottom: 22px; color: #e0e8f0; font-size: 15px; line-height: 1.65; }
.review-grid footer { display: grid; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.1); }
.review-grid footer b { font-size: 14px; }
.review-grid footer span { color: #92a8bd; font-size: 12px; }
.faq-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.faq-intro { position: sticky; top: 165px; align-self: start; }
.faq-intro > a { display: inline-block; margin-top: 24px; color: var(--blue); font-size: 24px; font-weight: 780; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item > button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; border: 0; background: transparent; cursor: pointer; text-align: left; font-size: 17px; font-weight: 720; }
.faq-item button i { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--sky); }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--blue); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { min-height: 0; margin: 0; color: var(--muted); overflow: hidden; }
.faq-answer[data-open] { grid-template-rows: 1fr; }
.faq-answer[data-open] > p { padding-bottom: 23px; }

/* Contacts and footer */
.contacts-section { padding: 100px 0; color: #fff; background: linear-gradient(135deg, #176ff2 0%, #0e57c4 62%, #0b428f 100%); overflow: hidden; }
.contact-shell { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.contact-copy > p { color: #dbeaff; }
.contact-phones { display: grid; margin-top: 31px; }
.contact-phones a { width: fit-content; font-size: 25px; font-weight: 800; }
.contact-phones a:nth-child(2) { margin-top: 2px; color: #bcdcff; font-size: 17px; }
.contact-phones span { margin-top: 6px; color: #bcd5ef; font-size: 12px; }
.contact-messengers { display: flex; gap: 10px; margin-top: 21px; }
.contact-messengers a { padding: 9px 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; background: rgba(255,255,255,.1); font-size: 13px; font-weight: 720; }
.lead-form-card, .modal-card { color: var(--ink); background: #fff; }
.lead-form-card { padding: 35px; border-radius: 24px; box-shadow: 0 30px 80px rgba(4,35,79,.28); }
.form-heading span, .modal-label { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 5px 0 21px; font-size: 24px; }
.lead-form-card form, .modal-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form-card .form-field, .modal-card .form-field { margin: 0; }
.lead-form-card .form-field:nth-of-type(3), .lead-form-card .form-field:nth-of-type(4), .lead-form-card .buttons, .lead-form-card .form-message { grid-column: 1 / -1; }
.form-field label { display: block; margin-bottom: 5px; color: #45586b; font-size: 11px; font-weight: 720; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fbfdff; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 92px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,111,242,.1); }
.form-field.checkbox .form-data, .form-field[data-grav-field="checkbox"] .form-data { display: flex; align-items: flex-start; gap: 8px; }
.form-field.checkbox input, .form-field[data-grav-field="checkbox"] input { margin-top: 3px; accent-color: var(--blue); }
.form-field.checkbox label, .form-field[data-grav-field="checkbox"] label { color: var(--muted); font-size: 10px; }
.buttons { margin: 0; }
.buttons button, .form-actions button, form .button[type="submit"] { width: 100%; min-height: 50px; padding: 13px 20px; border: 0; border-radius: 11px; color: #fff; background: var(--orange); cursor: pointer; font-weight: 750; }
.form-message { padding: 11px 14px; border-radius: 9px; color: #0d6f48; background: #e7f8f1; font-size: 12px; }
.form-errors { color: #c93131; font-size: 11px; }
.form-wrapper .notices { grid-column: 1 / -1; margin: 0 0 14px; padding: 13px 15px; border-radius: 10px; color: #0d6f48; background: #e7f8f1; font-size: 13px; }
.form-wrapper .notices p { margin: 0; }
.form-wrapper .notices.error, .form-wrapper .notices.red { color: #a52525; background: #fff0f0; }
.site-footer { color: #c4d0dc; background: #091827; }
.footer-main { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 45px; padding-top: 44px; padding-bottom: 35px; }
.brand-footer .brand-copy strong { color: #fff; }
.footer-main > p { margin: 0; color: #8fa2b5; font-size: 12px; }
.footer-main nav { display: flex; gap: 17px; color: #c9d4df; font-size: 12px; font-weight: 650; }
.footer-main > div:last-child { display: grid; text-align: right; }
.footer-phone { color: #fff; font-size: 18px; font-weight: 760; }
.footer-main > div:last-child span { color: #7f94a8; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; padding-bottom: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #71869a; font-size: 10px; }
.footer-link { padding: 0; border: 0; color: #8fa4b8; background: none; cursor: pointer; font-size: inherit; text-decoration: underline; text-underline-offset: 3px; }
.mobile-bar { display: none; }

/* Modals */
.modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .22s ease, visibility .22s ease; }
.modal[aria-hidden="false"] { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,18,30,.76); backdrop-filter: blur(7px); }
.modal-card { position: relative; z-index: 1; width: min(480px, 100%); max-height: calc(100vh - 40px); padding: 34px; border-radius: 23px; box-shadow: 0 35px 100px rgba(0,0,0,.35); overflow: auto; transform: translateY(15px) scale(.98); transition: transform .22s ease; }
.modal[aria-hidden="false"] .modal-card { transform: none; }
.modal-card-wide { width: min(740px, 100%); }
.modal-close { position: absolute; top: 15px; right: 15px; display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; color: #53677b; background: var(--ice); cursor: pointer; font-size: 24px; line-height: 1; }
.modal-card h2 { margin: 6px 35px 10px 0; font-size: 26px; line-height: 1.12; }
.modal-card > p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.privacy-modal > p { font-size: 14px; line-height: 1.7; }
.modal-card form { grid-template-columns: 1fr; }
.modal-card-wide form { grid-template-columns: 1fr 1fr; }
.modal-card-wide .buttons { grid-column: 1 / -1; }
.messenger-choice-card { width: min(410px, 100%); }
.messenger-choice-list { display: grid; gap: 11px; margin-top: 22px; }
.messenger-choice-list .messenger { min-height: 60px; font-size: 15px; }

/* Motion
   Content is visible by default. The script enables the hidden start state only
   after it has loaded successfully, so a missing/blocked JS file can never leave
   the page empty. */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
@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; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1160px) {
  .header-region { display: none; }
  .header-top { grid-template-columns: 1fr auto auto; }
  .hero-inner { grid-template-columns: minmax(0,1fr) 320px; gap: 45px; }
  .problem-grid, .service-grid, .improvement-grid { grid-template-columns: repeat(2,1fr); }
  .type-grid { grid-template-columns: repeat(2,1fr); }
  .calculator-shell, .production-intro, .advantages-shell, .faq-shell, .contact-shell { gap: 48px; }
  .footer-main { grid-template-columns: auto 1fr auto; }
  .footer-main nav { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  html { scroll-padding-top: 84px; }
  .container { width: min(100% - 34px, 740px); }
  .section { padding: 78px 0; }
  .header-top { min-height: 74px; grid-template-columns: 1fr auto auto; gap: 12px; }
  .header-contact { display: none; }
  .header-button { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; top: 74px; right: 0; left: 0; max-height: 0; border-top: 0; background: #fff; box-shadow: 0 20px 45px rgba(15,34,56,.14); overflow: hidden; transition: max-height .3s ease; }
  .main-nav.is-open { max-height: calc(100vh - 74px); }
  .nav-inner { display: grid; min-height: auto; gap: 0; padding-top: 12px; padding-bottom: 18px; }
  .nav-inner a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .hero { min-height: auto; }
  .hero-media img { object-position: 60% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,22,38,.96), rgba(7,22,38,.7)); }
  .hero-inner { min-height: 720px; grid-template-columns: 1fr; gap: 35px; padding-top: 58px; padding-bottom: 58px; }
  .hero-card { max-width: 470px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { min-height: 105px; padding: 18px 24px !important; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:nth-child(even) { border-right: 0; }
  .trust-grid > div:nth-child(n+3) { border-bottom: 0; }
  .section-heading-row { display: grid; align-items: start; }
  .price-note { min-width: 0; width: 100%; }
  .quick-cta-inner { grid-template-columns: 65px 1fr; }
  .quick-cta .button { grid-column: 2; justify-self: start; }
  .quick-icon { width: 62px; height: 62px; }
  .quick-icon svg { width: 41px; height: 41px; }
  .calculator-shell, .production-intro, .advantages-shell, .faq-shell, .contact-shell { grid-template-columns: 1fr; }
  .calculator-copy { max-width: 650px; }
  .production-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 220px auto; }
  .production-main { grid-column: 1 / -1; grid-row: auto; }
  .production-facts { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .process-grid article:nth-child(2)::after { display: none; }
  .works-slider { grid-auto-columns: calc((100% - 20px) / 2); }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { display: none; }
}

@media (max-width: 620px) {
  body { padding-bottom: 64px; font-size: 15px; }
  .container { width: min(100% - 28px, 520px); }
  .section { padding: 62px 0; }
  .brand-mark { width: 43px; height: 43px; border-radius: 11px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 9px; }
  .hero-media img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(7,22,38,.76) 0%, rgba(7,22,38,.91) 50%, rgba(7,22,38,.99) 100%); }
  .hero-inner { min-height: auto; padding-top: 50px; padding-bottom: 42px; }
  .hero h1 { margin-bottom: 20px; font-size: 43px; }
  .hero h1 em { margin-top: 7px; }
  .hero-lead { font-size: 16px; }
  .hero-price { align-items: flex-start; gap: 14px; }
  .hero-price strong { font-size: 26px; }
  .hero-price span { padding-left: 14px; font-size: 11px; }
  .hero-actions { display: grid; }
  .hero-actions-desktop { display: none; }
  .hero-actions-mobile { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-ghost { color: var(--orange); border-color: var(--orange); background: rgba(255,109,53,.08); }
  .hero-actions .button-ghost svg { color: var(--orange); }
  .hero-benefits { display: grid; gap: 8px; }
  .hero-card { display: none; }
  .trust-grid { margin-inline: 0; width: 100%; }
  .trust-grid > div { padding: 15px 14px !important; }
  .trust-grid strong { font-size: 21px; }
  .trust-grid > div:last-child strong { font-size: 12px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .production-intro h2, .calculator-copy h2, .advantages-copy h2, .faq-intro h2, .contact-copy h2 { font-size: 34px; }
  .section-heading p, .production-intro p, .calculator-copy > p, .advantages-copy > p, .faq-intro > p, .contact-copy > p { font-size: 15px; }
  .problem-grid, .service-grid, .improvement-grid, .type-grid, .advantage-list, .review-grid { grid-template-columns: 1fr; }
  .problem-image { height: 205px; }
  .problem-content h3, .problem-content p { min-height: 0; }
  .type-card { grid-template-columns: 43% 57%; min-height: 270px; }
  .type-card-body { padding: 19px 15px 26px 18px; }
  .type-card h3 { font-size: 16px; }
  .type-price { justify-items: stretch; gap: 10px; margin-top: 8px; }
  .type-price strong { font-size: 21px; }
  .type-price button { width: 100%; min-height: 46px; padding: 12px 15px; font-size: 13px; }
  .glass-badge { top: 10px; left: 9px; width: calc(100% - 18px); gap: 7px; padding: 6px 7px 6px 6px; border-radius: 11px; }
  .glass-badge-icon { width: 30px; height: 30px; flex-basis: 30px; border-radius: 8px; }
  .glass-badge-icon svg { width: 20px; height: 20px; }
  .glass-badge-copy strong { font-size: 10px; }
  .glass-badge-copy small { font-size: 7.6px; }
  .quick-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .quick-icon { margin-inline: auto; }
  .quick-cta .button { grid-column: auto; justify-self: stretch; }
  .quick-cta h2 { font-size: 22px; }
  .service-card img { height: auto; }
  .service-card h3, .service-card p { min-height: 0; }
  .calculator-card { padding: 23px 19px; }
  .calc-controls { grid-template-columns: 1fr; }
  .calc-size { grid-template-columns: 1fr auto 1fr; }
  .calc-size label:last-child { grid-column: 1 / -1; }
  .calc-size > span:last-of-type { display: none; }
  .calc-result strong { font-size: 26px; }
  .improvement-photo { aspect-ratio: 16 / 10; }
  .improvement-body { padding: 21px 22px 24px; }
  .production-gallery { grid-template-columns: 1fr; grid-template-rows: 350px 210px 210px auto; }
  .production-main, .production-facts { grid-column: auto; }
  .production-facts { grid-template-columns: 1fr; }
  .production-facts > div { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article::after { display: none; }
  .works-slider { grid-auto-columns: 88%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .work-card { scroll-snap-align: start; }
  .slider-controls { display: none; }
  .slider-dots { display: flex; }
  .work-image { height: 245px; }
  .advantages-shell, .faq-shell, .contact-shell { gap: 38px; }
  .advantage-list article { padding: 20px; }
  .review-grid blockquote > p { min-height: 0; }
  .contacts-section { padding: 68px 0; }
  .lead-form-card { padding: 25px 20px; }
  .lead-form-card form { grid-template-columns: 1fr; }
  .lead-form-card .form-field, .lead-form-card .buttons { grid-column: auto !important; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-main .brand { justify-self: center; }
  .footer-main > div:last-child { text-align: center; }
  .footer-bottom { display: grid; text-align: center; }
  .mobile-bar { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 64px; color: #fff; background: var(--navy); box-shadow: 0 -8px 25px rgba(15,34,56,.16); }
  .mobile-bar a, .mobile-bar button { display: flex; align-items: center; justify-content: center; gap: 8px; border: 0; color: #fff; background: transparent; font-size: 13px; font-weight: 750; }
  .mobile-bar button { background: var(--blue); }
  .modal { height: 100vh; height: 100dvh; align-items: end; padding: 8px 0 0; overflow: hidden; }
  .modal-card {
    width: 100%;
    max-height: calc(100vh - 8px);
    max-height: calc(100dvh - 8px);
    padding: 27px 20px max(24px, env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .modal-card h2 { margin-top: 4px; font-size: 25px; }
  .modal-card > p { margin-bottom: 16px; }
  .modal-card form { gap: 11px; }
  .modal-card-wide form { grid-template-columns: 1fr; }
  .modal-card-wide .buttons { grid-column: auto; }
}
