:root {
  --ink: #0e1828;
  --muted: #5d697a;
  --line: #dce4ee;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #1459a6;
  --cyan: #00a8d8;
  --gold: #f0c64b;
  --red: #c93636;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}
.brand strong, .brand small { display: block; line-height: 1.2; }
.brand small { color: var(--muted); }

.nav-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}
button, .btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.nav-tabs button, .button-grid button {
  white-space: nowrap;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.nav-tabs button.active, .nav-tabs button:hover, .button-grid button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 33, .88), rgba(8, 18, 33, .55), rgba(8, 18, 33, .16));
}
.hero-content {
  position: relative;
  max-width: 760px;
  padding: 80px clamp(20px, 6vw, 76px);
  color: var(--white);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1, h2 {
  margin: 0 0 18px;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(42px, 8vw, 86px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { margin: 0 0 10px; font-size: 20px; }
.hero-copy { max-width: 660px; font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}
.btn.primary { background: var(--gold); color: #15120a; }
.btn.ghost { color: var(--white); border: 1px solid rgba(255,255,255,.65); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
}
.stats-band article, .metric-row article {
  padding: 26px 22px;
  background: var(--white);
}
.stats-band strong, .metric-row strong {
  display: block;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}
.stats-band span, .metric-row span, .spec-list span, .capacity-bars span { color: var(--muted); }

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.muted { background: var(--paper); }
.feature-image, .product-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(14, 24, 40, .14);
}
.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid article {
  min-height: 170px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: var(--blue);
}
.split-band .eyebrow { color: var(--gold); }
.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  color: var(--ink);
}
.location-cards article {
  padding: 22px;
  background: var(--white);
  border-left: 8px solid #2db574;
  border-radius: 6px;
}
.location-cards article:nth-child(2) { border-left-color: var(--cyan); }
.location-cards h3 {
  color: var(--blue);
  font-size: 16px;
}
.location-cards strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.15;
}
.location-cards p { color: var(--ink); }
.location-cards span {
  color: var(--muted);
  font-weight: 800;
}
.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.route span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}
.route b { color: var(--gold); font-size: 24px; }

.partner-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.partner-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.partner-panel article {
  min-height: 146px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  border-top: 5px solid var(--gold);
}
.partner-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}
.partner-panel span { color: rgba(255,255,255,.78); }

.product-section {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.spec-list div {
  padding: 16px;
  border-left: 4px solid var(--cyan);
  background: var(--paper);
}
.spec-list strong { display: block; margin-top: 4px; }

.model-table {
  margin-top: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.model-table h3 {
  margin: 0;
  padding: 16px 18px;
  color: var(--white);
  background: var(--blue);
}
.model-table dl { margin: 0; }
.model-table div {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
}
.model-table dt {
  color: var(--muted);
  font-weight: 800;
}
.model-table dd {
  margin: 0;
  font-weight: 800;
}
.lux-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}
.lux-section .eyebrow { color: var(--gold); }
.model-table.light {
  color: var(--ink);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .24);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-grid article {
  min-height: 245px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.service-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0;
}
.quote {
  max-width: 900px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  font-size: 20px;
}

.process-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 34px;
}
.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(14, 24, 40, .07);
}
.timeline span {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.capacity-bars { margin-top: 26px; }
.capacity-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(14, 24, 40, .08);
}
.capacity-table th,
.capacity-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.capacity-table th {
  color: var(--white);
  background: var(--blue);
}
.capacity-table td { background: var(--white); }
.capacity-bars label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 8px;
}
.bar {
  height: 14px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--ink);
}
address {
  display: grid;
  gap: 10px;
  align-content: center;
  font-style: normal;
  grid-column: 1;
  grid-row: 2;
}
address strong { color: var(--gold); font-size: 26px; }
address a { color: var(--white); text-decoration-color: var(--cyan); }
.contact-card {
  margin-top: 18px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}
.contact-card h3 { color: var(--blue); }
.contact-card p {
  margin: 8px 0;
  overflow-wrap: anywhere;
}
.contact-card b { color: var(--ink); }
.contact-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  align-self: center;
}
.contact-visual img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .28);
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(14, 24, 40, .24);
}
.to-top.show { display: block; }

.language-switcher {
  position: fixed;
  right: 14px;
  bottom: 72px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 6px;
}
.language-toggle,
.language-menu button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(14, 24, 40, .12);
  font-size: 12px;
  font-weight: 800;
}
.language-toggle {
  min-width: 44px;
}
.language-menu {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: grid;
  gap: 5px;
  padding: 6px;
  background: rgba(14,24,40,.9);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(14, 24, 40, .24);
}
.language-menu button {
  min-width: 42px;
  box-shadow: none;
  text-align: center;
}
.language-menu button.active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

/* Slide-style layout refinements */
.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}
.location-section {
  background: #f3f7f6;
}
.location-section h2 { color: var(--ink); }
.slide-route {
  max-width: 820px;
  margin: 44px auto 0;
  color: var(--blue);
}
.slide-route::before {
  content: "";
  grid-column: 1 / -1;
  height: 3px;
  background: repeating-linear-gradient(90deg, #2db574 0 20px, transparent 20px 28px);
}
.partner-section {
  grid-template-columns: .82fr 1.18fr;
  color: var(--white);
  background: var(--ink);
}
.partner-section h2 {
  color: var(--white);
  font-size: clamp(44px, 6vw, 72px);
}
.partner-copy p {
  max-width: 520px;
  color: rgba(255,255,255,.9);
}
.partner-product {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.3));
}
.partner-section .partner-panel { margin-top: 28px; }
.partner-section .partner-panel article {
  min-height: 96px;
  padding: 12px 18px;
  background: transparent;
  border: 0;
  border-left: 5px solid #2db574;
}
.product-section {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: #f7faf9;
}
.product-section h2 { font-size: clamp(44px, 7vw, 86px); }
.product-section h2 span { color: #0d56d9; }
.model-list {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue);
}
.model-list b { color: #2db574; }
.inline-product {
  display: block;
  width: min(720px, 100%);
  margin-top: 24px;
  object-fit: contain;
}
.lux-section {
  background: linear-gradient(110deg, #f7faf9 0 52%, var(--white) 52% 100%);
  color: var(--ink);
}
.lux-section .eyebrow { color: #2db574; }
.lux-section h2 { color: var(--blue); }
.service-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: #f7faf9;
}
.service-list {
  display: grid;
  gap: 24px;
}
.service-list article {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 18px;
  align-items: start;
}
.service-list span {
  width: 20px;
  height: 20px;
  margin-top: 6px;
  background: #2db574;
}
.service-list article:nth-child(even) span { background: var(--blue); }
.service-list h3 { font-size: 18px; }
.service-list p {
  margin: 0;
  color: var(--muted);
}
.service-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 22px 56px rgba(14, 24, 40, .14);
}
.quality-section {
  position: relative;
  background: #f7faf9;
  padding-bottom: clamp(120px, 12vw, 170px);
}
.quality-section::after {
  content: "★★★★★";
  position: absolute;
  right: clamp(28px, 7vw, 96px);
  top: clamp(36px, 6vw, 84px);
  color: var(--gold);
  font-size: 28px;
}
.feedback-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.feedback-summary {
  display: grid;
  gap: 16px;
}
.metric-row.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}
.metric-row.compact article {
  min-height: 116px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(14, 24, 40, .06);
}
.metric-row.compact article:nth-child(even) {
  border-left-color: #2db574;
}
.feedback-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
  margin-top: 4px;
}
.feedback-gallery img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(14, 24, 40, .1);
}
.feedback-gallery .wide {
  grid-row: span 2;
}
.feedback-collage {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  min-height: clamp(720px, 66vw, 920px);
  margin-top: 10px;
  padding: clamp(14px, 3vw, 26px);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(244,248,247,.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(14, 24, 40, .1);
}
.review-card {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(14, 24, 40, .16);
}
.review-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}
.review-card.featured {
  left: 3%;
  top: 4%;
  z-index: 20;
  width: 42%;
  height: 34%;
  transform: rotate(-1.2deg);
  border: 3px solid var(--gold);
}
.review-card.featured span {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  padding: 5px 9px;
  color: var(--gold);
  background: rgba(14,24,40,.88);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}
.review-card.product-proof {
  left: 42%;
  top: 8%;
  z-index: 8;
  width: 26%;
  height: 28%;
  transform: rotate(1.4deg);
}
.review-card:nth-child(3) {
  left: 65%;
  top: 3%;
  z-index: 7;
  width: 29%;
  height: 27%;
  transform: rotate(-.8deg);
}
.review-card:nth-child(4) {
  left: 48%;
  top: 32%;
  z-index: 9;
  width: 32%;
  height: 25%;
  transform: rotate(.7deg);
}
.review-card.wide {
  left: 7%;
  top: 41%;
  z-index: 6;
  width: 48%;
  height: 28%;
  transform: rotate(-.5deg);
}
.review-card:nth-child(6) {
  left: 72%;
  top: 30%;
  z-index: 5;
  width: 22%;
  height: 25%;
  transform: rotate(1.1deg);
}
.review-card:nth-child(7) {
  left: 2%;
  top: 68%;
  z-index: 4;
  width: 28%;
  height: 25%;
  transform: rotate(.8deg);
}
.review-card:nth-child(8) {
  left: 28%;
  top: 66%;
  z-index: 6;
  width: 28%;
  height: 25%;
  transform: rotate(-.9deg);
}
.review-card:nth-child(9) {
  left: 54%;
  top: 59%;
  z-index: 4;
  width: 23%;
  height: 28%;
  transform: rotate(.6deg);
}
.review-card:nth-child(10) {
  left: 73%;
  top: 56%;
  z-index: 6;
  width: 24%;
  height: 27%;
  transform: rotate(-.7deg);
}
.review-card:nth-child(11) {
  left: 38%;
  top: 82%;
  z-index: 3;
  width: 34%;
  height: 16%;
  transform: rotate(.4deg);
}
.quality-section + .process-section {
  border-top: 1px solid var(--line);
}
.capacity-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}
.capacity-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.capacity-notes article {
  padding-left: 18px;
  border-left: 5px solid #2db574;
}
.capacity-notes article:nth-child(2) { border-left-color: var(--blue); }
.capacity-notes p {
  margin: 0;
  color: var(--muted);
}
.partnership-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14,24,40,.88), rgba(20,89,166,.92)),
    var(--blue);
}
.partnership-section .eyebrow {
  color: var(--gold);
}
.partnership-head {
  display: grid;
  align-content: center;
  justify-items: start;
}
.partnership-head h2 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
}
.partnership-copy {
  display: grid;
  gap: 14px;
}
.partnership-copy.highlight {
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255,255,255,.96);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.partnership-copy article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  color: var(--ink);
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.partnership-copy article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
  border-radius: 6px;
}
.partnership-copy article:nth-child(1) span,
.partnership-copy article:nth-child(4) span {
  background: #2db574;
}
.partnership-copy p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
}

.contact-section {
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
}
.contact-intro h2 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
}
.contact-board {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(260px, 1.1fr);
  gap: 18px;
}
.company-contact {
  grid-column: 1;
  grid-row: 1;
  gap: 12px;
  padding-top: 0;
}
.company-contact strong {
  color: var(--gold);
  font-size: 20px;
  line-height: 1.25;
}
.contact-person {
  display: inline-block;
  width: fit-content;
  padding-bottom: 8px;
  color: #2db574;
  border-bottom: 5px solid #2db574;
  font-size: 24px;
  font-weight: 800;
}
.company-contact span,
.company-contact a {
  font-size: 16px;
}
.line-card {
  display: grid;
  justify-items: start;
  gap: 10px;
  grid-column: 1;
  grid-row: 2;
  padding: 18px;
  background: rgba(255,255,255,.08);
  border-left: 5px solid #2db574;
  border-radius: 8px;
}
.line-card span {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}
.line-card img {
  width: min(210px, 100%);
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 6px;
}
.line-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
}
.map-card {
  position: relative;
  min-height: 360px;
  grid-column: 2;
  grid-row: 1 / span 2;
  overflow: hidden;
  padding: 24px;
  background: #e9eef0;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(0,0,0,.26);
}
.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,89,166,.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(20,89,166,.1) 1px, transparent 1px);
  background-size: 54px 54px;
}
.map-road {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 32px;
  background: rgba(20,89,166,.36);
  transform: rotate(-12deg);
}
.map-road.main { top: 48%; }
.map-road.second {
  top: 28%;
  height: 18px;
  transform: rotate(22deg);
  background: rgba(45,181,116,.28);
}
.map-pin {
  position: absolute;
  left: 52%;
  top: 42%;
  width: 46px;
  height: 46px;
  background: #df3c3c;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: 13px;
  background: var(--white);
  border-radius: 50%;
}
.map-card strong,
.map-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--ink);
  text-align: right;
}
.map-card strong {
  margin-top: 250px;
  font-size: 24px;
}
.interpreter-card {
  grid-column: 1 / -1;
  grid-row: 3;
}
.contact-visual { display: none; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .stats-band, .card-grid, .card-grid.six, .metric-row, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .two-column, .product-section, .split-band, .process-section, .contact-section, .partner-section, .lux-section, .service-section, .capacity-section, .partnership-section { grid-template-columns: 1fr; }
  address, .contact-visual { grid-column: auto; grid-row: auto; }
  .contact-board { grid-template-columns: 1fr; }
  .feedback-layout { grid-template-columns: 1fr; }
  .feedback-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 28vw, 220px);
    gap: 12px;
    min-height: 0;
  }
  .review-card,
  .review-card.featured,
  .review-card.product-proof,
  .review-card:nth-child(3),
  .review-card:nth-child(4),
  .review-card.wide,
  .review-card:nth-child(6),
  .review-card:nth-child(7),
  .review-card:nth-child(8),
  .review-card:nth-child(9),
  .review-card:nth-child(10),
  .review-card:nth-child(11) {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    transform: none;
  }
  .feedback-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }
  .feedback-gallery .wide { grid-row: auto; }
  .company-contact,
  .line-card,
  .map-card,
  .interpreter-card {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .hero { min-height: 78vh; }
  .hero-overlay { background: rgba(8, 18, 33, .72); }
  .stats-band, .card-grid, .card-grid.six, .metric-row, .spec-list, .service-grid, .partner-panel, .location-cards { grid-template-columns: 1fr; }
  .route { grid-template-columns: 1fr; }
  .route b { transform: rotate(90deg); justify-self: center; }
  .model-table div { grid-template-columns: 1fr; gap: 4px; }
  .capacity-table { display: block; overflow-x: auto; }
  .metric-row.compact,
  .feedback-gallery,
  .feedback-collage { grid-template-columns: 1fr; }
  .feedback-gallery { grid-auto-rows: 220px; }
  .feedback-collage { grid-auto-rows: auto; }
  .review-card { aspect-ratio: 4 / 3; }
  .review-card.featured,
  .review-card.wide { aspect-ratio: 16 / 10; }
}
