:root {
  --bg: #07111f;
  --bg-light: #0d1b2f;
  --card: #111f35;
  --text: #f4f7fb;
  --muted: #a9b7ca;
  --accent: #39d98a;
  --accent-2: #4ea1ff;
  --border: rgba(255, 255, 255, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 8px;
  background: var(--accent);
  color: #06120c;
  padding: 10px 16px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a,
.language-switcher a {
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--text);
}

.language-switcher a[aria-current="page"] {
  background: var(--accent);
  color: #06120c;
}

.catalog-language {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #06120c;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(57, 217, 138, 0.25);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent-2);
}

.hero {
  padding: 104px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(78, 161, 255, 0.18), transparent 34%),
    radial-gradient(circle at 10% 30%, rgba(57, 217, 138, 0.14), transparent 32%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 32px;
}

.hero-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.13rem;
}

.hero-copy .guarantee {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.guarantee::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #07101d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.terminal-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff6b6b;
}

.dot-yellow {
  background: #ffd166;
}

.dot-green {
  background: var(--accent);
}

.terminal-body {
  padding: 24px;
  color: #cfe4ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.terminal-block {
  margin-top: 20px;
}

.terminal-body .green {
  color: var(--accent);
}

.terminal-body .blue {
  color: var(--accent-2);
}

.risk-promise {
  position: relative;
  z-index: 2;
  margin-top: -30px;
  padding: 0 0 26px;
}

.risk-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(57, 217, 138, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(57, 217, 138, 0.13), rgba(78, 161, 255, 0.07)),
    #0b1929;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.risk-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  background: var(--accent);
  color: #06120c;
  font-size: 1.75rem;
  font-weight: 900;
}

.risk-label {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.risk-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.risk-card p {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.06rem;
}

section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.cta h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(57, 217, 138, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.catalog-link:hover,
.catalog-link:focus-visible {
  color: var(--text);
  text-decoration-color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.card h3 a {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  transition: color 0.2s ease;
}

.card h3 a span {
  color: var(--accent);
  font-size: 0.85em;
}

.card h3 a:hover,
.card h3 a:focus-visible {
  color: var(--accent);
}

.card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.card ul {
  color: var(--muted);
  font-size: 0.95rem;
  list-style: none;
}

.card li {
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-light);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(57, 217, 138, 0.12);
  color: var(--accent);
  font-weight: 800;
}

.step p {
  color: var(--muted);
}

.formats {
  background: var(--bg-light);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.format-details {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  margin-top: 32px;
}

.format-detail {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 28px;
}

.format-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-detail h3 {
  margin-bottom: 20px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.delivery-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.delivery-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1.2fr;
  gap: 16px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.delivery-list strong {
  color: var(--text);
}

.delivery-list span,
.language-detail p {
  color: var(--muted);
}

.language-detail {
  background: linear-gradient(145deg, rgba(57, 217, 138, 0.1), rgba(78, 161, 255, 0.055));
}

.language-detail p {
  max-width: 46ch;
}

.catalog-hero {
  padding: 104px 0 78px;
  background:
    radial-gradient(circle at 85% 15%, rgba(78, 161, 255, 0.2), transparent 34%),
    radial-gradient(circle at 10% 45%, rgba(57, 217, 138, 0.13), transparent 32%);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: end;
}

.catalog-hero h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.9rem, 6vw, 5rem);
}

.catalog-intro {
  padding-left: 28px;
  border-left: 2px solid var(--accent);
}

.catalog-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.catalog-intro p + p {
  margin-top: 14px;
}

.catalog-list {
  background: var(--bg-light);
}

.catalog-heading {
  max-width: 820px;
}

.training-catalog-grid {
  display: grid;
  gap: 24px;
}

.training-entry {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(7, 17, 31, 0.45));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.training-entry-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.technology-label {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-list span {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(78, 161, 255, 0.08);
  color: #cfe4ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.training-entry h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.training-description {
  max-width: 920px;
  color: var(--muted);
  font-size: 1.08rem;
}

.training-facts {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 1.45fr);
  gap: 18px;
  margin-top: 30px;
}

.training-facts div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(7, 16, 29, 0.72);
}

.training-facts dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.training-facts dd {
  color: var(--text);
  font-weight: 750;
}

.training-contact {
  margin-top: 26px;
}

.catalog-cta {
  padding: 72px 0;
}

.catalog-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.catalog-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.catalog-cta p {
  color: var(--muted);
}

.cta {
  padding: 90px 0;
  background:
    radial-gradient(circle at center, rgba(57, 217, 138, 0.18), transparent 42%),
    var(--bg);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  max-width: 820px;
  margin: 34px auto 0;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(7, 16, 29, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  text-align: left;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #07101d;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(78, 161, 255, 0.15);
  outline: none;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-footer button {
  flex: 0 0 auto;
  cursor: pointer;
  font: inherit;
}

.form-footer small {
  color: var(--muted);
  line-height: 1.45;
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  justify-items: end;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(57, 217, 138, 0.55);
  border-radius: 999px;
  background: var(--accent);
  color: #06120c;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.chat-launcher span {
  color: #06120c;
  font-size: 0.7rem;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  background: #62e4a3;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  display: flex;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 112px));
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #0b1728;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(57, 217, 138, 0.12), rgba(78, 161, 255, 0.08));
}

.chat-header h2 {
  margin-bottom: 3px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.chat-header p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.chat-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.chat-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(57, 217, 138, 0.11);
}

.chat-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
}

.chat-identity {
  display: flex;
  min-height: 0;
  padding: 22px;
  overflow-y: auto;
  flex: 1;
  flex-direction: column;
  gap: 15px;
}

.chat-identity > p {
  color: var(--muted);
  font-size: 0.96rem;
}

.chat-identity label {
  display: grid;
  gap: 6px;
}

.chat-identity label span {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.chat-identity input,
.chat-compose textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #07101d;
  color: var(--text);
  font: inherit;
}

.chat-identity input {
  min-height: 44px;
  padding: 10px 12px;
}

.chat-identity input:focus,
.chat-compose textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(78, 161, 255, 0.14);
  outline: none;
}

.chat-identity small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.chat-identity .btn {
  width: 100%;
  margin-top: auto;
}

.chat-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chat-transcript {
  display: flex;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  background:
    radial-gradient(circle at 100% 0, rgba(78, 161, 255, 0.06), transparent 38%),
    #091423;
}

.chat-empty {
  margin: auto;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.chat-message {
  max-width: 84%;
  padding: 10px 12px 7px;
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow-wrap: anywhere;
}

.chat-message p {
  white-space: pre-wrap;
  font-size: 0.9rem;
}

.chat-message time {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
  text-align: right;
}

.chat-message-visitor {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: rgba(57, 217, 138, 0.17);
}

.chat-message-agent {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: rgba(78, 161, 255, 0.13);
}

.chat-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: #0b1728;
}

.chat-compose textarea {
  min-height: 46px;
  max-height: 110px;
  padding: 10px 11px;
  resize: none;
  line-height: 1.35;
}

.chat-compose .btn {
  min-height: 46px;
  padding-inline: 15px;
}

.chat-widget button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.chat-error {
  padding: 10px 12px;
  border: 1px solid rgba(255, 107, 107, 0.35);
  border-radius: 11px;
  background: rgba(255, 107, 107, 0.09);
  color: #ffc2c2;
  font-size: 0.78rem;
}

.chat-error a {
  color: var(--text);
  text-decoration: underline;
}

.chat-error-inline {
  margin: 0 14px 10px;
}

:focus-visible {
  outline: 3px solid rgba(78, 161, 255, 0.9);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .split,
  .catalog-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .format-details {
    grid-template-columns: 1fr;
  }

  .catalog-intro {
    max-width: 720px;
  }

  .catalog-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .terminal-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 64px;
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .catalog-language {
    font-size: 0.72rem;
  }

  .language-switcher a {
    min-width: 32px;
  }

  .hero {
    padding: 60px 0 64px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  section {
    padding: 64px 0;
  }

  .step {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .step-number {
    width: 42px;
    height: 42px;
  }

  .risk-promise {
    margin-top: -18px;
  }

  .risk-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .risk-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .format-detail {
    padding: 22px;
  }

  .delivery-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .catalog-hero {
    padding: 68px 0 58px;
  }

  .catalog-intro {
    padding-left: 18px;
  }

  .training-entry {
    padding: 24px;
  }

  .training-entry-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-list {
    justify-content: flex-start;
  }

  .training-facts {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .chat-panel {
    height: min(610px, calc(100vh - 96px));
  }

  .chat-launcher {
    min-height: 46px;
    padding: 10px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
