:root {
  --ink: #162844;
  --muted: #63748a;
  --line: #dbe7f2;
  --paper: #f4f9fd;
  --white: #ffffff;
  --brand: #123b7a;
  --brand-2: #2f84bd;
  --teal: #18a9a0;
  --amber: #d79b36;
  --coral: #dd735f;
  --sky: #dff2ff;
  --mist: #edf7fc;
  --shadow: 0 22px 60px rgba(40, 99, 148, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 242, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(35, 91, 136, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  width: min(210px, 47vw);
  height: 54px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.92rem;
  font-weight: 700;
  color: #24344f;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24344f;
  font-size: 0.86rem;
  font-weight: 800;
}

.language-select select {
  min-height: 38px;
  border: 1px solid #c9d4e0;
  border-radius: 6px;
  padding: 0 32px 0 10px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(780px, 92vh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, #f7fbff 0%, #e7f4fb 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(47, 132, 189, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(231, 244, 251, 0.85) 46%, rgba(231, 244, 251, 0.36) 100%),
    linear-gradient(0deg, rgba(247, 251, 255, 0.92) 0%, rgba(247, 251, 255, 0.12) 54%),
    url("assets/images/hero-industrial.jpg") center / cover;
  transform: scale(1.02);
  filter: saturate(1.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 128px clamp(20px, 6vw, 72px) 260px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 26px 0 0;
  color: #4c6178;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-2), var(--teal));
  box-shadow: 0 12px 28px rgba(47, 132, 189, 0.22);
}

.button.secondary {
  color: var(--brand);
  border-color: rgba(47, 132, 189, 0.34);
  background: rgba(255, 255, 255, 0.66);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 72px);
  right: clamp(20px, 6vw, 72px);
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(160, 203, 231, 0.62);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(35, 91, 136, 0.13);
}

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

.hero-panel div {
  padding: clamp(18px, 3vw, 30px);
}

.hero-panel div + div {
  border-left: 1px solid rgba(160, 203, 231, 0.62);
}

.hero-panel strong,
.hero-panel span {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.hero-panel strong {
  font-size: 1.1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-panel span {
  margin-top: 8px;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 72px);
}

.subhero {
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 72px) 82px;
  color: var(--ink);
  background: linear-gradient(135deg, #f8fcff 0%, #e7f4fb 100%);
}

.subhero > div {
  width: min(850px, 100%);
}

.subhero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5.5vw, 5.6rem);
  line-height: 0.98;
}

.subhero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 32px;
  color: #4c6178;
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
}

.industrial-hero {
  background:
    radial-gradient(circle at 74% 36%, rgba(47, 132, 189, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(248, 252, 255, 0.96) 0%, rgba(231, 244, 251, 0.84) 54%, rgba(231, 244, 251, 0.2) 100%),
    url("assets/images/industrial-warehouse.jpg") center / cover;
}

.consumer-hero {
  background:
    radial-gradient(circle at 76% 36%, rgba(24, 169, 160, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(248, 252, 255, 0.94) 0%, rgba(239, 249, 249, 0.82) 54%, rgba(239, 249, 249, 0.22) 100%),
    url("assets/images/ceramic-tableware.jpg") center / cover;
}

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

.section h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  color: var(--ink);
}

.section p,
.cta-band p,
.route-card li,
.process-list span {
  color: var(--muted);
}

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

.about-section p {
  max-width: 670px;
  margin-top: 24px;
  font-size: 1.06rem;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #f7fafc;
  color: var(--brand);
  font-weight: 850;
  text-align: center;
}

.pillars {
  background: linear-gradient(180deg, #edf7fc 0%, #f8fbfd 100%);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.pillar-card,
.case-card,
.product-strip article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(35, 91, 136, 0.07);
}

.pillar-card {
  padding: 28px;
}

.card-index {
  color: var(--coral);
  font-weight: 900;
}

.pillar-card h3,
.route-card h3,
.case-card h3,
.product-strip h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.18;
}

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

.category-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.category-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  background: #eef3f7;
}

.category-grid h3,
.application-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.2;
}

.category-grid h3,
.category-grid p {
  padding-inline: 18px;
}

.category-grid h3 {
  padding-top: 18px;
}

.category-grid p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(160, 203, 231, 0.62);
  background: rgba(160, 203, 231, 0.62);
}

.application-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.application-grid h3 {
  color: var(--ink);
}

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

.consumer-band {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-2);
  font-weight: 850;
}

.cta-button {
  align-self: center;
  justify-self: start;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 470px;
  margin: 0;
}

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

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

.route-card {
  overflow: hidden;
  border-radius: 8px;
  background: #f8fbfd;
  border: 1px solid var(--line);
}

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

.route-card.consumer img {
  object-position: center 45%;
}

.route-content {
  padding: clamp(24px, 4vw, 36px);
}

.route-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-strip article {
  overflow: hidden;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  background: #eef3f7;
}

.product-strip h3 {
  min-height: 56px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.98rem;
}

.process-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(24, 169, 160, 0.16), transparent 30%),
    linear-gradient(135deg, #eaf6fb 0%, #f7fbff 100%);
}

.process-section .section-kicker,
.process-section h2,
.process-section p {
  color: var(--ink);
}

.process-section p,
.process-list span {
  color: var(--muted);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(160, 203, 231, 0.62);
  border: 1px solid rgba(160, 203, 231, 0.62);
}

.process-list li {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.process-list strong {
  color: var(--brand);
}

.cases-section {
  background: #f7fafc;
}

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

.case-card {
  overflow: hidden;
}

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

.case-card div {
  padding: 22px;
}

.case-card p:last-child {
  margin-bottom: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 6vw, 72px);
  background:
    radial-gradient(circle at 84% 22%, rgba(47, 132, 189, 0.14), transparent 28%),
    linear-gradient(135deg, #edf7fc 0%, #ffffff 100%);
}

.cta-band p {
  max-width: 650px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(16, 32, 58, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #24344f;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ccd6e2;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 6vw, 72px);
  color: #526981;
  background: #eef6fb;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .language-select {
    justify-content: space-between;
    padding: 12px;
  }

  .language-select select {
    width: min(190px, 52vw);
  }

  .split,
  .route-grid,
  .process-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .case-grid,
  .category-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    width: 165px;
    height: 48px;
  }

  .hero-content {
    width: min(350px, 100%);
    padding: 112px 20px 28px;
  }

  .subhero {
    min-height: 650px;
    padding: 116px 20px 70px;
  }

  .subhero h1 {
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 1.05;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.55rem);
    line-height: 1.05;
    max-width: 310px;
  }

  .hero-copy {
    font-size: 1rem;
    width: min(330px, 100%);
    overflow-wrap: anywhere;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 40px);
    max-width: 300px;
    min-width: 0;
    margin: 0 auto 28px;
    justify-self: center;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .hero-panel div {
    padding: 20px 18px;
    min-width: 0;
  }

  .hero-panel strong {
    font-size: 0.98rem;
  }

  .hero-panel span {
    font-size: 0.95rem;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(160, 203, 231, 0.62);
    border-left: 0;
  }

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

  .product-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
