:root {
  --navy: #002b5c;
  --navy-deep: #0a1f44;
  --navy-mid: #0d3b6e;
  --text: #161616;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --white: #ffffff;
  --header-h: 88px;
  --max: 1320px;
  --dur: 1.65s;
  --ease: cubic-bezier(0.22, 0.12, 0.18, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 18px;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 108px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0 auto 24px;
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.section-head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 24px;
}

.section-head--row p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 0.04em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-outline {
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover,
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-3px);
}

.btn-ghost {
  border-color: #111;
  color: #111;
}

/* Header — static on every page (no enter/scroll animation) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #061833 0%, var(--navy) 45%, #0d3b6e 100%);
  color: #fff;
  transition: none;
  animation: none;
  box-shadow: none;
}

.site-header.is-scrolled {
  background: linear-gradient(90deg, #061833 0%, var(--navy) 45%, #0d3b6e 100%);
  box-shadow: none;
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo--hero {
  text-decoration: none;
}

.logo-wordmark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.1;
}

.logo-wordmark small {
  display: block;
  margin-top: 2px;
  font-family: "Noto Sans", sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo-text small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.82;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  color: #fff;
}

.main-nav > a.is-active::after,
.main-nav > a:hover::after,
.nav-item:hover > a::after {
  display: none;
}

.nav-caret {
  display: inline-block;
  margin-left: 2px;
  font-size: 12px;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.9;
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  transform: none;
  min-width: 240px;
  background: #fff;
  color: #1a1a1a;
  padding: 8px 0;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(0, 20, 50, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: none;
  z-index: 80;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mega-menu a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: #222;
  white-space: nowrap;
  text-align: left;
}

.mega-menu a:hover {
  background: #f5f5f5;
  color: #002157;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-wrap {
  position: relative;
}

.lang-btn,
.icon-btn {
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 6px;
  font-weight: 400;
  font-size: 14px;
}

.lang-globe {
  flex-shrink: 0;
}

.search-toggle {
  background: rgba(0, 35, 75, 0.92);
  border-radius: 2px;
  width: 36px;
  height: 36px;
  min-width: 36px;
}

.search-toggle svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  color: var(--text);
  min-width: 200px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.lang-menu button {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  padding: 9px 16px;
  cursor: pointer;
}

.lang-menu button:hover {
  background: #f4f7fb;
}

button.icon-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  flex: 0 0 40px;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.menu-toggle i {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.search-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #07192f;
}

.search-panel-inner {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 22px;
}

.search-panel input {
  width: 100%;
  height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  outline: none;
}

.search-panel p {
  margin: 10px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(360px, 88vw);
  height: calc(100vh - var(--header-h));
  background: #07192f;
  color: #fff;
  z-index: 40;
  padding: 28px;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 22px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 30;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
}

.hero-swiper,
.hero-slide {
  min-height: min(88vh, 900px);
}

.hero-slide {
  background: #123 center / cover no-repeat;
  background-image: linear-gradient(180deg, rgba(6, 24, 51, 0.25), rgba(6, 24, 51, 0.45)), var(--bg);
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 18, 40, 0.55) 0%, rgba(4, 18, 40, 0.15) 62%, rgba(4, 18, 40, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 80px));
  margin: 0 auto 0 7%;
  padding-top: 14vh;
}

.hero-kicker {
  margin: 0 0 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 16px;
  opacity: 0.9;
}

.hero-content h1 {
  margin: 0 0 32px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.28;
  font-weight: 600;
  max-width: 20ch;
}

.hero-card {
  position: absolute;
  right: 7%;
  bottom: 16%;
  z-index: 1;
  width: min(340px, 34vw);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 26px 28px;
}

.hero-card p {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--muted);
}

.hero-card strong {
  font-size: 20px;
  line-height: 1.4;
}

.hero-pagination {
  bottom: 28px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.45;
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Product */
.product-section {
  background: var(--bg-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.product-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-card--wide {
  grid-column: span 6;
  min-height: 480px;
  position: relative;
  display: block;
}

.product-card--wide img {
  height: 480px;
  object-fit: cover;
}

.product-card--wide .product-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 18, 40, 0.72));
  color: #fff;
  padding: 36px 32px 28px;
}

.product-card--wide span {
  color: #fff;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  width: fit-content;
}

.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 3;
  min-height: 360px;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 2s var(--ease);
}

.product-card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 26px;
}

.product-card span {
  color: var(--navy);
  font-size: 17px;
}

.product-card:hover {
  box-shadow: 0 16px 36px rgba(0, 20, 50, 0.1);
  transform: translateY(-6px);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card:hover span {
  text-decoration: underline;
}

/* Applications */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-card {
  min-height: 500px;
  background: #333 center / cover no-repeat;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 20, 40, 0.72)), var(--img);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  padding: 32px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  overflow: hidden;
  background-size: cover;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}

.app-card:hover {
  filter: brightness(1.08);
  transform: translateY(-8px);
}

/* Company */
.company-swiper {
  overflow: hidden;
}

.company-panel {
  min-height: 420px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.company-panel--navy {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
}

.company-panel--photo {
  background: #123 center / cover no-repeat;
  background-image: linear-gradient(180deg, rgba(0, 20, 50, 0.05), rgba(0, 20, 50, 0.55)), var(--img);
  color: #fff;
  padding: 0;
}

.company-panel--split {
  display: flex;
  flex-direction: row;
  min-height: 360px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 20, 50, 0.08);
}

.company-panel__media {
  flex: 0 0 50%;
  background: #ccc center / cover no-repeat;
  background-image: var(--img);
}

.company-panel__body {
  flex: 1;
  background: #002157;
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-panel--navy-only .company-panel__body {
  flex: 1 1 100%;
}

.company-panel__body h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.35;
}

.company-panel__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.92;
}

.story-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.story-card li {
  margin-bottom: 4px;
}

.btn-read-more {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 40px;
  padding: 0 28px;
}

.contact-card__arrow {
  font-size: 20px;
  margin-top: 8px;
  color: var(--navy);
}

.company-panel h3,
.company-caption h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.35;
}

.company-panel p,
.company-caption p {
  margin: 0;
  font-size: 17px;
  opacity: 0.92;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.nav-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid #111;
  background: #fff;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.nav-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Showroom */
.stats-bar {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0 0 20px;
  text-align: center;
}

.stats-bar span {
  display: block;
  font-size: 16px;
  color: var(--muted);
}

.stats-bar strong {
  display: block;
  margin-top: 8px;
  font-size: 48px;
  color: var(--navy);
}

.showroom-visual {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: block;
}

.showroom-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 2.2s var(--ease);
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(0, 43, 92, 0.88);
  display: grid;
  place-items: center;
  animation: pulseSlow 2.8s var(--ease) infinite;
}

.showroom-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  text-align: center;
}

.showroom-features h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.showroom-features p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Stories */
.stories-section {
  background: var(--bg-soft);
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-card {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.story-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 2s var(--ease);
}

.story-card div {
  padding: 26px;
}

.story-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.4;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 20, 50, 0.1);
}

.story-card:hover img {
  transform: scale(1.06);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 260px;
  border: 1px solid #111;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 600;
  font-size: 20px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.contact-card:hover {
  background: #f7f9fc;
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 20, 50, 0.08);
}

/* News */
.news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.news-layout > h2 {
  margin: 0;
  font-size: 68px;
}

.news-tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}

.news-tabs button {
  border: 0;
  background: none;
  padding: 12px 0;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
  transition: color var(--dur) var(--ease);
}

.news-tabs button.is-active {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--navy);
}

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

.news-list li a {
  display: grid;
  grid-template-columns: 110px 100px 1fr 32px;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: transform var(--dur) var(--ease);
}

.news-list img {
  width: 110px;
  height: 80px;
  object-fit: cover;
}

.news-date strong {
  display: block;
  font-size: 36px;
  line-height: 1;
}

.news-date span {
  font-size: 14px;
  color: var(--muted);
}

.news-list p {
  margin: 0;
  font-weight: 600;
  line-height: 1.45;
  font-size: 18px;
}

.news-arrow {
  color: var(--navy);
  font-size: 24px;
}

.news-list a:hover p {
  color: var(--navy);
}

.news-list a:hover {
  transform: translateX(10px);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #001428 0%, #000810 100%);
  color: rgba(255, 255, 255, 0.86);
  padding-top: 64px;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse at 50% 0%, rgba(90, 170, 255, 0.42), transparent 72%);
  pointer-events: none;
}

.footer-beam {
  position: absolute;
  top: -40px;
  right: -10%;
  width: 55%;
  height: 280px;
  background: linear-gradient(
    125deg,
    transparent 38%,
    rgba(60, 160, 255, 0.55) 48%,
    rgba(120, 200, 255, 0.25) 52%,
    transparent 62%
  );
  filter: blur(2px);
  pointer-events: none;
  transform: rotate(-8deg);
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-intro {
  margin-bottom: 28px;
}

.footer-intro__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-intro__subtitle {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 40px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 0.9fr 1.25fr;
  gap: 28px 32px;
  padding-bottom: 48px;
}

.footer-wordmark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
}

.footer-wordmark small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.footer-brand__desc {
  margin: 14px 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-link-btn span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 14px;
}

.footer-link-btn:hover {
  color: #fff;
}

.footer-brand__address {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand__address strong {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.footer-grid h4 {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
}

.footer-grid h4 span {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 60, 120, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.footer-grid a,
.footer-brand p {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-talk {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-talk__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-talk__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-left: auto;
}

.footer-talk:hover {
  color: #fff;
  opacity: 0.9;
}

.footer-cta__line {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 14px;
}

.footer-cta__email {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-cta__subscribe {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-phone {
  font-size: 26px !important;
  color: #fff;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 8px;
  margin: 0;
  flex-wrap: wrap;
}

.socials a {
  width: 32px;
  height: 32px;
  background: #fff;
  color: #111;
  border: none;
  display: grid;
  place-items: center;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.socials a:hover {
  opacity: 0.85;
}

.region-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.region-select select {
  height: 38px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0 10px;
}

.region-select option {
  color: #111;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.35);
}

.footer-legal-sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal a:hover {
  color: #fff;
}

[hidden] {
  display: none !important;
}

.showroom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.showroom-modal-inner {
  width: min(900px, 100%);
  background: #fff;
  padding: 28px;
  position: relative;
}

.showroom-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 32px;
  cursor: pointer;
}

.showroom-modal img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

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

  .product-card--wide img {
    height: 280px;
  }

  .product-grid,
  .apps-grid,
  .contact-grid,
  .stats-bar,
  .showroom-features,
  .footer-grid,
  .news-layout {
    grid-template-columns: 1fr 1fr;
  }

  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card--wide {
    grid-column: span 1;
  }

  .news-layout > h2 {
    font-size: 48px;
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .header-inner {
    width: 100%;
    padding: 0 12px;
    gap: 8px;
    box-sizing: border-box;
  }

  .logo {
    min-width: 0;
    max-width: 52%;
  }

  .logo-text small {
    display: none;
  }

  .logo-text strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .header-tools {
    flex: 0 0 auto;
    margin-left: auto;
  }

  button.icon-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-top: 10vh;
  }

  .hero-content h1 {
    max-width: none;
  }

  .product-grid,
  .apps-grid,
  .contact-grid,
  .stats-bar,
  .showroom-features,
  .footer-grid,
  .news-layout,
  .news-list li a {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 280px;
  }

  .showroom-visual img,
  .showroom-modal img {
    height: 240px;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-list li a {
    grid-template-columns: 72px 1fr 20px;
  }

  .news-date {
    display: none;
  }
}

.showroom-visual:hover img {
  transform: scale(1.04);
}

.hero-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-nav button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 72px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.hero-nav button:hover {
  background: rgba(255, 255, 255, 0.32);
}

.hero-prev { left: 0; }
.hero-next { right: 0; }

.swiper-slide-active .hero-content,
.swiper-slide-active .hero-card {
  animation: fadeUp 1.8s var(--ease) both;
}

.swiper-slide-active .hero-card {
  animation-delay: 0.28s;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal.is-in,
.reveal-left.is-in,
.reveal-right.is-in,
.reveal-scale.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.44s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.76s; }

.mobile-drawer {
  transform: translateX(24px);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.mobile-drawer:not([hidden]) {
  transform: none;
  opacity: 1;
}

.search-panel {
  animation: fadeDown 1.2s var(--ease) both;
}

.lang-menu {
  animation: fadeDown 1.2s var(--ease) both;
}

.showroom-modal-inner {
  animation: fadeUp 1.5s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: none; }
}

@keyframes pulseSlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 43, 92, 0.35); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(0, 43, 92, 0); }
}

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

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Subpages */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep) center / cover no-repeat;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 18, 40, 0.72), rgba(6, 18, 40, 0.28));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 56px;
}

.breadcrumb {
  margin: 0 0 12px;
  font-size: 16px;
  opacity: 0.82;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.15;
}

.page-hero-inner > p:last-child {
  margin: 0;
  max-width: 720px;
  font-size: 20px;
  opacity: 0.92;
}

.page-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.page-block--flip {
  grid-template-columns: 0.9fr 1.1fr;
}

.page-block--flip img {
  order: 2;
}

.page-block img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.page-block-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
}

.page-block-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.page-block-copy ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
}

.page-block-copy li + li {
  margin-top: 8px;
}

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

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 2s var(--ease);
}

.article-card div {
  padding: 26px;
}

.article-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 20, 50, 0.1);
}

.article-card:hover img {
  transform: scale(1.06);
}

.contact-form {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .page-block,
  .page-block--flip,
  .page-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-block--flip img {
    order: 0;
  }

  .page-block img {
    height: 260px;
  }
}

/* Company info & Blog */
.company-info {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 48px;
  margin-top: 24px;
}

.company-info h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 32px);
}

.company-info dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px 24px;
  margin: 0;
}

.company-info dt {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.company-info dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.company-info dd a {
  color: var(--navy);
}

.company-info dd a:hover {
  text-decoration: underline;
}

.blog-landing {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.blog-landing p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.blog-landing .btn {
  margin-top: 28px;
}

.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-biz-no {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer-service > a:not(.footer-phone) {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.footer-service > a:not(.footer-phone):hover {
  color: #fff;
}

@media (max-width: 720px) {
  .company-info {
    padding: 28px 24px;
  }

  .company-info dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-info dt {
    margin-top: 12px;
  }

  .company-info dt:first-child {
    margin-top: 0;
  }
}
