:root {
  --blue: #115bdf;
  --blue-2: #0b73ef;
  --sky: #45c8ff;
  --navy: #071b3a;
  --navy-2: #0b2b55;
  --ink: #10233f;
  --muted: #60708a;
  --line: #dbe5f1;
  --pale: #f3f8ff;
  --white: #ffffff;
  --success: #0f9b73;
  --shadow: 0 22px 60px rgba(7, 27, 58, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-pale { background: var(--pale); }
.section-dark { color: var(--white); background: var(--navy); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #78d8ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 5.65rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 4vw, 3.65rem); }
h3 { margin-bottom: 12px; font-size: 1.3rem; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.lead { max-width: 740px; color: var(--muted); font-size: 1.16rem; }
.section-dark .lead { color: #c4d2e4; }
.section-heading { display: grid; grid-template-columns: 1fr .9fr; gap: 56px; align-items: end; margin-bottom: 50px; }
.section-heading p { margin: 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(4, 17, 38, .54);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(7,27,58,.96); box-shadow: 0 10px 34px rgba(0,0,0,.16); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: white; font-size: 1.38rem; font-weight: 850; letter-spacing: -.04em; }
.brand img { width: 34px; height: 38px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a { position: relative; color: #dce7f6; font-size: .9rem; font-weight: 650; white-space: nowrap; }
.main-nav > a:hover, .main-nav > a.active { color: white; }
.main-nav > a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: #4bc9ff; }
.nav-cta { padding: 11px 18px; border-radius: 10px; color: white !important; background: var(--blue); box-shadow: 0 8px 22px rgba(17,91,223,.28); }
.nav-cta::after { display: none !important; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; color: white; background: transparent; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroCycle 18s infinite;
  transform: scale(1.05);
}
.hero-slide:nth-child(1) { background-image: url('hero-cafe.webp'); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url('hero-warehouse.webp'); animation-delay: 6s; }
.hero-slide:nth-child(3) { background-image: url('hero-project.webp'); animation-delay: 12s; }
@keyframes heroCycle {
  0% { opacity: 0; transform: scale(1.06); }
  5%, 28% { opacity: 1; }
  33%, 100% { opacity: 0; transform: scale(1); }
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3,15,34,.96) 0%, rgba(3,15,34,.88) 42%, rgba(3,15,34,.34) 72%, rgba(3,15,34,.18) 100%),
    linear-gradient(0deg, rgba(3,15,34,.92) 0%, transparent 42%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding: 148px 0 122px;
  display: grid;
  grid-template-columns: 1.16fr .64fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { max-width: 770px; }
.hero-kicker { display: inline-flex; align-items: center; margin-bottom: 20px; color: #aee9ff; font-size: .83rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { margin-bottom: 24px; color: white; max-width: 760px; }
.hero h1 em { display: block; color: #52d0ff; font-style: normal; }
.rotating-term { display: inline-block; min-width: 11ch; }
.hero-sub { max-width: 660px; margin-bottom: 30px; color: #d4deec; font-size: clamp(1.04rem, 1.7vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(17,91,223,.34); }
.button-primary:hover { background: var(--blue-2); }
.button-ghost { color: white; border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-light { color: var(--blue); background: white; }
.button-outline { color: var(--blue); border-color: #a9c6f4; background: transparent; }
.button-arrow::after { content: "→"; font-size: 1.15em; }

.hero-panel {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(7,27,58,.7);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.panel-label { color: #b7c7dc; font-size: .77rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-amount { margin: 6px 0 20px; color: white; font-size: clamp(2.2rem, 4vw, 3.55rem); font-weight: 850; letter-spacing: -.055em; line-height: 1; }
.hero-amount small { display: block; margin-bottom: 10px; color: #76d9ff; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.mini-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 20px; }
.mini-step { position: relative; padding-top: 18px; color: #c8d5e6; font-size: .66rem; text-align: center; }
.mini-step::before { content: ""; position: absolute; z-index: 2; top: 0; left: 50%; width: 8px; height: 8px; border: 3px solid #75d9ff; border-radius: 50%; background: var(--navy); transform: translateX(-50%); }
.mini-step:not(:last-child)::after { content: ""; position: absolute; top: 5px; left: 58%; width: 88%; height: 1px; background: rgba(117,217,255,.42); }
.hero-foot {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(3,15,34,.56);
  backdrop-filter: blur(12px);
}
.hero-foot-grid { min-height: 84px; display: grid; grid-template-columns: .8fr repeat(4, 1fr); align-items: center; }
.hero-foot-title { color: #88dcff; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-foot-item { padding: 0 20px; border-left: 1px solid rgba(255,255,255,.14); color: white; font-size: .84rem; font-weight: 700; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: #b7cdf2; box-shadow: var(--shadow); }
.card-number { margin-bottom: 32px; color: #aec9ed; font-size: .78rem; font-weight: 800; }
.card-icon { width: 46px; height: 46px; margin-bottom: 22px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: #eaf3ff; font-size: 1.35rem; font-weight: 900; }
.card p { margin-bottom: 0; color: var(--muted); }
.card-link { display: inline-flex; margin-top: 22px; color: var(--blue); font-weight: 750; }
.card-link::after { content: "→"; margin-left: 8px; }

.promo-wrap { padding: 30px 0 0; }
.promo-banner {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  overflow: hidden;
  border: 1px solid #cfe0f5;
  border-radius: 26px;
  background: linear-gradient(118deg, #eef7ff 0%, #ffffff 68%);
  box-shadow: 0 20px 55px rgba(7, 27, 58, .1);
}
.promo-copy { position: relative; z-index: 2; padding: 46px 52px; align-self: center; }
.promo-copy h2 { max-width: 650px; margin-bottom: 12px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.promo-copy p { max-width: 640px; margin-bottom: 24px; color: var(--muted); }
.promo-copy strong { color: var(--blue); }
.promo-media { position: relative; min-height: 300px; }
.promo-media::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, white 0%, transparent 34%); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.awards-section { text-align: center; }
.awards-section .lead { margin-inline: auto; }
.awards-frame {
  width: min(900px, 100%);
  margin: 38px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}
.awards-frame img { width: 100%; height: auto; }
.awards-note { max-width: 760px; margin: 22px auto 0; color: var(--muted); font-size: .83rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.feature-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-weight: 900; }
.feature strong { display: block; margin-bottom: 3px; color: var(--navy); }
.feature p { margin: 0; color: var(--muted); }
.financing-map { position: relative; min-height: 460px; padding: 40px; border-radius: 34px; color: white; background: linear-gradient(145deg, #071b3a, #0b376a); overflow: hidden; box-shadow: var(--shadow); }
.financing-map::before { content: ""; position: absolute; width: 340px; height: 340px; top: -180px; right: -100px; border: 1px solid rgba(82,208,255,.28); border-radius: 50%; box-shadow: 0 0 0 42px rgba(82,208,255,.05), 0 0 0 84px rgba(82,208,255,.035); }
.map-core { position: absolute; inset: 0; display: grid; place-items: center; }
.core-badge { position: relative; z-index: 2; width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(17,91,223,.58); box-shadow: 0 0 0 24px rgba(17,91,223,.12), 0 18px 40px rgba(0,0,0,.28); text-align: center; font-size: 1.05rem; font-weight: 850; line-height: 1.25; }
.orbit { position: absolute; padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); color: #d6e8ff; font-size: .8rem; font-weight: 700; backdrop-filter: blur(8px); }
.orbit.one { top: 70px; left: 40px; }
.orbit.two { top: 90px; right: 34px; }
.orbit.three { bottom: 84px; left: 26px; }
.orbit.four { bottom: 68px; right: 36px; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 52px; }
.step { position: relative; padding: 0 22px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 23px; left: 68px; right: -10px; height: 1px; background: #bad0ed; }
.step-dot { position: relative; z-index: 2; width: 48px; height: 48px; margin-bottom: 18px; display: grid; place-items: center; border: 1px solid #a7c5ef; border-radius: 50%; color: var(--blue); background: white; font-weight: 850; box-shadow: 0 5px 18px rgba(17,91,223,.1); }
.step p { color: var(--muted); font-size: .93rem; }

.check-panel { padding: 44px; border-radius: 30px; background: white; box-shadow: var(--shadow); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin: 28px 0; }
.check-item { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); }
.check-item::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--success); font-size: .75rem; font-weight: 900; }
.note { padding: 16px 18px; border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; color: #455a77; background: #eef5ff; font-size: .9rem; }

.faq-list { max-width: 860px; margin: 40px auto 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 44px 22px 0; color: var(--navy); font-size: 1.05rem; font-weight: 760; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 19px; color: var(--blue); font-size: 1.35rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 54px 22px 0; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; padding: 64px; border-radius: 30px; color: white; background: linear-gradient(120deg, #0b4ec4, #0b2b55); box-shadow: var(--shadow); }
.cta-band::after { content: ""; position: absolute; width: 280px; height: 280px; right: -70px; top: -110px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.04), 0 0 0 84px rgba(255,255,255,.025); }
.cta-band h2 { max-width: 720px; color: white; }
.cta-band p { max-width: 650px; color: #d8e7fb; }
.cta-band .button { position: relative; z-index: 2; margin-top: 12px; }

.page-hero { position: relative; padding: 164px 0 92px; color: white; background: var(--navy); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -170px; top: -260px; border: 1px solid rgba(82,208,255,.26); border-radius: 50%; box-shadow: 0 0 0 65px rgba(82,208,255,.04), 0 0 0 130px rgba(82,208,255,.025); }
.page-hero h1 { max-width: 870px; margin-bottom: 18px; color: white; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.page-hero p { max-width: 760px; margin: 0; color: #cbd8e9; font-size: 1.16rem; }
.breadcrumbs { margin-bottom: 30px; color: #85dfff; font-size: .82rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.solution-row { display: grid; grid-template-columns: .54fr 1fr; gap: 50px; padding: 48px 0; border-top: 1px solid var(--line); }
.solution-row:last-child { border-bottom: 1px solid var(--line); }
.solution-label { color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.solution-row ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.role-card { padding: 30px; border-radius: 20px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.role-card strong { display: block; margin-bottom: 10px; color: #77d9ff; }
.role-card p { margin: 0; color: #cad7e8; }

.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.doc-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.doc-card span { display: inline-grid; width: 36px; height: 36px; margin-bottom: 18px; place-items: center; border-radius: 10px; color: var(--blue); background: #eaf3ff; font-weight: 850; }
.doc-card p { margin: 0; color: var(--muted); }

.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: white; }
.compare table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td { padding: 20px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare th { color: var(--navy); background: #eef5ff; }
.compare td { color: var(--muted); }
.compare tr:last-child td { border-bottom: 0; }

.form-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 48px; align-items: start; }
.form-side { position: sticky; top: 108px; }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .9rem; font-weight: 760; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #c9d7e8; border-radius: 10px; color: var(--ink); background: white; outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,91,223,.1); }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.form-privacy { color: var(--muted); font-size: .8rem; }
.result-box { display: none; margin-top: 24px; padding: 20px; border: 1px solid #9ed9c8; border-radius: 14px; background: #effbf7; }
.result-box.show { display: block; }
.result-box strong { display: block; margin-bottom: 6px; color: #087655; }
.result-box p { margin: 0; color: #37685a; }

.legal { max-width: 840px; }
.legal h2 { margin-top: 52px; font-size: 1.8rem; }
.legal h3 { margin-top: 30px; font-size: 1.22rem; }
.legal p, .legal li { color: #4e617d; }
.legal ul { padding-left: 22px; }
.preview-notice { margin-bottom: 34px; padding: 18px 20px; border: 1px solid #bdd1f1; border-radius: 14px; color: #334f76; background: #eff6ff; }

.site-footer { padding: 68px 0 28px; color: #b9c7d9; background: #041226; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 64px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: white; font-size: 1.45rem; font-weight: 850; letter-spacing: -.04em; }
.footer-brand img { width: 34px; height: 38px; object-fit: contain; }
.footer-copy { max-width: 430px; }
.footer-title { margin-bottom: 16px; color: white; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 54px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .section-heading, .split, .form-shell { grid-template-columns: 1fr; gap: 38px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; align-items: end; padding-bottom: 165px; }
  .hero-panel { display: none; }
  .hero-foot-grid { grid-template-columns: repeat(2, 1fr); padding: 12px 0; }
  .hero-foot-title { display: none; }
  .hero-foot-item { min-height: 34px; display: flex; align-items: center; border-left: 0; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .step { display: grid; grid-template-columns: 50px 1fr; column-gap: 16px; padding: 0; }
  .step:not(:last-child)::after { top: 48px; bottom: -25px; left: 24px; width: 1px; height: auto; }
  .step-dot { grid-row: span 2; }
  .role-grid, .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .form-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .promo-banner { grid-template-columns: 1fr .72fr; }
  .promo-copy { padding: 38px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 68px; }
  .menu-button { display: grid; place-items: center; }
  .main-nav { position: fixed; inset: 68px 0 auto; padding: 24px 20px 30px; display: none; align-items: stretch; flex-direction: column; gap: 4px; background: #071b3a; border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 50px rgba(0,0,0,.25); }
  .menu-open .main-nav { display: flex; }
  .main-nav > a { padding: 12px 8px; font-size: 1rem; }
  .main-nav > a.active::after { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero, .hero-grid { min-height: 720px; }
  .hero-grid { padding: 120px 0 176px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,15,34,.94), rgba(3,15,34,.64)), linear-gradient(0deg, rgba(3,15,34,.95), transparent 48%); }
  .hero-slide { background-position: 62% center; }
  .hero-actions .button { width: 100%; }
  .hero-foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-foot-item { padding: 3px 8px; font-size: .76rem; }
  .section-heading { margin-bottom: 34px; }
  .card-grid, .role-grid, .doc-grid, .check-list, .field-grid { grid-template-columns: 1fr; }
  .financing-map { min-height: 400px; padding: 24px; }
  .orbit.one { top: 52px; left: 18px; }
  .orbit.two { top: 80px; right: 12px; }
  .orbit.three { bottom: 72px; left: 12px; }
  .orbit.four { bottom: 44px; right: 10px; }
  .page-hero { padding: 132px 0 70px; }
  .solution-row { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .check-panel, .form-card { padding: 26px 20px; }
  .cta-band { padding: 42px 24px; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-copy { padding: 34px 24px; }
  .promo-media { min-height: 220px; }
  .promo-media::before { background: linear-gradient(180deg, white 0%, transparent 34%); }
  .awards-frame { padding: 16px 10px; border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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