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

body.tkmc-production-page .main-page-wrapper {
  padding-top: 0;
}

body.tkmc-production-page .site-content {
  padding: 0 !important;
}

.tkmc,
.tkmc * {
  box-sizing: border-box;
}

.tkmc {
  --tkmc-ink: #101a24;
  --tkmc-navy: #082f4b;
  --tkmc-navy-deep: #041723;
  --tkmc-blue: #0b6f8f;
  --tkmc-cyan: #22b7d8;
  --tkmc-paper: #f6f4ef;
  --tkmc-paper-2: #edf2f4;
  --tkmc-white: #fff;
  --tkmc-muted: #69747e;
  --tkmc-line: #d8e0e4;
  --tkmc-gold: #d6c09a;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  color: var(--tkmc-ink);
  background: var(--tkmc-paper);
  font-family: "Work Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.tkmc svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.tkmc h1,
.tkmc h2,
.tkmc h3 {
  color: inherit;
  font-family: "Urbanist", ui-sans-serif, sans-serif;
}

.tkmc-hero {
  position: relative;
  min-height: 790px;
  color: #fff;
  background-color: #071827;
  background-image: var(--tkmc-hero-image);
  background-position: center;
  background-size: cover;
}

.tkmc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 22, 0.78) 0%, rgba(2, 13, 22, 0.4) 58%, rgba(2, 13, 22, 0.16) 100%),
    linear-gradient(180deg, rgba(2, 13, 22, 0.08), rgba(2, 13, 22, 0.3));
}

.tkmc-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 48px));
  min-height: 790px;
  padding: 76px 0;
  margin: 0 auto;
}

.tkmc-hero__card {
  position: relative;
  width: min(720px, 68vw);
  padding: 50px 54px 44px;
  border: 1px solid rgba(93, 211, 240, 0.66);
  background: linear-gradient(135deg, rgba(4, 36, 54, 0.93), rgba(4, 26, 40, 0.78));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 40px) 100%, 0 100%);
}

.tkmc-hero__card::before {
  position: absolute;
  inset: 1px;
  border-left: 4px solid rgba(34, 183, 216, 0.82);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 42%);
  content: "";
  pointer-events: none;
}

.tkmc-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--tkmc-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tkmc-eyebrow > span {
  width: 46px;
  height: 3px;
  background: currentColor;
}

.tkmc-eyebrow--light {
  color: var(--tkmc-gold);
}

.tkmc-hero h1 {
  max-width: 650px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(48px, 4.7vw, 70px);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.01;
}

.tkmc-hero h1 em {
  color: #8fd8ec;
  font-style: normal;
}

.tkmc-accent-line {
  width: 118px;
  height: 5px;
  margin: 24px 0;
  background: var(--tkmc-cyan);
}

.tkmc-hero__lede {
  max-width: 580px;
  margin-bottom: 0;
  color: #eff7fa;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.65;
}

.tkmc-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.tkmc-button {
  display: inline-flex;
  min-width: 220px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  color: #fff !important;
  border: 1px solid var(--tkmc-blue);
  border-radius: 0;
  background: var(--tkmc-blue);
  box-shadow: 0 14px 32px rgba(3, 25, 38, 0.23);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.tkmc-button:hover {
  color: #fff !important;
  border-color: var(--tkmc-cyan);
  background: #075975;
  transform: translateY(-2px);
}

.tkmc-button svg,
.tkmc-text-link svg,
.tkmc-capability-card a svg {
  width: 18px;
  height: 18px;
}

.tkmc-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
}

.tkmc-hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tkmc-hero__proof div {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 4px;
  padding-right: 15px;
}

.tkmc-hero__proof div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.tkmc-hero__proof strong {
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 850;
}

.tkmc-hero__proof span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tkmc-hero__note {
  position: absolute;
  right: 0;
  bottom: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 216, 236, 0.45);
  background: rgba(4, 36, 54, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.tkmc-hero__note > svg {
  width: 34px;
  height: 34px;
  color: var(--tkmc-cyan);
}

.tkmc-hero__note div {
  display: grid;
  gap: 3px;
}

.tkmc-hero__note strong {
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
}

.tkmc-hero__note span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.tkmc-promise {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 5vw, 90px);
  border-bottom: 1px solid var(--tkmc-line);
  background: #fff;
}

.tkmc-promise article {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 17px;
  padding: 22px clamp(14px, 2vw, 32px);
}

.tkmc-promise article + article {
  border-left: 1px solid var(--tkmc-line);
}

.tkmc-promise article > svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--tkmc-blue);
}

.tkmc-promise article div {
  display: grid;
  gap: 5px;
}

.tkmc-promise strong {
  font-size: 13px;
}

.tkmc-promise span {
  color: var(--tkmc-muted);
  font-size: 10px;
  line-height: 1.5;
}

.tkmc-section {
  padding: 106px clamp(24px, 6vw, 100px);
}

.tkmc-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.tkmc-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.tkmc-heading--center .tkmc-eyebrow {
  justify-content: center;
}

.tkmc-heading h2,
.tkmc-factory__copy h2,
.tkmc-quality h2,
.tkmc-inquiry h2,
.tkmc-final h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.tkmc-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--tkmc-muted);
  font-size: 14px;
  line-height: 1.75;
}

.tkmc-capabilities {
  background:
    linear-gradient(rgba(7, 18, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 18, 27, 0.025) 1px, transparent 1px),
    var(--tkmc-paper);
  background-size: 42px 42px;
}

.tkmc-capability-grid {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--tkmc-line);
  border-left: 1px solid var(--tkmc-line);
}

.tkmc-capability-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--tkmc-line);
  border-bottom: 1px solid var(--tkmc-line);
  background: rgba(255, 255, 255, 0.8);
  transition: box-shadow 170ms ease, background 170ms ease;
}

.tkmc-capability-card:hover {
  z-index: 2;
  background: #fff;
  box-shadow: 0 22px 58px rgba(11, 28, 41, 0.11);
}

.tkmc-capability-card > svg {
  width: 48px;
  height: 48px;
  margin: 14px 0 26px;
  color: var(--tkmc-blue);
}

.tkmc-card-index {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #aeb7bd;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
}

.tkmc-capability-card small {
  color: var(--tkmc-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tkmc-capability-card h3 {
  margin: 8px 0 12px;
  font-size: 25px;
  font-weight: 800;
}

.tkmc-capability-card p {
  min-height: 66px;
  margin-bottom: 0;
  color: var(--tkmc-muted);
  font-size: 12px;
  line-height: 1.75;
}

.tkmc-capability-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--tkmc-ink);
  font-size: 11px;
  font-weight: 800;
}

.tkmc-capability-card a svg {
  color: var(--tkmc-blue);
}

.tkmc-factory {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--tkmc-navy);
}

.tkmc-factory__image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.tkmc-factory__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tkmc-factory__image > span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(4, 20, 31, 0.8);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tkmc-factory__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(54px, 7vw, 104px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(34, 183, 216, 0.14), transparent 28%),
    var(--tkmc-navy);
}

.tkmc-factory__copy h2 {
  color: #fff;
}

.tkmc-factory__copy > p:not(.tkmc-eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.8;
}

.tkmc-factory__copy ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.tkmc-factory__copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.tkmc-factory__copy li svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  color: #fff;
  border-radius: 50%;
  background: var(--tkmc-blue);
}

.tkmc-button--outline {
  border-color: rgba(255, 255, 255, 0.44);
  background: transparent;
  box-shadow: none;
}

.tkmc-process {
  background: #fff;
}

.tkmc-process-grid {
  display: grid;
  max-width: 1400px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
}

.tkmc-process-card {
  position: relative;
  min-height: 292px;
  padding: 30px 27px 25px;
  border-top: 1px solid var(--tkmc-line);
  border-bottom: 1px solid var(--tkmc-line);
}

.tkmc-process-card + .tkmc-process-card {
  border-left: 1px solid var(--tkmc-line);
}

.tkmc-process-card__number {
  position: absolute;
  top: -15px;
  left: 24px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--tkmc-blue);
  font-size: 9px;
  font-weight: 800;
}

.tkmc-process-card__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 29px 0;
  color: #fff;
  background: linear-gradient(145deg, #06344f, #0b7898);
  box-shadow: 0 14px 26px rgba(7, 78, 111, 0.2);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.tkmc-process-card__icon svg {
  width: 28px;
  height: 28px;
}

.tkmc-process-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.tkmc-process-card p {
  margin-bottom: 0;
  color: var(--tkmc-muted);
  font-size: 11px;
  line-height: 1.7;
}

.tkmc-quality {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  background: var(--tkmc-paper-2);
}

.tkmc-quality__panel,
.tkmc-quality__route {
  padding: clamp(56px, 6vw, 84px);
}

.tkmc-quality__panel {
  border: 1px solid var(--tkmc-line);
  background: #fff;
}

.tkmc-quality__panel h2 {
  max-width: 660px;
}

.tkmc-support-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 44px;
}

.tkmc-support-columns h3 {
  margin-bottom: 20px;
  color: var(--tkmc-blue);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tkmc-support-columns p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 12px 0;
  color: #39464f;
  font-size: 11px;
  line-height: 1.5;
}

.tkmc-support-columns svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--tkmc-blue);
}

.tkmc-quality__route {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--tkmc-navy);
}

.tkmc-quality__route > span {
  margin-bottom: 20px;
  color: #8fd8ec;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tkmc-quality__route h2 {
  color: #fff;
}

.tkmc-quality__route > p {
  max-width: 600px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  line-height: 1.75;
}

.tkmc-quality__route > div {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 26px;
}

.tkmc-quality__route b {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
}

.tkmc-quality__route b svg {
  width: 15px;
  height: 15px;
  color: #8fd8ec;
}

.tkmc-inquiry {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(42px, 7vw, 104px);
  padding: 104px clamp(24px, 7vw, 120px);
  background: var(--tkmc-paper);
}

.tkmc-inquiry__intro > p:not(.tkmc-eyebrow) {
  margin: 24px 0 0;
  color: var(--tkmc-muted);
  font-size: 14px;
  line-height: 1.8;
}

.tkmc-inquiry__channels {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.tkmc-inquiry__channels a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--tkmc-line);
  background: rgba(255, 255, 255, 0.76);
}

.tkmc-inquiry__channels a > svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  color: #fff;
  background: var(--tkmc-blue);
}

.tkmc-inquiry__channels span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.tkmc-inquiry__channels small {
  color: var(--tkmc-muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.tkmc-inquiry__channels strong {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.tkmc-inquiry__form {
  padding: clamp(28px, 4vw, 48px);
  border-top: 4px solid var(--tkmc-cyan);
  background: #fff;
  box-shadow: 0 26px 70px rgba(9, 35, 52, 0.12);
}

.tkmc-inquiry__unavailable {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--tkmc-line);
}

.tkmc-inquiry__unavailable a {
  color: var(--tkmc-blue);
  font-weight: 800;
}

.tkmc-faq {
  background: #fff;
}

.tkmc-faq-grid {
  display: grid;
  max-width: 1200px;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 0 auto;
}

.tkmc-faq-item {
  border-bottom: 1px solid var(--tkmc-line);
}

.tkmc-faq-item h3 {
  margin: 0;
}

.tkmc-faq-item button {
  display: flex;
  width: 100%;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
  color: var(--tkmc-ink);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.tkmc-faq-item button b {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--tkmc-navy);
  font-size: 18px;
  font-weight: 400;
}

.tkmc-faq-item.is-open button b {
  background: var(--tkmc-blue);
}

.tkmc-faq-item__answer p {
  max-width: 540px;
  padding: 0 50px 22px 4px;
  margin: 0;
  color: var(--tkmc-muted);
  font-size: 11px;
  line-height: 1.75;
}

.tkmc-final {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 68px clamp(24px, 8vw, 140px);
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(34, 183, 216, 0.18), transparent 24%),
    var(--tkmc-navy);
}

.tkmc-final h2 {
  max-width: 780px;
  color: #fff;
}

.tkmc :is(a, button, input, textarea):focus-visible {
  outline: 3px solid rgba(34, 183, 216, 0.58);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .tkmc-hero__card {
    width: min(720px, 76vw);
  }

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

  .tkmc-promise article:nth-child(3) {
    border-left: 0;
  }

  .tkmc-promise article:nth-child(n + 3) {
    border-top: 1px solid var(--tkmc-line);
  }

  .tkmc-factory,
  .tkmc-quality,
  .tkmc-inquiry {
    grid-template-columns: 1fr;
  }

  .tkmc-process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .tkmc-process-card:nth-child(4) {
    border-left: 0;
  }

  .tkmc-inquiry {
    gap: 44px;
  }
}

@media (max-width: 720px) {
  body.tkmc-production-page .whb-header .whb-header-bottom,
  body.tkmc-production-page .whb-header .whb-header-bottom > .container,
  body.tkmc-production-page .whb-header .wd-header-secondary-nav {
    height: auto;
    min-height: 44px;
  }

  body.tkmc-production-page .whb-header .whb-header-bottom {
    overflow: visible;
  }

  body.tkmc-production-page .whb-header .wd-header-secondary-nav {
    overflow: visible;
  }

  body.tkmc-production-page .whb-header .wd-nav-secondary.wd-style-separated {
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 0;
  }

  body.tkmc-production-page .whb-header .wd-nav-secondary.wd-style-separated > li > a {
    min-height: 34px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .tkmc-hero,
  .tkmc-hero__inner {
    min-height: 850px;
  }

  .tkmc-hero {
    background-position: 65% center;
  }

  .tkmc-hero__inner {
    width: calc(100% - 32px);
    padding: 42px 0;
  }

  .tkmc-hero__card {
    width: 100%;
    padding: 34px 24px 38px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 26px) 100%, 0 100%);
  }

  .tkmc-hero h1 {
    font-size: clamp(39px, 11.5vw, 53px);
  }

  .tkmc-hero__lede {
    font-size: 14px;
  }

  .tkmc-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .tkmc-actions .tkmc-button {
    width: 100%;
  }

  .tkmc-hero__proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
  }

  .tkmc-hero__proof div {
    min-height: 60px;
    padding: 9px 0;
  }

  .tkmc-hero__proof div + div {
    padding-left: 13px;
  }

  .tkmc-hero__proof div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .tkmc-hero__proof div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tkmc-hero__note {
    display: none;
  }

  .tkmc-promise,
  .tkmc-capability-grid,
  .tkmc-process-grid,
  .tkmc-support-columns,
  .tkmc-faq-grid {
    grid-template-columns: 1fr;
  }

  .tkmc-promise {
    padding: 0 20px;
  }

  .tkmc-promise article,
  .tkmc-promise article + article {
    min-height: 108px;
    padding: 18px 8px;
    border-top: 1px solid var(--tkmc-line);
    border-left: 0;
  }

  .tkmc-promise article:first-child {
    border-top: 0;
  }

  .tkmc-section {
    padding: 78px 20px;
  }

  .tkmc-heading {
    margin-bottom: 38px;
  }

  .tkmc-heading h2,
  .tkmc-factory__copy h2,
  .tkmc-quality h2,
  .tkmc-inquiry h2,
  .tkmc-final h2 {
    font-size: 40px;
  }

  .tkmc-capability-card {
    min-height: auto;
    padding: 29px 25px;
  }

  .tkmc-capability-card p {
    min-height: 0;
  }

  .tkmc-factory__image {
    min-height: 420px;
  }

  .tkmc-factory__copy,
  .tkmc-quality__panel,
  .tkmc-quality__route,
  .tkmc-inquiry {
    padding: 64px 24px;
  }

  .tkmc-process-grid {
    row-gap: 32px;
  }

  .tkmc-process-card,
  .tkmc-process-card + .tkmc-process-card {
    min-height: 245px;
    border: 1px solid var(--tkmc-line);
  }

  .tkmc-quality__route > div {
    grid-template-columns: 1fr;
  }

  .tkmc-inquiry__form {
    padding: 24px 18px;
  }

  .tkmc-faq-grid {
    gap: 0;
  }

  .tkmc-faq-item button {
    min-height: 74px;
  }

  .tkmc-final {
    align-items: flex-start;
    flex-direction: column;
    padding: 66px 24px;
  }

  .tkmc-final .tkmc-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tkmc *,
  .tkmc *::before,
  .tkmc *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* v1.1 quick-intake hero: no product imagery, one canonical CRM form. */
.tkmc-hero {
  min-height: 720px;
  background-color: #061827;
  background-image:
    linear-gradient(rgba(89, 183, 212, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 183, 212, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(34, 183, 216, 0.14), transparent 30%),
    linear-gradient(135deg, #061622 0%, #08273b 54%, #071b2d 100%);
  background-position: center;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.tkmc-hero__overlay {
  background:
    radial-gradient(circle at 15% 75%, rgba(11, 111, 143, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(2, 13, 22, 0.18), transparent 58%);
}

.tkmc-hero__inner {
  display: grid;
  width: min(1340px, calc(100% - 64px));
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 540px);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding: 46px 0 52px;
}

.tkmc-hero__card {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.tkmc-hero__card::before {
  display: none;
}

.tkmc-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.98;
}

.tkmc-hero__lede {
  max-width: 650px;
  color: rgba(241, 248, 251, 0.82);
}

.tkmc-hero__proof {
  max-width: 670px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.tkmc-hero__proof div {
  min-height: 68px;
}

.tkmc-hero__proof strong {
  font-size: 13px;
}

.tkmc-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tkmc-hero__tags span {
  padding: 7px 10px;
  color: rgba(238, 249, 252, 0.76);
  border: 1px solid rgba(143, 216, 236, 0.28);
  border-radius: 999px;
  background: rgba(5, 43, 63, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.tkmc-hero__form-card {
  scroll-margin-top: 24px;
  padding: 27px 28px 22px;
  color: var(--tkmc-ink);
  border: 1px solid rgba(211, 226, 234, 0.9);
  border-radius: 12px;
  background: rgba(249, 252, 253, 0.98);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.tkmc-hero__form-heading {
  margin-bottom: 17px;
}

.tkmc-hero__form-heading .tkmc-eyebrow {
  margin-bottom: 7px;
}

.tkmc-hero__form-heading h2 {
  margin-bottom: 6px;
  color: var(--tkmc-navy-deep);
  font-size: 30px;
  font-weight: 850;
  line-height: 1.05;
}

.tkmc-hero__form-heading > p:last-child {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--tkmc-muted);
  font-size: 11px;
  line-height: 1.55;
}

.tkmc-hero__privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 9px 0 0;
  color: #5d6c77;
  font-size: 10px;
  font-weight: 650;
}

.tkmc-hero__privacy svg {
  width: 15px;
  height: 15px;
  color: var(--tkmc-blue);
}

.tkmc-inquiry--bridge {
  align-items: center;
}

.tkmc-inquiry__return {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 48px;
  border: 1px solid var(--tkmc-line);
  background: rgba(255, 255, 255, 0.76);
}

.tkmc-inquiry__return p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.tkmc-inquiry__return strong {
  color: var(--tkmc-navy);
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
}

.tkmc-inquiry__return span {
  color: var(--tkmc-muted);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .tkmc-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
    gap: 34px;
  }

  .tkmc-hero h1 {
    font-size: clamp(44px, 5vw, 60px);
  }
}

@media (max-width: 860px) {
  .tkmc-hero,
  .tkmc-hero__inner {
    min-height: 0;
  }

  .tkmc-hero__inner {
    width: min(680px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 36px;
  }

  .tkmc-hero h1 {
    font-size: clamp(40px, 8vw, 58px);
  }

  .tkmc-hero__form-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .tkmc-hero__inner {
    gap: 22px;
    padding: 28px 0 24px;
  }

  .tkmc-hero h1 {
    font-size: clamp(36px, 10.3vw, 46px);
  }

  .tkmc-accent-line {
    height: 4px;
    margin: 16px 0;
  }

  .tkmc-hero__lede {
    font-size: 13px;
    line-height: 1.5;
  }

  .tkmc-hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .tkmc-hero__proof div,
  .tkmc-hero__proof div:nth-child(3) {
    min-height: 56px;
    padding: 7px 7px 7px 0;
    border-top: 0;
  }

  .tkmc-hero__proof div + div {
    padding-left: 8px;
  }

  .tkmc-hero__proof strong {
    font-size: 11px;
    line-height: 1.15;
  }

  .tkmc-hero__proof span {
    font-size: 7px;
    letter-spacing: 0.035em;
  }

  .tkmc-hero__tags {
    display: none;
  }

  .tkmc-hero__form-card {
    padding: 22px 18px 17px;
    border-radius: 10px;
  }

  .tkmc-hero__form-heading {
    margin-bottom: 13px;
  }

  .tkmc-hero__form-heading h2 {
    font-size: 27px;
  }

  .tkmc-inquiry__return {
    padding: 28px 22px;
  }
}
