:root {
  --red: #e50914;
  --red-dark: #bd0711;
  --ink: #11161d;
  --charcoal: #0a0f15;
  --muted: #65707d;
  --line: #e4e7ec;
  --soft: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 22, 29, 0.12);
  --radius: 0;
  --container: 1260px;
  --font-body: "Plus Jakarta Sans", Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", Rajdhani, "Exo 2", Barlow, Bahnschrift, "Segoe UI", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

@keyframes heroMediaIn {
  from { transform: scale(1.045); filter: saturate(0.85) contrast(0.95); }
  to { transform: scale(1); filter: saturate(1) contrast(1); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes iconStrokePulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(229, 9, 20, 0));
    stroke-width: 1.9;
  }
  50% {
    filter: drop-shadow(0 3px 5px rgba(17, 22, 29, 0.18));
    stroke-width: 2.2;
  }
}

@keyframes logoRise {
  from {
    opacity: 0;
    transform: translate(-50%, 12%) scale(0.82) rotate(-8deg);
  }
  to {
    opacity: 0.12;
    transform: translate(-50%, -4%) scale(1) rotate(-8deg);
  }
}

@keyframes calloutFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.container { width: min(var(--container), calc(100% - 72px)); margin-inline: auto; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.line-icon,
.card-icon,
.service-icon,
.model-spec-icon {
  flex: 0 0 auto;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 max(36px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 22, 29, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(17, 22, 29, 0.11);
  box-shadow: 0 12px 34px rgba(17, 22, 29, 0.1);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { display: block; width: 156px; height: auto; }

.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 850; }
.primary-nav,
.header-cta,
.btn,
.small-link {
  font-family: var(--font-body);
  font-stretch: normal;
}
.primary-nav > a,
.nav-mega-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 25px 0;
  color: rgba(17, 22, 29, 0.88);
}
.nav-mega-link { font: inherit; }
.nav-mega-toggle {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 28px;
  margin-left: -2px;
  border: 0;
  background: transparent;
  color: rgba(17, 22, 29, 0.82);
  cursor: pointer;
  font: inherit;
}
.primary-nav > a::after,
.nav-mega-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 15px; height: 2px; transform: scaleX(0);
  background: var(--red); transition: transform 180ms ease;
}
.primary-nav > a:hover::after,
.primary-nav > a.is-active::after,
.nav-mega:hover .nav-mega-link::after,
.nav-mega.is-open .nav-mega-link::after,
.nav-mega-link.is-active::after { transform: scaleX(1); }
.nav-mega-trigger-icon {
  position: relative;
  width: 9px;
  height: 9px;
  color: transparent;
  transition: transform 180ms ease;
}
.nav-mega-trigger-icon::before {
  content: "";
  position: absolute;
  inset: 1px 0 0 0;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  color: rgba(17, 22, 29, 0.82);
  transform: rotate(45deg);
}
.nav-mega:hover .nav-mega-trigger-icon,
.nav-mega.is-open .nav-mega-trigger-icon {
  transform: rotate(180deg);
}
.nav-mega {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(17, 22, 29, 0.1);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu,
.nav-mega.is-open .mega-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.mega-menu-inner {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
  padding: 26px 0 30px;
}
.mega-menu-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.mega-menu-head p {
  margin: 0 0 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.mega-menu-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}
.mega-menu-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.mega-menu-all:hover {
  border-color: rgba(17, 22, 29, 0.22);
  transform: translateY(-1px);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #fff;
}
.mega-card {
  position: relative;
  display: grid;
  min-height: 245px;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  color: var(--ink);
  isolation: isolate;
  transition: background 180ms ease, transform 180ms ease;
}
.mega-card:last-child { border-right: 0; }
.mega-card:hover {
  background: #f8f9fb;
  transform: translateY(-2px);
}
.mega-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.mega-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}
.mega-card span:not(.mega-kicker):not(.mega-arrow) {
  display: block;
  width: min(230px, 100%);
  margin-top: 8px;
  color: #5f6b79;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.mega-card img {
  align-self: end;
  justify-self: center;
  width: min(92%, 260px);
  height: 118px;
  margin-top: 14px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(17, 22, 29, 0.12));
  transition: transform 220ms ease;
}
.mega-card:hover img { transform: translateX(5px) scale(1.02); }
.mega-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--red);
  font-size: 24px;
  font-weight: 800;
  transition: transform 180ms ease;
}
.mega-card:hover .mega-arrow { transform: translateX(4px); }

.header-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  min-height: 46px; padding: 0 28px; border-radius: 4px; font-weight: 900; font-size: 14px;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.header-cta, .btn-primary { color: var(--white); background: var(--red); }
.header-cta:hover, .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(229, 9, 20, 0.24); }
a[href^="tel:"]::before {
  content: "";
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.86.31 1.7.57 2.5a2 2 0 0 1-.45 2.11L7.9 9.62a16 16 0 0 0 6.48 6.48l1.29-1.28a2 2 0 0 1 2.11-.45c.8.26 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.86.31 1.7.57 2.5a2 2 0 0 1-.45 2.11L7.9 9.62a16 16 0 0 0 6.48 6.48l1.29-1.28a2 2 0 0 1 2.11-.45c.8.26 1.64.45 2.5.57A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.header-cta[href^="tel:"]::before,
.btn[href^="tel:"]::before {
  margin-right: 0;
}
.contact-info-card[href^="tel:"]::before {
  content: none;
  display: none;
}
.btn-ghost { color: var(--white); border: 1px solid rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.03); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.hero .btn-ghost { color: var(--ink); border-color: rgba(17, 22, 29, 0.55); background: rgba(255, 255, 255, 0.42); }
.hero .btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.75); }
.btn-light { background: var(--white); color: var(--ink); min-width: 210px; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(17, 22, 29, 0.18); }
.header-cta span,
.btn span,
.small-link span,
.sector-content a {
  transition: transform 220ms ease;
}
.header-cta:hover span,
.btn:hover span,
.small-link:hover span,
.sector-card:hover .sector-content a {
  transform: translateX(5px);
}

.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; margin-left: auto; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; min-height: 520px; padding-top: 70px; overflow: hidden; color: var(--ink); background: var(--white); }
.hero-image {
  position: absolute; inset: calc(var(--hero-offset, 0px) * -1) 0 0;
  width: 100%; height: calc(100% + 20px); object-fit: cover; object-position: center center;
  animation: heroMediaIn 900ms ease both;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0) 74%);
}
.hero-content { position: relative; z-index: 1; padding: 96px 0 86px; max-width: var(--container); }
.hero h1 { width: min(760px, 100%); margin: 0 0 22px; font-size: clamp(34px, 3.55vw, 52px); line-height: 1.08; letter-spacing: 0; }
.hero h1,
.section-title,
.selection-content h2,
.about-panel h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-stretch: normal;
  font-weight: 800;
}
.hero p { width: min(520px, 100%); margin: 0 0 34px; font-size: 20px; color: #5d6875; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; }
.hero h1,
.hero p,
.hero-actions {
  animation: heroCopyIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero p { animation-delay: 110ms; }
.hero-actions { animation-delay: 220ms; }

.feature-strip {
  position: relative; z-index: 4; margin-top: -28px; display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(17, 22, 29, 0.08);
}
.feature-strip article { display: flex; align-items: center; gap: 20px; min-height: 84px; padding: 16px 28px; transition: background 220ms ease, transform 220ms ease; }
.feature-strip article:hover { background: #fbfbfc; transform: translateY(-2px); }
.feature-strip article + article { border-left: 1px solid var(--line); }
.line-icon { width: 36px; height: 36px; color: var(--red); transition: transform 220ms ease; }
.feature-strip article:hover .line-icon,
.service-grid article:hover .service-icon,
.model-card:hover .model-spec-icon { transform: translateY(-2px) scale(1.04); animation: iconStrokePulse 700ms ease; }
.feature-strip h2 { margin: 0 0 4px; font-family: var(--font-body); font-size: 16px; font-weight: 800; }
.feature-strip p { margin: 0; color: var(--muted); font-size: 13px; }

.page-hero {
  position: relative;
  min-height: 330px;
  padding-top: 70px;
  overflow: hidden;
  background: #f5f5f5;
}
.page-hero-image {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
  object-fit: cover;
  object-position: center center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  background: linear-gradient(90deg, rgba(245,245,245,0.96) 0%, rgba(245,245,245,0.82) 34%, rgba(245,245,245,0.12) 68%, rgba(245,245,245,0) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 0 58px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a:hover { color: var(--red); }
.page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
}
.page-hero p {
  width: min(700px, 100%);
  margin: 0;
  color: #3f4955;
  font-size: 17px;
  line-height: 1.75;
}
.products-hero .page-hero-image { object-position: center center; }
.products-hero::after {
  background: linear-gradient(90deg, rgba(245,245,245,0.98) 0%, rgba(245,245,245,0.9) 30%, rgba(245,245,245,0.22) 66%, rgba(245,245,245,0) 100%);
}
.page-brand-logo {
  width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.brand-select {
  padding-top: 56px;
  padding-bottom: 44px;
}
.brand-select-copy {
  margin: -12px auto 28px;
  text-align: center;
  color: var(--muted);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: min(930px, 100%);
  margin-inline: auto;
}
.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 22, 29, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  border-color: rgba(17, 22, 29, 0.14);
  box-shadow: 0 20px 44px rgba(17, 22, 29, 0.11);
}
.brand-card-media {
  position: relative;
  min-height: 168px;
  padding: 30px 28px 0;
}
.brand-name-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.jcb-wordmark {
  min-width: 150px;
  padding: 8px 12px 10px;
  border: 8px solid #f2ad18;
  background: #191919;
  color: #fff;
  font-size: 38px;
  letter-spacing: 0.02em;
}
.manitou-wordmark {
  min-width: 190px;
  color: #e30613;
  font-size: 34px;
  font-style: italic;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand-card-machine {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 48%;
  max-height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(17, 22, 29, 0.12));
  transition: transform 320ms ease;
}
.brand-card-machine.jcb-machine {
  width: 55%;
  max-height: 154px;
  right: 10px;
}
.brand-card-machine.manitou-machine {
  width: 52%;
  max-height: 158px;
  right: 10px;
}
.brand-card:hover .brand-card-machine {
  transform: translateX(-4px) scale(1.03);
}
.brand-card-body {
  position: relative;
  padding: 8px 42px 28px 28px;
}
.brand-card-body h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.brand-card-body p {
  width: min(300px, 100%);
  margin: 0;
  color: #3f4955;
  line-height: 1.55;
}
.brand-card-body a,
.brand-card-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
  transition: transform 220ms ease;
}
.brand-card:hover .brand-card-body a,
.brand-card:hover .brand-card-arrow {
  transform: translateX(5px);
}

.product-listing { padding-top: 52px; }
.product-listing-standalone {
  margin-top: 70px;
  padding-top: 42px;
}
.product-head {
  align-items: center;
  margin-bottom: 22px;
}
.product-count {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.product-toolbar {
  position: relative;
  z-index: 20;
  margin-bottom: 24px;
}
.product-filter-toggle,
.product-filter-modal-head,
.product-filter-modal-footer {
  display: none;
}
.product-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1550;
  background: rgba(17, 22, 29, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.product-filter-backdrop[hidden] { display: none; }
.product-filter-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(17, 22, 29, 0.06);
}
.category-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: color 200ms ease, background 200ms ease;
}
.category-tab:last-child { border-right: 0; }
.category-tab::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--red);
  transition: transform 200ms ease;
}
.category-tab svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category-tab:hover,
.category-tab.is-active {
  color: var(--red);
  background: #fff;
}
.category-tab.is-active::after { transform: scaleX(1); }
.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.filter-field {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.filter-field:hover,
.filter-field.is-open {
  border-color: rgba(17, 22, 29, 0.18);
  box-shadow: 0 12px 26px rgba(17, 22, 29, 0.07);
}
.filter-field.is-open {
  z-index: 40;
}
.filter-field span {
  color: #29313a;
  font-size: 13px;
  font-weight: 800;
}
.filter-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.filter-field.is-enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.custom-select {
  position: relative;
  min-width: 0;
}
.custom-select-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}
.custom-select-value {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select-arrow {
  position: relative;
  width: 18px;
  height: 18px;
}
.custom-select-arrow::before,
.custom-select-arrow::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}
.custom-select-arrow::before {
  left: 2px;
  transform: rotate(45deg);
}
.custom-select-arrow::after {
  right: 2px;
  transform: rotate(-45deg);
}
.filter-field.is-open .custom-select-arrow::before {
  transform: rotate(-45deg);
  background: var(--red);
}
.filter-field.is-open .custom-select-arrow::after {
  transform: rotate(45deg);
  background: var(--red);
}
.custom-select-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  right: -14px;
  z-index: 30;
  display: grid;
  max-height: 250px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(17, 22, 29, 0.12);
  background: #fff;
  box-shadow: 0 22px 48px rgba(17, 22, 29, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.filter-field.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.custom-select-option {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: #394453;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  transition: background 160ms ease, color 160ms ease, padding-left 160ms ease;
}
.custom-select-option:hover,
.custom-select-option.is-selected {
  background: rgba(224, 0, 33, 1);
  color: var(--white);
  padding-left: 16px;
}
.custom-select-option.is-selected {
  font-weight: 850;
}
.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 22, 29, 0.13);
  box-shadow: 0 18px 42px rgba(17, 22, 29, 0.13);
}
.product-card[hidden] { display: none; }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}
.badge-red { background: var(--red); }
.badge-green { background: #078a45; }
.product-card > img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 20px 24px 0;
  background: #fff;
  transition: transform 320ms ease;
}
.product-card:hover > img { transform: translateY(-4px) scale(1.03); }
.product-body {
  padding: 14px 18px 18px;
}
.product-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 850;
}
.product-body p {
  min-height: 48px;
  margin: 0 0 14px;
  color: #3f4955;
  font-size: 14px;
}
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.product-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-specs svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--red);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-specs strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}
.product-specs small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}
.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}
.product-action span { transition: transform 220ms ease; }
.product-card:hover .product-action,
.product-action:hover {
  color: var(--red);
  border-color: rgba(229, 9, 20, 0.34);
}
.product-card:hover .product-action span,
.product-action:hover span { transform: translateX(5px); }
.product-empty {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px dashed rgba(17, 22, 29, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-weight: 750;
}

.sectors-page {
  padding-top: 70px;
}
.sector-intro {
  position: relative;
  padding-top: 34px;
  padding-bottom: 26px;
}
.sector-intro .breadcrumbs {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}
.sector-intro-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}
.sector-intro-copy .eyebrow {
  margin-bottom: 5px;
  color: var(--red);
}
.sector-intro h1 {
  margin-bottom: 14px;
  white-space: nowrap;
}
.sector-intro p {
  width: min(640px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.sector-map {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 132px;
  width: min(980px, 100%);
  height: 116px;
  margin: 0;
  transform: translateX(-50%);
  opacity: 0.72;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 42%, rgba(17, 22, 29, 0.055) 1.1px, transparent 1.5px) 0 0 / 9px 9px,
    radial-gradient(ellipse at center, rgba(17, 22, 29, 0.035) 0 28%, transparent 62%);
  mask-image: radial-gradient(ellipse at center, #000 0 62%, transparent 78%);
}
.sector-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
}
.sector-map span img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.62;
}
.sector-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
  padding-bottom: 48px;
}
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 386px;
  background: #eef0f2;
  box-shadow: 0 14px 32px rgba(17, 22, 29, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(17, 22, 29, 0.16);
}
.industry-card img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}
.industry-card:hover img {
  transform: scale(1.035);
}
.industry-card > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 132px;
  padding: 22px 76px 20px 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(17, 22, 29, 0.13);
}
.industry-icon {
  display: none;
}
.industry-card::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: 38px;
  width: 38px;
  height: 2px;
  background: var(--red);
}
.industry-card > div::before {
  content: "Sektör";
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.industry-icon svg,
.industry-card a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.08;
}
.industry-card p {
  min-height: 0;
  margin: 0;
  color: #4c5663;
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.industry-card a {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--red);
  transform: translateY(-50%);
  font-size: 0;
  transition: background 180ms ease;
}
.industry-card a svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  transition: transform 180ms ease;
}
.industry-card:hover a svg,
.industry-card a:hover svg {
  transform: translateX(3px);
}
.industry-card a:hover {
  background: var(--red-dark);
}
.sector-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 154px;
  margin-bottom: 42px;
  padding: 30px 44px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(100deg, #fff 0%, #fff 66%, #f7f8fa 100%);
}
.sector-cta h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}
.sector-cta p {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.sector-cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}
.sector-cta .btn {
  min-width: 180px;
}
.sector-cta > img {
  position: absolute;
  right: 22px;
  bottom: -28px;
  width: 230px;
  opacity: 0.1;
  filter: grayscale(1);
  pointer-events: none;
}

.sector-detail-page {
  padding-top: 70px;
}
.sector-detail-hero {
  padding-top: 8px;
}
.sector-detail-hero img {
  display: block;
  width: 100%;
  height: min(33vw, 340px);
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.sector-detail-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 38px;
}
.sector-side-nav {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfc;
}
.sector-side-nav h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.2;
}
.sector-side-nav nav {
  display: grid;
  gap: 8px;
}
.sector-side-nav a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.sector-side-nav a:hover,
.sector-side-nav a.is-active {
  color: var(--red);
  border-color: rgba(229, 9, 20, 0.24);
  background: #fff;
}
.sector-side-nav a.is-active {
  border-left: 3px solid var(--red);
}
.sector-detail-cta > svg {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.06);
}
.sector-side-nav span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: inherit;
}
.sector-side-nav svg,
.solution-process svg,
.sector-detail-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector-side-nav em {
  font-style: normal;
  font-size: 18px;
}
.sector-detail-article {
  color: #3f4955;
}
.sector-detail-article h1 {
  margin: 4px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.18;
  color: var(--ink);
}
.sector-lead {
  margin: 0 0 30px;
  color: #485464;
  font-size: 13px;
  line-height: 1.85;
}
.sector-detail-article section {
  margin-top: 26px;
}
.sector-detail-article h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
}
.sector-detail-article p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.85;
}
.sector-check-list,
.sector-dot-grid {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.sector-check-list {
  display: grid;
  gap: 8px;
}
.sector-check-list li,
.sector-dot-grid li {
  position: relative;
  padding-left: 26px;
  color: #3f4955;
  font-size: 13px;
  line-height: 1.65;
}
.sector-check-list li::before,
.sector-dot-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: url("../img/icon-check-circle.svg") center / contain no-repeat;
}
.sector-check-list li::before {
  box-shadow: none;
}
.sector-dot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 42px;
}
.solution-process {
  padding-top: 8px;
  padding-bottom: 42px;
  text-align: center;
}
.solution-process h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 22px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.process-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  min-height: 126px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
}
.process-grid article + article::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  width: 34px;
  border-top: 3px dotted rgba(17, 22, 29, 0.38);
}
.process-grid article > span {
  position: absolute;
  left: 62px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}
.process-grid svg {
  width: 60px;
  height: 60px;
  color: var(--ink);
}
.process-grid h3 {
  margin: 2px 0 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 850;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.sector-detail-cta {
  display: grid;
  grid-template-columns: auto 1fr 190px 190px;
  gap: 22px;
  align-items: center;
  margin-bottom: 38px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.sector-detail-cta > svg {
  width: 64px;
  height: 64px;
  padding: 17px;
  color: var(--red);
}
.sector-detail-cta h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}
.sector-detail-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.sector-detail-cta .btn {
  width: 100%;
  min-width: 0;
}

.sector-corporate-page {
  padding-top: 70px;
  color: var(--ink);
  background: #fff;
}
.sector-corporate-hero {
  padding-top: 34px;
  padding-bottom: 44px;
}
.sector-corporate-hero .detail-breadcrumbs {
  margin-bottom: 30px;
}
.sector-corporate-hero .eyebrow {
  margin-bottom: 14px;
  text-align: left;
}
.sector-corporate-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.sector-corporate-hero .sector-lead {
  max-width: 830px;
  margin-top: 22px;
  margin-bottom: 0;
  color: #4f5d6d;
  font-size: 17px;
  line-height: 1.85;
}
.sector-corporate-media {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.sector-corporate-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 8, 13, 0.84) 0%, rgba(5, 8, 13, 0.55) 34%, rgba(5, 8, 13, 0.12) 72%, rgba(5, 8, 13, 0) 100%),
    linear-gradient(90deg, rgba(5, 8, 13, 0.34) 0%, rgba(5, 8, 13, 0.06) 52%, rgba(5, 8, 13, 0.2) 100%);
  pointer-events: none;
}
.sector-corporate-media img {
  display: block;
  width: 100%;
  height: 340px;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}
.sector-corporate-banner-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #fff;
}
.sector-corporate-banner-copy .detail-breadcrumbs {
  margin-bottom: 18px;
}
.sector-corporate-banner-copy .detail-breadcrumbs,
.sector-corporate-banner-copy .detail-breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}
.sector-corporate-banner-copy .detail-breadcrumbs span:last-child {
  color: #fff;
}
.sector-corporate-banner-copy .eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  text-align: left;
}
.sector-corporate-banner-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.sector-corporate-banner-copy .sector-lead {
  display: -webkit-box;
  max-width: 980px;
  margin: 12px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sector-corporate-content {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 58px;
}
.sector-corporate-aside {
  position: sticky;
  top: 96px;
  padding-top: 6px;
}
.sector-corporate-aside > span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sector-corporate-aside nav {
  display: grid;
  border-top: 1px solid var(--line);
}
.sector-corporate-aside a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #5a6472;
  font-size: 15px;
  transition: color 180ms ease, padding-left 180ms ease;
}
.sector-corporate-aside a:hover,
.sector-corporate-aside a.is-active {
  color: var(--red);
  padding-left: 8px;
}
.sector-corporate-aside strong {
  font-weight: 800;
}
.sector-corporate-aside em {
  font-style: normal;
  font-size: 18px;
}
.sector-corporate-article {
  max-width: 940px;
  color: #3f4955;
}
.sector-corporate-article > div > section:first-child {
  margin-top: 0;
}
.sector-corporate-article section {
  margin-top: 44px;
}
.sector-corporate-article h2 {
  max-width: 760px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.18;
  color: var(--ink);
}
.sector-corporate-article p {
  margin: 0;
  max-width: 860px;
  color: #485464;
  font-size: 16px;
  line-height: 1.9;
}
.sector-corporate-article .sector-check-list,
.sector-corporate-article .sector-dot-grid {
  margin-top: 20px;
}
.sector-corporate-article .sector-check-list {
  gap: 11px;
}
.sector-corporate-article .sector-check-list li,
.sector-corporate-article .sector-dot-grid li {
  color: #394453;
  font-size: 15px;
  line-height: 1.7;
}
.sector-corporate-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 56px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.sector-corporate-lists > div {
  min-width: 0;
}
.sector-corporate-lists h2 {
  font-size: 24px;
}
.sector-corporate-lists p {
  font-size: 14px;
  line-height: 1.75;
}
.sector-corporate-lists .sector-dot-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
.sector-corporate-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 190px;
  gap: 24px;
  align-items: center;
  margin-bottom: 46px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sector-corporate-contact h2 {
  max-width: 680px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.15;
}
.sector-corporate-contact p {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.sector-corporate-contact .eyebrow {
  margin-bottom: 10px;
  color: var(--red);
  text-align: left;
}
.sector-corporate-contact .btn {
  width: 100%;
  min-width: 0;
}

.about-page-hero {
  position: relative;
  min-height: 470px;
  padding-top: 70px;
  overflow: hidden;
  background: #f6f7f8;
}
.about-hero-bg {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
  object-fit: cover;
  object-position: center center;
}
.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.22) 68%, rgba(255,255,255,0) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 30px 0 60px;
}
.about-hero-content .breadcrumbs {
  margin-bottom: 44px;
}
.about-hero-content .eyebrow {
  text-align: left;
  margin-bottom: 10px;
}
.about-hero-content h1 {
  width: min(660px, 100%);
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.35vw, 56px);
  line-height: 1.08;
}
.about-hero-content > p {
  width: min(560px, 100%);
  margin: 0 0 30px;
  color: #3f4955;
  font-size: 17px;
  line-height: 1.75;
}
.about-hero-content .btn-outline,
.about-contact-actions .btn-outline {
  border-color: rgba(17, 22, 29, 0.22);
}
.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 54px;
  align-items: center;
  padding: 58px 0 34px;
}
.about-story-image {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(17, 22, 29, 0.12);
}
.about-story-copy .eyebrow {
  text-align: left;
  margin-bottom: 10px;
}
.about-story-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}
.about-story-copy p {
  margin: 0 0 18px;
  color: #3f4955;
  font-size: 16px;
  line-height: 1.75;
}
.about-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 10px;
  margin-bottom: 34px;
  padding: 30px 36px;
  border-left: 2px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 12px 36px rgba(17, 22, 29, 0.06);
}
.about-contact-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}
.about-contact-panel p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.about-contact-actions {
  display: flex;
  gap: 26px;
  flex: 0 0 auto;
}

.contact-page {
  padding-top: 70px;
  background: #fff;
}
.contact-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #f5f5f5;
  border-bottom: 1px solid var(--line);
}
.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.24) 72%, rgba(255,255,255,0) 100%);
}
.contact-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
}
.contact-hero-copy .breadcrumbs {
  margin-bottom: 28px;
}
.contact-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.contact-hero p {
  max-width: 560px;
  margin: 0;
  color: #475467;
  font-size: 17px;
  line-height: 1.8;
}
.contact-main {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 30px;
}
.contact-info h2,
.contact-form h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}
.contact-info {
  display: grid;
  gap: 10px;
  padding-right: 36px;
  border-right: 1px solid var(--line);
}
.contact-info-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 22, 29, 0.08);
}
.contact-info-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--red);
}
.contact-info-card svg,
.contact-location-copy svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 850;
}
.contact-info-card em {
  display: block;
  color: #526071;
  font-style: normal;
  line-height: 1.55;
}
.contact-form {
  min-width: 0;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label > span {
  color: #495566;
  font-size: 13px;
  font-weight: 750;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.contact-form input {
  height: 58px;
  padding: 0 16px;
}
.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(229, 9, 20, 0.42);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.08);
}
.contact-form-message {
  grid-column: 1 / -1;
}
.kvkk-check {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  gap: 10px !important;
  align-items: center;
  margin: 16px 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.kvkk-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--red);
}
.kvkk-check a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form .btn {
  min-width: 156px;
  border: 0;
}
.contact-form-status {
  margin: 14px 0 0;
  color: #17803a;
  font-size: 13px;
  font-weight: 750;
}
.contact-location {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f8fa;
}
.contact-location-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  min-height: 104px;
  overflow: hidden;
}
.contact-location-copy {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: center;
}
.contact-location-copy > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--red);
}
.contact-location h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 18px;
}
.contact-location p {
  margin: 0;
  color: #526071;
}
.contact-map-visual {
  position: relative;
  height: 104px;
  opacity: 0.72;
  background:
    linear-gradient(24deg, transparent 0 27%, rgba(17,22,29,0.08) 27.2% 27.8%, transparent 28% 100%),
    linear-gradient(154deg, transparent 0 36%, rgba(17,22,29,0.08) 36.2% 36.8%, transparent 37% 100%),
    linear-gradient(90deg, transparent 0 18%, rgba(17,22,29,0.07) 18.2% 18.8%, transparent 19% 100%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(17,22,29,0.045) 19px 20px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(17,22,29,0.04) 29px 30px);
}
.contact-map-visual span {
  position: absolute;
  top: 33px;
  right: 22%;
  width: 22px;
  height: 22px;
  background: var(--red);
  transform: rotate(45deg);
}
.contact-map-visual span::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #fff;
}

.product-detail-page {
  padding-top: 70px;
}
.detail-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 14px;
}
.detail-breadcrumbs a:hover { color: var(--red); }
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(560px, 0.96fr);
  gap: 42px;
  align-items: start;
  padding-top: 26px;
}
.detail-gallery {
  min-width: 0;
}
.detail-main-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f8fa;
  cursor: zoom-in;
}
.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}
.detail-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding: 3px 2px 4px;
  scrollbar-width: none;
}
.detail-thumbs::-webkit-scrollbar { display: none; }
.detail-thumb {
  flex: 0 0 92px;
  height: 68px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.detail-thumb.is-active,
.detail-thumb:hover {
  border-color: var(--red);
  box-shadow: inset 0 0 0 1px var(--red);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-summary {
  padding-top: 4px;
}
.detail-summary .eyebrow {
  text-align: left;
  margin-bottom: 8px;
}
.detail-summary h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.02;
}
.detail-summary > p {
  margin: 0 0 28px;
  color: #3f4955;
  font-size: 16px;
  line-height: 1.75;
}
.detail-summary-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.detail-summary-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 10px;
  border-right: 1px solid var(--line);
}
.detail-summary-specs li:first-child { padding-left: 0; }
.detail-summary-specs li:last-child { border-right: 0; }
.detail-summary-specs svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-summary-specs strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.05;
  white-space: nowrap;
}
.detail-summary-specs small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
}
.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.detail-actions .btn {
  min-width: 0;
  padding-inline: 18px;
  gap: 12px;
  white-space: nowrap;
}
.btn-outline {
  border: 1px solid rgba(17, 22, 29, 0.28);
  background: var(--white);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: rgba(17, 22, 29, 0.42);
  background: #fafafa;
  transform: translateY(-2px);
}
.btn-outline svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafbfc;
}
.guarantee-card .service-icon {
  width: 32px;
  height: 32px;
  margin-top: 0;
}
.guarantee-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42px;
}
.guarantee-card h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2;
}
.guarantee-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.detail-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-width: 0;
  padding-top: 58px;
  padding-bottom: 68px;
}
.detail-tabs {
  min-width: 0;
  max-width: 100%;
}
.detail-tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.detail-tab {
  position: relative;
  min-height: 56px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}
.detail-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 24px;
  bottom: -1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}
.detail-tab.is-active {
  color: var(--red);
}
.detail-tab.is-active::after {
  transform: scaleX(1);
}
.detail-tab-panel {
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--white);
  padding: 24px 28px;
  max-width: 100%;
}
.detail-tab-panel[hidden] { display: none; }
.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
}
.detail-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.detail-spec-row span {
  color: var(--muted);
}
.detail-spec-row strong {
  color: var(--ink);
  text-align: right;
}
.detail-list-panel {
  margin: 0;
  padding-left: 46px;
  color: #3f4955;
  overflow-wrap: anywhere;
}
.detail-list-panel li {
  margin: 0 0 12px;
  max-width: 100%;
}
.product-seo-module {
  padding: 10px 0 62px;
}
.product-seo-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.product-seo-head .eyebrow {
  text-align: left;
}
.product-seo-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}
.product-seo-head p {
  width: min(820px, 100%);
  margin: 0;
  color: #526070;
  line-height: 1.75;
}
.product-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}
.product-seo-grid article {
  min-height: 172px;
  padding: 24px 26px;
}
.product-seo-grid article + article {
  border-left: 1px solid var(--line);
}
.product-seo-grid h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
}
.product-seo-grid p {
  margin: 0;
  color: #526070;
  font-size: 14px;
  line-height: 1.72;
}
.product-seo-links {
  display: grid;
  gap: 8px;
}
.product-seo-links a {
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}
.product-seo-links a:hover {
  color: var(--red-dark);
}
.is-lightbox-open {
  overflow: hidden;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(8, 12, 18, 0.78);
  backdrop-filter: blur(6px);
}
.image-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f7f8fa;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}
.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.selection-guide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 4px;
  padding: 44px 0 28px;
}
.selection-visual {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.selection-logo {
  position: absolute;
  left: 48%;
  bottom: 54px;
  z-index: 0;
  width: min(430px, 62%);
  max-width: none;
  opacity: 0;
  transform: translate(-50%, 12%) scale(0.82) rotate(-8deg);
  pointer-events: none;
}
.selection-visual.is-visible .selection-logo {
  animation: logoRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}
.selection-machine {
  position: relative;
  z-index: 1;
  width: min(650px, 108%);
  max-width: none;
  filter: drop-shadow(0 22px 24px rgba(17, 22, 29, 0.16));
  transform: translateX(-18px);
}
.machine-callout {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(17, 22, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(17, 22, 29, 0.13);
  color: var(--ink);
  backdrop-filter: blur(10px);
  animation: calloutFloat 3.8s ease-in-out infinite;
}
.machine-callout strong {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.callout-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.08);
  color: var(--red);
}
.callout-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.callout-stock { left: 20%; top: 17%; }
.callout-power { right: 5%; top: 42%; animation-delay: 520ms; }
.callout-service { left: 42%; bottom: 12%; animation-delay: 980ms; }
.selection-content {
  position: relative;
  z-index: 1;
  padding: 6px 0;
}
.selection-content .eyebrow { text-align: left; }
.selection-content h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}
.selection-content > p {
  margin: 0 0 22px;
  color: #3f4955;
  font-size: 16px;
  max-width: 560px;
}
.selection-points {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.selection-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.selection-points .service-icon {
  width: 34px;
  height: 34px;
  margin-top: 1px;
}
.selection-points h3 {
  margin: 0 0 2px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
}
.selection-points p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 58px 0; }
.section-muted { background: linear-gradient(180deg, #fafafa 0%, #fff 100%); padding: 42px 0 58px; }
.eyebrow { margin: 0 0 5px; color: var(--red); font-family: var(--font-display); font-stretch: normal; text-transform: uppercase; letter-spacing: 0.8px; font-size: 14px; font-weight: 800; text-align: center; }
.section-title { margin: 0 0 24px; font-size: clamp(28px, 3vw, 38px); line-height: 1.15; text-align: center; letter-spacing: 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-head .eyebrow, .section-head .section-title { text-align: left; margin-bottom: 0; }
.small-link {
  display: inline-flex; align-items: center; gap: 14px; height: 38px; padding: 0 18px; border: 1px solid var(--line);
  border-radius: 5px; font-weight: 800; font-size: 13px; background: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.small-link:hover { transform: translateY(-2px); border-color: rgba(17, 22, 29, 0.16); box-shadow: 0 10px 22px rgba(17, 22, 29, 0.08); }

.sector-grid, .model-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sector-card { position: relative; min-height: 250px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 10px 24px rgba(17, 22, 29, 0.16); transition: transform 260ms ease, box-shadow 260ms ease; }
.sector-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform 520ms ease; }
.sector-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(5,8,12,0.9)); }
.sector-card:hover { transform: translateY(-5px); box-shadow: 0 22px 42px rgba(17, 22, 29, 0.2); }
.sector-card:hover img { transform: scale(1.06); }
.sector-content { position: absolute; inset: auto 0 0; z-index: 1; padding: 24px; color: var(--white); }
.sector-content h3 { margin: 8px 0 2px; font-family: var(--font-display); font-stretch: normal; font-size: 23px; font-weight: 800; }
.sector-content p { margin: 0; width: 78%; color: rgba(255, 255, 255, 0.84); font-weight: 650; }
.sector-content a { position: absolute; right: 28px; bottom: 24px; color: var(--red); font-size: 30px; }
.card-icon { width: 30px; height: 30px; color: var(--white); }

.model-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.model-card:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(17, 22, 29, 0.13); border-color: rgba(17, 22, 29, 0.13); }
.model-card img { width: 100%; height: 168px; object-fit: contain; padding: 16px 20px 0; background: #fff; transition: transform 320ms ease; }
.model-card:hover img { transform: translateY(-4px) scale(1.03); }
.model-card h3 { margin: 12px 20px 16px; font-family: var(--font-body); font-size: 19px; font-weight: 800; }
.model-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.model-specs li { display: flex; align-items: center; gap: 13px; padding: 16px 18px 18px; }
.model-specs li + li { border-left: 1px solid var(--line); }
.model-spec-icon { width: 34px; height: 34px; color: var(--red); stroke-width: 1.9; }
.model-specs strong { display: block; margin: 0 0 2px; font-family: var(--font-body); font-size: 18px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.model-specs small { display: block; color: var(--muted); font-size: 12px; font-weight: 750; line-height: 1.25; }

.about { display: grid; grid-template-columns: 0.53fr 1fr; margin-top: 6px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-panel { background: linear-gradient(140deg, #090e14, #151b23); color: var(--white); padding: 42px 34px; }
.about-panel .eyebrow { text-align: left; }
.about-panel h2 { margin: 0 0 12px; font-size: 30px; }
.about-panel p:not(.eyebrow) { color: rgba(255, 255, 255, 0.83); margin: 0 0 26px; }
.about img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; transition: transform 520ms ease; }
.about:hover img { transform: scale(1.025); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.service-grid article {
  display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; min-height: 92px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; background: var(--white);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.service-grid article:hover { transform: translateY(-4px); border-color: rgba(17, 22, 29, 0.13); box-shadow: 0 14px 28px rgba(17, 22, 29, 0.08); }
.service-icon { grid-row: span 2; width: 38px; height: 38px; color: var(--red); transition: transform 220ms ease; }
.service-grid h3 { margin: 0; font-family: var(--font-body); font-size: 16px; font-weight: 800; }
.service-grid p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.testimonials { padding: 56px 0; }
.testimonial-grid article {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: 0 10px 28px rgba(17, 22, 29, 0.07);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.testimonial-grid article:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(17, 22, 29, 0.1); }
.quote { position: absolute; top: 10px; left: 24px; color: var(--red); font-size: 66px; line-height: 1; opacity: 0.9; }
.testimonial-grid p { position: relative; margin: 28px 0 24px; color: #29313a; font-size: 16px; }
.testimonial-grid strong, .testimonial-grid small { display: block; }
.testimonial-grid strong { font-family: var(--font-body); font-size: 16px; }
.testimonial-grid small { color: var(--muted); margin-top: 2px; }

.finance { text-align: center; padding-top: 46px; }
.finance p { margin: -12px 0 28px; color: var(--muted); }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.logo-card {
  display: grid; place-items: center; min-height: 92px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  padding: 18px 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.logo-card:hover { transform: translateY(-3px); border-color: rgba(17, 22, 29, 0.14); box-shadow: 0 12px 24px rgba(17, 22, 29, 0.08); }
.logo-card img { width: 100%; max-width: 180px; height: 58px; object-fit: contain; }

.insight-preview {
  padding-top: 28px;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.insight-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 22, 29, 0.15);
  box-shadow: 0 16px 34px rgba(17, 22, 29, 0.09);
}
.insight-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: rgba(229, 9, 20, 0.08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.insight-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}
.insight-card p {
  margin: 0;
  color: #526070;
  line-height: 1.7;
}

.seo-article-section {
  padding: 58px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}
.seo-article-head {
  display: grid;
  gap: 8px;
  width: min(880px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}
.seo-article-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: 0;
}
.seo-article-head p:not(.eyebrow) {
  margin: 0;
  color: #526070;
  font-size: 16px;
  line-height: 1.75;
}
.seo-article-scroll {
  max-height: min(620px, 72vh);
  overflow-y: auto;
  padding: 34px 42px;
  border: 1px solid rgba(17, 22, 29, 0.1);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 22, 29, 0.08);
  color: #24303d;
  scrollbar-color: var(--red) #e7e9ee;
  scrollbar-width: thin;
}
.seo-article-scroll:focus {
  outline: 3px solid rgba(229, 9, 20, 0.22);
  outline-offset: 4px;
}
.seo-article-scroll::-webkit-scrollbar { width: 10px; }
.seo-article-scroll::-webkit-scrollbar-track { background: #e7e9ee; }
.seo-article-scroll::-webkit-scrollbar-thumb { background: var(--red); }
.seo-article-scroll h3 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--ink);
}
.seo-article-scroll h3:first-child { margin-top: 0; }
.seo-article-scroll p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.85;
}
.seo-article-scroll strong {
  color: #090e14;
  font-weight: 900;
}

.cta-band { background: linear-gradient(120deg, #c8000b, #ed101b); color: var(--white); }
.cta-band .container { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { margin: 0 0 2px; font-size: 30px; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.85); }

.site-footer { background: var(--white); color: #3f4955; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 36px; padding: 34px 0 32px; }
.footer-brand p { margin: 18px 0; color: var(--muted); }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(17, 22, 29, 0.18);
  border-radius: 50%; color: rgba(17, 22, 29, 0.64); transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.socials a[aria-disabled="true"] { cursor: default; pointer-events: none; }
.socials a:hover { color: var(--red); border-color: rgba(229, 9, 20, 0.28); background: rgba(229, 9, 20, 0.04); transform: translateY(-2px); }
.socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer h2 { margin: 0 0 14px; color: var(--ink); font-family: var(--font-display); font-stretch: normal; font-size: 16px; font-weight: 800; }
.site-footer nav, .site-footer address { display: flex; flex-direction: column; gap: 9px; font-style: normal; }
.site-footer a:hover { color: var(--red); }
.footer-legal-note {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: #727d8a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}
.footer-legal-note p {
  max-width: 1040px;
  margin: 0 auto;
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-left { transform: translateX(-28px); }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.sector-card.reveal.is-visible:hover { transform: translateY(-5px); }
.model-card.reveal.is-visible:hover { transform: translateY(-6px); }

@media (max-width: 980px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .site-header { padding: 0 22px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 22px 22px; background: rgba(255, 255, 255, 0.99); border-top: 1px solid rgba(17,22,29,0.08);
    box-shadow: 0 16px 28px rgba(17, 22, 29, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a,
  .nav-mega-link { padding: 14px 0; }
  .primary-nav > a::after,
  .nav-mega-link::after { bottom: 8px; right: auto; width: 80px; }
  .nav-mega {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
  }
  .nav-mega-link {
    width: 100%;
  }
  .nav-mega-toggle {
    width: 42px;
    height: 48px;
    justify-self: end;
  }
  .mega-menu {
    position: static;
    grid-column: 1 / -1;
    display: none;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    border: 1px solid var(--line);
    box-shadow: none;
  }
  .nav-mega:hover .mega-menu,
  .nav-mega:focus-within .mega-menu { display: none; }
  .nav-mega.is-open .mega-menu { display: block; }
  .mega-menu-inner {
    width: 100%;
    padding: 18px;
  }
  .mega-menu-head {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
  }
  .mega-menu-head h2 { font-size: 22px; }
  .mega-grid {
    grid-template-columns: 1fr;
    border: 0;
    gap: 10px;
    background: transparent;
  }
  .mega-card {
    min-height: 132px;
    border: 1px solid var(--line);
    padding: 16px 126px 16px 16px;
  }
  .mega-card:last-child { border-right: 1px solid var(--line); }
  .mega-card img {
    position: absolute;
    right: 12px;
    bottom: 8px;
    width: 112px;
    height: 82px;
    margin: 0;
  }
  .mega-arrow { right: 14px; top: 14px; bottom: auto; font-size: 20px; }
  .header-cta { display: none; }
  .page-hero { min-height: 360px; }
  .page-hero-content { padding: 70px 0 54px; }
  .brand-grid { grid-template-columns: 1fr; width: min(640px, 100%); }
  .category-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tab {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-card { min-height: 360px; }
  .industry-card img { min-height: 360px; }
  .industry-card p { min-height: 0; }
  .sector-cta { align-items: flex-start; flex-direction: column; }
  .sector-cta-actions { width: 100%; }
  .sector-cta .btn { flex: 1; }
  .sector-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sector-side-nav {
    position: static;
  }
  .sector-side-nav nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-grid article + article::before {
    display: none;
  }
  .sector-detail-cta {
    grid-template-columns: auto 1fr;
  }
  .sector-detail-cta .btn {
    width: 100%;
  }
  .sector-corporate-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .sector-corporate-aside {
    position: static;
  }
  .sector-corporate-aside nav {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .sector-corporate-aside a {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 16px 14px;
  }
  .sector-corporate-aside a:last-child {
    border-right: 0;
  }
  .sector-corporate-aside a:hover,
  .sector-corporate-aside a.is-active {
    padding-left: 14px;
  }
  .sector-corporate-lists {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .sector-corporate-contact {
    grid-template-columns: 1fr 1fr;
  }
  .sector-corporate-contact > div {
    grid-column: 1 / -1;
  }
  .about-page-hero { min-height: 460px; }
  .about-hero-content { padding-bottom: 62px; }
  .about-hero-content .breadcrumbs { margin-bottom: 42px; }
  .about-story { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .about-contact-panel { align-items: flex-start; flex-direction: column; }
  .about-contact-actions { width: 100%; }
  .about-contact-actions .btn { flex: 1; }
  .contact-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-info {
    padding-right: 0;
    border-right: 0;
  }
  .contact-location-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-map-visual {
    margin: 0 -20px;
  }
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-summary-specs { grid-template-columns: repeat(2, 1fr); }
  .detail-summary-specs li:nth-child(2) { border-right: 0; }
  .detail-summary-specs li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-tab-list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    cursor: grab;
    user-select: none;
  }
  .detail-tab-list.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }
  .detail-tab-list::-webkit-scrollbar { height: 3px; }
  .detail-tab-list::-webkit-scrollbar-thumb { background: rgba(229, 9, 20, 0.45); }
  .detail-tab {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
  .hero { min-height: 520px; }
  .selection-guide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 24px;
  }
  .selection-visual { min-height: 300px; }
  .selection-logo { left: 50%; bottom: 44px; width: min(360px, 58%); }
  .selection-machine { width: min(610px, 100%); transform: none; }
  .machine-callout { min-height: 42px; padding: 8px 12px 8px 10px; }
  .machine-callout strong { font-size: 13px; }
  .callout-icon { width: 27px; height: 27px; }
  .callout-stock { left: 17%; top: 13%; }
  .callout-power { right: 3%; top: 40%; }
  .callout-service { left: 37%; bottom: 9%; }
  .feature-strip, .service-grid, .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .seo-article-section { padding: 48px 0 54px; }
  .seo-article-scroll {
    max-height: min(560px, 74vh);
    padding: 28px 30px;
  }
  .feature-strip article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .feature-strip article:nth-child(4) { border-top: 1px solid var(--line); }
  .sector-grid, .model-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .sector-card:last-child, .testimonial-grid article:last-child { grid-column: 1 / -1; }
  .about { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .site-header { height: 68px; }
  .brand-logo { width: 138px; }
  .primary-nav { top: 68px; }
  .page-hero {
    min-height: 390px;
    padding-top: 68px;
  }
  .page-hero-image {
    top: 68px;
    height: calc(100% - 68px);
    object-position: 62% center;
  }
  .page-hero::after {
    top: 68px;
    background: linear-gradient(90deg, rgba(245,245,245,0.96), rgba(245,245,245,0.74));
  }
  .page-hero-content { padding: 74px 0 58px; }
  .breadcrumbs { font-size: 13px; }
  .page-hero h1 { font-size: 42px; }
  .page-brand-logo { width: 150px; height: 46px; }
  .brand-select { padding-top: 44px; }
  .product-listing-standalone {
    margin-top: 68px;
    padding-top: 34px;
  }
  .sectors-page { padding-top: 68px; }
  .sector-intro { padding-top: 26px; padding-bottom: 22px; }
  .sector-intro .breadcrumbs { margin-bottom: 26px; }
  .sector-intro h1 { white-space: normal; }
  .sector-intro p { font-size: 14px; }
  .sector-map {
    top: 126px;
    width: calc(100% - 18px);
    height: 82px;
  }
  .sector-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 34px;
  }
  .industry-card { min-height: 330px; }
  .industry-card img { height: 100%; min-height: 330px; }
  .industry-card > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 118px;
    padding: 18px 64px 18px 20px;
  }
  .industry-card h2 { font-size: 25px; }
  .industry-card a { width: 52px; height: 52px; }
  .industry-card::after { left: 34px; bottom: 30px; }
  .industry-card p { min-height: auto; }
  .sector-cta {
    min-height: auto;
    margin-bottom: 28px;
    padding: 26px 20px;
  }
  .sector-cta-actions { flex-direction: column; }
  .sector-cta .btn { width: 100%; min-width: 0; }
  .sector-cta > img { width: 180px; right: -20px; bottom: -20px; }
  .sector-detail-page { padding-top: 68px; }
  .sector-detail-hero img {
    height: 220px;
    min-height: 220px;
  }
  .sector-detail-layout {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .sector-side-nav {
    padding: 18px;
  }
  .sector-side-nav nav {
    grid-template-columns: 1fr;
  }
  .sector-detail-article h1 { font-size: 31px; }
  .sector-lead { font-size: 14px; }
  .sector-detail-article h2 { font-size: 21px; }
  .sector-dot-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .solution-process {
    padding-bottom: 32px;
  }
  .solution-process h2 { font-size: 23px; }
  .process-grid article {
    grid-template-columns: 58px 1fr;
    padding: 20px 18px;
  }
  .process-grid svg {
    width: 48px;
    height: 48px;
  }
  .process-grid article > span {
    left: 46px;
    top: 12px;
  }
  .sector-detail-cta {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  .sector-detail-cta > svg {
    width: 58px;
    height: 58px;
    padding: 15px;
  }
  .sector-detail-cta .btn {
    width: 100%;
    min-width: 0;
  }
  .sector-corporate-hero {
    padding-top: 26px;
    padding-bottom: 34px;
  }
  .sector-corporate-hero .detail-breadcrumbs {
    margin-bottom: 24px;
  }
  .sector-corporate-hero h1 {
    font-size: 32px;
  }
  .sector-corporate-hero .sector-lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.75;
  }
  .sector-corporate-media {
    padding-bottom: 0;
  }
  .sector-corporate-media img {
    height: 360px;
    min-height: 360px;
    object-position: center;
  }
  .sector-corporate-banner-copy {
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .sector-corporate-banner-copy .detail-breadcrumbs {
    margin-bottom: 16px;
  }
  .sector-corporate-banner-copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  .sector-corporate-banner-copy .sector-lead {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
  .sector-corporate-content {
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 38px;
  }
  .sector-corporate-aside nav {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .sector-corporate-aside a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .sector-corporate-aside a:hover,
  .sector-corporate-aside a.is-active {
    padding-left: 0;
  }
  .sector-corporate-article section {
    margin-top: 32px;
  }
  .sector-corporate-article h2 {
    font-size: 24px;
  }
  .sector-corporate-article p {
    font-size: 15px;
    line-height: 1.78;
  }
  .sector-corporate-lists {
    margin-top: 38px;
    padding-top: 30px;
  }
  .sector-corporate-contact {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .sector-corporate-contact .btn {
    width: 100%;
  }
  .about-page-hero {
    min-height: 520px;
    padding-top: 68px;
  }
  .about-hero-bg {
    top: 68px;
    height: calc(100% - 68px);
    object-position: 62% center;
  }
  .about-page-hero::after {
    top: 68px;
    background: linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.8));
  }
  .about-hero-content {
    padding-top: 28px;
    padding-bottom: 50px;
  }
  .about-hero-content .breadcrumbs {
    margin-bottom: 42px;
  }
  .about-hero-content h1 { font-size: 38px; }
  .about-hero-content > p { font-size: 16px; }
  .about-story {
    padding: 42px 0 28px;
  }
  .about-contact-panel {
    padding: 26px 22px;
  }
  .about-contact-actions {
    flex-direction: column;
    gap: 14px;
  }
  .contact-page {
    padding-top: 68px;
  }
  .contact-hero,
  .contact-hero-copy {
    min-height: 390px;
  }
  .contact-hero img {
    object-position: 64% center;
  }
  .contact-hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 58%, rgba(255,255,255,0.22) 100%);
  }
  .contact-hero-copy .breadcrumbs {
    margin-bottom: 24px;
  }
  .contact-hero h1 {
    font-size: 42px;
  }
  .contact-hero p {
    font-size: 15px;
    line-height: 1.7;
  }
  .contact-main {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .contact-info-card {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 14px;
  }
  .contact-info-card > span {
    width: 46px;
    height: 46px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-form .btn {
    width: 100%;
  }
  .kvkk-check {
    align-items: flex-start;
  }
  .contact-location-inner {
    min-height: auto;
    padding-top: 20px;
  }
  .contact-location-copy {
    align-items: flex-start;
  }
  .contact-map-visual {
    height: 86px;
  }
  .brand-card { min-height: 300px; }
  .brand-card-media { min-height: 176px; padding: 26px 22px 0; }
  .brand-name-mark { min-height: 54px; }
  .jcb-wordmark {
    min-width: 136px;
    border-width: 7px;
    font-size: 32px;
  }
  .manitou-wordmark {
    min-width: 150px;
    font-size: 28px;
  }
  .brand-card-machine { right: 12px; width: 56%; max-height: 132px; }
  .brand-card-machine.jcb-machine { width: 61%; max-height: 142px; right: 4px; }
  .brand-card-machine.manitou-machine { width: 60%; max-height: 142px; right: 4px; }
  .brand-card-body { padding: 12px 46px 24px 22px; }
  .brand-card-body p { font-size: 14px; }
  .hero { min-height: 600px; padding-top: 68px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.74)); }
  .hero-content { padding-top: 92px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 18px; }
  .hero-actions {
    width: 100%;
  }
  .btn { width: 100%; }
  .selection-guide {
    margin-top: 36px;
    padding: 24px 0 20px;
  }
  .selection-visual { min-height: 230px; }
  .selection-logo { width: min(260px, 58%); bottom: 34px; }
  .selection-machine { width: 100%; }
  .machine-callout {
    min-height: 36px;
    gap: 7px;
    padding: 7px 10px 7px 8px;
    box-shadow: 0 10px 22px rgba(17, 22, 29, 0.12);
  }
  .machine-callout strong { font-size: 11px; }
  .callout-icon { width: 23px; height: 23px; }
  .callout-icon svg { width: 14px; height: 14px; }
  .callout-stock { left: 8%; top: 11%; }
  .callout-power { right: 2%; top: 42%; }
  .callout-service { left: 30%; bottom: 7%; }
  .selection-content h2 { font-size: 30px; }
  .feature-strip, .sector-grid, .model-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-head { align-items: start; flex-direction: column; }
  .product-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(17, 22, 29, 0.07);
  }
  .product-filter-toggle-icon {
    position: relative;
    width: 18px;
    height: 18px;
  }
  .product-filter-toggle-icon::before,
  .product-filter-toggle-icon::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    height: 2px;
    background: var(--red);
  }
  .product-filter-toggle-icon::before {
    top: 5px;
    box-shadow: 0 4px 0 var(--red), 0 8px 0 var(--red);
  }
  .product-filter-toggle-icon::after {
    top: 3px;
    left: 5px;
    right: auto;
    width: 4px;
    height: 4px;
    border: 2px solid var(--red);
    background: var(--white);
    box-shadow: 7px 4px 0 -1px var(--white), 7px 4px 0 1px var(--red), -2px 8px 0 -1px var(--white), -2px 8px 0 1px var(--red);
  }
  body.filter-modal-open { overflow: hidden; }
  .product-toolbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1600;
    max-height: min(86vh, 720px);
    margin: 0;
    padding: 20px 18px 18px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 -28px 60px rgba(17, 22, 29, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(104%);
    transition: transform 240ms ease, opacity 240ms ease;
  }
  .product-toolbar.is-modal-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .product-filter-modal-head {
    position: sticky;
    top: -20px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -20px -18px 16px;
    padding: 20px 18px 12px;
    background: #fff;
  }
  .product-filter-modal-head strong {
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
  }
  .product-filter-close {
    position: relative;
    z-index: 130;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 26px;
    line-height: 1;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .product-toolbar .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: none;
  }
  .product-toolbar .category-tab {
    flex: initial;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    scroll-snap-align: unset;
  }
  .product-toolbar .category-tab:nth-child(2n) { border-right: 0; }
  .product-toolbar .category-tab:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .filter-grid,
  .product-grid { grid-template-columns: 1fr; }
  .product-toolbar .filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-toolbar .filter-field {
    min-height: 68px;
    padding: 13px 14px 11px;
    box-shadow: none;
  }
  .product-toolbar .filter-field.is-open {
    z-index: 3;
  }
  .product-toolbar .custom-select-menu {
    position: static;
    display: none;
    max-height: 220px;
    margin-top: 10px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }
  .product-toolbar .filter-field.is-open .custom-select-menu {
    display: grid;
    transform: none;
  }
  .product-filter-modal-footer {
    position: sticky;
    bottom: -18px;
    display: block;
    margin: 18px -18px -18px;
    padding: 14px 18px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.78), #fff 34%);
  }
  .product-filter-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border: 0;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
  }
  .category-tab { flex-basis: 172px; min-height: 64px; font-size: 13px; }
  .product-card > img { height: 176px; }
  .product-detail-page { padding-top: 68px; }
  .detail-breadcrumbs {
    gap: 8px;
    padding-top: 22px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .detail-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 18px;
  }
  .detail-main-image { aspect-ratio: 1.42 / 1; }
  .detail-main-image img { padding: 14px; }
  .detail-thumbs {
    gap: 10px;
    margin-top: 12px;
  }
  .detail-thumb { flex-basis: 84px; height: 62px; }
  .detail-summary h1 {
    font-size: 36px;
    line-height: 1.06;
  }
  .detail-summary > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.65;
  }
  .detail-summary-specs { grid-template-columns: 1fr; }
  .detail-summary-specs li,
  .detail-summary-specs li:nth-child(2) {
    padding: 13px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .detail-summary-specs li:first-child { border-top: 0; }
  .detail-summary-specs { margin-bottom: 22px; }
  .detail-summary-specs strong { font-size: 17px; }
  .detail-summary-specs small { white-space: normal; }
  .detail-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .detail-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding: 18px;
  }
  .detail-content {
    max-width: 100%;
    overflow: visible;
    padding-top: 38px;
    padding-bottom: 48px;
  }
  .detail-tabs {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .detail-tab-list {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: 0;
    padding-inline: 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .detail-tab {
    flex: 0 0 178px;
    min-height: 52px;
    padding-right: 18px;
    font-size: 12px;
    white-space: nowrap;
  }
  .detail-tab::after {
    right: 18px;
  }
  .detail-tab-panel {
    padding: 0;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
  }
  .product-seo-module { padding-bottom: 46px; }
  .product-seo-grid { grid-template-columns: 1fr; }
  .product-seo-grid article {
    min-height: 0;
    padding: 20px 18px;
  }
  .product-seo-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .detail-spec-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .detail-spec-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }
  .detail-spec-row span {
    font-size: 13px;
  }
  .detail-spec-row strong {
    text-align: left;
    font-size: 15px;
  }
  .detail-list-panel {
    margin: 0;
    padding: 18px 16px 18px 34px;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .detail-list-panel li {
    padding-right: 0;
    max-width: 100%;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
  .testimonial-grid,
  .logo-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    max-width: 100%;
    padding: 4px 0 18px;
    margin-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-grid::-webkit-scrollbar,
  .logo-grid::-webkit-scrollbar { display: none; }
  .testimonial-grid article,
  .logo-card {
    scroll-snap-align: start;
  }
  .testimonial-grid article { flex: 0 0 min(74vw, 310px); }
  .logo-card { flex: 0 0 min(62vw, 250px); }
  .logo-card {
    min-height: 82px;
    padding: 14px 16px;
  }
  .logo-card img { max-width: 150px; height: 50px; }
  .feature-strip article, .feature-strip article + article, .feature-strip article:nth-child(3), .feature-strip article:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .feature-strip article:first-child { border-top: 0; }
  .section { padding: 44px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .seo-article-head { text-align: left; }
  .seo-article-head .eyebrow { text-align: left; }
  .seo-article-scroll {
    max-height: 520px;
    padding: 24px 20px;
  }
  .seo-article-scroll h3 { font-size: 21px; }
  .seo-article-scroll p { font-size: 15px; line-height: 1.78; }
  .sector-card:last-child, .testimonial-grid article:last-child { grid-column: auto; }
  .model-specs { grid-template-columns: 1fr; }
  .model-specs li + li { border-left: 0; border-top: 1px solid var(--line); }
  .service-grid article { grid-template-columns: auto 1fr; }
  .cta-band .container, .footer-bottom { flex-direction: column; align-items: flex-start; padding: 26px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal.reveal-left,
  .reveal.reveal-right {
    opacity: 1;
    transform: none;
  }
}
