@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-ExtraLight.woff2") format("woff2");
  font-weight: 200;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
}

body {
  font-family: "Inter", sans-serif;
}

:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #555555;
  --border: #e5e5ea;
  --card: #f9f9fb;
  --accent: #f78417;
  --accent-2: #f78417;
  --accent-3: #fff7f0;
  --container: 1540px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 8px 26px rgba(19, 28, 45, 0.1);
  --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 40px rgba(15, 23, 42, 0.08);
  --yt: #ff0000;
  --ig: #e4405f;
  --input-bg: #ffffff;
  --input-border: #dcdcdc;
  --input-focus: #f78417;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
}
* {
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  font-size: 16px;
}
body.no-scroll {
  overflow: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.15s;
  cursor: pointer;
}
.btn:hover {
  background: #f78417;
  color: #fff;
}
.btn.btn-outline {
  background: #f78417;
  color: #fff;
  border-color: var(--accent);
}
.btn.btn-outline:hover {
  background: var(--accent-3);
  color: var(--text);
}
.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.er-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #f9f9f9;
}
.er-top {
  background: #fff;
  transition: padding 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.er-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #0c0a0a;
}
.er-top-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.er-nav-row {
  position: sticky;
  background: #ffffff;
  border-bottom: 1px solid #d8d8d8;
}
.er-nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.er-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: flex-start;
}
.er-nav a {
  position: relative;
  text-decoration: none;
  font-size: 18px;
  font-weight: 200;
  color: #111;
  padding-bottom: 4px;
}
.er-logo {
  text-decoration: none;
  color: #111;
  display: inline-block;
}
.er-logo img {
  height: 70px;
  display: block;
  transition: height 0.2s ease;
}
.er-logo-sub {
  display: block;
  margin-top: 0px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6a6a6a;
}
.er-top-right {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 18px;
  font-weight: 200;
}
.er-top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f78417;
  text-decoration: none;
}
.er-top-link:hover {
  text-decoration: underline;
}
.er-icon {
  width: 40px;
  height: 40px;
  padding-top: 3px;
  flex-shrink: 0;
}
.er-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f78417;
  transition: width 0.2s ease;
}
.er-nav a:hover::after,
.er-nav a:focus-visible::after,
.er-nav a.is-active::after {
  width: 100%;
}
.er-cta {
  padding: 10px 18px;
  background: #f78417;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  border-radius: 2px;
}
.er-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: none;
  padding: 6px 10px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 1600;
}
.er-menu-label {
  font-size: 14px;
}
.er-menu-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.er-menu-icon span {
  width: 25px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}
.er-menu-toggle.is-open .er-menu-icon span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.er-menu-toggle.is-open .er-menu-icon span:nth-child(2) {
  opacity: 0;
}
.er-menu-toggle.is-open .er-menu-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}
.er-mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}
.er-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.er-mobile-menu a {
  font-size: 1rem;
  text-decoration: none;
  color: #222;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
}
@media (max-width: 960px) {
  .er-top-container {
    padding-inline: 16px;
  }
  .er-logo-sub {
    display: none;
  }
  .er-top-right {
    display: none;
  }
  .er-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .er-nav-row {
    display: none;
  }
  .er-mobile-menu {
    top: 90px;
  }
}
@media (max-width: 768px) {
  .er-top::after {
    display: none;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.6), rgba(15, 23, 42, 0.3));
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.hero-copy {
  max-width: 520px;
  padding: 3rem 0;
  color: #fff;
}
.kicker {
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 0.4rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 3.3vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.lead {
  color: #f9fafb;
  max-width: 65ch;
  margin: 0;
  font-size: 1.02rem;
}
.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pill-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill-list li {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .hero {
    min-height: 60vh;
    align-items: flex-end;
  }
  .hero-copy {
    max-width: 100%;
    padding: 4rem 0 3rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.4rem);
  }
  .lead {
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 50vh;
  }
  .hero-copy {
    padding: 3.25rem 0 2.5rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.home-intro {
  padding: 2rem 3rem;
  background: #ffeadd;
  text-align: center;
}
.home-intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  margin-top: 2rem;
  justify-items: center;
}
.home-intro-grid h2 {
  grid-column: 1 / -1;
  font-size: 3rem;
  text-align: start;
  width: 100%;
  padding: 0 1.5rem;
  color: var(--accent);
}
.home-intro-block {
  max-width: 70ch;
  text-align: justify;
  padding: 1rem;
}
.home-intro-block h2 {
  font-size: 3rem;
  margin-bottom: 0.6rem;
  color: #111;
}
.home-intro-block p {
  color: var(--muted, #555);
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.6;
}
@media (max-width: 1020px) {
  .home-intro-block p {
    font-size: 0.9rem;
  }
}
@media (max-width: 820px) {
  .home-intro {
    padding: 1.75rem 1.5rem;
  }
  .home-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-intro-grid h2 {
    font-size: 3rem;
    margin: 0;
  }
  .home-intro-block p {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .home-intro {
    padding: 1.5rem 1.2rem;
  }
  .home-intro-block p {
    font-size: 1rem;
  }
  .home-intro-grid h2 {
    font-size: 2rem;
    text-align: center;
  }
}
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.section--hero {
  padding: 0;
}
.section--about,
.section--facts,
.section--tyre {
  padding: 4rem 0;
}
.section--slider {
  padding: 0;
}
.section--cta {
  min-height: auto;
  padding: 3rem 0;
}
.split {
  display: grid;
  margin-top: 20px;
  gap: 20px;
}
.about-combined {
  max-width: var(--container);
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 0 16px;
}
.about-combined__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(to left, #ffeadd 30%, #ffffff 70%);
}
.about-combined__block.reverse {
  background: linear-gradient(to right, #ffeadd 70%, #ffffff 30%);
}
.about-combined__block.reverse {
  grid-template-columns: 1fr 1fr;
}
.about-combined__block.reverse .about-combined__image {
  order: 2;
}
.about-combined__block.reverse .about-combined__content {
  order: 1;
}
.about-combined__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-combined__content h2 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.about-combined__content p {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: justify;
}
.about-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-weight: 200;
  text-decoration: none;
  transition: 0.25s ease;
}
.about-btn:hover {
  background: #d86d12;
}
@media (max-width: 960px) {
  .about-combined__block {
    grid-template-columns: 1fr;
    text-align: center;
    background: #ffeadd;
  }
  .about-combined__image {
    order: -1 !important;
  }
  .about-combined__content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .about-combined {
    gap: 4rem;
  }
  .about-combined__block {
    padding: 2rem 1.5rem;
  }
  .about-combined__content p {
    font-size: 1rem;
  }
  .about-combined__content h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 900px) {
  .about-combined__block {
    display: flex !important;
    flex-direction: column !important;
  }
  .about-combined__block.reverse {
    background: #ffeadd;
    flex-direction: column !important;
  }
  .about-combined__media,
  .about-combined__text {
    width: 100% !important;
  }
  .about-combined__media img {
    width: 100%;
    height: auto;
  }
}
.features {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.feature-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.feature-text {
  color: var(--muted);
}
.cta-band {
  background: linear-gradient(180deg, #faf5ff, #fff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band-inner {
  text-align: center;
}
.page-products {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.product {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.product-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}
.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.downloads .download-list {
  display: grid;
  gap: 8px;
}
.file {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px dashed var(--border);
  padding: 12px;
  border-radius: 10px;
}
.file:hover {
  background: var(--accent-3);
}
.jobs {
  display: grid;
  gap: 16px;
}
.form label {
  display: grid;
  gap: 6px;
}
.form input,
.form textarea {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.small {
  font-size: 12px;
}
.map-wrap {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.contact-cta {
  padding: 4rem 1rem;
  text-align: center;
  background: #fff;
  margin-top: 0;
}
.contact-cta__inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #f78417;
  font-weight: 700;
}
.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333;
}
.contact-cta__btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #f78417;
  color: #fff;
  border-radius: 5px;
  font-weight: 200;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-cta__btn:hover {
  background: #d86d12;
  transform: translateY(-2px);
}
.site-footer {
  background: #f78417;
  color: #ffffff;
  text-shadow: #000;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
  font-size: 1rem;
}
.site-footer a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer a:hover {
  color: #000;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.2fr;
  gap: 3rem;
  align-items: flex-start;
}
.footer-col h3 {
  font-size: 1.4rem;
}
.footer-company {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}
.footer-links li::before {
  content: "»";
  margin-top: 0.1rem;
  font-size: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
}
.footer-social img {
  width: 28px;
  height: 28px;
  display: block;
}
.footer-social a img {
  width: 50px;
  height: 50px;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}
@media (max-width: 960px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-col h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .site-footer {
    font-size: 0.95rem;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.er-hero-slider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px 2rem;
  background: #ffffff;
}
.er-hero-slider__viewport {
  position: relative;
  overflow: hidden;
}
.er-hero-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.er-hero-slider__slide {
  min-width: 100%;
  flex: 0 0 100%;
}
.er-hero-slider__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}
.er-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent, #f78417);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.15s ease;
}
.er-hero-slider__arrow--prev {
  left: 1.5rem;
}
.er-hero-slider__arrow--next {
  right: 1.5rem;
}
.er-hero-slider__arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 768px) {
  .er-hero-slider {
    padding: 0 12px;
  }
  .er-hero-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
  .er-hero-slider__arrow--prev {
    left: 0.75rem;
  }
  .er-hero-slider__arrow--next {
    right: 0.75rem;
  }
}
.systems {
  background: #f5f5f7;
  padding: 4rem 0;
}
.systems .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.section-title {
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 0 0 6px;
  font-weight: 800;
  color: var(--brand);
}
.section-sub {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}
.systems-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.system-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.system-title {
  margin: 2px 6px 8px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  color: var(--brand);
}
.system-media {
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ffffff, #e9eef9);
}
.system-media img {
  display: block;
  width: 85%;
  height: 160px;
  object-fit: contain;
  margin: 0 auto;
  filter: saturate(0.95) contrast(1.02);
}
.system-list {
  margin: 6px 6px 10px 20px;
  padding: 0;
  list-style: none;
}
.system-list li {
  position: relative;
  padding-left: 12px;
  margin: 8px 0;
  color: var(--text);
  font-size: 15px;
}
.system-list li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 42, 139, 0.12);
}
.tpc {
  padding: 56px 0;
}
.tpc .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.tpc-title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 800;
}
.tpc-sub {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}
.tpc-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.tpc-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tpc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(19, 28, 45, 0.14);
}
.tpc-card-title {
  margin: 2px 8px 10px;
  font-weight: 800;
  color: var(--brand);
  font-size: clamp(18px, 2vw, 22px);
}
.tpc-media {
  background: linear-gradient(135deg, #ffffff, #e9eef9);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 10px;
  padding: 10px;
}
.tpc-media img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto;
}
.tpc-teaser {
  list-style: none;
  margin: 8px 10px 12px 24px;
  padding: 0;
}
.tpc-teaser li {
  position: relative;
  margin: 8px 0;
  padding-left: 12px;
  color: var(--text);
}
.tpc-teaser li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 42, 139, 0.12);
}
.tpc-details {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 10px;
  margin: 10px 6px 4px;
}
.tpc-details > summary {
  cursor: pointer;
  user-select: none;
  list-style: none;
  color: var(--brand);
  font-weight: 700;
}
.tpc-details > summary::-webkit-details-marker {
  display: none;
}
.tpc-details[open] > summary {
  opacity: 0.9;
}
.tpc-details-body {
  padding: 10px 0 6px;
}
.tpc-specs {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--text);
}
.tpc-config {
  list-style: disc;
  margin: 0 0 12px 20px;
  color: var(--text);
}
.tpc-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.product-segment {
  padding: 3rem 0;
}
.product-segment-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.product-card {
  border: 1px solid var(--border, #e5e5ea);
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  background: #ffffff;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.product-image {
  height: 160px;
  background: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.product-name {
  text-align: left;
  font-size: 0.95rem;
  margin-top: 1rem;
  color: #000;
  font-weight: 600;
}
.product-card:focus-visible {
  outline: 2px solid var(--accent, #f78417);
  outline-offset: 3px;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: var(--accent, #f78417);
}
.product-card:hover .product-name {
  color: #f78417;
}
.product-link {
  text-align: left;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
}
.product-link span {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}
.tpc-elements {
  padding: 3.5rem 0 2.5rem;
}
.tpc-elements__title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: #f78417;
  margin-bottom: 2.5rem;
}
.tpc-elements__grid {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}
.tpc-elements__grid .product-card {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: block;
}
.tpc-element-card {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tpc-element-card__image {
  background: #ffffff;
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.tpc-element-card__image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.tpc-element-card__label {
  background: #f78417;
  color: #ffffff;
  text-align: center;
  padding: 0.9rem 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tpc-element-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .tpc-elements__title {
    font-size: 2.2rem;
  }
  .tpc-elements__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
  .tpc-element-card__image {
    min-height: 150px;
    padding: 1.4rem 1.2rem 1.2rem;
  }
}
@media (max-width: 520px) {
  .tpc-elements__grid {
    grid-template-columns: 1fr;
  }
}
.product-card:hover .product-name,
.product-card:hover .product-link,
.product-card:hover .product-link span {
  color: #f78417;
}
.product-card:hover .product-link span {
  transform: translateX(3px);
}
.product-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 999;
}
.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.product-modal-dialog {
  position: relative;
  width: min(960px, 96vw);
  max-height: min(90vh, 680px);
  overflow: auto;
  background: var(--bg, #ffffff);
  border-radius: 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.product-modal-dialog h3 {
  margin: 0;
  font-size: 1.25rem;
}
.product-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}
.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
.product-modal-images {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-modal-main-image {
  border-radius: 0.75rem;
  border: 1px solid var(--border, #e5e5ea);
  padding: 0.9rem;
  background: var(--card, #f9f9fb);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-modal-main-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.product-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-modal-thumb {
  border-radius: 0.5rem;
  border: 1px solid var(--border, #e5e5ea);
  padding: 0.25rem;
  background: #fff;
  cursor: pointer;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-modal-thumb img {
  max-width: 100%;
  height: auto;
}
.product-modal-thumb.is-active {
  border-color: var(--accent, #f78417);
}
.product-modal-variants {
  display: flex;
  flex-direction: column;
}
.product-modal-variants-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.variant-accordion {
  border-top: 1px solid var(--border, #e5e5ea);
}
.variant-item {
  border-bottom: 1px solid var(--border, #e5e5ea);
}
.variant-header {
  width: 100%;
  text-align: left;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  font-size: 0.96rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.variant-header span {
  pointer-events: none;
}
.variant-header-icon {
  font-size: 1.1rem;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
}
.variant-item.is-open .variant-header-icon {
  transform: rotate(180deg);
}
.variant-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.variant-inner {
  padding: 0 0 1.1rem 0;
}
.variant-subtitle {
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.variant-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 1.75rem;
  align-items: flex-start;
}
.variant-images {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.variant-images img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.variant-data {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-width: 0;
}
.variant-icons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.variant-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  border: 1px solid var(--border, #e5e5ea);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card, #f9f9fb);
}
.variant-icons img {
  width: 40px;
  height: auto;
  display: block;
}
.variant-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.9rem;
}
.variant-table th,
.variant-table td {
  text-align: left;
  padding: 4px 0px;
  white-space: nowrap;
}
.variant-table thead {
  font-weight: 600;
}
.variant-table tr + tr th,
.variant-table tr + tr td {
  border-top: 1px solid #d0d4e4;
}
@media (max-width: 1024px) {
  .product-modal-dialog {
    width: 94vw;
    max-height: calc(100vh - 2rem);
    padding: 1.5rem 1.4rem 1.25rem;
  }
  .product-modal-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 1.4rem;
  }
  .variant-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .product-modal {
    align-items: flex-start;
  }
  .product-modal-dialog {
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    padding: 1.25rem 1rem 1rem;
  }
  .product-modal-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 0.75rem;
  }
  .product-modal-main-image {
    padding: 0.7rem;
  }
  .product-modal-thumbs {
    gap: 0.35rem;
  }
  .product-modal-variants-title {
    font-size: 0.98rem;
  }
  .variant-header {
    font-size: 0.9rem;
  }
  .variant-table th,
  .variant-table td {
    font-size: 0.85rem;
  }
  .product-modal-close {
    position: sticky;
    top: 0.5rem;
    right: 0.75rem;
    margin-left: auto;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    z-index: 2;
  }
}
@media (max-width: 480px) {
  .product-modal-dialog h3 {
    font-size: 1.1rem;
  }
  .product-modal-dialog {
    padding-top: 1rem;
  }
  .variant-icons {
    gap: 0.4rem;
  }
  .variant-icon {
    width: 36px;
    height: 36px;
  }
  .variant-table th,
  .variant-table td {
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .product-card {
    padding: 1.2rem 0.9rem;
  }
  .product-image {
    height: 140px;
  }
  .product-name {
    font-size: 0.9rem;
  }
  .product-link {
    font-size: 0.82rem;
  }
}
.tyre-savings {
  padding: 3rem 0;
  background: #f5f5f7;
}
.tyre-savings__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}
.tyre-savings h2,
.tyre-savings h3 {
  margin: 0 0 0.75rem;
  color: var(--text, #222222);
}
.tyre-savings__intro,
.tyre-savings__text {
  margin: 0 0 1.5rem;
  color: var(--muted, #555555);
  font-size: 0.95rem;
}
.section--tyre .tyre-savings__inner {
  align-items: center;
}
.tyre-savings__table-card {
  background: var(--card, #f9f9fb);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border, #e5e5ea);
}
.tyre-savings__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tyre-savings__badge--neutral {
  background: rgba(148, 163, 184, 0.12);
  color: #4b5563;
}
.tyre-savings__badge--accent {
  background: rgba(247, 132, 23, 0.12);
  color: var(--accent, #f78417);
}
.tyre-savings__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: fixed;
}
.tyre-savings__table td {
  padding: 0.4rem 0.25rem;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}
.tyre-savings__table td:nth-child(1) {
  width: 50%;
  color: var(--muted, #555555);
}
.tyre-savings__table td:nth-child(2) {
  width: 25%;
  text-align: right;
  padding-right: 0.5rem;
}
.tyre-savings__table td:nth-child(3) {
  width: 25%;
  text-align: left;
  padding-left: 0.5rem;
  white-space: nowrap;
  color: var(--muted, #555555);
  font-size: 0.85rem;
}
.tyre-savings__value {
  width: 30%;
  text-align: right;
  font-variant-numeric: tabular-nums;
  display: table-cell;
  padding-right: 0.4rem;
}
.tyre-savings__unit {
  width: 25%;
  text-align: left;
  padding-left: 0.4rem;
  white-space: nowrap;
  color: var(--muted, #555555);
  font-size: 0.85rem;
}
.tyre-savings__highlight-row td {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.tyre-savings__value--highlight,
.tyre-savings__unit--highlight {
  font-weight: 700;
  color: var(--accent, #f78417);
}
.tyre-savings__divider {
  border-top: 1px dashed var(--border, #e5e5ea);
  margin: 1.25rem 0;
}
.tyre-savings__diagram {
  margin-top: 8rem;
  height: 450px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border, #e5e5ea);
}
.tyre-savings__bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tyre-savings__bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tyre-savings__bar-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text, #222222);
}
.icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--accent, #f78417);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.icon-wheel::before {
  content: "";
  width: 45%;
  height: 45%;
  border-radius: 999px;
  border: 2px solid var(--accent, #f78417);
}
.icon-wheel-chain::before,
.icon-wheel-chain::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 2px solid var(--accent, #f78417);
}
.icon-wheel-chain::before {
  width: 45%;
  height: 45%;
}
.icon-wheel-chain::after {
  width: 60%;
  height: 40%;
  transform: rotate(-35deg);
  border-style: dashed;
}
.tyre-savings__bar {
  width: 100%;
  border-radius: 999px;
  background: #e5e5ea;
  overflow: hidden;
}
.tyre-savings__bar-fill {
  position: relative;
  min-height: 1.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
}
.tyre-savings__bar-fill--short {
  width: 20%;
  background: linear-gradient(90deg, #9ca3af, #6b7280);
}
.tyre-savings__bar-fill--long {
  width: 100%;
  background: linear-gradient(90deg, var(--accent, #f78417), #f97316);
}
.tyre-savings__bar-hours {
  font-size: 0.8rem;
  color: #ffffff;
  padding: 0 0.75rem;
}
.tyre-savings__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted, #555555);
}
.tyre-savings__highlights li strong {
  color: var(--accent, #f78417);
  font-weight: 700;
}
@media (max-width: 1090px) {
  .tyre-savings__diagram {
    margin-top: 10rem;
  }
}
@media (max-width: 900px) {
  .section--tyre {
    min-height: auto;
    align-items: stretch;
    padding: 2.5rem 0;
  }
  .tyre-savings__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
  .tyre-savings__table-card {
    margin: 0;
  }
  .tyre-savings__diagram {
    margin-top: 0;
    height: auto;
    order: 2;
  }
}
.contact-page {
  padding: 3.5rem 1.5rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
}
.page-intro {
  margin-bottom: 2.5rem;
}
.page-intro .intro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.page-intro h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.page-intro .lead {
  color: var(--muted);
  max-width: 32rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}
.card-Ko {
  background: var(--card);
  border-radius: 24px;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(229, 229, 234, 0.8);
  box-shadow: var(--shadow-soft);
}
.form-title {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.card-Ko.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.card-Ko.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.card-Ko.form input,
.card-Ko.form textarea {
  font: inherit;
  border-radius: 999px;
  border: 1px solid var(--input-border);
  padding: 0.8rem 1rem;
  background: var(--input-bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.card-Ko.form textarea {
  border-radius: 18px;
  min-height: 150px;
  resize: vertical;
}
.card-Ko.form input:focus,
.card-Ko.form textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 2px rgba(247, 132, 23, 0.15);
  background: #ffffff;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0 0.5rem;
}
.form-actions .btn {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
}
.form-actions .btn.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.form-actions .btn.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.contact-info-card h2 {
  margin-bottom: 0.75rem;
}
.contact-address {
  margin-bottom: 0.75rem;
}
.contact-lines a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.contact-lines a:hover {
  color: var(--accent);
}
.contact-social {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.contact-social-icons {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.contact-social-icons a img {
  width: 34px;
  height: 34px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.contact-social-icons a:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}
.map-wrap {
  margin-top: 0.5rem;
  border-radius: 20px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}
.map-hint {
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .contact-page {
    padding-top: 2.5rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .card-Ko {
    padding: 1.6rem 1.4rem;
  }
  .contact-social {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .page-intro h1 {
    font-size: 1.7rem;
  }
}
.legal-page {
  padding: 2.25rem 1.5rem 3rem;
  background: var(--bg, #ffffff);
}
.legal-page > .container {
  max-width: 880px;
  margin: 0 auto;
}
.legal-subnav {
  margin-bottom: 1.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border, #e5e5ea);
}
.legal-subnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-subnav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted, #666);
  padding-bottom: 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.legal-subnav a:hover {
  color: var(--accent, #f78417);
}
.legal-subnav a.is-active {
  color: var(--accent, #f78417);
  border-color: var(--accent, #f78417);
}
.legal-page h1 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.legal-page h2 {
  margin: 1.4rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.legal-page p,
.legal-page li {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text, #222);
}
.legal-page ul {
  margin: 0.2rem 0 0.8rem;
  padding-left: 1.1rem;
}
.legal-page section + section {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border, #eee);
}
.slider-section--legal {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
@media (max-width: 640px) {
  .legal-page {
    padding: 1.75rem 1.1rem 2.5rem;
  }
  .legal-page h1 {
    font-size: 1.45rem;
  }
  .legal-page h2 {
    font-size: 1rem;
  }
  .legal-page p,
  .legal-page li {
    font-size: 0.9rem;
  }
}
.langswitch {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1rem;
}
.langswitch .btn,
.langswitch .btn.btn-outline {
  padding: 0.35rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.1;
  border-radius: 999px;
  white-space: nowrap;
}
html[lang="de"] .langswitch [data-switch-lang="de"],
html[lang="en"] .langswitch [data-switch-lang="en"],
html[lang="tr"] .langswitch [data-switch-lang="tr"] {
  outline: 2px solid currentColor;
  outline-offset: 1px;
  filter: saturate(1.2);
}
.site-header .langswitch .btn.btn-outline {
  background: transparent;
  backdrop-filter: saturate(120%);
}
@media (max-width: 768px) {
  .nav .langswitch {
    display: none;
  }
  #mobileMenu .langswitch {
    display: flex;
  }
}
.langmenu {
  position: relative;
  z-index: 99999;
}
.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border, #e5e5ea);
  border-radius: 0.75rem;
  padding: 0.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  z-index: 999999;
}
.er-top .lang-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 200;
  color: #f78417;
}
.er-top .lang-btn:hover {
  text-decoration: underline;
}
.lang-current {
  font-weight: 100;
  padding-top: 1px;
}
.er-top .lang-globe {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.er-top .lang-caret {
  font-size: 10px;
  margin-top: 1px;
}
.lang-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.lang-item:hover {
  background: var(--card, #f6f6f8);
}
.lang-item[aria-current="true"] {
  background: var(--card, #f0f0f4);
  font-weight: 700;
}
@media (max-width: 900px) {
  .lang-btn {
    display: inline-flex;
    align-items: center;
    color: #f78417;
    gap: 0.5rem;
    border: none;
    background-color: #fff;
    padding: 0;
  }
  .langmenu.mobile-langmenu {
    height: 30px;
  }
  .lang-list {
    position: relative;
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .nav .langmenu {
    display: none;
  }
  #mobileMenu .langmenu {
    display: block;
    padding: 1rem 0;
  }
  .lang-current {
    font-weight: 700;
  }
}
.about-page {
  background: #ffffff;
}
.about-hero {
  border-bottom: 1px solid var(--border, #e5e5ea);
  background: #f5f5f7;
  padding: 3.5rem 0 3rem;
}
.about-hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}
.about-hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}
.about-hero-lead {
  margin: 0 0 1.1rem;
  color: var(--muted, #555555);
  font-size: 0.98rem;
  line-height: 1.7;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.about-hero-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding-left: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.93rem;
  color: var(--text, #222222);
}
.about-hero-list li {
  position: relative;
  padding-left: 14px;
}
.about-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 1px;
  background: var(--accent, #f78417);
}
.about-hero-media {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-hero-video-frame {
  background: #000;
  border-radius: 0;
  border: 1px solid #111;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-hero-video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 360px;
}
.about-hero-caption {
  font-size: 0.86rem;
  color: var(--muted, #555555);
}
.about-stats-section {
  border-bottom: 1px solid var(--border, #e5e5ea);
  background: #ffffff;
}
.about-stats {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.8rem 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted, #666);
}
.about-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
}
.about-stat-text {
  font-size: 0.9rem;
  color: var(--muted, #555);
}
.about-intro {
  padding: 3rem 0 2.5rem;
}
.about-intro-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: flex-start;
}
.about-text h2 {
  font-size: 1.7rem;
  margin: 0 0 0.8rem;
}
.about-text p,
.about-text-secondary p {
  margin: 0 0 0.9rem;
  font-size: 0.96rem;
  line-height: 1.7;
}
.about-text-secondary h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}
.about-sectors {
  padding: 3rem 0;
  border-top: 1px solid var(--border, #e5e5ea);
  border-bottom: 1px solid var(--border, #e5e5ea);
  background: #f9f9fb;
}
.about-sectors .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.about-sectors h2 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}
.about-sectors .section-sub {
  max-width: 52rem;
  margin: 0 0 1.8rem;
  color: var(--muted, #555555);
  font-size: 0.95rem;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.about-card {
  background: #ffffff;
  border-radius: 0;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border, #e5e5ea);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}
.about-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.about-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
}
.about-gallery {
  padding: 3rem 0 3.2rem;
}
.about-gallery .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.about-gallery h2 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}
.about-gallery .section-sub {
  max-width: 52rem;
  margin: 0 0 2rem;
  color: var(--muted, #555555);
}
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
.about-gallery-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border, #e5e5ea);
}
.about-gallery-item--wide {
  grid-column: span 3;
}
.about-gallery-item img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 0;
}
.about-gallery-item--wide img {
  height: 320px;
}
.about-gallery-shape {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 132, 23, 0.12), rgba(255, 247, 240, 0.9));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.about-gallery-item figcaption {
  background: var(--accent, #f78417);
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.4;
  border-top: none;
  border-radius: 0;
}
.about-promise {
  padding: 3rem 0 4rem;
  background: #ffffff;
}
.about-promise .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.about-promise-card {
  border-radius: 0;
  padding: 2.3rem 2.1rem;
  background: linear-gradient(135deg, var(--accent-3, #fff7f0), rgba(247, 132, 23, 0.08));
  border: 1px solid rgba(247, 132, 23, 0.3);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}
.about-promise-card h2 {
  font-size: 1.5rem;
  margin: 0 0 0.8rem;
}
.about-list {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  line-height: 1.7;
}
.about-list li + li {
  margin-top: 0.25rem;
}
.about-claim {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent, #f78417);
}
@media (max-width: 960px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-hero-media {
    max-width: 520px;
    margin: 0 auto;
  }
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-intro-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-gallery-item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .about-hero {
    padding: 2.8rem 0 2.4rem;
  }
  .about-hero-grid {
    gap: 2rem;
  }
  .about-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
    padding-block: 1.6rem;
  }
  .about-intro {
    padding: 2.4rem 0 2.2rem;
  }
  .about-sectors {
    padding: 2.4rem 0;
  }
  .about-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-gallery {
    padding: 2.4rem 0 2.6rem;
  }
  .about-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-gallery-item--wide {
    grid-column: span 1;
  }
  .about-promise {
    padding: 2.6rem 0 3.2rem;
  }
  .about-promise-card {
    padding: 2rem 1.6rem;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
}
.product-modal {
  max-width: 100%;
  overflow-x: hidden;
}
@media (max-width: 740px) {
  .product {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
}
body.loading {
  overflow: hidden;
}
.pz-loader {
  position: fixed;
  inset: 0;
  background: #0a0a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.pz-loader-text {
  display: inline-flex;
  gap: 0.6rem;
  overflow: hidden;
}
.pz-loader-word {
  display: inline-block;
  color: #f78417;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transform: translateY(120%);
  opacity: 0;
  animation: pz-text-reveal 1s ease-out forwards;
}
.pz-loader-word--protec {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  animation-delay: 0.1s;
}
.pz-loader-word--zincir {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  animation-delay: 0.25s;
}
@keyframes pz-text-reveal {
  0% {
    transform: translateY(120%);
    opacity: 0;
  }
  60% {
    transform: translateY(-4%);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.pz-loader.is-done {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 600px) {
  .pz-loader-word--protec,
  .pz-loader-word--zincir {
    font-size: 1.3rem;
    letter-spacing: 0.14em;
  }
}
.ps-page {
  padding: 2.5rem 0 4rem;
}
.ps-hero {
  background: linear-gradient(135deg, #ffeadd, #ffffff);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.4rem;
  box-shadow: var(--shadow-soft);
  margin: 1rem auto 3rem;
}
.ps-kicker {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--accent, #f78417);
  margin: 0 0 0.4rem;
}
.ps-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  line-height: 1.2;
  color: #f78417;
}
.ps-lead {
  margin: 0 0 0.7rem;
  font-size: 1.02rem;
  font-weight: 200;
  color: var(--muted);
}
.ps-text {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 200;
  color: var(--muted);
  max-width: 70ch;
}
.ps-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.ps-box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ps-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.ps-box-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ps-box-title {
  background: #f78417;
  color: #ffffff;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .ps-links-grid {
    grid-template-columns: 1fr;
  }
  .ps-box-image img {
    height: 160px;
  }
}
@media (max-width: 900px) {
  .ps-hero {
    margin: 2.4rem auto 2.4rem;
    padding: 2.2rem 1.8rem;
  }
  .ps-links-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .ps-hero {
    margin: 2rem auto 2rem;
    padding: 1.8rem 1.4rem;
    border-radius: var(--radius-lg);
  }
  .ps-title {
    font-size: 1.6rem;
  }
  .ps-card-inner {
    padding: 1.5rem 1.3rem;
  }
}
.config-page {
  padding: 2.5rem 0 4rem;
}
.config-hero {
  padding: 2rem 0 0;
}
.config-hero-grid {
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 2.6rem 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffeadd, #ffffff);
  box-shadow: var(--shadow-soft);
}
.config-kicker {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  color: var(--accent, #f78417);
  margin: 0 0 0.4rem;
}
.config-hero-text h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  color: #f78417;
}
.config-hero-lead {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 200;
  color: var(--muted);
}
.config-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.config-section {
  padding: 1rem 0 0;
}
.config-row {
  max-width: 980px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}
.config-block {
  position: relative;
}
.config-block--navy {
  background: #f78417;
  color: #ffffff;
  padding: 3.2rem 3rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.config-block--navy h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}
.config-block--navy p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 200;
}
.config-block--grey {
  background: #fff7f0;
  color: #111;
  padding: 3.2rem 3rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.config-block--grey h2 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}
.config-block--grey p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 200;
}
.config-block--image {
  justify-self: center;
}
.config-block--image img {
  max-width: 320px;
  height: auto;
  display: block;
}
.config-row--middle {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
}
.config-row--top .config-block--image img {
  transform: translateX(10px);
}
.config-row--bottom .config-block--image img {
  transform: translateX(10px);
}
@media (max-width: 960px) {
  .config-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 2.2rem 1.8rem;
  }
  .config-row,
  .config-row--middle {
    grid-template-columns: minmax(0, 1fr);
  }
  .config-block--image,
  .config-block--image-left {
    order: -1;
  }
  .config-block--navy,
  .config-block--grey {
    padding: 2rem 1.8rem;
  }
  .config-block--image img {
    max-width: 190px;
    margin-inline: auto;
    transform: none;
  }
}
@media (max-width: 600px) {
  .config-hero-grid {
    margin-bottom: 2.2rem;
  }
  .config-row {
    margin-bottom: 2.2rem;
  }
  .config-block--navy,
  .config-block--grey {
    padding: 1.8rem 1.4rem;
  }
  .config-block--navy h2,
  .config-block--grey h2 {
    font-size: 1.2rem;
  }
}
.variant-table th:first-child,
.variant-table td:first-child {
  padding-right: 1.8rem !important;
}
.variant-table th:nth-child(1),
.variant-table td:nth-child(1) {
  width: 55% !important;
}
.variant-table th:nth-child(2),
.variant-table td:nth-child(2) {
  width: 45% !important;
}
