:root {
  --ink: #071326;
  --muted: #52657c;
  --line: #c9ddf0;
  --panel: #ffffff;
  --soft: #f7fbff;
  --soft-2: #eaf6ff;
  --teal: #005bea;
  --teal-strong: #0040a0;
  --cyan: #00d4ff;
  --cyan-soft: #dff8ff;
  --mint: #36f0c2;
  --amber: #f59e0b;
  --red: #e11d48;
  --blue: #118cff;
  --shadow: 0 18px 48px rgba(7, 19, 38, 0.16);
  --radius: 8px;
  --content: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 91, 234, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 10px 11px;
  color: #334155;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal-strong);
  background: var(--cyan-soft);
  outline: none;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 91, 234, 0.24);
}

.language-switcher {
  position: relative;
  z-index: 80;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 8px 12px;
  color: #344255;
  border: 2px solid #1f2937;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(15, 32, 51, 0.04);
}

.language-button-label {
  font-size: 16px;
  font-weight: 800;
}

.current-code,
.language-code {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  min-height: 22px;
  padding: 2px 6px;
  color: #52657c;
  background: #eef2f6;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.language-menu {
  position: absolute;
  z-index: 90;
  right: 0;
  top: calc(100% + 10px);
  width: min(294px, calc(100vw - 20px));
  padding: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #1f2937;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible {
  background: var(--soft);
  outline: none;
}

.language-option.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

.language-option.is-active .language-code {
  color: var(--teal-strong);
  background: rgba(255, 255, 255, 0.28);
}

.language-name {
  font-size: 18px;
}

.flag {
  display: block;
  width: 31px;
  height: 21px;
  flex: 0 0 31px;
  object-fit: contain;
  object-position: center;
  border-radius: 1px;
  box-shadow: 0 1px 4px rgba(15, 32, 51, 0.2);
}

.hero {
  position: relative;
  min-height: min(760px, 84vh);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
}

.hero-picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: -3;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 66% 32%, rgba(0, 212, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(7, 19, 38, 0.94) 0%, rgba(7, 19, 38, 0.76) 42%, rgba(7, 19, 38, 0.26) 72%),
    linear-gradient(180deg, rgba(0, 91, 234, 0.18), rgba(7, 19, 38, 0.58));
}

.hero-content {
  width: var(--content);
  margin: 0 auto;
  padding: 92px 0 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 12px 30px rgba(0, 91, 234, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--teal-strong), var(--teal));
  outline: none;
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.hero-facts {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(11, 23, 38, 0.52);
}

.hero-facts dt {
  font-size: 23px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.audience-band {
  background:
    linear-gradient(135deg, var(--teal-strong), var(--teal)),
    radial-gradient(circle at 88% 12%, rgba(0, 212, 255, 0.28), transparent 34%);
  color: #ffffff;
}

.section-inner {
  width: var(--content);
  margin: 0 auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.audience-grid span {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.product-card,
.case-card,
.resource-grid article,
.solution-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.info-card {
  padding: 26px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--amber);
  font-weight: 900;
}

.info-card h3,
.product-card h3,
.case-card h3,
.resource-grid h3,
.solution-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
}

.info-card p,
.product-card p,
.case-card p,
.resource-grid p,
.solution-list p,
.about-copy p {
  color: var(--muted);
}

.info-card strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-strong);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.52;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #eef6f5;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.product-icon {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-card-body ul {
  display: grid;
  gap: 7px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.product-card-body li {
  position: relative;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
}

.product-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 0;
  color: var(--teal-strong);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.matrix-wrap {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.matrix-wrap h3 {
  margin: 0 0 16px;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

th:first-child,
td:first-child {
  text-align: left;
}

th {
  color: #ffffff;
  background: var(--ink);
}

td:first-child {
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 26px;
  align-items: stretch;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-list article {
  padding: 24px;
}

.architecture {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(0, 40, 112, 0.95), rgba(7, 19, 38, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.32), transparent 30%);
}

.architecture-node {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  text-align: center;
}

.architecture-node.bridge {
  background: #ffffff;
  color: var(--teal-strong);
}

.architecture-arrow {
  color: rgba(255, 255, 255, 0.65);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.case-card {
  padding: 24px;
}

.case-card span,
.resource-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 212, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #071326, #0e2a4a);
  color: #ffffff;
}

.geo-section .eyebrow {
  color: var(--cyan);
}

.geo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.geo-grid h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.answer-block {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.geo-facts {
  display: grid;
  gap: 12px;
}

.geo-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.geo-facts span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.geo-facts strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
}

.process-list strong {
  display: block;
  line-height: 1.25;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid article {
  padding: 24px;
}

.news-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.news-section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.news-section-heading p {
  margin: 0;
  color: var(--muted);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.news-card-main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 26px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.news-category {
  color: var(--teal-strong);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.news-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.news-summary {
  margin: 16px 0 0;
  color: var(--muted);
}

.news-takeaway {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.news-takeaway strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

.news-takeaway p {
  margin: 0;
  color: #475569;
}

.news-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.news-card-actions a {
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 850;
}

.news-editorial-note {
  max-width: 850px;
  margin: 26px 0 0;
  color: #64748b;
  font-size: 14px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 56px;
  align-items: start;
}

.news-article {
  min-width: 0;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin-bottom: 24px;
  color: #64748b;
  font-size: 14px;
  font-weight: 750;
}

.news-article-visual {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 20px;
  background: #071326;
  box-shadow: 0 22px 54px rgba(7, 19, 38, 0.14);
}

.news-article-visual picture,
.news-article-visual img {
  display: block;
  width: 100%;
}

.news-article-visual img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.news-answer {
  padding: 24px 26px;
  border-left: 4px solid var(--teal);
  background: var(--soft);
}

.news-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-strong);
  font-size: 14px;
  text-transform: uppercase;
}

.news-answer p,
.news-article section p {
  margin: 0;
  color: #334155;
  font-size: 18px;
}

.news-article > section {
  margin-top: 38px;
}

.news-article > section h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.news-article > section .text-link {
  display: inline-block;
  margin-top: 16px;
}

.news-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: news-checklist;
}

.news-checklist li {
  position: relative;
  min-height: 60px;
  padding: 16px 0 16px 46px;
  border-bottom: 1px solid var(--line);
  color: #334155;
  counter-increment: news-checklist;
}

.news-checklist li:first-child {
  border-top: 1px solid var(--line);
}

.news-checklist li::before {
  content: counter(news-checklist, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 900;
}

.news-detail-aside {
  position: sticky;
  top: 116px;
  min-width: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.news-detail-aside h2 {
  margin: 0 0 22px;
  font-size: 21px;
  line-height: 1.25;
}

.news-source-list {
  margin: 0;
}

.news-source-list > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.news-source-list dt {
  margin-bottom: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-source-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 750;
}

.news-detail-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.news-detail-actions a {
  color: var(--teal-strong);
  font-size: 14px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 48px;
}

.about-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.comparison div {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--soft);
}

.comparison span {
  display: block;
  color: var(--teal-strong);
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-2) 100%);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-methods a {
  color: var(--teal-strong);
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 32, 51, 0.08);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.lead-form input,
.lead-form select {
  min-height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 212, 255, 0.18);
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 212, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #071326, #0a1f3a 62%, #002870);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(140px, 0.55fr));
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand-mark {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.22);
}

.footer-brand .brand-text strong {
  color: #ffffff;
}

.footer-brand .brand-text span {
  color: var(--cyan);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 15px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.legal-main {
  padding: 72px 0 96px;
  background: #ffffff;
}

.legal-article {
  max-width: 850px;
}

.legal-article h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
}

.legal-article h2 {
  margin: 36px 0 10px;
  font-size: 23px;
}

.legal-article p {
  color: var(--muted);
  font-size: 17px;
}

.legal-article a {
  color: var(--teal-strong);
  font-weight: 800;
}

.legal-updated {
  margin-top: 14px;
  color: #64748b;
}

.page-hero {
  padding: 78px 0 54px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 212, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(7, 19, 38, 0.96), rgba(0, 40, 112, 0.9)),
    url("../images/cairan-smart-terminal-integration-hero.webp") center / cover;
}

.page-hero .eyebrow {
  color: var(--cyan);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumb a {
  color: #ffffff;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card,
.doc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.page-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-card:hover,
.page-card:focus-within {
  transform: translateY(-2px);
  border-color: #d8e3f1;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.page-card h2,
.page-card h3,
.doc-card h2,
.doc-card h3 {
  margin: 0 0 10px;
  line-height: 1.22;
}

.page-card p,
.doc-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.page-card ul,
.doc-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.page-card li,
.doc-card li {
  color: #334155;
}

.page-card .text-link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.about-profile h2,
.about-split h2,
.about-process-section h2,
.about-capability-section h2,
.about-cases-section h2,
.about-faq-section h2,
.about-contact-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.about-profile-grid > div > p:not(.eyebrow),
.about-split > div > p,
.about-process-section .section-heading p:not(.eyebrow),
.about-capability-section .section-heading p:not(.eyebrow),
.about-cases-section .section-heading p:not(.eyebrow),
.about-faq-section .section-heading p:not(.eyebrow),
.about-contact-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-stat-card,
.about-step,
.about-capability,
.about-case-card {
  border: 1px solid rgba(0, 91, 234, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 19, 38, 0.07);
}

.about-stat-card {
  min-height: 100%;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(223, 248, 255, 0.72), rgba(255, 255, 255, 0.92));
}

.about-stat-card strong {
  display: block;
  color: var(--teal);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.about-stat-card span,
.about-case-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 900;
}

.about-stat-card p,
.about-step p,
.about-capability p,
.about-case-card p {
  color: var(--muted);
}

.about-stat-card ul,
.about-case-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #334155;
}

.about-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 170px;
  gap: 14px;
}

.about-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.about-photo-large {
  grid-row: span 2;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(7, 19, 38, 0.78));
}

.about-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 38px;
  align-items: start;
}

.about-insight-list {
  display: grid;
  gap: 14px;
  counter-reset: about-insight;
}

.about-insight-list p {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 56px;
  border: 1px solid rgba(0, 91, 234, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: #334155;
  box-shadow: 0 10px 26px rgba(7, 19, 38, 0.06);
  counter-increment: about-insight;
}

.about-insight-list p::before {
  content: counter(about-insight, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--teal);
  font-weight: 950;
}

.about-timeline,
.about-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-step {
  position: relative;
  padding: 28px;
}

.about-step > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-weight: 950;
}

.about-step h3,
.about-capability h3,
.about-case-card h3 {
  margin: 0 0 10px;
  line-height: 1.22;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 900;
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-capability {
  padding: 22px;
}

.about-compliance-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius);
  background: #fff7ed;
  color: #7c2d12;
  font-weight: 750;
}

.about-case-card {
  padding: 24px;
}

.about-case-card span {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
}

.about-case-card strong {
  display: block;
  color: var(--ink);
}

.about-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-faq-item {
  padding: 24px;
  border: 1px solid rgba(0, 91, 234, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(223, 248, 255, 0.62), rgba(255, 255, 255, 0.96));
  box-shadow: 0 14px 34px rgba(7, 19, 38, 0.07);
}

.about-faq-item h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.24;
}

.about-faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.about-contact-section {
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 212, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-contact-card {
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(0, 91, 234, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 19, 38, 0.07);
}

.about-contact-card strong,
.about-contact-card a,
.about-contact-card span {
  display: block;
}

.about-contact-card strong {
  color: var(--ink);
  font-size: 14px;
}

.about-contact-card a,
.about-contact-card span {
  margin-top: 12px;
  color: var(--teal-strong);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.about-contact-card a:hover,
.about-contact-card a:focus-visible {
  color: var(--blue);
}

.solution-answer {
  max-width: 940px;
  margin-bottom: 44px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 91, 234, 0.2);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(223, 248, 255, 0.72), #ffffff 64%);
  box-shadow: 0 16px 34px rgba(7, 19, 38, 0.06);
}

.solution-answer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-answer p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 780;
  line-height: 1.5;
}

.solution-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 18px;
}

.solution-product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 19, 38, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.solution-product-card:hover,
.solution-product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 91, 234, 0.28);
  box-shadow: 0 20px 38px rgba(7, 19, 38, 0.09);
}

.solution-product-card figure {
  display: grid;
  place-items: center;
  aspect-ratio: 1.52;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef6f5;
}

.solution-product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-product-card > div {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.solution-product-card span,
.solution-case-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-product-card h3,
.solution-case-card h3,
.solution-flow h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

.solution-product-card p,
.solution-case-card p,
.solution-flow p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.solution-product-card .text-link,
.solution-case-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.solution-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.solution-flow article {
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(0, 91, 234, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
}

.solution-flow article.is-bridge {
  border-color: rgba(0, 212, 255, 0.34);
  background: linear-gradient(160deg, #071326, #0b2d4a);
}

.solution-flow article.is-bridge h3 {
  color: #ffffff;
}

.solution-flow article.is-bridge p {
  color: rgba(255, 255, 255, 0.76);
}

.solution-flow article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
}

.solution-flow-arrow {
  align-self: center;
  color: var(--teal);
  font-size: 26px;
  font-weight: 950;
}

.solution-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-case-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(0, 91, 234, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 19, 38, 0.05);
}

.solution-evidence-note {
  margin: 20px 0 18px;
  padding: 16px 18px;
  border: 1px solid #dbe5f0;
  border-radius: var(--radius);
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.doc-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.doc-card {
  padding: 26px;
}

.doc-card.wide {
  grid-column: 1 / -1;
}

.product-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft-2);
}

.product-visual img {
  width: 100%;
  height: auto;
}

.product-model-section {
  padding-top: 18px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-answer-section {
  padding-bottom: 28px;
}

.model-answer {
  max-width: 880px;
}

.model-answer h2,
.model-facts-title {
  margin: 0 0 14px;
}

.model-answer p:last-child {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.model-facts-title {
  margin-top: 36px;
  font-size: 22px;
}

.model-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.model-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.model-facts div:nth-child(odd) {
  padding-right: 24px;
}

.model-facts div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.model-facts div:last-child {
  grid-column: 1 / -1;
  padding-right: 0;
  padding-left: 0;
  border-left: 0;
}

.model-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.model-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.model-evidence-note {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.model-card:hover,
.model-card:focus-within {
  transform: translateY(-2px);
  border-color: #d8e3f1;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
}

.model-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  min-height: 100%;
  color: inherit;
}

.model-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
}

.model-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.24s ease;
}

.model-card-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  align-content: stretch;
  gap: 14px;
  padding: 20px;
}

.model-card-body h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
}

.model-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.model-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d6e3f4;
  border-radius: 999px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8fd 100%);
  color: #39506f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  max-width: 100%;
}

.model-card .text-link {
  padding-top: 4px;
}

.model-card-link:hover .text-link::after,
.model-card-link:focus-visible .text-link::after {
  transform: translateX(3px) rotate(45deg);
}

.model-card-link:hover .model-media img,
.model-card-link:focus-visible .model-media img {
  transform: scale(1.02);
}

.model-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.model-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.model-gallery figure {
  min-height: 260px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
}

.model-gallery figure:first-child {
  grid-column: 1 / -1;
  min-height: 430px;
}

.model-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.product-video {
  display: block;
  width: min(100%, 960px);
  max-height: 620px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000000;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.mini-nav a:hover,
.mini-nav a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-strong);
  background: var(--cyan-soft);
}

.code-block {
  overflow-x: auto;
  margin: 16px 0 0;
  padding: 18px;
  border-radius: var(--radius);
  background: #0f172a;
  color: #dbeafe;
  font: 13px/1.6 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.page-cta {
  padding: 44px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(54, 240, 194, 0.24), transparent 28%),
    linear-gradient(135deg, var(--teal-strong), var(--teal));
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.page-cta h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.page-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.page-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1080px) {
  .nav-shell {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .card-grid.four,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-layout,
  .geo-grid,
  .about-grid,
  .about-profile-grid,
  .about-split,
  .contact-grid,
  .doc-layout,
  .split-heading,
  .news-section-heading,
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-article-visual img {
    aspect-ratio: 4 / 3;
  }

  .news-detail-aside {
    position: static;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-proof-strip,
  .about-capability-grid,
  .about-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-flow {
    grid-template-columns: 1fr;
  }

  .solution-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .model-detail-layout {
    grid-template-columns: 1fr;
  }

  .about-faq-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .nav-shell {
    align-items: flex-start;
  }

  .brand-logo {
    height: 46px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .language-switcher,
  .language-button {
    width: 100%;
  }

  .language-button {
    justify-content: center;
  }

  .language-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 34px;
    line-height: 1.09;
  }

  .hero-content {
    padding: 70px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 19, 38, 0.95), rgba(7, 19, 38, 0.68));
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-facts,
  .audience-grid,
  .card-grid.three,
  .card-grid.four,
  .page-grid,
  .about-proof-strip,
  .about-timeline,
  .about-capability-grid,
  .about-case-grid,
  .about-faq-list,
  .about-contact-grid,
  .solution-list,
  .resource-grid,
  .news-grid,
  .comparison,
  .lead-form,
    .model-grid,
    .model-gallery,
    .solution-product-grid,
    .solution-case-grid,
    .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .model-card-link {
    grid-template-rows: auto 1fr;
  }

  .model-facts {
    grid-template-columns: 1fr;
  }

  .model-facts div,
  .model-facts div:nth-child(odd),
  .model-facts div:nth-child(even),
  .model-facts div:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
    border-left: 0;
  }

  .model-gallery figure,
  .model-gallery figure:first-child {
    grid-column: auto;
    min-height: 260px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading p:not(.eyebrow),
  .answer-block {
    font-size: 16px;
  }

  .news-answer {
    padding: 20px;
  }

  .news-article-visual {
    margin-bottom: 22px;
    border-radius: 16px;
  }

  .news-article-visual img {
    aspect-ratio: 1;
  }

  .news-answer p,
  .news-article section p {
    font-size: 16px;
  }

  .news-article > section h2 {
    font-size: 24px;
  }
}
