:root {
  --text: #0c1c2e;
  --text-soft: #52657c;
  --text-muted: #71859b;
  --accent: #0c588c;
  --accent-dark: #093f65;
  --accent-bright: #1979b9;
  --accent-soft: rgba(12, 88, 140, 0.1);
  --signal: #d9722f;
  --signal-soft: rgba(217, 114, 47, 0.12);
  --teal: #54c6b4;
  --white: #ffffff;
  --line: rgba(12, 44, 71, 0.12);
  --line-strong: rgba(12, 44, 71, 0.22);
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-soft: rgba(247, 250, 253, 0.97);
  --dark-gradient: linear-gradient(155deg, #071626 0%, #0e2c47 100%);
  --shadow-soft: 0 10px 26px rgba(8, 24, 42, 0.07);
  --shadow-premium: 0 18px 46px rgba(8, 24, 42, 0.1);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --section-gap: 34px;
  --ease: 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-display: "Space Grotesk", "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #eef4fa 0%, #fbfdff 44%, #eef3f9 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--accent-dark);
}

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

.tech-frame {
  position: relative;
}

.tech-frame::before,
.tech-frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.tech-frame::before {
  top: 10px;
  left: 10px;
  border-top: 1.5px solid var(--signal);
  border-left: 1.5px solid var(--signal);
}

.tech-frame::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 1.5px solid var(--signal);
  border-right: 1.5px solid var(--signal);
}

.blueprint-grid {
  background-image:
    linear-gradient(rgba(12, 88, 140, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 88, 140, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 111, 235, 0.18);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(1200px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom-color: var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(14, 35, 62, 0.07);
  backdrop-filter: blur(22px);
  transition:
    padding var(--ease),
    background var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    top var(--ease);
}

.site-header.is-scrolled {
  top: 10px;
  padding: 9px 12px;
  border-color: rgba(30, 58, 92, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(14, 35, 62, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-logo-wrap {
  width: 134px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(30, 58, 92, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(14, 35, 62, 0.06);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px 6px;
}

.brand span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.brand small {
  max-width: 270px;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.25;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #263f5d;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--accent-dark);
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.lang-switch:hover,
.lang-switch:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-dark) 100%);
  box-shadow: 0 12px 26px rgba(12, 88, 140, 0.24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, #1e8bcf 0%, #072f4d 100%);
  box-shadow: 0 16px 30px rgba(12, 88, 140, 0.28);
}

.button.signal {
  color: var(--white);
  background: linear-gradient(135deg, #e2833f 0%, #b8551c 100%);
  box-shadow: 0 12px 26px rgba(217, 114, 47, 0.26);
}

.button.signal:hover,
.button.signal:focus-visible {
  background: linear-gradient(135deg, #ea9552 0%, #a34a17 100%);
  box-shadow: 0 16px 30px rgba(217, 114, 47, 0.3);
}

.button.secondary,
.button.ghost {
  color: #123453;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(30, 58, 92, 0.18);
  box-shadow: 0 8px 18px rgba(14, 35, 62, 0.05);
}

.button.secondary:hover,
.button.ghost:hover,
.button.secondary:focus-visible,
.button.ghost:focus-visible {
  color: var(--accent-dark);
  border-color: rgba(31, 111, 235, 0.42);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(14, 35, 62, 0.08);
}

.button.whatsapp-action {
  margin-top: 8px;
  color: #123f33;
  border-color: rgba(37, 164, 95, 0.2);
  background: rgba(239, 252, 245, 0.92);
  box-shadow: 0 8px 18px rgba(14, 35, 62, 0.045);
}

.button.whatsapp-action:hover,
.button.whatsapp-action:focus-visible {
  color: #0b3328;
  border-color: rgba(37, 164, 95, 0.36);
  background: rgba(231, 249, 239, 0.98);
  box-shadow: 0 12px 24px rgba(14, 35, 62, 0.07);
}

main {
  width: min(1200px, calc(100% - 40px));
  margin: 30px auto 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.hero-editorial {
  min-height: auto;
  align-items: start;
}

.hero-copy,
.hero-panel {
  border: 1px solid rgba(30, 58, 92, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.hero-copy {
  min-width: 0;
  padding: 50px 42px 44px;
  background: linear-gradient(155deg, var(--surface-strong), var(--surface-soft));
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--signal);
  flex: 0 0 auto;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 720px;
  font-size: 3.4rem;
  line-height: 1.05;
}

.hero-text,
.hero-trust-line,
.section-heading p,
.section-note,
.product-card p,
.product-specs,
.featured-summary,
.feature-list,
.service-card p,
.timeline p,
.showcase-card p,
.contact-card p,
.contact-card li,
.form-reassurance,
.stats-panel span,
.hero-card p,
.machine-point p,
.summary-card p,
.focus-detail p,
.explorer-note {
  color: var(--text-soft);
  line-height: 1.68;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-trust-line {
  margin: 12px 0 0;
  color: #71859b;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  min-height: 84px;
  padding: 18px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(237, 244, 251, 0.78);
  color: #183453;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.38;
}

.hero-visual {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-visual img,
.machine-gallery img,
.conveyor-gallery img,
.showcase-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  min-height: 252px;
  padding: 28px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--dark-gradient);
  box-shadow: var(--shadow-soft);
}

.hero-card span {
  color: rgba(235, 244, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.73rem;
  font-weight: 900;
}

.hero-card strong {
  margin-top: 12px;
  display: block;
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-card p {
  margin: 14px 0 0;
  color: rgba(235, 244, 255, 0.76);
}

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

.hero-metrics article,
.value-strip article,
.service-card,
.showcase-card,
.contact-card,
.stats-panel article,
.timeline article,
.machine-point,
.summary-card,
.focus-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero-metrics article {
  min-height: 122px;
  padding: 20px;
}

.hero-metrics strong {
  display: block;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 11px;
  color: #294965;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.42;
}

.trust-bar {
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(14, 35, 62, 0.055);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

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

.trust-inner span {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px 14px 44px;
  border-right: 1px solid rgba(30, 58, 92, 0.09);
  color: #203c59;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-inner span:last-child {
  border-right: 0;
}

.trust-inner span::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 5px rgba(31, 111, 235, 0.09);
}

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

.value-strip article {
  padding: 24px;
}

.value-strip span {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 900;
}

.value-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.36;
}

.mini-about {
  max-width: 930px;
  margin: 20px auto 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.mini-about p {
  margin: 0;
  color: #2d4864;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.68;
  text-align: center;
}

.section {
  margin-top: var(--section-gap);
  padding: 46px;
  scroll-margin-top: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-premium);
}

.section-heading {
  max-width: 790px;
}

.section-centered .section-heading {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-centered .section-heading p {
  margin-inline: auto;
}

.section-heading h2 {
  font-size: 3rem;
  line-height: 1.05;
}

.section-heading p {
  max-width: 730px;
  margin: 16px 0 0;
  font-size: 1rem;
}

.section-note {
  margin-top: 10px;
  color: #2f6298;
  font-size: 0.94rem;
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background: var(--dark-gradient);
}

.section-dark .eyebrow,
.section-dark .section-heading h2 {
  color: #f3f8ff;
}

.section-dark .section-heading p {
  color: rgba(235, 244, 255, 0.76);
}

.section-feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
}

.section-feature-alt {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(240, 246, 252, 0.94));
}

.capability-grid {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
  box-shadow: var(--shadow-soft);
}

.capability-card .eyebrow {
  margin-bottom: 14px;
}

.capability-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.25;
}

.capability-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.product-grid,
.services-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  margin-top: var(--section-gap);
}

.product-section {
  border-color: rgba(31, 111, 235, 0.18);
}

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

.product-card {
  min-height: 100%;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f3f8fd);
  box-shadow: var(--shadow-soft);
}

.product-visual {
  min-height: 220px;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
}

.product-visual img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.product-visual-dolum {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.product-visual img.product-image-dolum {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 60%;
  background: #ffffff;
}

.product-visual-tgy {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.product-visual img.product-image-tgy {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  background: #ffffff;
}

.product-content {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-content span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.product-content h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.18;
}

.product-content p,
.product-specs {
  margin: 0;
}

.product-specs,
.feature-list {
  font-family: var(--font-mono);
  font-size: 0.86rem;
}

.product-specs {
  padding-left: 18px;
}

.product-specs li + li {
  margin-top: 7px;
}

.product-content .button {
  width: fit-content;
  margin-top: 6px;
}

.featured-machine {
  border-color: rgba(31, 111, 235, 0.2);
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 111, 235, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 253, 0.96));
}

.featured-machine-grid {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.featured-machine-visual {
  min-height: 500px;
  margin: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: var(--shadow-soft);
}

.featured-machine-visual img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
}

.featured-machine-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.machine-badge {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--accent-dark);
  background: rgba(31, 111, 235, 0.1);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
}

.featured-summary {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  color: #244561;
  font-weight: 750;
}

.feature-panel {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(14, 35, 62, 0.04);
}

.feature-panel h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 7px;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.tgy-family-grid {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.tgy-family-visual {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f5f9fd);
  box-shadow: var(--shadow-soft);
}

.tgy-family-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  background: #ffffff;
}

.tgy-family-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

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

.tgy-model-card {
  padding: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(14, 35, 62, 0.04);
}

.tgy-model-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.tgy-model-card span {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.tgy-model-card p {
  margin: 0;
  color: #294965;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.service-card {
  padding: 26px;
  background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.service-card span,
.showcase-card p:first-child {
  min-width: 38px;
  min-height: 38px;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.timeline,
.machine-copy,
.explorer-summary,
.explorer-copy,
.conveyor-copy {
  display: grid;
  gap: 16px;
}

.timeline article {
  position: relative;
  padding: 26px 26px 26px 30px;
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--teal));
}

.timeline strong,
.machine-point strong,
.summary-card strong,
.focus-detail strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.timeline p,
.machine-point p,
.summary-card p,
.focus-detail p {
  margin: 0;
}

.showcase-grid {
  grid-template-columns: 1.08fr 1fr 1fr;
  align-items: stretch;
}

.showcase-card {
  min-height: 230px;
  padding: 26px;
  display: grid;
  align-content: end;
  gap: 14px;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.showcase-card strong {
  max-width: 21ch;
  font-size: 1.18rem;
  line-height: 1.25;
}

.showcase-card-media {
  padding: 0;
  overflow: hidden;
  grid-template-rows: minmax(190px, 1fr) auto;
}

.showcase-caption {
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, rgba(251, 253, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.showcase-caption p,
.showcase-caption strong {
  color: var(--text);
}

.showcase-caption-dark {
  background: linear-gradient(180deg, rgba(12, 30, 51, 0.96), rgba(16, 40, 64, 0.98));
}

.showcase-caption-dark p,
.showcase-caption-dark strong {
  color: var(--white);
}

.showcase-caption strong {
  display: block;
  max-width: 24ch;
}

.showcase-card.dark {
  color: var(--white);
  background: var(--dark-gradient);
}

.showcase-card.dark p {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
}

.reference-strip {
  margin-top: 18px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(12, 88, 140, 0.04);
}

.reference-label {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.reference-strip ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
}

.reference-strip li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.machine-grid,
.explorer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  margin-top: var(--section-gap);
}

.machine-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 16px;
}

.machine-gallery,
.conveyor-gallery {
  margin: 0;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.machine-gallery.main {
  min-height: 370px;
}

.machine-point,
.summary-card,
.focus-detail {
  padding: 24px;
  background: linear-gradient(180deg, #fbfdff, #f3f7fb);
}

.summary-card span {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: var(--accent-soft);
  font-weight: 900;
}

.explorer-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(16, 38, 60, 0.04);
}

.conveyor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  margin-top: var(--section-gap);
}

.conveyor-gallery {
  min-height: 420px;
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
}

.conveyor-gallery img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
}

.stats-panel {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stats-panel article {
  padding: 28px;
  color: var(--white);
  background: var(--dark-gradient);
}

.stats-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.stats-panel span {
  display: block;
  color: rgba(235, 244, 255, 0.76);
}

.contact-section {
  margin-bottom: 30px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-card {
  padding: 30px;
}

.contact-card.emphasis {
  color: var(--white);
  background: var(--dark-gradient);
}

.contact-card.emphasis p,
.contact-card.emphasis li {
  color: rgba(236, 244, 255, 0.8);
}

.contact-card.emphasis .contact-authority {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.contact-card.emphasis ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.contact-meta {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.pdf-link {
  margin-top: 20px;
  width: fit-content;
}

.contact-meta div {
  display: grid;
  gap: 4px;
}

.contact-meta strong {
  color: rgba(236, 244, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.contact-meta span,
.contact-meta a {
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #f9fbfe, #f1f6fb);
}

.form-reassurance {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-radius: var(--radius-md);
  background: rgba(31, 111, 235, 0.055);
  color: #27496a;
  font-size: 0.94rem;
  font-weight: 750;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #1d3855;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(55, 99, 145, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 15px;
  color: var(--text);
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.inquiry-note {
  margin: -2px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(31, 111, 235, 0.14);
  border-color: rgba(31, 111, 235, 0.44);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(14, 35, 62, 0.055);
}

.hero-points li,
.hero-metrics article,
.value-strip article,
.product-card,
.feature-panel,
.service-card,
.showcase-card,
.machine-gallery,
.conveyor-gallery,
.machine-point,
.summary-card,
.focus-detail,
.contact-card,
.stats-panel article {
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    background var(--ease);
}

.showcase-card-media img,
.product-visual img,
.featured-machine-visual img,
.machine-gallery img,
.conveyor-gallery img,
.hero-visual img {
  transition: transform 420ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (hover: hover) {
  .hero-points li:hover,
  .hero-metrics article:hover,
  .value-strip article:hover,
  .product-card:hover,
  .feature-panel:hover,
  .service-card:hover,
  .machine-point:hover,
  .summary-card:hover,
  .focus-detail:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 14px 30px rgba(14, 35, 62, 0.08);
  }

  .showcase-card-media:hover img,
  .product-card:hover .product-visual img,
  .featured-machine-visual:hover img,
  .machine-gallery:hover img {
    transform: scale(1.025);
  }

  .showcase-card:hover,
  .contact-card:hover,
  .stats-panel article:hover {
    border-color: var(--line-strong);
  }
}

.site-footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 30px;
  padding: 18px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: #4c6884;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .hero h1 {
    font-size: 3.32rem;
  }

  .section-heading h2 {
    font-size: 2.72rem;
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 6px;
  }

  .hero,
  .featured-machine-grid,
  .tgy-family-grid,
  .split-section,
  .contact-grid,
  .machine-grid,
  .explorer-grid,
  .conveyor-grid {
    grid-template-columns: 1fr;
  }

  .hero-editorial {
    min-height: auto;
  }

  .hero h1 {
    max-width: 780px;
    font-size: 3.35rem;
  }

  .product-grid,
  .services-grid,
  .showcase-grid,
  .trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-inner span:nth-child(2) {
    border-right: 0;
  }

  .trust-inner span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(30, 58, 92, 0.09);
  }

  .showcase-grid article:first-child,
  .contact-card.emphasis {
    grid-column: 1 / -1;
  }

  .hero-points,
  .hero-metrics,
  .value-strip,
  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-about {
    max-width: 100%;
  }

  .conveyor-gallery {
    min-height: 320px;
  }

  .featured-machine-visual {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 150px;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    top: 10px;
    gap: 14px;
    padding: 10px;
  }

  .brand-logo-wrap {
    width: 122px;
    height: 50px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    gap: 4px 14px;
    font-size: 0.88rem;
  }

  .button {
    min-height: 44px;
    padding: 0.78rem 1rem;
    font-size: 0.9rem;
  }

  main {
    margin-top: 20px;
  }

  .hero-copy,
  .section,
  .mini-about {
    padding: 28px 22px;
  }

  .section {
    scroll-margin-top: 150px;
  }

  .hero-panel {
    padding: 12px;
  }

  .hero h1 {
    font-size: 2.54rem;
    line-height: 1.06;
  }

  .hero-text,
  .section-heading p {
    font-size: 0.98rem;
  }

  .section-heading h2 {
    font-size: 2.18rem;
  }

  .hero-actions,
  .hero-points,
  .hero-metrics,
  .value-strip,
  .product-grid,
  .services-grid,
  .showcase-grid,
  .stats-panel,
  .machine-gallery-grid,
  .trust-inner,
  .tgy-model-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .feature-actions .button,
  .inquiry-form .button {
    width: 100%;
  }

  .trust-inner span,
  .trust-inner span:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(30, 58, 92, 0.09);
  }

  .trust-inner span:last-child {
    border-bottom: 0;
  }

  .machine-gallery.main,
  .machine-gallery,
  .featured-machine-visual img,
  .hero-visual {
    min-height: 250px;
  }

  .featured-machine-visual img {
    height: 280px;
  }

  .conveyor-gallery {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 170px;
  }

  .site-header,
  main,
  .site-footer {
    width: calc(100% - 20px);
  }

  .site-header {
    margin-top: 10px;
  }

  .brand {
    gap: 10px;
    flex: 1 1 100%;
  }

  .brand-logo-wrap {
    width: 112px;
    height: 46px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .site-nav {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    white-space: normal;
  }

  .site-header > .button {
    order: 2;
    width: 100%;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .hero-copy,
  .section,
  .mini-about,
  .contact-card,
  .stats-panel article {
    padding: 22px 18px;
  }

  .section {
    scroll-margin-top: 170px;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 2rem;
    line-height: 1.08;
  }

  .section-heading h2 {
    font-size: 1.86rem;
  }

  .hero-text,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .hero-card {
    min-height: 220px;
    padding: 22px;
  }

  .featured-machine-visual {
    padding: 14px;
  }

  .featured-machine-visual img {
    height: 230px;
    min-height: auto;
  }

  .hero-card strong {
    font-size: 1.42rem;
  }

  .hero-points li {
    min-height: auto;
  }
}
