:root {
  --ink: #231f20;
  --muted: #5f6670;
  --line: #d7e0eb;
  --paper: #f5f7fb;
  --soft: #e9eef7;
  --sky: #e6eef9;
  --teal: #235292;
  --teal-dark: #173b69;
  --amber: #e8a93a;
  --coral: #c75f45;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(35, 31, 32, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

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

.site-shell {
  padding-top: 70px;
}

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  background: rgba(245, 247, 251, 0.96);
  border-bottom: 1px solid rgba(215, 224, 235, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 0 rgba(35, 31, 32, 0);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(194, 207, 224, 0.88);
  box-shadow: 0 16px 40px rgba(35, 31, 32, 0.11);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  min-width: 150px;
  min-height: 46px;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-tagline {
  display: none;
  width: 174px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 8px;
  color: var(--teal-dark);
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(35, 82, 146, 0.16);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 14px;
  color: #384554;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px;
}

.nav-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: rgba(35, 82, 146, 0.09);
  color: var(--teal-dark);
  flex: 0 0 auto;
}

.nav-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav a.active {
  color: var(--teal-dark);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.language-switch a.active {
  background: var(--ink);
  color: var(--white);
}

.language-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 142px;
  min-height: 48px;
  padding: 6px 34px 6px 8px;
  overflow: hidden;
  border: 1px solid rgba(195, 209, 226, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 242, 0.88)),
    var(--white);
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.08);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.language-picker::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 16% 20%, rgba(35, 82, 146, 0.16), transparent 30%);
  opacity: 0.9;
}

.language-picker:hover {
  transform: translateY(-1px);
  border-color: rgba(35, 82, 146, 0.38);
  box-shadow: 0 18px 38px rgba(35, 31, 32, 0.13);
}

.language-picker:focus-within {
  border-color: rgba(35, 82, 146, 0.62);
  box-shadow: 0 0 0 4px rgba(35, 82, 146, 0.13), 0 18px 38px rgba(35, 31, 32, 0.12);
}

.language-picker::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.language-flag-shell {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #edf3fb);
  box-shadow: inset 0 0 0 1px rgba(35, 82, 146, 0.15), 0 8px 18px rgba(35, 31, 32, 0.08);
}

.language-flag {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--white);
  font-size: 18px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(35, 31, 32, 0.06);
}

.language-copy {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.language-code {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.language-name {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.language-picker select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  outline: none;
  cursor: pointer;
  opacity: 0;
  appearance: none;
}

.menu-button {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(35, 31, 32, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.menu-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.menu-button.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-actions .btn:first-child {
  animation: soft-pulse 2.8s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(35, 82, 146, 0.24);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.btn.small {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(720px, calc(100vh - 84px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #e5ebf4;
}

.hero::selection {
  background: rgba(232, 169, 58, 0.35);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.04) translateX(1.2%);
  animation: hero-premium-pan 16s ease-in-out infinite alternate;
}

.hero-copy-slider {
  position: relative;
  min-height: 304px;
}

.hero-copy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-copy-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 73% 42%, rgba(255, 255, 255, 0) 0%, rgba(35, 31, 32, 0.08) 55%, rgba(35, 31, 32, 0.18) 100%),
    linear-gradient(90deg, rgba(245, 247, 251, 0.98) 0%, rgba(245, 247, 251, 0.94) 36%, rgba(245, 247, 251, 0.56) 58%, rgba(245, 247, 251, 0.14) 86%, rgba(245, 247, 251, 0.04) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0), rgba(245, 247, 251, 0.78));
}

@keyframes hero-premium-pan {
  from {
    transform: scale(1.04) translateX(1.2%);
  }

  to {
    transform: scale(1.04) translateX(-1.2%);
  }
}

.hero-content {
  max-width: 640px;
  padding: 72px 0 98px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #334743;
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.hero-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 31, 32, 0.22);
  cursor: pointer;
  overflow: hidden;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 46px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(35, 82, 146, 0.13);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 610px;
  margin-top: 38px;
}

.stat {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.08);
}

.stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shine-pass 5.8s ease-in-out infinite;
}

.stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: 27px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

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

.section.deep {
  position: relative;
  overflow: hidden;
  padding: 104px 0 108px;
  background:
    linear-gradient(135deg, rgba(35, 31, 32, 0.98), rgba(20, 48, 86, 0.94)),
    var(--ink);
  color: var(--white);
}

.section.deep::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(232, 169, 58, 0.1);
  filter: blur(10px);
  transform: translateX(-10%);
  pointer-events: none;
}

.section.deep > * {
  position: relative;
}

.section.deep .eyebrow,
.section.deep .lead,
.section.deep p {
  color: rgba(255, 255, 255, 0.78);
}

.section.deep .eyebrow::before {
  background: var(--amber);
}

.section.compact-band {
  padding-top: 72px;
  background: #eef2f8;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(232, 243, 243, 0.8), rgba(255, 248, 229, 0.55)),
    var(--paper);
}

.page-hero.compact {
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 850px;
}

.trust-strip {
  margin-top: -34px;
  padding-bottom: 64px;
  position: relative;
  z-index: 5;
  background: linear-gradient(180deg, rgba(246, 248, 241, 0), var(--paper) 36%, var(--paper) 100%);
}

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

.trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 16px;
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(220, 230, 223, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 42px rgba(35, 31, 32, 0.09);
}

.trust-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff1d6;
  color: #8a520b;
  font-size: 13px;
  font-weight: 900;
}

.trust-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 34px rgba(35, 31, 32, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 82, 146, 0.35);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.service-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.feature-card {
  overflow: hidden;
  padding: 0;
}

.feature-card img,
.service-card img,
.vehicle-card img,
.visual-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.feature-card:hover img,
.service-card:hover img,
.vehicle-card:hover img,
.visual-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.feature-card .card-body {
  padding: 22px;
}

.vehicle-card {
  overflow: hidden;
  padding: 0;
}

.vehicle-card .card-body {
  padding: 24px;
}

.soft-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--sky);
}

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

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.service-number,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e7eef9;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.chip {
  background: #fff1d6;
  color: #7a4b0f;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.region-list li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 800;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 42px;
  align-items: center;
}

.visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-card figcaption,
.operation-photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(35, 31, 32, 0.14);
  backdrop-filter: blur(12px);
}

.visual-card figcaption strong,
.operation-photo-card figcaption strong {
  font-size: 15px;
  line-height: 1.2;
}

.visual-card figcaption span,
.operation-photo-card figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.operation-visual img {
  aspect-ratio: 5 / 4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.info-split {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.85fr);
  gap: 46px;
}

.operation-side {
  display: grid;
  gap: 16px;
}

.operation-photo-card {
  position: relative;
  min-height: 238px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.operation-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0.02), rgba(35, 31, 32, 0.34));
  pointer-events: none;
}

.operation-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.operation-photo-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.06);
}

.operation-photo-card figcaption {
  z-index: 1;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(232, 169, 58, 0.16);
}

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

.operation-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.operation-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.operation-card span,
.audience-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 32px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #fff1d6;
  color: #7a4b0f;
  font-size: 13px;
  font-weight: 900;
}

.operation-card h3 {
  color: var(--white);
}

.operation-card p {
  margin-bottom: 0;
}

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

.audience-item {
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(35, 31, 32, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.audience-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(35, 31, 32, 0.12);
}

.audience-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.audience-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.audience-item:hover .audience-media img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.04);
}

.audience-media em {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(35, 31, 32, 0.13);
}

.audience-content {
  padding: 22px;
}

.audience-item h3 {
  color: var(--ink);
}

.audience-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

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

.article-card {
  background:
    linear-gradient(180deg, rgba(232, 243, 243, 0.6), rgba(255, 255, 255, 0) 90px),
    var(--white);
}

.sweet-article {
  position: relative;
  overflow: hidden;
  padding: 0 24px 24px;
}

.sweet-article::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff1d6;
  opacity: 0.8;
}

.article-thumb {
  position: relative;
  z-index: 1;
  width: calc(100% + 48px);
  max-width: none;
  height: 132px;
  margin: 0 -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.02) contrast(1.02);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sweet-article:hover .article-thumb {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.sweet-article::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 22px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(35, 82, 146, 0.18);
}

.sweet-article h3,
.sweet-article p,
.sweet-article .article-meta,
.sweet-article .read-pill {
  position: relative;
}

.article-excerpt {
  color: var(--ink) !important;
  font-weight: 800;
}

.read-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 8px;
  background: #e7eef9;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.article-meta {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.contact-box {
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.contact-box .eyebrow {
  color: #ffe1a7;
}

.contact-box .eyebrow::before {
  background: var(--coral);
}

.contact-form {
  padding: 30px;
}

.contact-box p,
.contact-box a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--white);
}

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

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: #334743;
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(35, 82, 146, 0.13);
}

.notice {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.notice.error {
  border-color: #f0b5a7;
  background: #fff2ee;
  color: #8c321e;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.6fr) minmax(220px, 0.5fr);
  align-items: center;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
  justify-content: flex-start;
  min-width: 0;
}

.footer-brand .brand-logo {
  width: 158px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-weight: 800;
}

.footer-contact {
  justify-items: end;
}

.footer-contact strong {
  color: var(--ink);
}

.quick-contact-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 85;
  display: grid;
  width: 54px;
  gap: 10px;
  contain: layout paint;
}

.quick-contact-button {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  max-width: 54px;
  max-height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(35, 82, 146, 0.24);
  animation: dock-pop 0.42s ease both;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-contact-button:nth-child(2) {
  animation-delay: 0.08s;
}

.quick-contact-button:nth-child(3) {
  animation-delay: 0.16s;
}

.quick-contact-button svg {
  display: block;
  width: 25px !important;
  height: 25px !important;
  min-width: 25px;
  max-width: 25px;
  min-height: 25px;
  max-height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.quick-contact-button svg * {
  fill: none;
}

.quick-contact-button::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  max-width: 180px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.quick-contact-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 46px rgba(35, 82, 146, 0.28);
}

.quick-contact-button:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.quick-contact-whatsapp {
  background: #19a862;
}

.quick-contact-phone {
  background: var(--ink);
}

.quick-contact-contact {
  background: var(--amber);
  color: #2e2106;
}

body.menu-open .quick-contact-dock {
  opacity: 0;
  pointer-events: none;
}

.cookie-banner {
  position: fixed;
  right: 96px;
  bottom: 24px;
  z-index: 70;
  width: min(430px, calc(100% - 124px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.admin-body {
  background: #f4f7f2;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.auth-card {
  width: min(440px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.install-card {
  width: min(620px, 100%);
}

.helper-text {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.login-helper {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.login-helper summary {
  padding: 12px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.login-helper-box {
  display: grid;
  gap: 8px;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.admin-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.admin-sidebar a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.admin-main {
  padding: 30px;
}

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

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

.panel-stat {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.panel-stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.panel-section {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.panel-section h2 {
  font-size: 25px;
}

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

.editor-grid .wide {
  grid-column: 1 / -1;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.danger {
  background: var(--coral);
}

.danger:hover {
  background: #bf563e;
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(35, 82, 146, 0.18);
  }

  50% {
    box-shadow: 0 16px 34px rgba(35, 82, 146, 0.32);
  }
}

@keyframes shine-pass {
  0%,
  55%,
  100% {
    transform: translateX(-120%);
  }

  72% {
    transform: translateX(120%);
  }
}

@keyframes dock-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-shell {
    padding-top: 70px;
  }

  .header-inner {
    min-height: 70px;
    position: relative;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: calc(100vh - 98px);
    padding: 14px;
    overflow-y: auto;
    border: 1px solid rgba(195, 209, 226, 0.9);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 250, 0.96)),
      var(--white);
    box-shadow: 0 24px 80px rgba(35, 31, 32, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(35, 31, 32, 0.18);
    backdrop-filter: blur(3px);
  }

  .main-nav.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 60px;
    padding: 10px 12px;
    border: 1px solid rgba(195, 209, 226, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(35, 31, 32, 0.06);
  }

  .main-nav a.active {
    border-color: rgba(35, 82, 146, 0.34);
    background: rgba(231, 238, 249, 0.92);
  }

  .main-nav a.active::after {
    display: none;
  }

  .main-nav a:hover {
    background: var(--white);
  }

  .main-nav .nav-icon {
    width: 42px;
    height: 42px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(35, 31, 32, 0.14);
  }

  .main-nav .nav-icon svg {
    width: 19px;
    height: 19px;
  }

  .section-head,
  .split,
  .contact-wrap,
  .admin-shell,
  .area-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .region-list,
  .vehicle-grid,
  .operation-grid,
  .panel-grid,
  .trust-grid,
  .article-grid,
  .feature-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-contact {
    justify-items: start;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-shell {
    padding-top: 62px;
  }

  .container {
    width: min(100% - 22px, var(--max));
  }

  .header-inner {
    min-height: 62px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    min-height: 38px;
  }

  .brand-logo {
    width: 104px;
  }

  .main-nav {
    top: 70px;
    right: 11px;
    left: 11px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 92px);
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(245, 247, 251, 0.99) 0%, rgba(245, 247, 251, 0.94) 58%, rgba(245, 247, 251, 0.62) 100%);
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-content {
    padding: 66px 0 58px;
  }

  .hero-copy-slider {
    min-height: 326px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
  }

  .hero-stats,
  .service-grid,
  .region-list,
  .vehicle-grid,
  .operation-grid,
  .article-grid,
  .feature-grid,
  .audience-grid,
  .form-row,
  .editor-grid,
  .panel-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section.deep {
    padding: 76px 0 80px;
  }

  .operation-photo-card,
  .operation-photo-card img {
    min-height: 210px;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .language-switch {
    min-height: 34px;
  }

  .language-picker {
    width: 78px;
    min-width: 78px;
    min-height: 42px;
    padding: 5px 22px 5px 6px;
    justify-content: flex-start;
    gap: 6px;
  }

  .language-picker select {
    position: absolute;
    inset: 0;
    width: 100%;
    min-width: 0;
    opacity: 0;
    font-size: 16px;
  }

  .language-picker::after {
    position: absolute;
    right: 9px;
    top: 50%;
    bottom: auto;
    width: 6px;
    height: 6px;
    border-width: 1.5px;
    transform: translateY(-65%) rotate(45deg);
  }

  .language-icon {
    display: none;
  }

  .language-flag-shell {
    width: 31px;
    height: 31px;
  }

  .language-flag {
    width: 23px;
    height: 23px;
    font-size: 15px;
  }

  .language-code {
    font-size: 13px;
  }

  .language-name {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 46px;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-item {
    min-height: auto;
    padding: 20px;
  }

  .audience-item {
    min-height: auto;
    padding: 0;
  }

  .audience-content {
    padding: 20px;
  }

  .article-thumb {
    height: 150px;
  }

  .contact-box,
  .contact-form {
    padding: 22px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 90px;
    width: calc(100% - 28px);
  }

  .quick-contact-dock {
    right: 14px;
    bottom: 14px;
    width: 48px;
    gap: 8px;
  }

  .quick-contact-button {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
  }

  .quick-contact-button::before {
    display: none;
  }
}

@media (max-width: 400px) {
  .container {
    width: min(100% - 18px, var(--max));
  }

  .header-actions {
    gap: 6px;
  }

  .language-picker {
    width: 70px;
    min-width: 70px;
    min-height: 38px;
    padding: 4px 19px 4px 5px;
    gap: 4px;
  }

  .language-flag-shell {
    width: 29px;
    height: 29px;
  }

  .language-flag {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .language-code {
    font-size: 12px;
  }

  .brand-logo {
    width: 96px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 30px;
  }
}

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

  .hero-media img {
    animation: none;
  }
}
