@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Sans+Condensed:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Mona Sans";
  src: url("/assets/fonts/mona-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-stretch: 100%;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans";
  src: url("/assets/fonts/mona-sans-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 900;
  font-stretch: 100%;
  font-display: swap;
}

@font-face {
  font-family: "Mona Sans Fallback";
  src: local("Arial");
  ascent-override: 104.72%;
  descent-override: 30.74%;
  line-gap-override: 0%;
  size-adjust: 104.08%;
}

@font-face {
  font-family: "bexon-icons";
  src:
    url("/assets/fonts/bexon-icons.woff") format("woff"),
    url("/assets/fonts/bexon-icons.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

[class^="tji-"],
[class*=" tji-"] {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "bexon-icons" !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.tji-arrow-right-long::before {
  content: "\e916";
}

.tji-arrow-right-big::before {
  content: "\e90c";
}

.tji-arrow-down::before {
  content: "\e929";
}

.tji-arrow-down-long::before {
  content: "\e917";
}

.tji-star-2::before {
  content: "\e938";
}

.tji-excellence::before {
  content: "\e91b";
}

:root {
  --bg: #fbfcfb;
  --bg-soft: #f6f8f8;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --surface-soft-strong: #eef3f2;
  --text: #0f2527;
  --muted: #587174;
  --line: rgba(15, 37, 39, 0.08);
  --line-strong: rgba(15, 37, 39, 0.14);
  --teal: #0f383b;
  --teal-deep: #091d1f;
  --teal-soft: #127980;
  --accent: #f4d28c;
  --shadow: 0 24px 60px rgba(15, 37, 39, 0.08);
  --shadow-soft: 0 16px 38px rgba(15, 37, 39, 0.06);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 40px;
  --shell: min(1220px, calc(100vw - 2rem));
  --tj-ff-body: "IBM Plex Sans", "Mona Sans", "Mona Sans Fallback";
  --tj-ff-heading: "IBM Plex Sans Condensed", "IBM Plex Sans", "Mona Sans", "Mona Sans Fallback";
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 121, 128, 0.03), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(15, 56, 59, 0.025), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 46%, #ffffff 100%);
  font-family: var(--tj-ff-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 14% 0%, rgba(15, 56, 59, 0.035), transparent 26rem);
  opacity: 1;
}

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

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

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

p,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: var(--tj-ff-heading), sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(1.95rem, 3.05vw, 3.3rem);
}

h2 {
  font-size: clamp(1.42rem, 1.95vw, 2.05rem);
}

h3 {
  font-size: clamp(0.95rem, 0.98vw, 1.06rem);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 120;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 1.15rem 0 0;
  transition: padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 0.6rem;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.4rem;
  padding: 0.85rem 1.05rem 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 37, 39, 0.06);
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(15, 37, 39, 0.07);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 18px 36px rgba(15, 37, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.site-header .brand__copy small {
  display: none;
}

.brand,
.brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__logo--header {
  width: clamp(8.75rem, 10vw, 9.75rem);
}

.brand__logo--panel {
  width: 10.5rem;
}

.brand__logo--footer {
  width: clamp(9rem, 11vw, 10rem);
}

.brand__logo img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand__mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent 40%),
    linear-gradient(160deg, var(--teal-soft) 0%, var(--teal) 56%, var(--teal-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 24px rgba(15, 56, 59, 0.18);
  overflow: hidden;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.brand__mark::before {
  inset: 0.7rem auto auto 0.72rem;
  width: 1.65rem;
  height: 0.34rem;
  box-shadow: 0 0.72rem 0 rgba(255, 255, 255, 0.72);
}

.brand__mark::after {
  inset: 0.7rem 0.72rem auto auto;
  width: 0.38rem;
  height: 1.82rem;
}

.brand__copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand__copy strong {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.34rem;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--teal);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: none;
}

.no-js .nav-toggle {
  display: none;
}

.no-js .site-nav {
  display: block;
}

.nav-list,
.nav-actions,
.lang-switch,
.hero-actions,
.hero-badges,
.footer-links,
.material-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.nav-list {
  align-items: center;
  gap: 0.3rem;
}

.lang-switch {
  align-items: center;
  padding: 0.2rem;
  border: 1px solid rgba(15, 37, 39, 0.06);
  border-radius: 999px;
  background: var(--surface-soft);
}

.nav-link,
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-link {
  min-width: 2.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-link:hover,
.lang-link:hover {
  color: var(--teal);
  background: rgba(15, 56, 59, 0.06);
}

.nav-link.is-active,
.lang-link.is-active {
  color: var(--teal);
  background: rgba(15, 56, 59, 0.09);
  box-shadow: inset 0 0 0 1px rgba(15, 56, 59, 0.08);
}

.nav-actions {
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.header-contact {
  color: var(--teal);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  min-height: 3.35rem;
  padding: 0.82rem 0.92rem 0.82rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn__label {
  white-space: nowrap;
}

.btn__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.btn__icon::before,
.btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn__icon::before {
  left: 0.56rem;
  width: 0.62rem;
  height: 2px;
  background: currentColor;
}

.btn__icon::after {
  right: 0.54rem;
  width: 0.38rem;
  height: 0.38rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #145055 100%);
  box-shadow: 0 18px 30px rgba(15, 56, 59, 0.2);
}

.btn--primary .btn__icon {
  background: rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
  box-shadow: 0 22px 34px rgba(15, 56, 59, 0.24);
}

.btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.btn--secondary .btn__icon {
  background: rgba(255, 255, 255, 0.14);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--compact {
  min-height: 2.8rem;
  padding: 0.54rem 0.72rem 0.54rem 1rem;
}

.btn--compact .btn__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.btn--compact .btn__icon::before {
  left: 0.48rem;
  width: 0.54rem;
}

.btn--compact .btn__icon::after {
  right: 0.48rem;
  width: 0.32rem;
  height: 0.32rem;
}

.hero {
  padding: 1rem 0 4.2rem;
}

.hero-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-panel,
.hero-media {
  position: relative;
  min-width: 0;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 39, 0.06);
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 1.45rem;
  min-height: 40rem;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(18, 121, 128, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 24px 60px rgba(15, 37, 39, 0.07);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(15, 56, 59, 0.04), transparent 18rem);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.15rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.eyebrow--light {
  color: var(--teal-soft);
}

.hero-panel h1,
.cta-band h2 {
  color: #fff;
}

.hero-panel h1 {
  color: var(--text);
}

.hero-lead,
.hero-floating-card p,
.section-heading p,
.showcase-card__body p,
.highlight-card__body p,
.process-item p,
.sector-card p,
.story-card p,
.value-card p,
.mode-card p,
.machine-card__body p,
.contact-card p,
.footer-note,
.faq-item p,
.cta-band p {
  color: var(--muted);
}

.hero-lead {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-badges li {
  padding: 0.64rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 37, 39, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(15, 37, 39, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: auto;
}

.hero-stat {
  padding: 1rem 1rem 1.08rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 37, 39, 0.08);
  box-shadow: 0 12px 30px rgba(15, 37, 39, 0.05);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text);
  font-family: var(--tj-ff-heading), sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  min-height: 40rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 18rem),
    linear-gradient(180deg, #f3f6f6 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(15, 37, 39, 0.08);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-media::before {
  top: -4rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 37, 39, 0.04);
}

.hero-media::after {
  right: 2.4rem;
  bottom: 2.1rem;
  width: 10rem;
  height: 10rem;
  background: rgba(15, 56, 59, 0.05);
}

.hero-photo {
  position: absolute;
  inset: 1.3rem;
  width: auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 37, 39, 0.12);
  z-index: 1;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 26, 0.04) 36%, rgba(8, 24, 26, 0.34) 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hero-media:hover .hero-photo img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  left: 2.15rem;
  bottom: 2.15rem;
  right: auto;
  top: auto;
  max-width: 17rem;
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 38px rgba(15, 37, 39, 0.12);
  backdrop-filter: blur(18px);
  z-index: 3;
}

.hero-floating-card p {
  margin-top: 0.5rem;
  color: var(--text);
}

.hero-floating-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 37, 39, 0.08);
}

.hero-floating-list li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-floating-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--teal-soft);
}

.hero .btn--secondary {
  color: var(--teal);
  border-color: rgba(15, 37, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.hero .btn--secondary .btn__icon {
  background: rgba(15, 56, 59, 0.08);
}

.section {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0;
}

.section--tight {
  padding-top: clamp(1.1rem, 3vw, 2.2rem);
}

.section--soft {
  background: linear-gradient(180deg, rgba(14, 43, 46, 0.03), rgba(255, 255, 255, 0.98));
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
  margin-bottom: 1.7rem;
}

.capability-shell,
.showcase-shell,
.feature-shell,
.process-shell,
.sector-shell,
.value-grid,
.mode-grid,
.machine-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.capability-head,
.showcase-copy,
.feature-copy,
.workflow-copy,
.sector-copy {
  display: grid;
  gap: 1rem;
}

.capability-head {
  max-width: 42rem;
}

.capability-grid,
.sector-grid,
.value-grid,
.mode-grid,
.machine-grid,
.contact-grid,
.highlight-grid {
  display: grid;
  gap: 1rem;
}

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

.capability-card,
.process-item,
.sector-card,
.story-card,
.value-card,
.mode-card,
.machine-card,
.contact-card,
.cta-band,
.photo-panel,
.family-intro,
.error-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 37, 39, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.capability-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 37, 39, 0.1);
  border-color: rgba(15, 56, 59, 0.14);
}

.capability-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--surface-soft-strong);
  color: var(--teal);
  font-family: var(--tj-ff-heading), sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-copy,
.feature-copy {
  max-width: 30rem;
}

.showcase-copy__actions,
.feature-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 11.5rem;
}

.showcase-card,
.highlight-card,
.sector-card,
.value-card,
.mode-card,
.machine-card,
.contact-card {
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.showcase-card,
.highlight-card {
  position: relative;
  min-height: 14rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15, 37, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.showcase-card::after,
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 27, 0.06) 28%, rgba(7, 25, 27, 0.84) 100%);
}

.showcase-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 24rem;
}

.showcase-card:hover,
.highlight-card:hover,
.sector-card:hover,
.value-card:hover,
.mode-card:hover,
.machine-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(15, 37, 39, 0.12);
  border-color: rgba(15, 56, 59, 0.14);
}

.showcase-card__media,
.highlight-card > img,
.machine-card__media,
.photo-panel img,
.family-intro__visual img,
.contact-photo img,
.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__media,
.highlight-card > img {
  position: absolute;
  inset: 0;
}

.showcase-card__media img,
.highlight-card > img {
  transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-card__media img,
.highlight-card:hover > img {
  transform: scale(1.05);
}

.showcase-card__body,
.highlight-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1.3rem;
}

.showcase-card__body h3,
.highlight-card__body h3 {
  color: #ffffff;
}

.showcase-card__body p,
.highlight-card__body p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.76);
}

.showcase-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.feature-shell {
  align-items: start;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 12rem;
}

.highlight-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.highlight-card > img {
  aspect-ratio: auto;
}

.highlight-card__body .text-link {
  width: fit-content;
  color: #ffffff;
}

.highlight-card__body .text-link:hover {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover {
  color: var(--teal-soft);
}

.text-link--muted {
  color: var(--muted);
}

.workflow-copy {
  align-content: start;
}

.process-list,
.checklist,
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.process-item {
  padding: 1.2rem 1.25rem;
}

.process-item h3 {
  margin-bottom: 0.55rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 11rem;
  gap: 0.9rem;
}

.photo-mosaic__item {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.photo-mosaic__item--1 {
  grid-row: span 2;
}

.photo-mosaic__item--4 {
  grid-column: span 2;
}

.sector-grid,
.value-grid,
.mode-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.sector-card,
.value-card,
.mode-card {
  padding: 1.25rem;
}

.story-shell,
.materials-shell,
.family-shell,
.contact-shell,
.faq-shell {
  display: grid;
  gap: 1.2rem;
}

.story-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.material-cloud {
  gap: 0.7rem;
}

.material-cloud li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 37, 39, 0.04);
}

.material-cloud--compact li {
  background: rgba(255, 255, 255, 0.7);
}

.photo-panel {
  overflow: hidden;
  min-height: 24rem;
}

.family-intro {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.family-intro__visual {
  overflow: hidden;
  margin-top: 0.2rem;
  border-radius: 24px;
  aspect-ratio: 1.06 / 0.76;
}

.machine-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.machine-card__media {
  aspect-ratio: 1.08 / 0.84;
  overflow: hidden;
}

.machine-card__body,
.contact-card,
.story-card,
.value-card,
.mode-card,
.family-intro {
  padding: 1.25rem;
}

.machine-card__body {
  display: grid;
  gap: 0.7rem;
}

.machine-card__family {
  color: var(--teal-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 0.55rem;
}

.spec-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal-soft);
}

.contact-photo {
  overflow: hidden;
  min-height: 24rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
}

.contact-card__value {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  word-break: break-word;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
}

.faq-item {
  padding: 0 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(12, 30, 33, 0.09);
  box-shadow: 0 10px 24px rgba(15, 37, 39, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-family: var(--tj-ff-heading), sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(18, 121, 128, 0.22);
  background: rgba(18, 121, 128, 0.06);
  color: var(--tj-color-theme-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

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

.faq-item[open] {
  border-color: rgba(18, 121, 128, 0.34);
  box-shadow: 0 16px 34px rgba(15, 56, 59, 0.08);
}

.faq-item[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

.faq-item p {
  padding: 0.85rem 0 1rem;
  border-top: 1px solid rgba(12, 30, 33, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.faq-item[open] {
  border-color: rgba(18, 121, 128, 0.26);
  box-shadow: 0 16px 34px rgba(12, 30, 33, 0.08);
  background: #ffffff;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.faq-item p {
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(12, 30, 33, 0.1);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, rgba(15, 56, 59, 0.98), rgba(10, 31, 33, 0.98));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 0 0 2.8rem;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2.4rem 1.3rem;
  background:
    radial-gradient(circle at top right, rgba(30, 138, 138, 0.2), transparent 28%),
    linear-gradient(180deg, #112d30 0%, #0c1e21 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: auto -10% -32% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 138, 138, 0.18), transparent 70%);
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.75fr));
  gap: 2rem;
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--tj-color-common-white);
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
  max-width: 28rem;
}

.footer-note {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
}

.footer-shell h3 {
  color: var(--tj-color-common-white);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: var(--tj-color-common-white);
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.footer-contact-list span {
  display: block;
  margin-bottom: 0.32rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact-list a {
  color: var(--tj-color-common-white);
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--tj-color-common-white);
  font-size: 0.94rem;
  line-height: 1;
}

.footer-chip:hover {
  color: var(--tj-color-common-white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.94rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.error-panel {
  width: min(34rem, 100%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.7rem, 4vw, 2.5rem);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (min-width: 961px) {
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
  }

  .nav-list {
    justify-content: center;
    flex: 1;
  }

  .nav-toggle {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    align-items: stretch;
  }

  .showcase-shell {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: end;
  }

  .feature-shell {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: start;
  }

  .process-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .story-shell,
  .materials-shell,
  .contact-shell,
  .faq-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .family-shell {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: start;
  }

  .sector-shell {
    gap: 1.5rem;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 14rem;
  }

  .showcase-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 22rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 14rem;
  }

  .highlight-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 22rem;
  }
}

@media (max-width: 960px) {
  .header-shell {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    padding-top: 0.2rem;
  }

  .site-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .nav-list,
  .nav-actions {
    display: grid;
    gap: 0.45rem;
  }

  .nav-link,
  .lang-link,
  .site-nav .btn,
  .header-contact {
    width: 100%;
    justify-content: center;
  }

  .header-contact {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 56, 59, 0.06);
  }

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

  .showcase-shell,
  .feature-shell,
  .process-shell,
  .story-shell,
  .materials-shell,
  .contact-shell,
  .faq-shell,
  .family-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-media {
    min-height: auto;
  }

  .hero-photo {
    min-height: 34rem;
  }

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

  .hero-stats,
  .showcase-grid,
  .highlight-grid,
  .sector-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .showcase-card,
  .showcase-card--feature,
  .highlight-card,
  .highlight-card--feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 21rem;
  }

  .hero-floating-card {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
  }

  .footer-shell {
    padding: 2rem 1.8rem 1.2rem;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 1.15rem, 100%);
  }

  .section {
    padding: 2.7rem 0;
  }

  .header-shell {
    padding: 0.95rem;
    border-radius: 24px;
  }

  .brand__copy small {
    display: none;
  }

  .hero-panel {
    min-height: auto;
    padding: 1.3rem;
  }

  .capability-grid,
  .hero-photo {
    min-height: 24rem;
  }

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

  .capability-grid,
  .showcase-grid,
  .highlight-grid,
  .value-grid,
  .mode-grid,
  .machine-grid,
  .contact-grid,
  .sector-grid,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-auto-rows: 12rem;
  }

  .showcase-card,
  .highlight-card {
    min-height: 18.5rem;
  }

  .photo-mosaic__item--1,
  .photo-mosaic__item--4 {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-card__body,
  .highlight-card__body,
  .machine-card__body,
  .contact-card,
  .story-card,
  .value-card,
  .mode-card,
  .family-intro {
    padding: 1rem;
  }

  .cta-band,
  .footer-shell,
  .error-panel {
    padding: 1.15rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

:root {
  --shell: min(1480px, calc(100vw - 1.5rem));
  --header-shell: var(--shell);
  --tj-color-common-white: #fff;
  --tj-color-common-black: #000;
  --tj-color-heading-primary: #0c1e21;
  --tj-color-text-body: #587174;
  --tj-color-text-body-2: #a9b8b8;
  --tj-color-text-body-3: rgba(255, 255, 255, 0.72);
  --tj-color-theme-primary: #1e8a8a;
  --tj-color-theme-bg: #e8f1f1;
  --tj-color-theme-dark: #0c1e21;
  --tj-color-border-1: rgba(12, 30, 33, 0.12);
  --tj-color-border-2: rgba(255, 255, 255, 0.16);
}

main#main-content {
  padding-top: 104px;
}

.space-for-header {
  display: none;
  height: 0;
}

.section-gap {
  padding: 88px 0;
}

.section-gap-x {
  padding: 0 0 88px;
}

.text-center {
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

.site-header.ref-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9990;
  padding: 0;
  transition: transform 0.35s ease;
  overflow: visible;
}

.site-header.ref-site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

.site-header.ref-site-header.is-scrolled {
  padding-top: 0;
}

.ref-header-shell {
  width: var(--shell);
  margin: 0 auto;
  overflow: visible;
}

.ref-header-row {
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 0 18px 0 20px;
  background-color: var(--tj-color-common-white);
  border: 1px solid rgba(12, 30, 33, 0.1);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 30px rgba(12, 30, 33, 0.08);
  display: flex;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.site-header.ref-site-header.is-scrolled .ref-header-row {
  box-shadow: 0 20px 40px rgba(12, 30, 33, 0.1);
}

.ref-site-logo {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 8;
}

.ref-site-header .brand {
  gap: 0;
}

.ref-site-header .brand__mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(30, 138, 138, 0.18);
}

.ref-site-header .brand__copy strong {
  color: var(--tj-color-heading-primary);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.ref-site-header .brand__copy small {
  display: none;
}

.ref-menu-area {
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  position: relative;
  z-index: 1;
}

.ref-header-right,
.ref-header-btn,
.ref-mobile-menu-button,
.menu_bar,
.menu_offcanvas {
  position: relative;
  z-index: 8;
}

.ref-mobile-menu-button {
  flex: 0 0 auto;
}

.ref-site-nav {
  min-width: max-content;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.ref-nav-list {
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.ref-nav-item,
.ref-nav-list > li {
  position: relative;
}

.ref-nav-link {
  color: var(--tj-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 37px 0;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}

.ref-nav-link:hover,
.ref-nav-link.is-active {
  color: var(--tj-color-theme-primary);
}

.ref-nav-link--dropdown {
  padding-right: 18px;
}

.ref-nav-link--dropdown::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.3s ease;
}

.ref-nav-item.has-dropdown:hover > .ref-nav-link--dropdown::after,
.ref-nav-item.has-dropdown:focus-within > .ref-nav-link--dropdown::after {
  transform: translateY(-12%) rotate(225deg);
}

.ref-nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 14px;
  min-width: 250px;
  border-radius: 18px;
  border: 1px solid rgba(12, 30, 33, 0.08);
  background: var(--tj-color-common-white);
  box-shadow: 0 22px 45px rgba(12, 30, 33, 0.14);
  display: grid;
  gap: 4px;
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 12;
}

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

.ref-nav-sublink {
  color: var(--tj-color-heading-primary);
  font-size: 15px;
  line-height: 1.35;
  border-radius: 12px;
  padding: 11px 12px;
  display: block;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.ref-nav-sublink:hover,
.ref-nav-sublink:focus-visible {
  color: var(--tj-color-theme-primary);
  background: rgba(30, 138, 138, 0.08);
}

.ref-header-right {
  align-items: center;
  gap: 20px;
  display: flex;
  flex: 0 0 auto;
}

.ref-language-switch {
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.ref-language-link {
  width: 38px;
  height: 38px;
  background: #f3f6f6;
  border: 1px solid rgba(12, 30, 33, 0.1);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.3s ease;
}

.ref-language-link:hover,
.ref-language-link.is-active {
  border-color: rgba(30, 138, 138, 0.38);
  transform: translateY(-1px);
}

.ref-language-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(12, 30, 33, 0.1);
  display: block;
}

.ref-language-flag--pl {
  background: linear-gradient(180deg, #fff 0 50%, #dc143c 50% 100%);
}

.ref-language-flag--de {
  background: linear-gradient(180deg, #111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.ref-language-flag--en {
  background-color: #012169;
  background-image: url("/assets/img/flag-en-uk.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.tj-primary-btn {
  background-color: var(--tj-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 25px;
  line-height: 1.1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.tj-primary-btn .btn-text {
  color: var(--tj-color-common-white);
  overflow: hidden;
  padding: 4px 0;
}

.tj-primary-btn .btn-text span {
  text-shadow: 0 34px 0 currentColor;
  backface-visibility: hidden;
  line-height: 1.16;
  transition: all 0.4s ease-in-out;
  display: flex;
  transform: translateY(0);
}

.tj-primary-btn .btn-icon {
  background-color: var(--tj-color-theme-dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  overflow: hidden;
}

.tj-primary-btn .btn-icon i {
  color: var(--tj-color-common-white);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  transform: rotate(-45deg);
}

.tj-primary-btn .btn-arrow {
  color: var(--tj-color-common-white);
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  flex: none;
}

.tj-primary-btn:hover .btn-text span {
  transform: translateY(-34px);
}

.tj-primary-btn:hover .btn-icon i {
  transform: rotate(0);
}

.menu_bar {
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  margin-inline-start: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  position: relative;
}

.menu_bar span {
  background-color: var(--tj-color-common-black);
  backface-visibility: hidden;
  border-radius: 10px;
  width: 18px;
  height: 2px;
  margin-inline-end: auto;
  transition: all 0.3s;
  display: block;
}

.menu_bar span:first-child,
.menu_bar span:last-child {
  width: 25px;
}

.menu_bar:hover span {
  width: 100%;
}

.mobile_menu_bar {
  background: var(--tj-color-theme-primary);
  border-radius: 7px;
  width: 50px;
  height: 50px;
  padding: 12px;
}

.mobile_menu_bar span {
  background-color: var(--tj-color-common-white);
}

.ref-mobile-menu-button {
  display: none;
}

.body-overlay {
  z-index: 9997;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(12, 30, 33, 0.16);
  transition: all 0.3s ease-out;
  position: fixed;
  inset-inline-start: 0;
  pointer-events: none;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tj-offcanvas-area,
.hamburger-area {
  inset-inline-end: -490px;
  z-index: 9998;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-radius: 12px;
  width: 470px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: fixed;
  top: 15px;
  bottom: 15px;
  overflow-y: auto;
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

.hamburger-area {
  width: min(450px, calc(100vw - 30px));
  transition-duration: 0.6s;
}

.tj-offcanvas-area::-webkit-scrollbar,
.hamburger-area::-webkit-scrollbar {
  display: none;
}

.tj-offcanvas-area.opened,
.hamburger-area.opened {
  inset-inline-end: 15px;
}

.hamburger_bg {
  background-color: var(--tj-color-theme-dark);
  z-index: -1;
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset-inline-start: 0;
}

.hamburger_wrapper {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: auto;
}

.hamburger_inner {
  display: grid;
  align-content: start;
  gap: 30px;
}

.hamburger_top {
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

.hamburger_logo {
  flex: 1 1 auto;
  min-width: 0;
}

.hamburger_logo .brand__copy strong {
  color: var(--tj-color-common-white);
}

.hamburger_logo .brand__copy small {
  display: none;
}

.hamburger_close_btn {
  color: var(--tj-color-common-white);
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 35px;
  line-height: 1;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.hamburger_close_btn::before,
.hamburger_close_btn::after {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  position: absolute;
}

.hamburger_close_btn::before {
  transform: rotate(45deg);
}

.hamburger_close_btn::after {
  transform: rotate(-45deg);
}

.offcanvas-text p {
  color: var(--tj-color-text-body-2);
  margin-bottom: 0;
  line-height: 1.7;
}

.hamburger-title {
  color: var(--tj-color-common-white);
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 1;
  font-family: var(--tj-ff-heading), sans-serif;
  position: relative;
}

.ref-panel-block {
  display: grid;
  gap: 18px;
}

.ref-language-switch--panel {
  gap: 10px;
  flex-wrap: wrap;
}

.ref-language-switch--panel .ref-language-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.ref-language-switch--panel .ref-language-link:hover,
.ref-language-switch--panel .ref-language-link.is-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(30, 138, 138, 0.7);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-item {
  margin-bottom: 0;
}

.contact-item .subtitle {
  color: var(--tj-color-text-body-2);
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.contact-item .contact-link {
  color: var(--tj-color-common-white);
  line-height: 1.6;
  display: inline-block;
}

.contact-item .contact-link:hover {
  color: var(--tj-color-theme-primary);
}

.hamburger-socials {
  margin-top: 34px;
}

.ref-offcanvas-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.ref-offcanvas-link {
  color: var(--tj-color-common-white);
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex;
}

.ref-offcanvas-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ref-offcanvas-link:hover,
.ref-offcanvas-link.is-active {
  color: var(--tj-color-theme-primary);
}

.ref-offcanvas-subnav,
.ref-mobile-subnav {
  list-style: none;
  margin: 12px 0 0;
  padding: 0 0 0 16px;
  display: grid;
  gap: 8px;
}

.ref-offcanvas-sublink,
.ref-mobile-sublink {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.35;
  display: block;
  transition: color 0.25s ease;
}

.ref-offcanvas-sublink:hover,
.ref-offcanvas-sublink:focus-visible,
.ref-mobile-sublink:hover,
.ref-mobile-sublink:focus-visible {
  color: var(--tj-color-common-white);
}

.mean-nav ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mean-nav ul li {
  width: 100%;
  position: relative;
}

.mean-nav ul li a,
.ref-mobile-link {
  color: var(--tj-color-common-white);
  text-align: start;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 0;
  padding: 18px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

.mean-nav ul li a:hover,
.mean-nav ul li a.is-active,
.ref-mobile-link:hover,
.ref-mobile-link.is-active {
  color: var(--tj-color-theme-primary);
}

.ref-panel-group--mobile {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ref-mobile-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  column-gap: 12px;
}

.ref-mobile-link-row .ref-mobile-link {
  border-bottom: 0;
  padding-right: 0;
}

.ref-mobile-subtoggle {
  color: rgba(255, 255, 255, 0.72);
  width: 42px;
  min-height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease;
}

.ref-mobile-subtoggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.ref-panel-group--mobile.is-open > .ref-mobile-link-row .ref-mobile-link,
.ref-panel-group--mobile.is-open > .ref-mobile-link-row .ref-mobile-subtoggle,
.ref-mobile-subtoggle:hover,
.ref-mobile-subtoggle:focus-visible {
  color: var(--tj-color-theme-primary);
}

.ref-panel-group--mobile.is-open > .ref-mobile-link-row .ref-mobile-subtoggle::before {
  transform: rotate(-135deg);
}

.ref-panel-group--mobile > .ref-mobile-subnav {
  margin: 0;
  padding: 0 0 14px 16px;
}

.ref-panel-group--mobile > .ref-mobile-subnav[hidden] {
  display: none;
}

.offer-service {
  scroll-margin-top: 140px;
}

.offer-anchor-list a {
  color: inherit;
  font-weight: 700;
  display: inline-flex;
}

.ref-mobile-panel-bottom {
  display: grid;
  gap: 28px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ref-mobile-cta {
  width: 100%;
  justify-content: space-between;
}

.tj-banner-section {
  position: relative;
}

.tj-banner-section.section-gap-x {
  padding-bottom: 52px;
}

.banner-area {
  width: var(--shell);
  max-width: none;
  min-height: 792px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
}

.banner-left-box {
  background-color: var(--tj-color-theme-dark);
  z-index: 1;
  border-radius: 12px;
  align-items: center;
  width: calc(50% - 15px);
  margin-inline-end: 15px;
  padding: 70px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-left-box::before {
  content: "";
  position: absolute;
  top: 5%;
  inset-inline-start: 5%;
  z-index: -1;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  filter: blur(65px);
  opacity: 0.26;
}

.banner-right-box {
  width: 50%;
  min-height: 390px;
  flex: none;
  min-height: 792px;
  position: relative;
}

.banner-content {
  width: 100%;
  max-width: 720px;
  margin-inline-start: auto;
  position: relative;
  z-index: 2;
}

.sub-title {
    color: var(--tj-color-heading-primary);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.1;
    font-weight: 400;
    font-family: "IBM Plex Sans Condensed", "IBM Plex Sans", sans-serif;
    border: 1px dashed var(--tj-color-border-1);
    border-radius: 6px;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
  padding: 5px 11px;
  display: inline-flex;
}

.sub-title-icon {
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
}

.sub-title-mark {
  background: currentColor;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
}

.banner-left-box .sub-title {
  color: var(--tj-color-common-white);
  border: 1px dashed var(--tj-color-border-2);
  background: transparent;
  padding: 6px 10px;
}

.banner-left-box .sub-title .sub-title-icon {
  color: var(--tj-color-theme-primary);
}

.home-contact-card .sub-title,
.experience-box .sub-title,
.home-workflow-copy .sub-title {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-common-white);
  border: 0;
}

.banner-title {
  color: var(--tj-color-common-white);
  margin-bottom: 15px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
}

.banner-title span,
.sec-title span {
  color: var(--tj-color-theme-primary);
  font-weight: inherit;
  display: inline-block;
}

.banner-desc-area {
  border-top: 1px dashed var(--tj-color-border-2);
  border-bottom: 1px dashed var(--tj-color-border-2);
  margin-top: 40px;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin-inline: 0;
  padding: 23px 0;
  display: flex;
}

.banner-link {
  color: var(--tj-color-common-white);
  border-inline-end: 1px dashed var(--tj-color-border-2);
  padding: 10px 30px 15px 0;
  font-size: 75px;
  line-height: 1;
  display: inline-flex;
  flex: 0 0 auto;
}

.banner-link > span {
  overflow: hidden;
}

.banner-link-arrow {
  text-shadow: -120px 0 currentColor;
  line-height: 1;
  transition: all 0.3s ease-out;
  display: inline-flex;
  transform: rotate(-45deg) translate(0);
}

.banner-link:hover .banner-link-arrow {
  transform: rotate(-45deg) translate(120px);
}

.banner-desc {
  color: var(--tj-color-text-body-2);
  max-width: 517px;
  font-size: 1rem;
  line-height: 1.6;
  padding-inline-start: 44px;
}

.banner-shape {
  top: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset-inline-start: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(30, 138, 138, 0.22), transparent 22rem),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 52%);
}

.banner-img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  min-height: 792px;
  object-fit: cover;
}

.box-area {
  z-index: 3;
}

.banner-right-box .box-area {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(261px, calc(100% - 48px));
}

.customers-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 38px rgba(12, 30, 33, 0.16);
}

.customers ul {
  list-style: none;
  display: inline-flex;
}

.customers ul li {
  margin-inline-start: -15px;
  line-height: 1;
}

.customers ul li:first-child {
  margin-inline-start: 0;
}

.customers ul li img,
.customers-plus span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 24px rgba(12, 30, 33, 0.14);
}

.customers-plus span {
  background: var(--tj-color-theme-dark);
  color: var(--tj-color-common-white);
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
}

.customers-number {
  color: var(--tj-color-theme-dark);
  letter-spacing: -1.2px;
  font-size: 50px;
  line-height: 0.88;
  font-family: var(--tj-ff-heading), sans-serif;
  font-weight: 600;
  padding: 24px 0 10px;
}

.customers-text {
  color: var(--tj-color-text-body);
  letter-spacing: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 0;
}

.banner-scroll {
  inset-inline-start: 38px;
  z-index: 5;
  position: absolute;
  bottom: 50px;
}

.tj-scroll-btn {
  color: var(--tj-color-common-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  writing-mode: sideways-lr;
  opacity: 0.5;
  align-items: center;
  gap: 12px;
  display: inline-flex;
}

.tj-scroll-btn:hover {
  opacity: 1;
}

.scroll-down-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scroll-down-arrow {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  transform: rotate(90deg);
}

.scroll-down-text {
  text-transform: none;
}

.sec-heading {
  max-width: min(980px, 100%);
  margin: 0 auto 38px;
}

.sec-title {
  font-size: clamp(1.35rem, 1.75vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.tj-choose-section {
  overflow: hidden;
}

.tj-choose-section.section-gap {
  padding-top: 44px;
  padding-bottom: 64px;
}

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

.choose-grid--offer {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.choose-box {
  background-color: var(--tj-color-common-white);
  z-index: 1;
  border-radius: 10px;
  height: 100%;
  padding: 50px 28px 45px;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(12, 30, 33, 0.08);
  box-shadow: var(--shadow-soft);
}

.choose-box::before {
  content: "";
  position: absolute;
  inset: auto -18% -48% 42%;
  background: radial-gradient(circle, rgba(30, 138, 138, 0.26), transparent 58%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.choose-box:hover {
  background: var(--tj-color-theme-dark);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(12, 30, 33, 0.16);
}

.choose-box:hover::before {
  opacity: 1;
}

.choose-content {
  flex-direction: column;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}

.choose-icon {
  color: var(--tj-color-theme-primary);
  max-width: 88px;
  margin-bottom: 43px;
  font-size: 88px;
  line-height: 1;
  display: inline-flex;
}

.choose-icon span {
  font-family: var(--tj-ff-heading), sans-serif;
  letter-spacing: -0.08em;
}

.choose-icon--media {
  max-width: none;
  width: 100%;
  margin-bottom: 26px;
  font-size: 0;
}

.choose-icon--media img {
  width: 100%;
  height: clamp(150px, 15vw, 182px);
  display: block;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(12, 30, 33, 0.08);
  background: #fff;
}

.choose-box .title {
  margin-bottom: 14px;
}

.choose-box .desc {
  color: var(--muted);
}

.choose-box:hover .choose-icon,
.choose-box:hover .title,
.choose-box:hover .desc {
  color: var(--tj-color-common-white);
}

.choose-box:hover .choose-icon--media img {
  border-color: rgba(255, 255, 255, 0.24);
}

.client-section-gap {
  padding-top: 52px;
  padding-bottom: 56px;
}

.tj-client-section {
  background: linear-gradient(135deg, #0c1e21 0%, #163d41 100%);
  overflow: hidden;
}

.client-shell {
  width: var(--shell);
  margin: 0 auto;
  position: relative;
}

.client-content {
  border: 1px dashed rgba(255, 255, 255, 0.16);
  left: 50%;
  text-align: center;
  z-index: 2;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  padding: 32px;
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(232, 238, 238, 0.82) 100%);
}

.client-content.reveal {
  transform: translate(-50%, calc(-50% + 26px));
}

.client-content.reveal.is-visible {
  transform: translate(-50%, -50%);
}

.client-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58%;
  height: 16%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0.9;
  filter: blur(18px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.client-content > * {
  position: relative;
  z-index: 1;
}

.client-content .sec-title {
  color: #0f1516;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  max-width: 12ch;
  margin: 0 auto;
  line-height: 1.04;
}

.client-slider {
  overflow: hidden;
  padding: 42px 0;
}

.client-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  animation: client-marquee 34s linear infinite;
}

.client-item {
  flex: 0 0 320px;
  min-height: 220px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item--brand {
  flex-basis: 280px;
  min-height: 190px;
}

.client-logo {
  width: 100%;
  height: 100%;
  padding: 18px;
}

.client-logo--brand {
  height: auto;
  min-height: 144px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(12, 30, 33, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-image {
  width: 100%;
  height: clamp(72px, 8vw, 90px);
  object-fit: contain;
  object-position: center;
  display: block;
}

.client-logo img {
  width: 100%;
  height: 184px;
  border-radius: 12px;
  object-fit: cover;
}

.client-text {
  color: #127980;
  display: block;
  margin-top: 0.2rem;
}

.brand-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark--fujifilm {
  gap: 0.1em;
  color: #111111;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-wordmark--fujifilm .accent {
  color: #d9272e;
}

.brand-wordmark--seron {
  color: #101614;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-wordmark--seron::after {
  content: "";
  position: absolute;
  left: 0.1em;
  right: 0.1em;
  bottom: -0.26em;
  height: 0.2em;
  border-radius: 999px;
  background: #95c11f;
}

.brand-wordmark--hp {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1d8ed6;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  text-transform: lowercase;
}

.brand-wordmark--canon {
  color: #d11f2e;
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-wordmark--summa {
  color: #1a1a1a;
  font-size: clamp(1.55rem, 2.45vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-wordmark--summa::after {
  content: "";
  position: absolute;
  left: 0.2em;
  right: 0.2em;
  bottom: -0.24em;
  height: 0.16em;
  border-radius: 999px;
  background: #f08a00;
}

.brand-wordmark--megaplot {
  color: #1c4f7c;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-wordmark--tampogranit {
  color: #3d4247;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.16em;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

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

.home-about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: start;
}

.home-about-media {
  position: relative;
  min-height: 560px;
}

.about-img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.home-about-media .box-area {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
}

.experience-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 28px 25px;
  box-shadow: 0 18px 38px rgba(12, 30, 33, 0.14);
}

.experience-box .sub-title {
  margin-bottom: 18px;
}

.home-about-content {
  max-width: none;
  justify-self: stretch;
}

.home-about-copy {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 18px;
  max-width: 55ch;
  line-height: 1.62;
}

.home-about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.home-about-point {
  background: var(--tj-color-common-white);
  border: 1px solid rgba(12, 30, 33, 0.08);
  border-radius: 20px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
}

.home-about-point h3 {
  margin-bottom: 10px;
}

.home-about-point p {
  color: var(--muted);
  font-size: 0.98rem;
}

.home-section-cta {
  margin-top: 24px;
}

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

.home-highlight-card {
  background: var(--tj-color-common-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(12, 30, 33, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(12, 30, 33, 0.12);
}

.home-highlight-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-highlight-card:hover .home-highlight-media img {
  transform: scale(1.04);
}

.home-highlight-body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}

.home-highlight-body h3 {
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.28;
  font-weight: 500;
}

.home-highlight-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-about-section.section-gap {
  padding-top: 56px;
  padding-bottom: 56px;
}

.home-highlights-section.section-gap {
  padding-top: 48px;
  padding-bottom: 56px;
}

.home-inline-link {
  color: var(--tj-color-theme-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-inline-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.home-workflow-section {
  background: linear-gradient(180deg, rgba(232, 241, 241, 0.52) 0%, rgba(255, 255, 255, 0) 100%);
  padding: 58px 0 62px;
}

.home-workflow-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}

.home-workflow-section > .shell + .shell {
  margin-top: 64px;
}

.home-workflow-copy {
  background: var(--tj-color-theme-dark);
  border-radius: 24px;
  padding: 26px 24px;
}

.home-workflow-copy .sec-title {
  color: var(--tj-color-common-white);
  font-size: clamp(1.28rem, 1.55vw, 1.72rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.home-workflow-copy .sec-title span {
  color: #8ad0d0;
}

.home-process-list {
  counter-reset: workflow;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-process-item {
  position: relative;
  padding: 16px 16px 14px 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-process-item::before {
  counter-increment: workflow;
  content: counter(workflow, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading), sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-process-item h3 {
  color: var(--tj-color-common-white);
  font-size: 0.98rem;
  line-height: 1.32;
  font-weight: 500;
  margin-bottom: 6px;
}

.home-process-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.55;
}

.home-workflow-media {
  display: flex;
  align-items: flex-start;
}

.home-workflow-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 1.02 / 1;
  flex: 1;
}

.home-workflow-stack img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.home-workflow-stack img:first-child {
  grid-row: 1 / span 2;
}

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

.home-sector-card {
  background: var(--tj-color-common-white);
  border-radius: 22px;
  border: 1px solid rgba(12, 30, 33, 0.08);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.home-sector-card__media {
  margin: -12px -8px 22px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(12, 30, 33, 0.04), rgba(12, 30, 33, 0.08));
}

.home-sector-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-sector-card h3 {
  margin-bottom: 12px;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.28;
  font-weight: 500;
}

.home-sector-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-contact-card {
  background: linear-gradient(135deg, #0c1e21 0%, #15363a 100%);
  border-radius: 28px;
  padding: 46px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.home-contact-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 138, 138, 0.35), transparent 70%);
}

.home-contact-copy,
.home-contact-btn {
  position: relative;
  z-index: 1;
}

.home-contact-copy {
  max-width: 58rem;
}

.home-contact-copy h2 {
  color: var(--tj-color-common-white);
  font-size: clamp(1.42rem, 1.85vw, 1.95rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.home-contact-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}

.home-support-section.section-gap {
  padding-top: 44px;
  padding-bottom: 56px;
}

.home-support-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.home-support-visual {
  position: relative;
  min-height: 640px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0c1e21;
}

.home-support-visual img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.home-support-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 30, 33, 0.28) 0%, rgba(12, 30, 33, 0.6) 100%),
    linear-gradient(90deg, rgba(12, 30, 33, 0.7) 0%, rgba(12, 30, 33, 0.16) 62%);
}

.home-support-visual__overlay,
.home-support-call {
  position: absolute;
  z-index: 1;
}

.home-support-visual__overlay {
    top: 26px;
    left: 26px;
    right: 26px;
    max-width: 21ch;
}

.home-support-visual__overlay .sub-title {
  color: var(--tj-color-common-white);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.home-support-visual__overlay h2 {
    color: var(--tj-color-common-white);
    max-width: 16ch;
    margin: 0;
    font-size: clamp(1.18rem, 1.45vw, 1.56rem);
    line-height: 1.2;
    letter-spacing: -0.018em;
}

.home-support-call {
  left: 28px;
  bottom: 28px;
  max-width: 270px;
  padding: 22px 24px 20px;
  border-radius: 24px;
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  box-shadow: 0 22px 42px rgba(12, 30, 33, 0.22);
}

.home-support-call span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.home-support-call strong {
  display: block;
  margin-top: 10px;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-support-faq {
  gap: 18px;
}

.home-support-faq .faq-item {
    padding: 0 28px;
    border-radius: 20px;
}

.home-support-faq .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 22px 0;
    font-size: clamp(0.94rem, 0.92vw, 1rem);
    line-height: 1.48;
    font-weight: 400;
}

.home-support-faq .faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1rem;
}

.home-support-faq .faq-item p {
    padding: 15px 0 19px;
    font-size: 0.91rem;
    line-height: 1.66;
}

.home-inquiry-section.section-gap {
  padding-top: 44px;
  padding-bottom: 72px;
}

.home-inquiry-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0b1d20 0%, #14353a 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-inquiry-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 18px);
  opacity: 0.35;
  pointer-events: none;
}

.home-inquiry-map,
.home-inquiry-card {
  position: relative;
  z-index: 1;
}

.home-inquiry-map {
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1c1e 0%, #10292c 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.home-inquiry-map::before,
.home-inquiry-map::after {
  display: none;
}

.home-inquiry-pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff6b47;
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 10px rgba(255, 107, 71, 0.2),
    0 0 0 20px rgba(255, 107, 71, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

.home-inquiry-map__asset {
  position: absolute;
  inset: 42px 52px 118px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-inquiry-map__asset img {
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.2));
}

.home-inquiry-pin--primary {
  top: 59%;
  left: 61.4%;
  transform: translate(-50%, -50%);
}

.home-inquiry-location {
  position: absolute;
  z-index: 2;
  top: 59%;
  left: calc(61.4% + 34px);
  transform: translateY(-50%);
  max-width: 300px;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(8, 24, 28, 0.84);
  border: 1px solid rgba(173, 205, 210, 0.18);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  color: var(--tj-color-common-white);
}

.home-inquiry-location__eyebrow {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(229, 241, 243, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-inquiry-location__title {
  display: block;
  color: #f5fbfc;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.home-inquiry-links {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 12px;
}

.home-inquiry-link {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tj-color-common-white);
  font-size: 0.95rem;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}

.home-inquiry-card {
  padding: 34px 34px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.home-inquiry-card .sub-title {
  color: var(--tj-color-common-white);
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.home-inquiry-card .sec-title {
  color: var(--tj-color-common-white);
  max-width: 10ch;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.1;
}

.home-inquiry-card p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 48ch;
  margin-bottom: 24px;
  font-size: 0.97rem;
  line-height: 1.62;
}

.home-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.home-field {
  position: relative;
  display: block;
}

.home-field input,
.home-field select,
.home-field textarea {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--tj-color-common-white);
  font: inherit;
}

.home-field input::placeholder,
.home-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.home-field select {
  appearance: none;
  color: rgba(255, 255, 255, 0.84);
}

.home-field option {
  color: var(--tj-color-heading-primary);
}

.home-field--select::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  pointer-events: none;
}

.home-field--message,
.home-inquiry-actions {
  grid-column: 1 / -1;
}

.home-field--message textarea {
  min-height: 132px;
  padding-top: 6px;
  resize: vertical;
}

.home-field input:focus,
.home-field select:focus,
.home-field textarea:focus {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.home-inquiry-actions {
  margin-top: 4px;
}

.home-inquiry-submit {
  justify-self: start;
}

.scroll-progress {
  --scroll-progress: 0;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--tj-color-theme-primary) calc(var(--scroll-progress) * 1%), rgba(12, 30, 33, 0.12) 0);
  box-shadow: 0 20px 40px rgba(12, 30, 33, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.92);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 80;
}

.scroll-progress::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

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

.scroll-progress__value {
  position: relative;
  z-index: 1;
  color: var(--tj-color-heading-primary);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1199px) {
  main#main-content {
    padding-top: 110px;
  }

  .section-gap {
    padding: 76px 0;
  }

  .section-gap-x {
    padding-bottom: 76px;
  }

  .tj-banner-section.section-gap-x {
    padding-bottom: 44px;
  }

  .tj-choose-section.section-gap,
  .home-about-section.section-gap,
  .home-highlights-section.section-gap,
  .home-support-section.section-gap,
  .home-inquiry-section.section-gap {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .banner-area {
    min-height: 700px;
  }

  .banner-left-box {
    padding: 70px 40px 70px 30px;
  }

  .banner-right-box,
  .banner-img img {
    min-height: 700px;
  }

  .banner-desc-area {
    margin-inline-end: 20px;
  }

  .client-content {
    width: 280px;
    height: 280px;
  }

  .home-about-shell,
  .home-workflow-shell,
  .home-support-shell,
  .home-inquiry-shell {
    gap: 24px;
  }

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

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

  .home-support-shell,
  .home-inquiry-shell {
    grid-template-columns: 1fr;
  }

  .home-support-visual,
  .home-support-visual img {
    min-height: 540px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-title {
    font-size: 40px;
  }

  .banner-link {
    font-size: 52px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-title {
    font-size: 34px;
  }

  .banner-link {
    font-size: 44px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-title {
    font-size: 30px;
  }

  .banner-link {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  main#main-content {
    padding-top: 92px;
  }

  .section-gap {
    padding: 68px 0;
  }

  .section-gap-x {
    padding-bottom: 68px;
  }

  .tj-banner-section.section-gap-x {
    padding-bottom: 36px;
  }

  .tj-choose-section.section-gap,
  .home-about-section.section-gap,
  .home-highlights-section.section-gap,
  .home-support-section.section-gap,
  .home-inquiry-section.section-gap {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .site-header.ref-site-header {
    padding-top: 0;
  }

  .ref-header-shell {
    width: var(--shell);
  }

  .ref-header-row {
    min-height: 74px;
    padding: 0 14px 0 18px;
    gap: 14px;
    border-radius: 0 0 14px 14px;
  }

  .ref-site-nav,
  .menu_offcanvas,
  .ref-header-btn,
  .ref-header-right .ref-language-switch {
    display: none;
  }

  .ref-mobile-menu-button {
    display: inline-flex;
  }

  .banner-area {
    width: var(--shell);
    min-height: auto;
    flex-direction: column;
    gap: 18px;
  }

  .banner-left-box,
  .banner-right-box {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .banner-left-box {
    margin-inline-end: 0;
    padding: 42px 0 30px;
  }

  .banner-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
  }

  .banner-right-box,
  .banner-img img {
    min-height: auto;
  }

  .banner-img img {
    min-height: 360px;
  }

  .banner-desc-area {
    max-width: none;
    margin-inline-end: 0;
    margin-top: 28px;
    padding: 18px 0;
    gap: 16px;
  }

  .banner-right-box .box-area {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .banner-title {
    line-height: 1.04;
  }

  .customers-box {
    padding: 22px 18px;
  }

  .customers-number {
    font-size: 36px;
    padding: 16px 0 8px;
  }

  .banner-scroll {
    display: none;
  }

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

  .client-content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 260px;
    height: 260px;
    margin: 0 auto 28px;
    display: flex;
  }

  .client-content.reveal,
  .client-content.reveal.is-visible {
    transform: none;
  }

  .client-content::before {
    top: 50%;
    width: 64%;
  }

  .client-slider {
    padding-top: 0;
  }

  .home-about-shell,
  .home-workflow-shell,
  .home-contact-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .home-about-media,
  .about-img img {
    min-height: auto;
  }

  .about-img img {
    min-height: 520px;
  }

  .home-about-content {
    max-width: none;
    justify-self: stretch;
  }

  .home-workflow-shell {
    margin-bottom: 32px;
  }

  .home-workflow-section > .shell + .shell {
    margin-top: 40px;
  }

  .home-workflow-copy {
    padding: 34px 26px;
  }

  .home-workflow-media {
    min-height: 0;
  }

  .home-workflow-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .home-workflow-stack img,
  .home-workflow-stack img:first-child {
    grid-row: auto;
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .home-contact-card {
    align-items: flex-start;
    padding: 38px 28px;
  }

  .home-support-visual,
  .home-support-visual img {
    min-height: 500px;
  }

  .home-support-faq .faq-item {
    padding: 0 20px;
  }

  .home-support-faq .faq-item summary {
    font-size: 1rem;
    padding: 18px 0;
  }

  .home-support-faq .faq-item p {
    padding: 12px 0 16px;
  }

  .home-inquiry-shell {
    padding: 24px;
  }

  .home-inquiry-map {
    min-height: 360px;
  }

  .home-inquiry-map__asset {
    inset: 26px 26px 128px;
  }

  .home-inquiry-pin--primary {
    top: 54%;
    left: 58%;
  }

  .home-inquiry-location {
    top: auto;
    left: 20px;
    right: 20px;
    bottom: 84px;
    transform: none;
    max-width: none;
  }

  .home-inquiry-card {
    padding: 28px 24px 24px;
  }

  .home-inquiry-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .scroll-progress {
    right: 18px;
    bottom: 18px;
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 575px) {
  main#main-content {
    padding-top: 88px;
  }

  .section-gap {
    padding: 52px 0;
  }

  .section-gap-x {
    padding-bottom: 52px;
  }

  .tj-banner-section.section-gap-x {
    padding-bottom: 28px;
  }

  .tj-choose-section.section-gap,
  .home-about-section.section-gap,
  .home-highlights-section.section-gap,
  .home-support-section.section-gap,
  .home-inquiry-section.section-gap {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .ref-header-row {
    min-height: 70px;
    padding: 0 12px 0 14px;
    gap: 12px;
    border-radius: 0 0 12px 12px;
  }

  .ref-site-header .brand {
    gap: 10px;
  }

  .brand__logo--header {
    width: 7.75rem;
  }

  .ref-site-header .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .ref-site-header .brand__copy strong {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .brand__logo--panel {
    width: 9rem;
  }

  .tj-offcanvas-area {
    width: min(470px, calc(100vw - 20px));
    top: 10px;
    bottom: 10px;
  }

  .tj-offcanvas-area.opened {
    inset-inline-end: 10px;
  }

  .hamburger-area {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    width: min(320px, 100vw);
    top: 0;
    bottom: 0;
    max-height: 100dvh;
  }

  .hamburger-area.opened {
    inset-inline-end: 0;
  }

  .hamburger_wrapper {
    padding: 40px 20px;
  }

  .banner-area {
    width: var(--shell);
  }

  .banner-left-box {
    padding: 34px 0 24px;
  }

  .banner-title {
    font-size: clamp(1.9rem, 7.2vw, 2.3rem);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .banner-desc-area {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 14px 0;
  }

  .banner-link {
    font-size: 34px;
    border-inline-end: 1px dashed var(--tj-color-border-2);
    border-bottom: 0;
    padding: 0 14px 0 0;
    line-height: 1;
    flex: 0 0 auto;
    align-self: center;
  }

  .banner-desc {
    padding-inline-start: 2px;
    font-size: 15px;
    line-height: 1.55;
  }

  .banner-content {
    padding: 0 14px;
  }

  .banner-right-box {
    display: grid;
    gap: 12px;
  }

  .banner-img img {
    min-height: 260px;
    max-height: 52vh;
  }

  .banner-right-box .box-area {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0 14px;
  }

  .customers-box {
    padding: 18px 16px;
  }

  .customers ul li {
    margin-inline-start: -12px;
  }

  .customers ul li img,
  .customers-plus span {
    width: 50px;
    height: 50px;
  }

  .customers-number {
    font-size: 32px;
    padding: 14px 0 8px;
  }

  .choose-grid,
  .home-highlights-grid,
  .home-sectors-grid,
  .home-about-points {
    grid-template-columns: 1fr;
  }

  .choose-box {
    padding: 30px;
  }

  .choose-icon {
    max-width: 65px;
    margin-bottom: 20px;
    font-size: 65px;
  }

  .choose-icon--media {
    max-width: none;
    width: 100%;
    display: block;
  }

  .choose-icon--media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .client-content {
    width: 190px;
    height: 190px;
    padding: 20px;
  }

  .client-content .sec-title {
    max-width: 11ch;
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }

  .client-item {
    flex-basis: 240px;
    min-height: 160px;
  }

  .client-item--brand {
    flex-basis: 220px;
    min-height: 150px;
  }

  .client-logo--brand {
    min-height: 116px;
    padding: 18px 16px;
  }

  .brand-logo-image {
    height: 72px;
  }

  .client-logo img {
    height: 140px;
  }

  .brand-wordmark--hp {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }

  .about-img img {
    min-height: 420px;
  }

  .home-about-media .box-area,
  .banner-right-box .box-area {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }

  .home-workflow-copy {
    padding: 30px 18px;
  }

  .home-workflow-section > .shell + .shell {
    margin-top: 52px;
  }

  .home-process-list {
    grid-template-columns: 1fr;
  }

  .home-workflow-copy.reveal,
  .home-workflow-copy.reveal.is-visible,
  .home-workflow-media.reveal,
  .home-workflow-media.reveal.is-visible,
  .home-workflow-section .sec-heading.reveal,
  .home-workflow-section .sec-heading.reveal.is-visible {
    transform: none;
  }

  .home-process-item {
    padding: 84px 18px 20px;
  }

  .home-process-item::before {
    left: 18px;
    top: 18px;
  }

  .home-workflow-shell {
    margin-bottom: 22px;
  }

  .home-workflow-section > .shell + .shell {
    margin-top: 68px;
  }

  .home-workflow-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    max-height: none;
    aspect-ratio: auto;
  }

  .home-workflow-stack img,
  .home-workflow-stack img:first-child {
    grid-row: auto;
    min-height: 180px;
  }

  .home-workflow-stack img:first-child {
    min-height: 240px;
  }

  .home-contact-card {
    padding: 28px 20px;
  }

  .home-support-visual,
  .home-support-visual img {
    min-height: 430px;
  }

  .home-support-visual__overlay {
      top: 18px;
      left: 18px;
      right: 18px;
      max-width: 18ch;
  }

  .home-support-visual__overlay h2 {
      max-width: 15ch;
      font-size: clamp(1.04rem, 4.8vw, 1.26rem);
      line-height: 1.18;
  }

  .home-support-call {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
    padding: 18px 18px 16px;
  }

  .home-support-call strong {
    font-size: 1.45rem;
  }

  .home-support-faq {
      gap: 14px;
  }

  .home-support-faq .faq-item {
      padding: 0 16px;
  }

  .home-support-faq .faq-item summary {
      font-size: 0.9rem;
      line-height: 1.42;
      padding: 16px 0;
  }

  .home-support-faq .faq-item summary::after {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .home-support-faq .faq-item p {
      font-size: 0.86rem;
      line-height: 1.6;
  }

  .home-inquiry-shell {
    padding: 18px;
  }

  .home-inquiry-card {
    padding: 24px 18px 20px;
  }

  .home-inquiry-card .sec-title {
    max-width: 12ch;
  }

  .home-inquiry-map,
  .home-inquiry-map.reveal,
  .home-inquiry-map.reveal.is-visible {
    min-height: 430px;
    transform: none;
  }

  .home-inquiry-map__asset {
    inset: 72px 18px 128px;
  }

  .home-inquiry-pin--primary {
    top: 50%;
    left: 54%;
  }

  .home-inquiry-location {
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: auto;
    padding: 0.72rem 0.85rem;
    transform: none;
    max-width: none;
  }

  .home-inquiry-links {
    left: 16px;
    right: 16px;
    bottom: 14px;
    gap: 8px;
    z-index: 3;
  }

  .home-inquiry-link {
    width: 100%;
    min-height: 40px;
    padding: 0.58rem 0.8rem;
    font-size: 0.84rem;
  }

  .scroll-progress {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
  }

.scroll-progress__value {
  font-size: 0.92rem;
}
}

.tj-page-header {
  position: relative;
  overflow: hidden;
  padding: clamp(6.35rem, 9.5vw, 8.9rem) 0 clamp(2.6rem, 5vw, 3.7rem);
  background:
    linear-gradient(180deg, rgba(241, 246, 246, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 18% 22%, rgba(30, 138, 138, 0.12), transparent 34%),
    radial-gradient(circle at 82% 26%, rgba(12, 30, 33, 0.08), transparent 30%);
}

.tj-page-header-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.tj-page-header .sub-title {
  justify-content: center;
}

.tj-page-title {
  margin: 0;
  max-width: 10.5ch;
  color: var(--text);
  font-size: clamp(2.55rem, 5.1vw, 4.55rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.tj-page-title span {
  color: var(--tj-color-theme-primary);
}

.tj-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.tj-page-link a {
  color: inherit;
}

.tj-page-link span + span::before {
  content: "/";
  margin-right: 0.8rem;
  opacity: 0.45;
}

.page-header-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.78), transparent 36%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52));
  pointer-events: none;
}

body[data-page="contact"] .tj-page-header {
  padding: clamp(5.7rem, 7.2vw, 6.6rem) 0 clamp(1.5rem, 2.6vw, 2rem);
  background:
    linear-gradient(180deg, rgba(242, 247, 247, 0.98), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 18% 26%, rgba(24, 128, 127, 0.14), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(13, 33, 37, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(11, 34, 37, 0.02), rgba(21, 120, 118, 0.05));
  border-bottom: 1px solid rgba(17, 53, 56, 0.08);
}

body[data-page="contact"] .tj-page-header-content {
  justify-items: center;
  text-align: center;
  gap: 0.72rem;
}

body[data-page="contact"] .tj-page-header .sub-title {
  display: none;
}

body[data-page="contact"] .tj-page-title {
  max-width: 13ch;
  color: var(--text);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

body[data-page="contact"] .tj-page-title span {
  color: var(--tj-color-theme-primary);
}

body[data-page="contact"] .tj-page-link {
  gap: 0.52rem;
  padding: 0.5rem 0.92rem;
  color: #607877;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 74, 77, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(15, 40, 43, 0.08);
  backdrop-filter: blur(8px);
}

body[data-page="contact"] .tj-page-link span + span::before {
  margin-right: 0.52rem;
  opacity: 0.4;
}

body[data-page="contact"] .tj-page-link a {
  color: var(--tj-color-theme-primary);
}

body[data-page="contact"] .page-header-overlay {
  display: block;
  height: 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.85), transparent 42%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
}

.tj-contact-area.section-gap {
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  padding-bottom: clamp(4rem, 7vw, 5.35rem);
}

.contact-reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-reference-card {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  min-height: 100%;
  padding: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 249, 0.98));
  border: 1px solid rgba(12, 30, 33, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(12, 30, 33, 0.08);
}

.contact-reference-icon {
  display: inline-grid;
  place-items: center;
  width: 4.55rem;
  height: 4.55rem;
  border-radius: 999px;
  background: rgba(30, 138, 138, 0.13);
  color: var(--tj-color-theme-primary);
}

.contact-reference-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.contact-reference-meta {
  display: grid;
  gap: 0.42rem;
}

.contact-reference-meta h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.contact-reference-meta p {
  margin: 0;
  color: var(--muted);
}

.contact-reference-value {
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.42;
  word-break: break-word;
}

.contact-reference-link {
  margin-top: auto;
  color: var(--tj-color-theme-primary);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.contact-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-form-card,
.map-area {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(12, 30, 33, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-area {
  position: relative;
  isolation: isolate;
  min-height: 40rem;
  background: #d6e4e1;
}

.contact-form-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.3rem);
}

.contact-form-lead {
  margin: 0;
  color: var(--muted);
}

.contact-reference-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
}

.contact-reference-field {
  position: relative;
}

.contact-reference-field input,
.contact-reference-field textarea,
.contact-reference-field select {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(12, 30, 33, 0.14);
  color: var(--text);
  outline: 0;
  font: inherit;
}

.contact-reference-field select {
  appearance: none;
  cursor: pointer;
}

.contact-reference-field--select::after {
  content: "▾";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.contact-reference-field input::placeholder,
.contact-reference-field textarea::placeholder {
  color: var(--muted);
}

.contact-reference-field--message,
.contact-reference-actions {
  grid-column: 1 / -1;
}

.contact-reference-field--message textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-reference-actions {
  padding-top: 0.5rem;
}

.contact-reference-submit {
  border: 0;
  cursor: pointer;
}

.contact-reference-field--select::after {
  content: "\25BE";
}

.map-area iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 40rem;
  border: 0;
  filter: grayscale(1) sepia(0.14) saturate(0.6) hue-rotate(128deg) contrast(0.96) brightness(0.9);
  transform: scale(1.02);
  transform-origin: center;
}

.map-area__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 30, 33, 0.06), rgba(8, 30, 33, 0.22)),
    radial-gradient(circle at 12% 12%, rgba(24, 160, 164, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 74%, rgba(8, 30, 33, 0.18) 100%);
}

.map-area__card,
.map-area__badge {
  position: absolute;
  z-index: 2;
}

.map-area__card {
  top: 1.2rem;
  left: 1.2rem;
  width: min(19rem, calc(100% - 2.4rem));
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 30, 33, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(12, 30, 33, 0.12);
  backdrop-filter: blur(14px);
}

.map-area__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--tj-color-theme-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-area__card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.map-area__card > p:last-of-type {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.map-area__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.map-area__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.95rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(12, 30, 33, 0.06);
  border-radius: 999px;
}

.map-area__action--primary {
  color: #fff;
  background: var(--tj-color-theme-primary);
}

.map-area__badge {
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  width: fit-content;
  max-width: calc(100% - 2.4rem);
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  background: rgba(12, 30, 33, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 30px rgba(12, 30, 33, 0.16);
}

.contact-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 30px;
  background: var(--tj-color-theme-dark);
  box-shadow: 0 20px 44px rgba(12, 30, 33, 0.16);
}

.contact-cta-band .sec-title,
.contact-cta-band p {
  color: #fff;
}

.contact-cta-band p {
  margin: 0;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta-band__action {
  justify-self: end;
}

@media (max-width: 991px) {
  .contact-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-shell {
    grid-template-columns: 1fr;
  }

  .map-area,
  .map-area iframe {
    min-height: 31rem;
  }
}

@media (max-width: 640px) {
  .tj-page-header {
    padding-top: 6.1rem;
    padding-bottom: 2.15rem;
  }

  body[data-page="contact"] .tj-page-header {
    padding: 5.9rem 0 1.2rem;
  }

  .tj-page-title {
    max-width: 10ch;
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  body[data-page="contact"] .tj-page-title {
    max-width: 12ch;
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  body[data-page="contact"] .tj-page-link {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    padding: 0.45rem 0.74rem;
  }

  .contact-reference-grid,
  .contact-reference-form {
    grid-template-columns: 1fr;
  }

  .contact-reference-card,
  .contact-form-card {
    padding: 1.3rem;
  }

  .contact-reference-icon {
    width: 4rem;
    height: 4rem;
  }

  .contact-reference-icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .map-area,
  .map-area iframe {
    min-height: 26rem;
  }

  .map-area__card {
    top: 0.9rem;
    left: 0.9rem;
    width: calc(100% - 1.8rem);
    padding: 0.9rem;
  }

  .map-area__badge {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    max-width: calc(100% - 1.8rem);
  }

  .contact-cta-band {
    grid-template-columns: 1fr;
  }

  .contact-cta-band__action {
    justify-self: start;
  }
}
