:root {
  --blue: #003865;
  --blue-strong: #002b4e;
  --orange: #D07A32;
  --green: #94B83A;
  --white: #ffffff;
  --bg: #f7f8fa;
  --line: rgba(0, 56, 101, 0.12);
  --text: #003865;
  --text-soft: rgba(0, 56, 101, 0.8);
  --shadow-card: 0 10px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  color: var(--text);
  background: var(--white);
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 60;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.98;
}

.topbar-item-address::before,
.topbar-item-phone::before,
.topbar-item-mail::before,
.topbar-item-login::before,
.topbar-item-lang::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.topbar-item-address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s-6-4.35-6-11a6 6 0 1 1 12 0c0 6.65-6 11-6 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.topbar-item-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.35 1.78.68 2.62a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.46-1.25a2 2 0 0 1 2.11-.45c.84.33 1.72.56 2.62.68A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.topbar-item-mail::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.topbar-item-login::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 1 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.topbar-item-lang::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15 15 0 0 1 0 20'/%3E%3Cpath d='M12 2a15 15 0 0 0 0 20'/%3E%3C/svg%3E");
}

.topbar-login-button {
  cursor: pointer;
  user-select: none;
}

.topbar-login-button:hover,
.topbar-login-button:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.topbar-login-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.36);
  outline-offset: 4px;
  border-radius: 999px;
}

.topbar-item-address a {
  color: inherit;
}

.topbar-item-address a:hover,
.topbar-item-address a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-switch__trigger,
.language-switch__option {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 68px;
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.language-switch__trigger {
  border-radius: 999px;
}

.language-switch__trigger:hover,
.language-switch__trigger:focus-visible,
.language-switch.is-open .language-switch__trigger {
  background: rgba(255, 255, 255, 0.12);
}

.language-switch__trigger:focus-visible,
.language-switch__option:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.36);
  outline-offset: 4px;
  border-radius: 999px;
}

.language-switch__chevron {
  font-size: 10px;
  opacity: 0.84;
  transition: transform 0.18s ease;
}

.language-switch.is-open .language-switch__chevron {
  transform: rotate(180deg);
}

.language-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 84px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(0, 43, 78, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  z-index: 30;
}

.language-switch__menu[hidden] {
  display: none;
}

.language-switch__option {
  width: 100%;
  border-radius: 10px;
}

.language-switch__option:hover,
.language-switch__option:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

body.login-modal-open {
  overflow: hidden;
}

.login-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 43, 78, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 140;
}

.login-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.login-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 28px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.login-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 56, 101, 0.06);
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.login-modal__title {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.login-modal__text {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.login-form {
  display: grid;
  gap: 14px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-form input {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(0, 56, 101, 0.14);
  border-radius: 12px;
  font: inherit;
  color: var(--blue);
  background: #fff;
}

.login-form input:focus {
  outline: none;
  border-color: rgba(148, 184, 58, 0.72);
  box-shadow: 0 0 0 4px rgba(148, 184, 58, 0.12);
}

.login-form .cta {
  width: 100%;
  margin-top: 4px;
}

.login-modal__hint {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.login-modal__error {
  display: none;
  margin: -2px 0 2px;
  color: #bf3e20;
  font-size: 14px;
  line-height: 1.45;
}

.login-modal__error.is-visible {
  display: block;
}

.login-modal__secondary {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  border: 1px solid rgba(0, 56, 101, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.login-modal__secondary[hidden] {
  display: none;
}

.navbar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 56, 101, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}

.navbar .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-logo {
  width: min(280px, 100%);
  height: auto;
  display: block;
}

.brand-mark {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--blue);
}

.brand-divider {
  width: 2px;
  height: 34px;
  background: rgba(0, 56, 101, 0.24);
}

.brand-sub {
  font-size: 13px;
  line-height: 1.2;
  color: rgba(0, 56, 101, 0.82);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  flex: 1 1 auto;
  margin-left: auto;
  min-width: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}

.nav-links a.primary-link,
.nav-links a.active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(208, 122, 50, 0.22);
}

.page-hero {
  background:
    linear-gradient(rgba(0, 56, 101, 0.9), rgba(0, 56, 101, 0.9)),
    url("assets/img/029.jpg")
      center center / cover no-repeat;
  color: var(--white);
}

.page-hero .container {
  display: grid;
  gap: 30px;
  padding: 72px 0 78px;
}

.eyebrow {
  display: none;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 2.95vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.lead {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.9);
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.hero-contact-item {
  min-height: 132px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.hero-contact-label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-contact-value,
.hero-contact-value a {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
}

section {
  padding: 82px 0;
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--bg);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-blue .section-title,
.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-title {
  margin: 0 0 32px;
  text-align: center;
  color: var(--blue);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.text-block h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.text-block p,
.section-blue p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

.section-blue p {
  color: rgba(255, 255, 255, 0.88);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

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

.card,
.compare-card,
.faq-item,
.price-card,
.media-card {
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.card,
.compare-card,
.faq-item,
.price-card {
  padding: 24px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 36px 38px 34px;
}

.card h3,
.compare-card h3,
.price-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.card p,
.compare-card li,
.faq-item p,
.price-card p,
.price-card li {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.58;
}

.price-card h3 {
  margin-bottom: 26px;
}

.price-card p {
  margin-bottom: 36px;
  line-height: 1.62;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.compare-card ul,
.price-card ul {
  margin: 0;
  padding-left: 24px;
}

.compare-card li,
.price-card li {
  margin-bottom: 10px;
}

.compare-grid .compare-card:first-child {
  background: #eef2f5;
}

.compare-grid .compare-card:last-child {
  background: #e8f7ee;
}

.price-card li {
  margin-bottom: 22px;
}

.price-card li:last-child {
  margin-bottom: 0;
}

.media-card {
  padding: 18px;
}

.media-box {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(0, 56, 101, 0.14), rgba(0, 56, 101, 0.14)),
    url("assets/img/031.jpg")
      center center / cover no-repeat;
}

.device-box {
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 68% 30%, rgba(148, 184, 58, 0.18), transparent 18%),
    linear-gradient(180deg, #ffffff, #f4f7fa);
  border: 1px solid rgba(0, 56, 101, 0.08);
}

.device-photo {
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}

.media-note {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.section-lead {
  max-width: 760px;
  margin: 0 0 36px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.section-title-left {
  margin-bottom: 18px;
  text-align: left;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.blog-feature__media {
  position: relative;
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(0, 56, 101, 0.08), rgba(0, 56, 101, 0.24)),
    radial-gradient(circle at 22% 22%, rgba(148, 184, 58, 0.28), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(208, 122, 50, 0.3), transparent 20%),
    linear-gradient(135deg, #f4eee3 0%, #efe5d4 44%, #dfe8ee 100%);
}

.blog-feature__media--photo {
  background: #0e2740 center / cover no-repeat;
  isolation: isolate;
}

.blog-feature__media--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 21, 40, 0.18), rgba(0, 21, 40, 0.7)),
    radial-gradient(circle at 18% 18%, rgba(148, 184, 58, 0.22), transparent 22%);
  z-index: 0;
}

.blog-feature__media--photo > * {
  position: relative;
  z-index: 1;
}

.blog-feature__glow {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

.blog-feature__tags,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.blog-feature__metric {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}

.blog-feature__body,
.blog-card__body {
  display: grid;
  gap: 18px;
}

.blog-feature__body {
  padding: 42px 40px;
  align-content: center;
}

.blog-feature__actions {
  display: grid;
  gap: 14px;
}

.blog-feature__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.blog-feature__quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 101, 0.14);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.blog-feature__quick:hover,
.blog-feature__quick:focus-visible {
  border-color: rgba(208, 122, 50, 0.46);
  color: var(--orange);
}

.blog-meta {
  color: rgba(0, 56, 101, 0.62);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.blog-feature__body h2,
.blog-card__body h3 {
  margin: 0;
  color: var(--blue);
  letter-spacing: -0.04em;
}

.blog-feature__body h2 {
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.04;
  font-weight: 500;
}

.blog-feature__body p,
.blog-card__body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.64;
}

.blog-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-link:hover,
.blog-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(208, 122, 50, 0.3);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.07);
  background: #fff;
}

.blog-card__media {
  min-height: 196px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
}

.blog-card__media--speed {
  background:
    linear-gradient(180deg, rgba(0, 56, 101, 0.14), rgba(0, 56, 101, 0.24)),
    linear-gradient(135deg, #e8f2f6, #d6e4ed 42%, #f5eadf 100%);
}

.blog-card__media--management {
  background:
    linear-gradient(180deg, rgba(0, 56, 101, 0.12), rgba(0, 56, 101, 0.24)),
    linear-gradient(135deg, #f0ede6, #e1ddd4 48%, #ddebf0 100%);
}

.blog-card__media--pilot {
  background:
    linear-gradient(180deg, rgba(0, 56, 101, 0.14), rgba(0, 56, 101, 0.24)),
    linear-gradient(135deg, #f6efe3, #eadcc7 44%, #d6ebe4 100%);
}

.blog-card__media--history {
  background:
    linear-gradient(180deg, rgba(0, 56, 101, 0.14), rgba(0, 56, 101, 0.24)),
    linear-gradient(135deg, #e8eef4, #d9e0ea 42%, #ece3d7 100%);
}

.blog-card__body {
  padding: 24px 24px 26px;
}

.blog-card__body h3 {
  font-size: 26px;
  line-height: 1.08;
  font-weight: 500;
}

.blog-page .page-hero .container {
  padding: 54px 0 34px;
  gap: 20px;
}

.blog-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  align-items: end;
}

.blog-hero__copy {
  display: grid;
  gap: 18px;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  align-items: center;
}

.blog-hero__quicklink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.blog-hero__quicklink:hover,
.blog-hero__quicklink:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.14);
}

.blog-hero__stats {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.44fr) minmax(0, 0.78fr);
  gap: 14px;
}

.blog-hero__stats article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.blog-hero__stats strong {
  color: #fff;
  font-size: clamp(28px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.blog-hero__stats span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.45;
}

.blog-hero__stats-topics strong {
  font-size: clamp(21px, 1.7vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.blog-hero__stats-topics .topic-line {
  display: block;
}

.blog-hero__stats-topics .topic-line:first-child {
  margin-bottom: 4px;
}

.home-video-band {
  position: relative;
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
  background: #0a2540;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-video-band__inner {
  position: relative;
  aspect-ratio: 848 / 464;
  overflow: hidden;
  background: #f5efe6;
}

.home-video-band video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.hero-visual video.is-video-ready,
.home-video-band video.is-video-ready {
  opacity: 1;
}

.video-poster-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transition: opacity 0.18s ease;
}

.video-poster-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.blog-featured-section {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding-top: 28px;
}

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

.archive-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 56, 101, 0.1);
  background: #fff;
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.07);
}

.archive-card__layout {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.archive-card__thumb {
  display: block;
  width: 94px;
  height: 122px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(0, 56, 101, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.archive-card__content {
  display: grid;
  gap: 14px;
}

.archive-card__meta,
.archive-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.archive-card__meta {
  color: rgba(0, 56, 101, 0.62);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.archive-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.archive-card h3 a {
  color: inherit;
}

.archive-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.64;
}

.archive-card__footer span {
  color: rgba(0, 56, 101, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.archive-card__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.archive-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.archive-card__quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0, 56, 101, 0.06);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.archive-card__quick:hover,
.archive-card__quick:focus-visible {
  background: rgba(208, 122, 50, 0.12);
  color: var(--orange);
}

.article-shell {
  display: grid;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.article-shell--wide {
  max-width: 1120px;
}

.article-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px 24px;
  align-items: center;
  flex-wrap: wrap;
}

.article-back {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-tags {
  margin-top: -6px;
}

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

.article-stat-card {
  display: grid;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid rgba(0, 56, 101, 0.1);
  background: #fff;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.06);
}

.article-stat-card span {
  color: rgba(0, 56, 101, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-stat-card strong {
  color: var(--blue);
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.article-stat-card small {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.45;
}

.article-data-table {
  overflow: auto;
  border: 1px solid rgba(0, 56, 101, 0.1);
  background: #fff;
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.07);
}

.article-data-table table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.article-data-table th,
.article-data-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 56, 101, 0.08);
  text-align: left;
}

.article-data-table th {
  background: rgba(0, 56, 101, 0.04);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-data-table td {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
}

.article-data-table tbody tr:last-child td {
  border-bottom: 0;
}

.article-prose {
  display: grid;
  gap: 28px;
}

.article-prose section {
  display: grid;
  gap: 16px;
}

.article-prose h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(28px, 2.1vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.article-prose p,
.article-prose li {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.article-prose a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-prose a:hover {
  color: var(--orange);
}

.article-prose ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 12px;
}

.article-inline-cta {
  display: grid;
  gap: 16px;
  padding: 28px 30px;
  border: 1px solid rgba(0, 56, 101, 0.12);
  background: linear-gradient(135deg, rgba(0, 56, 101, 0.08), rgba(208, 122, 50, 0.08));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.article-inline-cta h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.article-inline-cta p {
  margin: 0;
}

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

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 101, 0.18);
  background: transparent;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
}

.cta-secondary:hover {
  border-color: rgba(208, 122, 50, 0.55);
  color: var(--orange);
}

.article-insight {
  display: grid;
  gap: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(208, 122, 50, 0.08), rgba(0, 56, 101, 0.04));
}

.article-insight strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.2;
}

.article-figure {
  margin: 0;
  display: grid;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.article-figure a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 56, 101, 0.25);
}

.article-figure a:hover {
  color: var(--orange);
  border-color: currentColor;
}

.case-list {
  display: grid;
  gap: 28px;
}

.case-entry {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

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

.case-number {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
}

.case-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(148, 184, 58, 0.16);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.case-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.62;
}

.case-media-panel {
  padding: 14px;
  background: linear-gradient(180deg, #f9fbfd, #eef3f8);
  border: 1px solid rgba(0, 56, 101, 0.08);
}

.case-photo-grid {
  display: grid;
  grid-template-columns: 1.34fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.case-photo-card:first-child {
  grid-row: 1 / span 2;
}

.case-photo-card,
.case-video-frame {
  overflow: hidden;
  background: #dde7ef;
  border: 1px solid rgba(0, 56, 101, 0.08);
  min-height: 180px;
}

.case-photo-card img,
.case-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-video-frame {
  aspect-ratio: 16 / 9;
}

.case-media-note {
  margin-top: 12px;
  color: rgba(0, 56, 101, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.implementation-flow {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.chip-wrap {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 101, 0.14);
  background: #fff;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
}

.iframe-card {
  overflow: hidden;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.iframe-card iframe {
  width: 100%;
  height: 680px;
  border: 0;
}

.demo-layout {
  display: grid;
  gap: 30px;
}

.demo-intro {
  max-width: 760px;
}

.demo-frame-card {
  width: 100%;
  min-width: 0;
  height: 920px;
}

.demo-frame-card iframe {
  width: 100%;
  height: 920px;
  border: 0;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
  color: var(--blue);
}

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

.price {
  margin: 0 0 36px;
  padding: 12px 0;
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band .cta-actions {
  justify-content: flex-end;
}

.cta-band .cta-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.cta-band .cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.article-related-section {
  padding-top: 0;
}

.article-related {
  display: grid;
  gap: 24px;
}

.article-related__head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.article-related__eyebrow {
  color: rgba(0, 56, 101, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-related__head h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.article-related__head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

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

.article-related__card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.article-related__meta {
  color: rgba(0, 56, 101, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-related__card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.article-related__card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.62;
}

.article-related__link {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #003865 0%, #002f56 100%);
  color: var(--white);
  padding: 70px 0 78px;
}

.footer-top {
  margin-bottom: 44px;
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-logo-symbol {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.footer-logo-wordmark {
  color: var(--white);
  font-size: clamp(30px, 2.8vw, 38px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.footer-logo-divider {
  width: 2px;
  height: 28px;
  flex: 0 0 2px;
  background: rgba(255, 255, 255, 0.22);
}

.footer-logo-sub {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

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

.footer-col h4 {
  margin: 0 0 18px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-col li,
.footer-col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.footer-col a:not(.cta),
.contact-line a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
}

.footer-col a:not(.cta):hover,
.footer-col a:not(.cta):focus-visible,
.contact-line a:hover,
.contact-line a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-stack {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}

.contact-line {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(0, 56, 101, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  padding: 26px;
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.15;
}

.contact-card p,
.contact-card li {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.58;
}

.contact-card ul {
  margin: 0;
  padding-left: 20px;
}

.contact-card .contact-line,
.contact-card .contact-line a {
  color: var(--text);
}

.contact-card .contact-stack {
  gap: 10px;
}

.contact-card .contact-line {
  font-size: 22px;
  line-height: 1.42;
  font-weight: 500;
}

.map-card {
  display: grid;
  gap: 14px;
}

.map-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.15;
}

.map-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 56, 101, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-link {
  font-size: 15px;
  line-height: 1.45;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .nav-links,
  .hero-contact-grid,
  .grid-3,
  .grid-2,
  .blog-hero__layout,
  .blog-hero__stats,
  .blog-feature,
  .blog-grid,
  .archive-grid,
  .article-related__grid,
  .article-summary-grid,
  .case-layout,
  .case-photo-grid,
  .price-grid,
  .footer-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .login-modal__dialog {
    padding: 24px 18px 18px;
  }

  .blog-feature__media {
    min-height: 280px;
  }

  .blog-feature__body {
    padding: 28px 22px;
  }

  .blog-feature__quicklinks {
    gap: 10px;
  }

  .blog-page .page-hero .container {
    padding: 48px 0 28px;
  }

  .blog-featured-section {
    margin-top: 0;
    padding-top: 0;
  }

  .blog-card__body h3 {
    font-size: 22px;
  }

  .archive-card {
    padding: 22px;
  }

  .archive-card__layout {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
  }

  .archive-card__thumb {
    width: 88px;
    height: 112px;
  }

  .article-data-table table {
    min-width: 640px;
  }

  .case-photo-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 28px, 1200px);
  }

  .topbar .container,
  .navbar .container,
  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar .container,
  .navbar .container {
    min-height: unset;
    padding: 14px 0;
  }

  .topbar-left,
  .topbar-right {
    gap: 12px 18px;
  }

  .blog-page .page-hero .container {
    padding: 40px 0 24px;
  }

  .blog-hero__actions,
  .blog-feature__quicklinks,
  .archive-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-hero__stats article,
  .archive-card,
  .article-insight,
  .article-inline-cta,
  .article-related__card {
    padding: 18px;
  }

  .archive-card__layout {
    grid-template-columns: 1fr;
  }

  .archive-card__thumb {
    width: 100%;
    height: 168px;
  }

  .blog-hero__quicklink,
  .blog-feature__quick,
  .archive-card__quick {
    width: 100%;
  }

  .article-figure {
    padding: 10px;
  }

  .article-topbar {
    align-items: flex-start;
  }

  .article-stat-card {
    padding: 20px 18px;
  }

  .article-data-table th,
  .article-data-table td {
    padding: 14px 14px;
  }

  .brand-logo {
    width: min(240px, 100%);
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .footer-brand-lockup {
    gap: 10px 12px;
  }

  .footer-logo-symbol {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .footer-logo-wordmark {
    font-size: clamp(28px, 8vw, 34px);
  }

  .footer-logo-divider {
    height: 24px;
  }

  .footer-logo-sub {
    font-size: 12px;
    white-space: normal;
  }

  .page-hero .container,
  section {
    padding: 68px 0;
  }

  .hero-contact-item {
    min-height: 0;
  }

  .hero-contact-value,
  .hero-contact-value a {
    font-size: 22px;
  }

  .page-hero h1,
  .section-title,
  .text-block h2,
  .cta-band h2 {
    font-size: 30px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .footer-col li,
  .contact-line {
    font-size: 15px;
  }

  .case-entry {
    padding: 20px;
  }

  .cta {
    width: 100%;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-actions .cta,
  .cta-actions .cta-secondary {
    width: 100%;
  }
}
