:root {
  --bg: #f8fbff;
  --bg-accent: #f6efe2;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #f2f7fc;
  --text-strong: #203a5c;
  --text-body: #5d7592;
  --line-soft: rgba(35, 77, 123, 0.12);
  --brand: #1f75d6;
  --brand-dark: #183f6b;
  --accent: #8ccd4b;
  --shadow: 0 24px 60px rgba(28, 63, 102, 0.12);
  --shadow-soft: 0 16px 40px rgba(28, 63, 102, 0.08);
  --shadow-green: 0 18px 34px rgba(86, 167, 64, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --page-width: min(1240px, calc(100% - 32px));
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(89, 187, 221, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(145, 214, 111, 0.18), transparent 28%),
    linear-gradient(180deg, #f4fbff, #eef6fb 48%, #f8fbf7);
  color: var(--text-strong);
  font: 400 16px/1.65 "Open Sans", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 117, 214, 0.18);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 1;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.page-shell {
  width: var(--page-width);
  margin: 0 auto;
  padding: 20px 0 56px;
}

.site-header,
.content-section,
.site-footer,
.hero-panel {
  border: 1px solid var(--line-soft);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--nav-height);
  padding: 14px 20px;
  border-radius: 24px;
  flex-wrap: nowrap;
}

.site-header.top-nav-collapse {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 46px rgba(28, 63, 102, 0.14);
}

.brand-block,
.offcanvas-collapse,
.site-nav,
.hero-actions,
.header-actions,
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-block {
  flex: 0 0 auto;
  align-items: center;
  width: 134px;
  min-width: 134px;
  margin-right: 12px;
  position: relative;
  z-index: 1;
}

.brand-logo,
.footer-logo {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(12, 31, 56, 0.18);
}

.site-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  gap: 6px;
  flex-wrap: nowrap;
  list-style: none;
}

.offcanvas-collapse {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
  margin-left: 0;
}

.site-nav .nav-link {
  padding: 10px 10px;
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active,
.site-nav .nav-link:focus-visible {
  color: var(--brand-dark);
  background: rgba(31, 117, 214, 0.08);
}

.header-actions {
  flex: 0 0 auto;
  align-items: center;
  margin-left: 8px;
  gap: 10px;
  flex-wrap: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff9158, #f2743a);
  box-shadow: 0 16px 30px rgba(242, 116, 58, 0.28);
}

.btn-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(31, 117, 214, 0.14);
}

.navbar-toggler {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(31, 117, 214, 0.08);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 26px 4px 0;
}

.hero-copy {
  display: grid;
  gap: 18px;
  padding: 10px 8px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(31, 117, 214, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-main {
  margin-top: 18px;
}

.legal-section {
  padding: 0;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: 44px 40px;
}

.legal-document h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.legal-document h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.legal-document p,
.legal-document ul {
  color: var(--text-body);
}

.legal-document p + p,
.legal-document ul + p,
.legal-document p + ul,
.legal-document ul + ul {
  margin-top: 12px;
}

.legal-document ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.legal-meta {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-text,
.section-heading p,
.text-panel p,
.contact-copy p,
.footer-brand p,
.info-card p,
.benefit-card p,
.gallery-card__body span,
.gallery-card__body small,
.accordion-body,
.field span,
.hero-proof,
.contact-points span {
  color: var(--text-body);
}

.hero-text {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-trust {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5.2vw, 5.1rem);
  line-height: 0.94;
}

.hero-copy h1 span {
  display: block;
  color: #294a75;
}

.hero-benefits {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
  max-width: 34rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-benefits i {
  flex: none;
  color: #4f9d38;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 4px;
  gap: 14px;
}

.hero-proof {
  margin-top: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.hero-subnote {
  margin-top: 10px;
  color: var(--text-body);
  font-size: 1rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 20px;
  background: radial-gradient(circle at top right, rgba(145, 214, 111, 0.16), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 253, 0.92));
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(24, 58, 90, 0.1);
  border-radius: 26px;
  background: #f4f9fc;
  box-shadow: 0 18px 44px rgba(27, 61, 96, 0.14);
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: top center;
  background: #edf4fa;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 16px;
  background: #e8edf2;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c7d1dc;
}

.hero-visual-caption {
  margin-top: 16px;
  color: var(--text-body);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-demo-button {
  gap: 8px;
  color: #ffffff;
  border-color: rgba(86, 167, 64, 0.9);
  background: linear-gradient(135deg, #7fca63, #56a740);
  box-shadow: var(--shadow-green);
}

.hero-demo-button:hover,
.hero-demo-button:focus-visible {
  color: #ffffff;
  border-color: rgba(74, 145, 54, 0.95);
  background: linear-gradient(135deg, #73bf57, #4a9136);
}

.hero-mobile-visual {
  display: none;
}

.hero-showcase {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(24, 58, 90, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 252, 0.95));
  box-shadow: 0 18px 38px rgba(27, 61, 96, 0.14);
}

.hero-showcase__header,
.hero-showcase__cards,
.hero-schedule li {
  display: flex;
}

.hero-showcase__header {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-showcase__header strong,
.hero-schedule strong,
.hero-panel-float strong {
  color: var(--text-strong);
}

.hero-showcase__eyebrow,
.hero-panel-float__label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-showcase__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(140, 205, 75, 0.18);
  color: #397227;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-schedule {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-schedule li {
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(31, 117, 214, 0.08);
}

.hero-schedule strong {
  min-width: 3.4rem;
  font-size: 0.94rem;
}

.hero-schedule span,
.hero-schedule small {
  display: block;
}

.hero-schedule span {
  flex: 1 1 auto;
  font-weight: 700;
  color: var(--brand-dark);
}

.hero-schedule small {
  color: var(--text-body);
  font-size: 0.84rem;
}

.hero-showcase__cards {
  gap: 10px;
  flex-wrap: wrap;
}

.hero-mini-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(31, 117, 214, 0.08);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-mini-card i {
  color: var(--brand);
}

.hero-panel-float {
  position: absolute;
  max-width: 18rem;
  padding: 14px 16px;
  border: 1px solid rgba(35, 77, 123, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 30px rgba(28, 63, 102, 0.12);
  backdrop-filter: blur(12px);
}

.hero-panel-float--top {
  top: 44px;
  right: 16px;
}

.hero-panel-float--bottom {
  bottom: 68px;
  left: 16px;
}

.product-features-section .section-heading h2 {
  max-width: 13ch;
}

.section-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 800;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--brand);
}

.content-section {
  margin-top: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.trust-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-panel {
  display: grid;
  gap: 18px;
}

.trust-copy {
  display: grid;
  gap: 14px;
  max-width: 880px;
}

.trust-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.02;
}

.trust-copy p,
.trust-meta {
  color: var(--text-body);
}

.trust-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(31, 117, 214, 0.08);
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-section {
  padding: 28px 34px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.95), rgba(255, 255, 255, 0.92));
}

.section-accent {
  background: radial-gradient(circle at top right, rgba(145, 214, 111, 0.14), transparent 22%), linear-gradient(180deg, rgba(239, 248, 245, 0.94), rgba(255, 255, 255, 0.94));
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 14ch;
}

.cards-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.cards-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.benefit-card,
.gallery-card__trigger,
.support-panel,
.access-panel,
.lead-card,
.contact-points article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: var(--shadow-soft);
}

.info-card,
.benefit-card,
.support-panel,
.access-panel {
  padding: 24px;
}

.info-card__icon,
.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(31, 117, 214, 0.1);
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.info-card h3,
.benefit-card h3 {
  margin-bottom: 10px;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.split-layout--balanced {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #ffffff, #f2f7fc);
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
}

.text-panel {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card__trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-card__trigger:hover,
.gallery-card__trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(28, 63, 102, 0.12);
}

.gallery-card__visual {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
}

.gallery-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__body {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.gallery-card__body strong {
  font-size: 1.2rem;
  color: var(--text-strong);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list--compact {
  margin-top: 18px;
}

.check-list__item {
  position: relative;
  padding-left: 24px;
  color: var(--text-body);
}

.check-list__item::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8ccd4b, #1f75d6);
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f7fbfe);
  box-shadow: var(--shadow-soft);
}

.faq-accordion .accordion-button {
  padding: 22px 24px;
  color: var(--text-strong);
  font-weight: 700;
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text-strong);
  background: rgba(31, 117, 214, 0.04);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 0 24px 24px;
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.cta-panel,
.cta-actions {
  display: flex;
  gap: 16px;
}

.cta-panel {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-copy {
  max-width: 42rem;
}

.cta-copy p {
  margin-top: 10px;
  color: var(--text-body);
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.contact-points article {
  padding: 18px 20px;
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-strong);
}

.lead-card {
  padding: 24px;
}

.lead-form,
.form-grid,
.field {
  display: grid;
}

.lead-form,
.form-grid {
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  gap: 8px;
}

.field span {
  color: var(--text-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(35, 77, 123, 0.14);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fbfdff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 117, 214, 0.48);
  box-shadow: 0 0 0 4px rgba(31, 117, 214, 0.1);
}

.submit-button {
  width: 100%;
}

.form-feedback {
  margin: 0;
  font-weight: 700;
}

.form-feedback.is-success {
  color: #2f7a20;
}

.form-feedback.is-error {
  color: #b23c3c;
}

.site-footer {
  display: grid;
  gap: 24px;
  margin-top: 20px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top right, rgba(140, 205, 75, 0.14), transparent 24%), linear-gradient(180deg, rgba(20, 55, 90, 0.98), rgba(24, 76, 123, 0.98));
}

.footer-brand {
  max-width: 560px;
}

.footer-brand p,
.footer-links a,
.footer-links li,
.footer-meta {
  color: rgba(238, 246, 255, 0.86);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-columns h3 {
  margin-bottom: 14px;
  color: #eef6ff;
  font-size: 1.05rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.gallery-lightbox .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #111827;
  color: #ffffff;
}

.gallery-lightbox .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  filter: invert(1) grayscale(1);
}

.gallery-lightbox__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
}

.gallery-lightbox__stage {
  min-height: 30rem;
  background: #0a1222;
}

.gallery-lightbox__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-lightbox__copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(36, 52, 90, 0.96));
}

.gallery-lightbox__copy p,
.gallery-lightbox__copy small {
  color: rgba(255, 255, 255, 0.84);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(36, 52, 90, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .hero-section,
  .split-layout,
  .split-layout--balanced,
  .contact-layout,
  .gallery-lightbox__layout {
    grid-template-columns: 1fr;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 12px;
  }

  .site-header {
    position: sticky;
    top: 8px;
    min-height: 72px;
    padding: 12px 16px;
    flex-wrap: nowrap;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .offcanvas-collapse {
    display: none;
    flex: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 120px);
    padding: 20px;
    visibility: hidden;
    overflow-y: auto;
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 56px rgba(28, 63, 102, 0.16);
    transition: opacity 0.22s ease, visibility 0.22s ease;
    opacity: 0;
    margin-left: 0;
  }

  .offcanvas-collapse.open {
    display: flex;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
  }

  .site-nav,
  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 14px;
  }

  .header-actions {
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .cards-grid--3,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 32px 26px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }

  .content-section,
  .site-footer,
  .hero-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 0 0;
  }

  .hero-copy {
    gap: 14px;
    padding: 10px 6px 0;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10.8vw, 3.3rem);
    line-height: 0.98;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-text {
    font-size: 0.99rem;
  }

  .hero-mobile-visual {
    display: block;
  }

  .hero-visual {
    display: none;
  }

  .hero-benefits {
    gap: 8px;
  }

  .hero-benefits li {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .header-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel {
    align-items: stretch;
  }

  .cards-grid--4,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 8px 0;
  }

  .legal-document h1 {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }

  .trust-section {
    padding: 24px 20px;
  }

  .trust-meta {
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.35;
    padding: 10px 14px;
  }

  .brand-block {
    width: 120px;
    min-width: 120px;
  }

  .brand-logo {
    height: 34px;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-showcase {
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-showcase__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-showcase__status {
    min-height: 30px;
    font-size: 0.78rem;
  }

  .hero-schedule li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: start;
  }

  .hero-schedule small {
    grid-column: 2;
  }

  .hero-mini-card {
    width: 100%;
    justify-content: flex-start;
    min-height: 42px;
    border-radius: 16px;
  }

  .section-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .page-shell {
    width: min(100% - 16px, 1240px);
  }

  .site-header {
    top: 6px;
    min-height: 68px;
    padding: 10px 14px;
    border-radius: 20px;
  }

  .hero-copy {
    padding: 8px 2px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.2vw, 2.8rem);
  }

  .hero-proof {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

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