:root {
  --logo-blue: #002bb8;
  --ink: #17202c;
  --muted: #5c6878;
  --paper: #f4f7fc;
  --paper-strong: #ffffff;
  --graphite: #142033;
  --forest: #0b2a5a;
  --copper: var(--logo-blue);
  --mist: #dfe7e0;
  --line: rgba(22, 26, 24, 0.13);
  --shadow: 0 24px 70px rgba(18, 25, 22, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 18px clamp(18px, 3vw, 50px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 17, 15, 0.78), rgba(12, 17, 15, 0));
}

.floating-contact-actions {
  position: fixed;
  bottom: 28px;
  right: clamp(18px, 4vw, 58px);
  z-index: 19;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.floating-contact-action {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 146px;
  min-height: 54px;
  padding: 9px 14px;
  color: #161b18;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 25, 22, 0.18);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-contact-action strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.floating-contact-action span {
  margin-top: 3px;
  color: #58615d;
  font-size: 12px;
  line-height: 1.2;
}

.floating-contact-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.5), 0 16px 36px rgba(0, 43, 184, 0.3);
  filter: brightness(1.04);
}

.floating-contact-quote {
  color: #fff;
  background: var(--logo-blue);
}

.floating-contact-whatsapp {
  place-items: center;
  color: #fff;
  background: #0b2a5a;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo {
  width: clamp(122px, 12vw, 172px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 0.625vw, 12px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a,
.text-link {
  opacity: 0.88;
}

.site-nav a:hover,
.text-link:hover {
  opacity: 1;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.8;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border-top: 12px solid transparent;
  background: rgba(18, 24, 21, 0.96);
  background-clip: padding-box;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown a {
  padding: 12px 14px;
  color: #fff;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.nav-quote-button {
  flex: 0 0 auto;
  border-color: var(--logo-blue);
  background: var(--logo-blue);
  color: #fff;
  white-space: nowrap;
}

.nav-quote-button:hover,
.nav-quote-button:focus-visible {
  border-color: #0b2a5a;
  background: #0b2a5a;
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 34px;
  border: 0;
  padding: 0 10px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.lang-button.active {
  background: #fff;
  color: var(--ink);
}

.language-selector {
  position: relative;
  width: auto;
  max-width: 100%;
  min-width: 0;
}

.language-selector-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-selector-trigger:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.language-selector-trigger:focus-visible,
.language-option:focus-visible {
  outline: 3px solid rgba(0, 43, 184, 0.42);
  outline-offset: 2px;
}

.language-selector-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-selector-globe,
.language-selector-chevron {
  flex: 0 0 auto;
}

.language-selector-chevron {
  transition: transform 180ms ease;
}

.language-selector-trigger[aria-expanded="true"] .language-selector-chevron {
  transform: rotate(180deg);
}

.language-selector-panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  z-index: 30;
  display: grid;
  width: max-content;
  min-width: min(230px, calc(100vw - 32px));
  max-width: min(300px, calc(100vw - 32px));
  max-height: calc(100svh - 104px);
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(23, 63, 89, 0.16);
  background: #fff;
  color: #173f59;
  box-shadow: 0 18px 48px rgba(18, 25, 22, 0.24);
  text-align: start;
  transform-origin: top right;
}

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

.language-option {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  padding: 9px 12px;
  color: #173f59;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.language-option:hover,
.language-option:focus-visible {
  background: #eef3ff;
  color: var(--logo-blue);
}

.language-option[aria-current="page"] {
  background: var(--logo-blue);
  color: #fff;
}

body[data-page="about"] .language-selector-trigger,
body[data-page="news-detail"] .language-selector-trigger,
body[data-page="news-index"] .language-selector-trigger {
  border-color: rgba(23, 63, 89, 0.28);
  background: #fff;
  color: #173f59;
}

[dir="rtl"] .language-selector-panel {
  inset-inline-start: 0;
  inset-inline-end: auto;
  text-align: right;
  transform-origin: top left;
}

@media (prefers-reduced-motion: reduce) {
  .language-selector-trigger,
  .language-selector-panel,
  .language-selector-chevron {
    scroll-behavior: auto;
    transition: none;
  }
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #fff;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.42), 0 12px 28px rgba(0, 43, 184, 0.3);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 13px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.homepage-main {
  display: flex;
  flex-direction: column;
}

.homepage-main > .hero { order: 1; }
.homepage-main > .why-sunnyjoy { order: 2; }
.homepage-main > .safety-assurance { order: 3; }
.homepage-main > .home-certification-band { order: 4; }
.homepage-main > .quote-strip { order: 5; }
.homepage-main > .models-section { order: 6; }
.homepage-main > .customer-solutions { order: 7; }
.homepage-main > .intro-section { order: 8; }
.homepage-main > #single-garage { order: 9; }
.homepage-main > #double-garage { order: 10; }
.homepage-main > #engineering { order: 11; }
.homepage-main > #custom-options { order: 12; }
.homepage-main > .motion-showcase { order: 13; }
.homepage-main > .applications { order: 14; }
.homepage-main > .case-studies { order: 15; }
.homepage-main > .quality { order: 16; }
.homepage-main > .faq-section { order: 17; }
.homepage-main > .inquiry-section { order: 18; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  max-height: 980px;
  display: grid;
  align-items: end;
  padding: clamp(104px, 14vh, 150px) clamp(18px, 5vw, 70px) clamp(34px, 7vh, 56px);
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.82) 0%, rgba(6, 10, 9, 0.52) 40%, rgba(6, 10, 9, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 10, 9, 0.62) 0%, rgba(6, 10, 9, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--copper);
}

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

h1 {
  max-width: min(760px, 100%);
  margin-bottom: clamp(14px, 2.6vh, 22px);
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero h1 span:first-child {
  color: var(--logo-blue);
  font-weight: 950;
}

.hero h1 span:not(:first-child) {
  color: #fff;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.65vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(20px, 4vh, 34px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(34px, 7vh, 56px);
  z-index: 2;
  display: grid;
  gap: 1px;
  width: min(330px, 32vw);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: clamp(13px, 2vh, 18px) 20px;
  background: rgba(20, 27, 24, 0.72);
  backdrop-filter: blur(12px);
}

.hero-panel span,
.quality-metrics span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: 17px;
}

.quote-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 70px);
  background: #0b2a5a;
  color: #fff;
}

.quote-strip p {
  margin: 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 750;
}

.quote-strip a {
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.motion-showcase {
  position: relative;
  min-height: 420vh;
  background: #101614;
  color: #fff;
}

.motion-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.sequence-stage {
  position: absolute;
  inset: 0;
  background: #0c1210;
}

.sequence-frame,
.sequence-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sequence-frame {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 720ms ease, transform 1200ms ease;
}

.sequence-frame.active {
  opacity: 1;
  transform: scale(1);
}

.sequence-shade {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 12, 10, 0.62), rgba(7, 12, 10, 0.05) 34%, rgba(7, 12, 10, 0.18)),
    linear-gradient(0deg, rgba(7, 12, 10, 0.5), rgba(7, 12, 10, 0.04) 55%);
}

.motion-progress {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 16px;
  width: min(280px, calc(100vw - 36px));
  min-height: 100%;
  margin-left: clamp(18px, 4vw, 64px);
  padding-top: 74px;
  color: #fff;
}

.motion-kicker {
  margin: 0;
  color: var(--logo-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.motion-progress-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.motion-progress-step {
  display: grid;
  grid-template-columns: 34px 2px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.42);
  transition: color 280ms ease, opacity 280ms ease;
}

.motion-progress-step span {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  opacity: 1;
}

.motion-progress-step i {
  display: block;
  width: 2px;
  height: 100%;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: center;
  transition: background 280ms ease, transform 280ms ease;
}

.motion-progress-step strong {
  max-width: 240px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.motion-progress-step.active {
  color: #fff;
}

.motion-progress-step.active span {
  opacity: 1;
}

.motion-progress-step.active i {
  background: var(--logo-blue);
  transform: scaleY(1.05);
}

.motion-progress-step.active strong {
  opacity: 1;
  transform: translateX(0);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 70px);
}

.intro-section {
  background: var(--paper-strong);
  text-align: center;
}

.intro-grid {
  display: grid;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
  justify-items: center;
}

.intro-grid p,
.section-heading p,
.feature-copy p,
.quality-panel p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro-grid h2 {
  max-width: 860px;
  margin-inline: auto;
}

.intro-grid p {
  max-width: 980px;
  margin: 0 auto;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 760px;
}

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

.model-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(27, 31, 29, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.34), 0 22px 44px rgba(0, 43, 184, 0.22);
}

.card-media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(38, 48, 45, 0.2), rgba(183, 122, 72, 0.1)),
    var(--mist);
  position: relative;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-body p {
  min-height: 92px;
  color: var(--muted);
  line-height: 1.55;
}

.card-body a {
  color: var(--forest);
  font-weight: 900;
}

.customer-solutions {
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 70px);
  background: #fff;
}

.customer-solutions-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.customer-solutions-heading .eyebrow {
  margin-bottom: 12px;
}

.customer-solutions-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
}

.customer-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1360px, 100%);
  margin: clamp(34px, 5vw, 56px) auto 0;
}

.customer-solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: #f4f6fb;
  border: 1px solid #dce2ef;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.customer-solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 43, 184, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.2), 0 20px 38px rgba(0, 43, 184, 0.18);
}

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

.customer-solution-card-content {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
}

.customer-solution-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.customer-solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.customer-solution-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: auto;
  padding: 0 15px;
  background: var(--logo-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.customer-solution-link:hover {
  background: #001f87;
}

.product-detail-section {
  padding: clamp(74px, 9vw, 130px) clamp(18px, 5vw, 70px);
  background: #f4f7fc;
}

.product-detail-section-alt {
  background: #ffffff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.product-detail-grid.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.product-detail-grid.reverse .product-detail-copy {
  order: 2;
}

.product-detail-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-spec-grid div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.product-spec-grid div:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.55), 0 12px 24px rgba(0, 43, 184, 0.18);
}

.product-spec-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
}

.product-spec-grid strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.tech-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
  border: 1px solid rgba(22, 26, 24, 0.16);
  background: rgba(255, 255, 255, 0.46);
}

.tech-table div {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 15px 16px;
  border-right: 1px solid rgba(22, 26, 24, 0.12);
  border-bottom: 1px solid rgba(22, 26, 24, 0.12);
}

.tech-table div:nth-child(2n) {
  border-right: 0;
}

.tech-table div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tech-table span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.tech-table strong {
  font-size: 15px;
  line-height: 1.35;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--copper);
}

.detail-button {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.detail-button:hover,
.customer-solution-link:hover {
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.55), 0 12px 26px rgba(0, 43, 184, 0.3);
}

.product-detail-visual {
  position: relative;
  min-height: clamp(420px, 42vw, 640px);
  overflow: hidden;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.product-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-detail-visual video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.product-detail-video-stage .detail-badge {
  top: 22px;
  bottom: auto;
}

.product-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 13, 12, 0.45), rgba(9, 13, 12, 0.02) 55%);
  pointer-events: none;
}

.detail-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(12, 17, 15, 0.68);
  color: #fff;
  backdrop-filter: blur(12px);
}

.detail-badge span {
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 900;
}

.detail-badge strong {
  font-size: 22px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: 720px;
  background: var(--graphite);
  color: #fff;
}

.feature-copy {
  align-self: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 70px);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--copper);
}

.feature-visual {
  position: relative;
  min-height: 520px;
  background: #34413d;
  overflow: hidden;
}

.feature-visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.frame-line {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 27%;
  bottom: 22%;
  border: 26px solid rgba(255, 255, 255, 0.8);
  border-bottom-width: 18px;
  border-top-left-radius: 50% 38%;
  border-top-right-radius: 50% 38%;
}

.frame-line::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 20%;
  height: 18%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.options-section {
  background: #f4f7fc;
}

.options-section .section-heading {
  margin-bottom: 24px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.option-item {
  min-height: 168px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 26, 24, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.option-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 43, 184, 0.56);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.16), 0 18px 34px rgba(0, 43, 184, 0.18);
}

.option-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--copper);
  font-weight: 900;
}

.option-item p {
  color: var(--muted);
  line-height: 1.55;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.swatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.swatch:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 43, 184, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.18), 0 10px 20px rgba(0, 43, 184, 0.18);
}

.swatch b {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
}

.swatch-grey b {
  background: #6d716d;
}

.swatch-white b {
  background: #f7f5ed;
}

.swatch-coffee b {
  background: #8a6e54;
}

.applications {
  position: relative;
  min-height: 400vh;
  background: #101614;
  color: #fff;
}

.application-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.application-visual,
.application-frame,
.application-image-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.application-visual {
  background: #101614;
}

.application-frame {
  object-fit: cover;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: scale(1.035);
  transition: clip-path 780ms cubic-bezier(0.77, 0, 0.175, 1), opacity 420ms ease, transform 1100ms ease;
}

.application-frame.active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.application-frame.exiting {
  opacity: 1;
  clip-path: inset(0 0 0 100%);
}

.application-image-shade {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 13, 11, 0.78), rgba(8, 13, 11, 0.34) 42%, rgba(8, 13, 11, 0.06)),
    linear-gradient(0deg, rgba(8, 13, 11, 0.7), rgba(8, 13, 11, 0.04) 54%);
}

.applications-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(720px, calc(100vw - 36px));
  min-height: 100%;
  margin-left: clamp(18px, 5vw, 70px);
  padding: 92px 0 46px;
}

.applications-copy h2 {
  max-width: 680px;
  font-size: 64px;
  line-height: 1.02;
}

.application-list {
  display: grid;
  gap: 0;
  width: min(620px, 100%);
  margin: clamp(26px, 4vw, 46px) 0 0;
  padding: 0;
  list-style: none;
}

.application-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.48);
  transform: translateX(-8px);
  transition: color 280ms ease, opacity 280ms ease, transform 280ms ease;
}

.application-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.application-step span {
  color: #fff;
  font-weight: 900;
  opacity: 1;
}

.application-step h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.1vw, 28px);
}

.application-step p {
  margin: 0;
  color: currentColor;
  line-height: 1.6;
}

.application-step.active {
  color: #fff;
  transform: translateX(0);
}

.application-step.active span {
  opacity: 1;
}

@media (max-height: 980px) and (min-width: 761px) {
  .application-sticky {
    min-height: 0;
  }

  .applications-copy {
    width: min(760px, calc(100vw - 72px));
    padding: 78px 0 30px;
  }

  .applications-copy h2 {
    max-width: 720px;
    font-size: 56px;
    line-height: 1.02;
  }

  .application-list {
    margin-top: 18px;
  }

  .application-step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 11px 0;
  }

  .application-step h3 {
    margin-bottom: 4px;
    font-size: 22px;
    line-height: 1.15;
  }

  .application-step p {
    font-size: 15px;
    line-height: 1.45;
  }
}

.quality {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 70px);
  background: #f4f7fc;
}

.quality-panel {
  width: 100%;
  max-width: none;
  margin: 0;
}

.quality-copy {
  max-width: 920px;
  margin-bottom: 42px;
}

.quality-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.quality-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.quality-visual-main,
.quality-standard-list article {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111614;
  color: #fff;
  box-shadow: var(--shadow);
}

.quality-visual-main {
  min-height: 620px;
}

.quality-visual-main img,
.quality-standard-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-visual-main::after,
.quality-standard-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 13, 12, 0.72), rgba(9, 13, 12, 0.05) 58%);
  pointer-events: none;
}

.quality-visual-main figcaption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1;
  display: grid;
  gap: 9px;
}

.quality-visual-main span,
.quality-standard-list span {
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-visual-main strong {
  max-width: 720px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.quality-standard-list {
  display: grid;
  gap: 22px;
}

.quality-standard-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 192px;
}

.quality-standard-list article > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
  background: rgba(17, 22, 20, 0.88);
}

.quality-standard-list h3 {
  margin: 0;
  font-size: 22px;
}

.quality-standard-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.case-studies {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 70px);
  background: #f4f7fc;
  overflow: hidden;
}

.case-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 34px;
}

.case-carousel::before,
.case-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(36px, 8vw, 120px);
  pointer-events: none;
}

.case-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f4f7fc, rgba(244, 247, 252, 0));
}

.case-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f4f7fc, rgba(244, 247, 252, 0));
}

.case-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0 18px;
  animation: caseScroll 80s linear infinite;
}

.case-carousel:hover .case-track,
.case-carousel:focus-within .case-track {
  animation-play-state: paused;
}

@keyframes caseScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.case-card {
  display: grid;
  grid-template-rows: minmax(240px, 0.9fr) auto;
  flex: 0 0 clamp(320px, 30vw, 460px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 26, 24, 0.12);
  box-shadow: 0 18px 46px rgba(27, 31, 29, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
  position: relative;
  z-index: 3;
  transform: translateY(-3px);
  border-color: rgba(0, 43, 184, 0.58);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.22), 0 22px 42px rgba(0, 43, 184, 0.24);
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.case-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.case-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card .case-location {
  display: block;
  color: var(--logo-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.case-card h3 {
  margin: 0;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.factory-video {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 82px);
}

.factory-video-stage {
  position: relative;
  min-height: clamp(360px, 40vw, 620px);
  overflow: hidden;
  background: #111614;
  box-shadow: var(--shadow);
}

.factory-video-media,
.factory-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.factory-video-media {
  object-fit: cover;
  display: block;
}

.factory-video-overlay {
  background: linear-gradient(0deg, rgba(7, 12, 10, 0.42), rgba(7, 12, 10, 0.02) 56%);
  pointer-events: none;
}

.factory-video-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 5px;
  background: rgba(255, 255, 255, 0.22);
}

.factory-video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--logo-blue);
  transition: width 120ms linear;
}

.factory-video-copy {
  max-width: 560px;
}

.factory-video-copy h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

.factory-video-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.faq-section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 70px);
  padding-bottom: clamp(32px, 3vw, 44px);
  background: #f4f7fc;
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: 34px;
}

.faq-heading h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 0.98;
}

.faq-heading p:last-child {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.75;
}

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

.faq-item {
  position: relative;
  min-width: 0;
  min-height: 132px;
  background: #fff;
  border: 1px solid rgba(22, 26, 24, 0.12);
  box-shadow: 0 14px 34px rgba(27, 31, 29, 0.06);
}

.faq-question {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 24px 26px 16px;
  list-style: none;
  cursor: pointer;
}

.faq-question::marker {
  content: "";
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.faq-plus {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 50%;
  background: #1a211e;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-plus::before {
  content: "+";
}

.faq-item[open] .faq-plus::before {
  content: "\2212";
}

.faq-item small {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(176, 112, 55, 0.13);
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.faq-item h3 {
  min-width: 0;
  margin: 0;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.faq-item p {
  margin: 0;
  padding: 0 26px 22px 78px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item:not([open]) {
  min-height: 0;
}

.faq-item:not([open]) .faq-question {
  padding-bottom: 24px;
}

.faq-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: clamp(26px, 4vw, 44px);
  background: #171c19;
  color: #fff;
}

.faq-cta h3 {
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
}

.faq-cta .button {
  flex: 0 0 auto;
  background: var(--copper);
  color: #fff;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 70px);
  padding-top: clamp(44px, 5vw, 72px);
  background: #f4f7fc;
  align-items: center;
}

.inquiry-copy {
  max-width: 560px;
}

.inquiry-copy h2 {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.98;
  max-width: 560px;
}

.inquiry-note {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

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

.inquiry-form-card {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(22, 26, 24, 0.12);
  box-shadow: 0 22px 58px rgba(24, 27, 24, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 26, 24, 0.18);
  border-radius: 0;
  padding: 12px 14px;
  background: #fbf8f2;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--logo-blue);
  outline-offset: 2px;
  border-color: var(--logo-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 71, 190, 0.12);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(18, 71, 190, 0.56);
}

label:focus-within {
  color: var(--logo-blue);
}

select:focus {
  box-shadow: 0 0 0 4px rgba(18, 71, 190, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.inquiry-form-card .button {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.inquiry-form-card .button:hover {
  border-color: #1f362f;
  background: #1f362f;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  line-height: 1.5;
  font-weight: 750;
}

.site-footer {
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 70px);
  background: #171c19;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, 0.62fr));
  gap: clamp(34px, 5vw, 76px);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  width: 190px;
  max-width: 70%;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-column p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 28px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-socials img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-socials a:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

.footer-subscribe {
  display: grid;
  gap: 12px;
  max-width: 420px;
}

.footer-subscribe strong {
  color: #fff;
  font-size: 17px;
}

.footer-subscribe-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 48px;
  border: 1px solid var(--copper);
  padding: 0 20px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 900;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 10px;
  font-size: 17px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-column a:hover {
  color: var(--logo-blue);
}

.footer-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding-top: 4px;
}

.footer-contact-item {
  display: inline-grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

button.footer-contact-item {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-contact-icon {
  width: 22px;
  height: 22px;
  color: var(--logo-blue);
  fill: currentColor;
}

.footer-contact-list a:hover,
.footer-contact-list button:hover {
  color: var(--logo-blue);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  min-width: 220px;
  max-width: calc(100vw - 36px);
  padding: 14px 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.copy-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-current {
  color: var(--logo-blue);
  opacity: 1 !important;
}

.about-page {
  padding-top: 82px;
  background: #f5f2eb;
}

body[data-page="about"] .site-header {
  background: rgba(17, 23, 20, 0.97);
  box-shadow: 0 10px 30px rgba(17, 23, 20, 0.12);
}

.about-intro {
  padding: 0 clamp(24px, 5vw, 76px);
  overflow: hidden;
  color: #fff;
  background: #172620;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  min-height: 420px;
  gap: clamp(44px, 7vw, 132px);
  align-items: stretch;
  max-width: 1500px;
  margin: 0 auto;
}

.about-intro-copy-block {
  display: grid;
  align-content: center;
  padding: 68px 0;
}

.about-intro h1 {
  margin: 10px 0 0;
  font-size: clamp(48px, 4.1vw, 62px);
  line-height: 1.04;
  color: #fff;
}

.about-intro-copy {
  max-width: 560px;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.about-intro-visual {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #263a31;
}

.about-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-profile {
  max-width: none;
  margin: 0;
  padding: 78px clamp(24px, 5vw, 76px) 88px;
  background: #f5f2eb;
  scroll-margin-top: 92px;
}

.company-profile-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.company-profile-copy h2 {
  max-width: 680px;
  margin: 12px 0 22px;
  font-size: clamp(40px, 3.25vw, 52px);
  line-height: 1.08;
}

.company-profile-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.about-capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(29, 38, 34, 0.2);
  border-bottom: 1px solid rgba(29, 38, 34, 0.2);
}

.about-capability-list article {
  display: block;
  padding: 24px 22px 26px 0;
  border: 0;
  border-right: 1px solid rgba(29, 38, 34, 0.2);
}

.about-capability-list article + article {
  padding-left: 22px;
}

.about-capability-list article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-capability-list span,
.news-card span {
  color: #b8703f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-capability-list h3 {
  margin: 12px 0 8px;
  font-size: 19px;
}

.about-capability-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.company-profile-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1500px;
  margin: 58px auto 0;
}

.company-profile-gallery figure {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(280px, 360px) auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--forest);
}

.company-profile-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.company-profile-gallery figcaption {
  display: grid;
  align-content: center;
  min-height: 184px;
  padding: 28px 32px 32px;
}

.company-profile-gallery span {
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-profile-gallery strong {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.2;
}

.company-profile-gallery p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.news-section {
  padding: 92px clamp(24px, 5vw, 76px) 110px;
  background: #fff;
  scroll-margin-top: 92px;
}

.news-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 46px;
}

.news-section-heading h1,
.news-section-heading h2 {
  margin: 12px 0 0;
  font-size: 54px;
  line-height: 1.04;
}

.news-section-heading > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(520px, auto);
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto;
}

.news-card {
  min-width: 0;
  overflow: hidden;
  background: #f3f4f1;
  box-shadow: 0 18px 46px rgba(27, 31, 29, 0.09);
}

.news-card-link {
  display: grid;
  grid-template-rows: 280px 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card-link img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.news-card-link > div {
  display: grid;
  align-content: center;
  padding: 30px;
}

.news-card-link:hover h3 {
  color: #173f59;
}

.news-card-link:focus-visible {
  outline: 3px solid #173f59;
  outline-offset: -3px;
}

.news-card h3 {
  margin: 12px 0 14px;
  font-size: 24px;
  line-height: 1.18;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-footer {
  margin-top: 0;
}

.news-detail-page {
  padding: clamp(126px, 12vw, 174px) clamp(24px, 5vw, 76px) clamp(84px, 9vw, 132px);
  background: #fff;
}

.news-detail-article {
  width: min(960px, 100%);
  margin: 0 auto;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #173f59;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.news-detail-article .eyebrow {
  margin: clamp(42px, 6vw, 72px) 0 0;
}

.news-detail-article h1 {
  max-width: 900px;
  margin: 14px 0 0;
  color: #273133;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.04;
}

.news-detail-lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: #576063;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.7;
}

.news-detail-visual {
  margin: clamp(34px, 5vw, 58px) 0;
}

.news-detail-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-detail-body {
  display: grid;
  max-width: 780px;
  gap: 20px;
}

.news-detail-body p {
  margin: 0;
  color: #576063;
  font-size: 18px;
  line-height: 1.9;
}

.news-detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 42px;
  padding: 0 25px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #173f59;
}

.news-detail-cta:hover {
  background: #0d2c40;
}

.culture-news-page {
  padding: 112px 24px 84px;
  background: #fff;
}

.culture-news-article {
  width: min(840px, 100%);
  margin: 0 auto;
}

.culture-news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #687274;
  font-size: 14px;
}

.culture-news-breadcrumb a,
.culture-news-links a {
  color: var(--logo-blue);
  text-decoration: none;
}

.culture-news-header {
  max-width: 930px;
  margin: 34px 0 56px;
}

.culture-news-header .eyebrow,
.culture-news-related .eyebrow {
  margin: 0 0 16px;
}

.culture-news-header h1 {
  max-width: 980px;
  margin: 0;
  color: #273133;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.12;
}

.culture-news-summary {
  max-width: 800px;
  color: #536063;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
}

.culture-news-summary {
  margin: 24px 0;
  color: #263f58;
  font-weight: 600;
}

.culture-news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 46px;
  margin: 0;
}

.culture-news-meta div {
  display: grid;
  gap: 5px;
}

.culture-news-meta dt {
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.culture-news-meta dd {
  margin: 0;
  color: #536063;
  font-size: 14px;
}

.culture-news-flow-section,
.culture-news-gallery {
  max-width: 840px;
  margin: 0 0 54px;
}

.culture-news-flow-section {
  padding-top: 0;
}

.culture-news-flow-section h2,
.culture-news-cta h2,
.culture-news-related h2 {
  margin: 0;
  color: #273133;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.2;
}

.culture-news-flow-section p {
  margin: 18px 0 0;
  color: #596467;
  font-size: 17px;
  line-height: 1.9;
}

.culture-news-gallery {
  margin-top: 72px;
}

.culture-news-gallery-item {
  margin: 28px 0 0;
  overflow: hidden;
  background: #eef1f1;
}

.culture-news-gallery-item--four-three {
  width: min(720px, 100%);
  aspect-ratio: 4 / 3;
}

.culture-news-gallery-item--sixteen-nine {
  aspect-ratio: 16 / 9;
}

.culture-news-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 72px 0;
  padding: 22px 0;
  border: 0;
}

.culture-news-links strong {
  color: #273133;
}

.culture-news-cta {
  padding: clamp(30px, 5vw, 60px);
  background: #f5f7f8;
}

.culture-news-cta p {
  max-width: 720px;
  margin: 18px 0 26px;
  color: #596467;
  line-height: 1.8;
}

.culture-news-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.culture-news-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--logo-blue);
  font-weight: 800;
  text-decoration: none;
}

.culture-news-button--primary {
  color: #fff;
  background: var(--logo-blue);
}

.culture-news-button--secondary {
  color: var(--logo-blue);
  background: #fff;
}

.culture-news-button:focus-visible {
  outline: 3px solid #f2b843;
  outline-offset: 3px;
}

.culture-news-related {
  margin-top: 72px;
}

.culture-news-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.culture-news-related-card {
  border: 1px solid #dce2e2;
}

.culture-news-related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.culture-news-related-card p,
.culture-news-related-card h3 {
  margin: 18px 20px 0;
}

.culture-news-related-card p {
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 800;
}

.culture-news-related-card h3 {
  margin-bottom: 22px;
  color: #273133;
  font-size: 20px;
  line-height: 1.35;
}

.culture-news-related-card a {
  color: inherit;
  text-decoration: none;
}

/* About page: quiet company-profile hierarchy inspired by a conventional corporate page. */
body[data-page="about"] .site-header {
  color: #173f59;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(23, 63, 89, 0.14);
}

body[data-page="news-index"] .site-header {
  color: #173f59;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(23, 63, 89, 0.14);
}

body[data-page="news-detail"] .site-header {
  color: #173f59;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(23, 63, 89, 0.14);
}

body[data-page="about"] .site-nav a,
body[data-page="news-detail"] .site-nav a,
body[data-page="news-index"] .site-nav a {
  color: #173f59;
}

body[data-page="about"] .nav-current {
  color: #a86838;
  opacity: 1;
}

body[data-page="about"] .nav-dropdown {
  background: #173f59;
}

body[data-page="about"] .nav-dropdown a {
  color: #fff;
}

body[data-page="about"] .lang-switch,
body[data-page="news-detail"] .lang-switch,
body[data-page="news-index"] .lang-switch {
  border-color: rgba(23, 63, 89, 0.28);
  background: #fff;
}

body[data-page="about"] .lang-button,
body[data-page="news-detail"] .lang-button,
body[data-page="news-index"] .lang-button {
  color: #173f59;
}

body[data-page="about"] .lang-button.active,
body[data-page="news-detail"] .lang-button.active,
body[data-page="news-index"] .lang-button.active {
  color: #fff;
  background: #173f59;
}

.about-page {
  padding-top: 72px;
  background: #fff;
}

.about-intro {
  padding: 0;
  color: #fff;
  background: #0d1f29;
}

.about-intro-banner {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100svh - 72px);
  margin: 0;
  overflow: hidden;
  background: #0d1f29;
}

.about-intro-banner::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 23, 32, 0.82) 0%, rgba(7, 23, 32, 0.6) 37%, rgba(7, 23, 32, 0.16) 72%, rgba(7, 23, 32, 0.08) 100%);
}

.about-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  border: 0;
}

.about-intro-banner figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  width: min(680px, 56vw);
  min-height: calc(100svh - 72px);
  margin-left: max(clamp(24px, 5vw, 76px), calc((100% - 1360px) / 2));
  padding: clamp(72px, 13vh, 144px) 0 clamp(52px, 10vh, 112px);
  background: transparent;
}

.about-intro .eyebrow {
  color: var(--logo-blue);
}

.about-intro h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 650;
  line-height: 0.94;
}

.about-intro-brand {
  color: #002bb8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about-intro-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.75;
}

.company-profile {
  max-width: none;
  margin: 0;
  padding: clamp(52px, 5vw, 84px) clamp(24px, 5vw, 76px) clamp(48px, 5vw, 72px);
  color: #4d5659;
  background: #fff;
  scroll-margin-top: 92px;
}

.company-profile-heading,
.company-profile-columns {
  width: min(1360px, 100%);
  margin-inline: auto;
}

.company-profile-heading {
  max-width: 1360px;
  padding-bottom: 44px;
}

.company-profile-heading h2 {
  max-width: none;
  margin: 14px 0 0;
  color: #232b2b;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 650;
  line-height: 1.18;
}

.company-profile-columns {
  display: grid;
  width: min(1360px, 100%);
  max-width: 1360px;
  margin-inline: auto;
  gap: clamp(34px, 4vw, 58px);
  padding-top: 28px;
}

.company-profile-columns > div {
  min-width: 0;
}

.company-profile-columns p,
.company-profile-lead {
  margin: 0;
  color: #697274;
  font-size: 17px;
  line-height: 1.86;
}

.company-profile-lead {
  color: #50595b;
  font-size: 19px;
  line-height: 1.7;
}

.company-profile-detail {
  color: #5e6769;
}

.company-profile-narrative {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 100px);
  max-width: none;
}

.company-profile-narrative p {
  padding-top: 0;
}

body[data-lang="en"] .company-profile-heading h2 {
  max-width: 880px;
  font-size: 44px;
  line-height: 1.12;
}

body[data-lang="en"] .company-profile-columns p {
  font-size: 16px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

body[data-lang="en"] .company-profile-lead {
  font-size: 17px;
  line-height: 1.68;
}

.company-profile-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.6vw, 58px);
}

.company-profile-scope-item {
  min-width: 0;
  padding-top: 0;
}

.company-profile-scope-item h3 {
  margin: 0 0 12px;
  color: #273133;
  font-size: 20px;
  line-height: 1.35;
}

.company-profile-scope-item p {
  color: #697274;
  font-size: 15px;
  line-height: 1.8;
}

.company-service-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 3.6vw, 58px);
  width: min(1360px, 100%);
  margin: clamp(42px, 5vw, 72px) auto 0;
  padding-top: 34px;
  border-top: 1px solid #dfe5e1;
}

.company-service-flow article {
  position: relative;
  min-width: 0;
  padding: 0;
}

.company-service-flow article::before {
  position: absolute;
  top: -39px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--logo-blue);
  animation: company-service-breathe 8s ease-in-out infinite;
}

.company-service-flow article:nth-child(2)::before {
  animation-delay: 1.6s;
}

.company-service-flow article:nth-child(3)::before {
  animation-delay: 3.2s;
}

.company-service-flow article:nth-child(4)::before {
  animation-delay: 4.8s;
}

.company-service-flow article:nth-child(5)::before {
  animation-delay: 6.4s;
}

@keyframes company-service-breathe {
  0%,
  18%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 43, 184, 0);
    opacity: 0.72;
    transform: scale(1);
  }

  8% {
    box-shadow: 0 0 0 7px rgba(0, 43, 184, 0.16);
    opacity: 1;
    transform: scale(1.25);
  }
}

.company-service-flow h3 {
  margin: 0 0 12px;
  color: #273133;
  font-size: 19px;
  line-height: 1.35;
}

.company-service-flow p {
  margin: 0;
  color: #697274;
  font-size: 15px;
  line-height: 1.85;
}

.company-certification-band {
  width: min(1360px, 100%);
  margin: clamp(58px, 7vw, 96px) auto 0;
  padding: clamp(30px, 4vw, 48px) 0;
}

.home-certification-band {
  margin-top: 0;
  padding: clamp(18px, 3vw, 34px) 0 clamp(56px, 7vw, 90px);
}

.why-sunnyjoy {
  padding: clamp(72px, 8vw, 112px) clamp(24px, 5vw, 70px);
  background: #f4f6fb;
}

.why-sunnyjoy-inner {
  width: min(1360px, 100%);
  margin: 0 auto;
}

.why-sunnyjoy-kicker,
.safety-assurance-kicker {
  margin: 0 0 12px;
  color: var(--logo-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.why-sunnyjoy h2 {
  max-width: 920px;
  margin: 0 auto clamp(32px, 4vw, 54px);
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
}

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

.why-sunnyjoy-card {
  min-width: 0;
  min-height: 260px;
  padding: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-sunnyjoy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 43, 184, 0.48);
  box-shadow: 0 0 0 1px rgba(0, 43, 184, 0.18), 0 20px 38px rgba(0, 43, 184, 0.18);
}

.why-sunnyjoy-card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 62px;
}

.why-sunnyjoy-card svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--logo-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.why-sunnyjoy-card h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.why-sunnyjoy-card p {
  min-width: 0;
  margin: clamp(26px, 3vw, 44px) 0 0;
  padding-top: 20px;
  border-top: 1px solid #dbe1ed;
  color: #5e6877;
  line-height: 1.7;
}

.safety-assurance {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 108px) clamp(24px, 5vw, 70px) clamp(16px, 2vw, 28px);
  background: #fff;
  text-align: center;
}

.safety-assurance-inner {
  position: relative;
  width: min(1060px, 100%);
  margin: 0 auto;
}

.safety-assurance-inner::after {
  position: absolute;
  top: -30px;
  right: 10%;
  width: 56px;
  height: 56px;
  border-top: 6px solid var(--logo-blue);
  border-right: 6px solid var(--logo-blue);
  content: "";
}

.safety-assurance h2 {
  max-width: 960px;
  margin: 0 auto 16px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
}

.safety-assurance-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.safety-assurance-copy {
  max-width: 840px;
  margin: 14px auto 0;
  color: #5e6877;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .why-sunnyjoy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .inquiry-section {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .why-sunnyjoy {
    padding: 64px 20px;
  }

  .why-sunnyjoy-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .why-sunnyjoy-card {
    min-height: 0;
  }

  .why-sunnyjoy-card p {
    margin-top: 22px;
  }

  .safety-assurance {
    padding: 64px 20px 12px;
  }

  .safety-assurance-inner::after {
    top: -20px;
    right: 3%;
    width: 42px;
    height: 42px;
    border-top-width: 4px;
    border-right-width: 4px;
  }
}

.company-certification-marquee {
  overflow: hidden;
}

.company-certification-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: company-certificate-scroll 34s linear infinite;
}

.company-certification-marquee:hover .company-certification-track {
  animation-play-state: paused;
}

.company-certificate-card {
  position: relative;
  flex: 0 0 calc((min(1360px, 90vw) - 48px) / 4);
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 1px solid #d9d9d4;
  background: #fff;
}

.company-certificate-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

@keyframes company-certificate-scroll {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-certification-marquee {
    overflow-x: auto;
  }

  .company-certification-track {
    animation: none;
  }
}

.company-history {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 3.6vw, 58px);
  width: min(1360px, 100%);
  margin: clamp(54px, 6vw, 88px) auto 0;
  padding-top: 34px;
  border-top: 1px solid #dfe5e1;
}

.company-history-item {
  position: relative;
  min-width: 0;
  padding: 0;
}

.company-history-item::before {
  position: absolute;
  top: -39px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--logo-blue);
  animation: company-history-breathe 10s ease-in-out infinite;
}

@keyframes company-history-breathe {
  0%,
  10%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 43, 184, 0);
    transform: scale(1);
  }

  4%,
  7% {
    box-shadow: 0 0 0 8px rgba(0, 43, 184, 0.16), 0 0 18px rgba(0, 43, 184, 0.6);
    transform: scale(1.35);
  }
}

.company-history-item:nth-child(2)::before {
  animation-delay: 2s;
}

.company-history-item:nth-child(3)::before {
  animation-delay: 4s;
}

.company-history-item:nth-child(4)::before {
  animation-delay: 6s;
}

.company-history-item:nth-child(5)::before {
  animation-delay: 8s;
}

@media (prefers-reduced-motion: reduce) {
  .company-history-item::before {
    animation: none;
  }
}

.company-history-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--logo-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.company-history-item h3 {
  margin: 0 0 12px;
  color: #273133;
  font-size: 20px;
  line-height: 1.25;
}

.company-history-item p {
  margin: 0;
  color: #697274;
  font-size: 15px;
  line-height: 1.8;
}

.company-culture-vision {
  width: min(1360px, 100%);
  margin: clamp(48px, 5vw, 72px) auto 0;
  padding: 0 0 clamp(48px, 5vw, 72px);
}

.company-culture-vision-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid #cbd3d6;
}

.company-culture-vision-header > *,
.company-culture-story--culture > *,
.company-culture-story--vision > * {
  min-width: 0;
}

.company-culture-story {
  display: grid;
  gap: clamp(36px, 4vw, 56px);
  align-items: start;
}

.company-culture-story--culture {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
  margin-top: clamp(38px, 4vw, 54px);
}

.company-culture-story--vision {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  margin-top: clamp(52px, 6vw, 78px);
}

.company-culture-story-image {
  height: 310px;
  margin: 20px 0 0;
  overflow: hidden;
  background: #dfe4e4;
}

.company-culture-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-culture-vision-header .eyebrow {
  margin: 7px 0 0;
}

.company-culture-vision-header h2 {
  min-width: 0;
  margin: 0;
  color: #273133;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.company-culture-story-copy {
  padding-top: 20px;
  border-top: 2px solid var(--logo-blue);
}

.company-culture-story-index {
  display: block;
  margin-bottom: 13px;
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-culture-story-copy h3 {
  margin: 0 0 16px;
  color: #273133;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.3;
}

.company-culture-story-copy p {
  margin: 0;
  color: #5f6d73;
  font-size: 16px;
  line-height: 1.9;
}

.company-culture-story-copy p + p {
  margin-top: 16px;
}

.news-section {
  padding: clamp(56px, 6vw, 80px) clamp(24px, 5vw, 76px);
  background: #f7f7f5;
}

.news-center-page {
  padding-top: 72px;
  background: #f7f7f5;
}

.news-section-heading,
.news-grid {
  max-width: 1360px;
}

.news-section-heading h1,
.news-section-heading h2 {
  color: #273133;
  font-size: clamp(36px, 3.2vw, 50px);
}

.news-card {
  border: 1px solid #e0e4e1;
  box-shadow: none;
}

@media (max-width: 1080px) {
  body[data-page="about"] .menu-toggle,
  body[data-page="news-detail"] .menu-toggle {
    border-color: rgba(23, 63, 89, 0.35);
    background: #fff;
  }

  body[data-page="about"] .menu-toggle span:not(.sr-only),
  body[data-page="news-detail"] .menu-toggle span:not(.sr-only) {
    background: #173f59;
  }
}

@media (max-width: 900px) {
  .company-service-flow,
  .company-history {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body[data-page="news-detail"] .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.7fr);
  }

  body[data-page="news-index"] .footer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.7fr);
  }
}

@media (max-width: 760px) {
  .culture-news-page {
    padding: 96px 18px 64px;
  }

  .culture-news-header {
    margin: 26px 0 40px;
  }

  .culture-news-header h1 {
    font-size: 34px;
  }

  .culture-news-gallery-item {
    width: 100%;
  }

  .culture-news-gallery-item img {
    width: 100%;
  }

  .culture-news-flow-section p {
    font-size: 16px;
  }

  .culture-news-seo dl {
    grid-template-columns: 1fr;
  }

  .culture-news-links,
  .culture-news-meta {
    gap: 16px;
  }

  .culture-news-cta {
    padding: 28px 22px;
  }

  .culture-news-button {
    width: 100%;
    min-height: 52px;
  }

  .culture-news-related-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="about"] .site-header,
  body[data-page="news-detail"] .site-header {
    background: rgba(255, 255, 255, 0.98);
  }

  .about-page {
    padding-top: 72px;
  }

  .about-intro-banner {
    min-height: calc(100svh - 72px);
  }

  .about-intro h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .about-intro-visual img {
    height: 100%;
    aspect-ratio: auto;
    border: 0;
  }

  .about-intro-banner figcaption {
    width: min(100% - 36px, 560px);
    min-height: calc(100svh - 72px);
    margin-left: 18px;
    padding: 120px 0 192px;
  }

  .about-intro-copy {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .company-profile {
    padding: 56px 18px 82px;
  }

  .company-profile-heading {
    padding-bottom: 32px;
  }

  .company-profile-heading h2 {
    font-size: 32px;
  }

  .company-profile-columns,
  .company-profile-narrative,
  .company-service-flow,
  .company-history {
    grid-template-columns: 1fr;
  }

  .company-profile-columns {
    gap: 34px;
    padding-top: 34px;
  }

  .company-profile-narrative {
    gap: 28px;
  }

  .company-profile-scope {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0;
    border: 0;
  }

  .company-profile-scope-item h3 {
    margin-top: 0;
  }

  .company-profile-columns p,
  .company-profile-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  body[data-lang="en"] .company-profile-heading h2 {
    font-size: 32px;
  }

  body[data-lang="en"] .company-profile-columns p,
  body[data-lang="en"] .company-profile-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .company-service-flow {
    margin-top: 38px;
    gap: 28px;
    padding-top: 0;
    border-top: 0;
  }

  .company-service-flow article {
    padding-left: 24px;
    border-left: 1px solid #dfe5e1;
  }

  .company-service-flow article::before {
    top: 4px;
    left: -5px;
  }

  .company-certification-band {
    margin-top: 46px;
    padding: 30px 0;
  }

  .company-certification-track {
    gap: 12px;
    animation-duration: 26s;
  }

  .company-certificate-card {
    flex-basis: 56vw;
  }

  .company-history {
    margin-top: 42px;
    gap: 28px;
    padding-top: 0;
    border-top: 0;
  }

  .company-history-item {
    padding-left: 24px;
    border-left: 1px solid #dfe5e1;
  }

  .company-history-item::before {
    top: 4px;
    left: -5px;
  }

  .company-culture-vision-header,
  .company-culture-story--culture,
  .company-culture-story--vision {
    grid-template-columns: 1fr;
  }

  .company-culture-story--vision .company-culture-story-image {
    order: -1;
  }

  .company-culture-story-image {
    height: 220px;
  }

  .company-culture-vision {
    padding: 34px 24px 40px;
  }

  .company-culture-vision-header h2 {
    font-size: 28px;
  }

  .company-culture-story-copy p {
    font-size: 15px;
  }

  .company-culture-story--vision {
    margin-top: 44px;
  }

}

@media (max-width: 1080px) {
  .customer-solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .customer-solutions {
    padding: 64px 18px;
  }

  .customer-solutions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .customer-solution-card-content {
    min-height: 0;
    padding: 22px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .floating-contact-actions {
    bottom: 16px;
    right: 14px;
  }

  .site-header.nav-open .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    bottom: 76px;
    left: 16px;
    display: grid;
    gap: 0;
    justify-content: stretch;
    overflow-y: auto;
    background: #151b18;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.nav-open .nav-item {
    display: grid;
  }

  .site-header.nav-open .nav-parent {
    justify-content: space-between;
  }

  .site-header.nav-open .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0;
    border-top: 0;
    background: rgba(255, 255, 255, 0.05);
    background-clip: border-box;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header.nav-open .nav-dropdown a {
    padding: 14px 18px 14px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.nav-open .header-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
    padding: 8px 16px;
    background: #151b18;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open ~ .floating-contact-actions {
    display: none;
  }

  .site-header.nav-open .header-actions .text-link,
  .site-header.nav-open .header-actions .button-small {
    justify-self: stretch;
    text-align: center;
  }

  .site-header.nav-open .lang-switch {
    justify-self: start;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
  }

  .company-profile-main {
    grid-template-columns: 1fr;
  }

  .company-profile-gallery {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

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

  .product-detail-grid,
  .product-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .quality-visual-grid {
    grid-template-columns: 1fr;
  }

  .factory-video {
    grid-template-columns: 1fr;
  }

  .quality-visual-main {
    min-height: 460px;
  }

  .product-detail-grid.reverse .product-detail-copy {
    order: 0;
  }

  .motion-showcase {
    min-height: 360vh;
  }

  .motion-sticky {
    position: sticky;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .site-header.nav-open .language-selector-panel {
    top: auto;
    bottom: calc(100% + 8px);
    transform-origin: bottom right;
  }

  [dir="rtl"] .site-header.nav-open .language-selector-panel {
    transform-origin: bottom left;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero {
    min-height: 560px;
    padding-top: 88px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(40px, 5.4vw, 68px);
    margin-bottom: 12px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-panel {
    bottom: 28px;
    width: min(300px, 28vw);
  }

  .hero-panel div {
    padding: 12px 16px;
  }
}

@media (max-width: 760px) {
  .language-selector {
    width: 100%;
    min-width: 0;
  }

  .language-selector-trigger {
    width: 100%;
    min-width: 0;
  }

  .language-selector-panel {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: min(42svh, 360px);
    margin-top: 8px;
    box-shadow: none;
  }

  .site-header {
    padding: 14px 16px;
    background: rgba(12, 17, 15, 0.88);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    height: 100svh;
    min-height: 620px;
    max-height: none;
    align-items: end;
    padding: 94px 18px 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 10, 9, 0.78) 0%, rgba(6, 10, 9, 0.42) 44%, rgba(6, 10, 9, 0.83) 100%);
  }

  h1 {
    font-size: clamp(36px, 10vw, 40px);
    line-height: 1.03;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  h1,
  h2,
  p {
    overflow-wrap: break-word;
  }

  .hero-copy,
  .intro-grid p,
  .section-heading p,
  .feature-copy p,
  .quality-panel p,
  .inquiry-copy p {
    font-size: 16px;
  }

  .hero-content,
  .hero-panel,
  .quote-strip p,
  .intro-grid > *,
  .section-heading,
  .feature-copy,
  .applications-copy,
  .quality-panel,
  .inquiry-copy,
  .quote-form {
    width: 100%;
    max-width: min(350px, calc(100vw - 36px));
  }

  .quote-strip p {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-actions,
  .quote-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .feature-band,
  .faq-heading,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .feature-band {
    min-height: 0;
  }

  .feature-visual {
    min-height: 420px;
    order: -1;
  }

  .motion-progress {
    width: min(220px, calc(100vw - 32px));
    margin-left: 16px;
    padding-top: 84px;
  }

  .motion-progress-step {
    grid-template-columns: 30px 2px 1fr;
    gap: 10px;
    min-height: 40px;
  }

  .motion-progress-step i {
    min-height: 40px;
  }

  .motion-progress-step strong {
    max-width: 130px;
    font-size: 12px;
  }

  .applications-copy {
    position: relative;
    width: min(420px, calc(100vw - 36px));
    max-width: none;
    margin-left: 18px;
    padding-top: 86px;
  }

  .applications-copy h2 {
    font-size: 34px;
  }

  .application-sticky {
    display: grid;
    grid-template-rows: minmax(250px, 42svh) minmax(0, 1fr);
    height: 100svh;
    min-height: 620px;
    background: #101614;
  }

  .application-visual {
    position: relative;
    inset: auto;
    grid-row: 1;
    height: 100%;
  }

  .application-frame {
    object-fit: contain;
  }

  .application-image-shade {
    background: linear-gradient(0deg, rgba(8, 13, 11, 0.4), rgba(8, 13, 11, 0) 48%);
  }

  .applications-copy {
    grid-row: 2;
    align-content: start;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    background: #101614;
  }

  .applications-copy h2 {
    margin-bottom: 0;
    font-size: 28px;
  }

  .application-list {
    margin-top: 16px;
  }

  .model-grid,
  .options-grid,
  .product-spec-grid,
  .tech-table,
  .quality-metrics,
  .faq-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding-inline: 18px;
  }

  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading h2 {
    font-size: 34px;
  }

  .faq-item {
    min-height: 0;
  }

  .faq-question {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 20px 20px 14px;
  }

  .faq-item p {
    padding: 0 20px 20px 64px;
  }

  .faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .case-card {
    flex-basis: min(82vw, 340px);
  }

  .factory-video-stage {
    min-height: 300px;
  }

  .tech-table div,
  .tech-table div:nth-child(2n),
  .tech-table div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 26, 24, 0.12);
  }

  .tech-table div:last-child {
    border-bottom: 0;
  }

  .product-detail-visual {
    min-height: 340px;
  }

  .quality-standard-list article {
    grid-template-columns: 1fr;
  }

  .quality-standard-list img {
    min-height: 210px;
  }

  .inquiry-copy h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .inquiry-form-card {
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-body p {
    min-height: 0;
  }

  .about-page {
    padding-top: 76px;
  }

  .about-intro {
    padding: 0 18px;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .about-intro-copy-block {
    padding: 48px 0 32px;
  }

  .about-intro h1 {
    font-size: 44px;
  }

  .about-intro-copy {
    margin-top: 24px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.7;
  }

  .about-intro-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .company-profile {
    gap: 38px;
    padding: 72px 18px;
  }

  .company-profile-main {
    gap: 38px;
  }

  .company-profile-copy h2 {
    font-size: 34px;
  }

  .about-capability-list article {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 38, 34, 0.2);
  }

  .about-capability-list article + article {
    padding-left: 0;
  }

  .about-capability-list article:last-child {
    border-bottom: 0;
  }

  .company-profile-gallery {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .company-profile-gallery figure {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .company-profile-gallery img {
    min-height: 240px;
    max-height: 280px;
  }

  .company-profile-gallery figcaption {
    padding: 26px;
  }

  .news-section {
    padding: 76px 18px 82px;
  }

  .news-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 34px;
  }

  .news-section-heading h1,
  .news-section-heading h2 {
    font-size: 38px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-link {
    grid-template-rows: 230px 1fr;
  }

  .news-card-link img {
    min-height: 230px;
    height: 230px;
  }

  .news-card h3 {
    font-size: 23px;
  }

  .news-detail-page {
    padding: 110px 18px 76px;
  }

  .news-detail-article h1 {
    font-size: 38px;
  }

  .news-detail-body p {
    font-size: 16px;
  }

  .application-step {
    display: none;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .application-step.active {
    display: grid;
  }

  .application-step h3 {
    font-size: 18px;
  }

  .application-step p {
    font-size: 13px;
    line-height: 1.45;
  }

  .about-page {
    padding-top: 72px;
  }

  .about-intro {
    padding: 0;
  }

  .about-intro-banner,
  .about-intro-visual {
    min-height: calc(100svh - 72px);
    aspect-ratio: auto;
  }

  .about-intro-banner figcaption {
    width: min(100% - 36px, 560px);
    min-height: calc(100svh - 72px);
    margin-left: 18px;
    padding: 120px 0 192px;
  }

}
