:root {
  --navy: #263474;
  --navy-dark: #111827;
  --navy-soft: #314082;
  --orange: #ff5e14;
  --orange-dark: #e8500d;
  --text: #18213b;
  --muted: #687386;
  --line: #e7ebf1;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(24, 33, 59, .1);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img, svg { display: block; }
button, input, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

.topbar {
  min-height: 44px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  font-size: 14px;
}
.topbar .wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar a { text-decoration: none; white-space: nowrap; }
.topbar a:hover, .topbar .company-profile { color: #fff; }
.topbar .company-profile { margin-left: auto; font-weight: 700; }
.socials { display: flex; align-items: center; gap: 8px; }
.socials a, .footer-socials a {
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.24); color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 800;
}

.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.header-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: .9; }
.brand img {
  width: 260px;
  max-width: 28vw;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}
.brand span:first-child {
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
}
.brand span:last-child {
  color: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav { display: flex; justify-content: flex-end; gap: 28px; align-items: center; }
.nav a {
  text-decoration: none;
  color: #4b5563;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -15px;
  height: 2px;
  background: var(--orange);
}
.hero {
  min-height: 620px;
  background:
    linear-gradient(rgba(38,52,116,.58), rgba(38,52,116,.62)),
    url("assets/site-images/home-forging-hero.png") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  max-width: 820px;
  width: fit-content;
  background: var(--orange);
  padding: 8px 20px 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 52px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 700;
}
.hero p { max-width: 650px; margin: 24px 0 30px; color: rgba(255,255,255,.88); font-size: 18px; }
.button {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 22px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.button:hover { background: var(--orange-dark); }
.button.secondary { background: var(--navy); }

.quote-card {
  background: #fff;
  color: var(--text);
  padding: 32px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.quote-card h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.25;
}
.quote-card h2 strong { color: var(--orange); }
.field { margin-bottom: 13px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--text);
  outline: 0;
}
.field textarea { min-height: 96px; resize: vertical; }

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.quote-modal:target { display: flex; }
.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .72);
  backdrop-filter: blur(3px);
}
.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  padding: 34px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.modal-panel h2 {
  margin: 0 44px 10px 0;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.15;
}
.modal-panel p { margin: 0 0 22px; color: var(--muted); }
.modal-panel .button { width: 100%; }

.section { padding: 88px 0; }
.section-title {
  margin: 0 0 40px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
}
.section-title strong { color: var(--orange); }
.lead { max-width: 780px; color: var(--muted); margin: -18px 0 42px; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.section-head .section-title { margin-bottom: 0; max-width: 700px; }
.section-head .lead { margin: 0; max-width: 470px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.section-actions { margin-top: 28px; }

.expert-section {
  padding: 92px 0 78px;
  background: #fff;
}

.carousel-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.expert-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
}

.expert-head {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.expert-head h2 {
  margin: 0;
  max-width: 720px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 50px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: 0;
}

.expert-head h2 strong {
  color: var(--orange);
}

.expert-dots {
  display: flex;
  gap: 9px;
  padding-top: 64px;
  flex: 0 0 auto;
}

.expert-dot {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.expert-dot:hover {
  transform: scale(1.2);
  background: var(--orange);
}

#expert-slide-1:checked ~ .wrap label[for="expert-slide-1"],
#expert-slide-2:checked ~ .wrap label[for="expert-slide-2"],
#expert-slide-3:checked ~ .wrap label[for="expert-slide-3"] {
  background: var(--orange);
}

.expert-carousel {
  overflow: hidden;
}

.expert-track {
  width: 300%;
  display: flex;
  transition: transform .58s var(--ease);
}

#expert-slide-1:checked ~ .wrap .expert-track { transform: translateX(0); }
#expert-slide-2:checked ~ .wrap .expert-track { transform: translateX(-33.3333%); }
#expert-slide-3:checked ~ .wrap .expert-track { transform: translateX(-66.6666%); }

.expert-slide {
  flex: 0 0 33.3333%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.expert-card img {
  width: 100%;
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
  background: #edf1f5;
}

.expert-card h3 {
  margin: 30px 0 18px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 800;
}

.expert-card p {
  min-height: 84px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.expert-card a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  text-decoration: none;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
}

.expert-card a span {
  font-size: 24px;
  line-height: 1;
}

.expert-quote-card {
  min-height: 615px;
  padding: 44px;
  border: 0;
  box-shadow: 0 22px 62px rgba(24,33,59,.09);
  align-self: start;
}

.expert-quote-card::before {
  display: none;
}

.expert-quote-card h2 {
  margin-bottom: 42px;
  font-size: 27px;
  line-height: 1.3;
}

.expert-quote-card .field {
  margin-bottom: 30px;
}

.expert-quote-card .field input,
.expert-quote-card .field select {
  min-height: 52px;
}

.expert-quote-card .field textarea {
  min-height: 116px;
}

.form-note {
  margin: -2px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.expert-stats {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.expert-stat {
  min-height: 158px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24,33,59,.08);
  padding: 34px 30px;
  border-radius: var(--radius);
}

.expert-stat::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 18px;
  width: 112px;
  height: 112px;
  border: 8px solid rgba(37,53,121,.055);
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.expert-stat strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.expert-stat span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .03em;
}

.intro-band { background: var(--soft); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: 42px;
  align-items: center;
}
.intro-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: 0 12px 28px rgba(24,33,59,.07);
}
.intro-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.18;
}
.intro-copy p { color: var(--muted); margin: 0 0 16px; }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.proof-card {
  min-height: 132px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 22px;
}
.proof-card strong {
  display: block;
  color: var(--orange);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-card span { color: var(--navy); font-weight: 800; }
.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
}
.home-category-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.home-category-card img { width: 100%; aspect-ratio: 1.2 / 1; object-fit: cover; background: #edf1f5; }
.home-category-card strong {
  display: block;
  padding: 18px 18px 4px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}
.home-category-card span { display: block; padding: 0 18px 18px; color: var(--muted); font-size: 14px; }
.process-section {
  background: var(--navy);
  color: #fff;
}
.process-section .section-title { color: #fff; }
.process-section .lead { color: rgba(255,255,255,.75); }
.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.step-card {
  min-height: 210px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
}
.step-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 8px; font-family: "Poppins", Arial, sans-serif; font-size: 19px; }
.step-card p { margin: 0; color: rgba(255,255,255,.72); }
.product-preview { background: var(--soft); }
.cert-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.cert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.cert-card strong { display: block; color: var(--navy); font-family: "Poppins", Arial, sans-serif; margin-bottom: 8px; }
.cert-card p { margin: 0; color: var(--muted); }
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 42px;
}
.cta-panel h2 {
  margin: 0 0 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.16;
}
.cta-panel p { margin: 0; color: rgba(255,255,255,.78); max-width: 760px; }
.cta-panel .button.secondary { background: #fff; color: var(--navy); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.feature-card, .product-card, .post-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card img, .product-card img, .post-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: #edf1f5;
}
.feature-card div, .product-card div, .post-card div { padding: 22px; }
.feature-card h3, .product-card h3, .post-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}
.feature-card p, .product-card p, .post-card p { margin: 0; color: var(--muted); }

.stats { padding: 30px 0 90px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(24,33,59,.08);
  padding: 28px;
  border-radius: var(--radius);
}
.stat strong { display: block; color: var(--orange); font-size: 38px; font-family: "Poppins", Arial, sans-serif; line-height: 1; }
.stat span { display: block; margin-top: 9px; color: var(--navy); font-weight: 800; }

.service-band { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.service-image-panel { min-height: 500px; background: var(--navy-ink); overflow: hidden; }
.service-image-panel img { width: 100%; height: 100%; object-fit: cover; }
.service-tile-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.service-tile {
  min-height: 250px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 34px;
  color: #fff;
}
.service-tile:nth-child(odd) { background: var(--navy); }
.service-tile:nth-child(even) { background: var(--orange); }
.service-tile h3 { margin: 0 0 10px; font-family: "Poppins", Arial, sans-serif; font-size: 24px; }
.service-tile p { margin: 0; max-width: 440px; color: rgba(255,255,255,.86); }

.quality { background: var(--soft); }
.quality-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.quality-panel {
  background: var(--navy);
  color: #fff;
  padding: 42px;
  border-radius: var(--radius);
}
.quality-panel h2 { margin: 0 0 18px; font-family: "Poppins", Arial, sans-serif; font-size: 38px; line-height: 1.15; }
.quality-panel p { color: rgba(255,255,255,.8); }
.process-list { display: grid; gap: 16px; }
.process-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: var(--radius);
}
.process-list strong {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
}
.process-list h3 { margin: 0 0 4px; color: var(--navy); font-size: 18px; }
.process-list p { margin: 0; color: var(--muted); }

.page-hero {
  background: var(--navy);
  color: #fff;
}
.page-hero .wrap {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-hero h1 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 52px;
  line-height: 1.1;
}
.breadcrumb { color: rgba(255,255,255,.72); }
.breadcrumb a { color: #fff; text-decoration: none; }

.two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 54px; align-items: center; }
.two-col img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.content h2 { margin: 0 0 18px; color: var(--navy); font-family: "Poppins", Arial, sans-serif; font-size: 38px; line-height: 1.18; }
.content p { color: var(--muted); margin: 0 0 16px; }
.check-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.check-list li::before { content: ""; width: 9px; height: 9px; background: var(--orange); display: inline-block; margin-right: 10px; }

.category-toggle { position: fixed; opacity: 0; pointer-events: none; }
.catalog-layout { display: grid; grid-template-columns: 295px minmax(0,1fr); gap: 42px; }
.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 24px;
  align-self: start;
  box-shadow: var(--shadow);
}
.filter-panel h2 { margin: 0 0 18px; color: var(--navy); font-family: "Poppins"; font-size: 22px; }
.filter-panel label {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #667085;
  font-weight: 700;
  cursor: pointer;
}
.filter-panel label::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
}
.filter-panel label span {
  margin-left: auto;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
#cat-all:checked ~ .site-shell label[for="cat-all"],
#cat-automotive:checked ~ .site-shell label[for="cat-automotive"],
#cat-axle:checked ~ .site-shell label[for="cat-axle"],
#cat-railway:checked ~ .site-shell label[for="cat-railway"],
#cat-gear:checked ~ .site-shell label[for="cat-gear"],
#cat-construction:checked ~ .site-shell label[for="cat-construction"],
#cat-defence:checked ~ .site-shell label[for="cat-defence"],
#cat-ring:checked ~ .site-shell label[for="cat-ring"],
#cat-cardan:checked ~ .site-shell label[for="cat-cardan"] { color: var(--navy); }
#cat-all:checked ~ .site-shell label[for="cat-all"]::before,
#cat-automotive:checked ~ .site-shell label[for="cat-automotive"]::before,
#cat-axle:checked ~ .site-shell label[for="cat-axle"]::before,
#cat-railway:checked ~ .site-shell label[for="cat-railway"]::before,
#cat-gear:checked ~ .site-shell label[for="cat-gear"]::before,
#cat-construction:checked ~ .site-shell label[for="cat-construction"]::before,
#cat-defence:checked ~ .site-shell label[for="cat-defence"]::before,
#cat-ring:checked ~ .site-shell label[for="cat-ring"]::before,
#cat-cardan:checked ~ .site-shell label[for="cat-cardan"]::before {
  border-color: var(--orange);
  background: radial-gradient(circle, var(--orange) 0 38%, transparent 42%);
}
.catalog-head { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.catalog-head h2 { margin: 0; color: var(--navy); font-family: "Poppins"; font-size: 38px; line-height: 1.16; }
.catalog-head p { margin: 12px 0 0; color: var(--muted); max-width: 680px; }
.catalog-head span { color: #98a2b3; padding-top: 12px; white-space: nowrap; }
.category-grid, .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.category-card {
  background: var(--soft);
  color: var(--text);
  text-decoration: none;
  min-height: 330px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card img { width: 100%; aspect-ratio: 1.18/1; object-fit: cover; }
.category-card strong { display: block; padding: 18px 18px 6px; color: var(--navy); font-family: "Poppins"; font-size: 19px; line-height: 1.2; }
.category-card p { margin: 0; padding: 0 18px 20px; color: var(--muted); font-size: 14px; }
#cat-automotive:checked ~ .site-shell .category-card:not(.automotive),
#cat-axle:checked ~ .site-shell .category-card:not(.axle),
#cat-railway:checked ~ .site-shell .category-card:not(.railway),
#cat-gear:checked ~ .site-shell .category-card:not(.gear),
#cat-construction:checked ~ .site-shell .category-card:not(.construction),
#cat-defence:checked ~ .site-shell .category-card:not(.defence),
#cat-ring:checked ~ .site-shell .category-card:not(.ring),
#cat-cardan:checked ~ .site-shell .category-card:not(.cardan) { display: none; }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.contact-card { border: 1px solid var(--line); background: #fff; padding: 26px; border-radius: var(--radius); box-shadow: 0 12px 28px rgba(24,33,59,.07); }
.contact-card strong { display: block; color: var(--orange); font-family: "Poppins"; margin-bottom: 8px; }
.contact-form { background: var(--soft); border: 1px solid var(--line); padding: 32px; border-radius: var(--radius); }

.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding-top: 66px;
}
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr 1fr 1.2fr; gap: 34px; padding-bottom: 54px; }
.footer-brand strong { display: block; color: #fff; font-family: "Poppins"; font-size: 30px; line-height: 1; margin-bottom: 20px; }
.footer-brand span { color: var(--orange); }
.footer-logo {
  width: 235px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.site-footer h3 { color: #fff; margin: 0 0 18px; font-size: 17px; font-family: "Poppins"; }
.site-footer p { margin: 0 0 18px; color: #cbd5e1; }
.site-footer a { display: block; width: fit-content; text-decoration: none; color: #cbd5e1; margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.newsletter-form { display: flex; height: 46px; border: 1px solid rgba(255,255,255,.2); margin-top: 18px; }
.newsletter-form input { min-width: 0; flex: 1; border: 0; background: transparent; color: #fff; padding: 0 12px; outline: 0; }
.newsletter-form button { width: 72px; border: 0; background: var(--orange); color: #fff; font-weight: 800; cursor: pointer; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.site-footer .footer-socials a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  font-size: 14px;
}

/* Patrai-inspired visual polish layer */
:root {
  --navy: #253579;
  --navy-dark: #0d1534;
  --navy-deep: #101b4d;
  --navy-ink: #080f2a;
  --orange: #ff5e14;
  --orange-soft: #ff7a2a;
  --shadow: 0 18px 42px rgba(24, 33, 59, .12);
  --shadow-strong: 0 32px 88px rgba(13, 21, 52, .22);
  --shadow-hover: 0 24px 60px rgba(13, 21, 52, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-padding-top: 110px; }
body {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 44%, #fff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(37,53,121,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37,53,121,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0, #000 130px, #000 70%, transparent 100%);
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-18px, 10px, 0); }
}

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

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes shineSweep {
  from { transform: translateX(-140%) skewX(-18deg); }
  to { transform: translateX(180%) skewX(-18deg); }
}

.topbar {
  background:
    linear-gradient(90deg, var(--navy-ink), var(--navy) 56%, var(--navy-deep));
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.topbar a,
.socials a,
.footer-socials a {
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.socials a:hover,
.footer-socials a:hover {
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(13,21,52,.08);
}

.header-inner { min-height: 104px; }

.brand img {
  filter: drop-shadow(0 12px 22px rgba(13,21,52,.08));
}

.nav a {
  padding: 10px 0;
  transition: color .2s ease;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}

.nav a:hover::before,
.nav a.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a.active::after { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(750px, calc(100vh - 148px));
  overflow: hidden;
  background: #101b4d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("assets/site-images/home-forging-hero.png") center/cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.02) 0%, rgba(4,8,20,.18) 34%, rgba(3,7,18,.64) 68%, rgba(0,0,0,.88) 100%),
    linear-gradient(180deg, rgba(8,15,42,.08), rgba(8,15,42,.22));
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 690px);
  justify-content: end;
}

.hero-copy {
  width: min(690px, 100%);
  margin-left: auto;
}

.hero h1 {
  color: #fff;
  background: rgba(255, 94, 20, .92);
  box-shadow: 0 24px 58px rgba(255,94,20,.26);
  text-shadow: 0 2px 14px rgba(0,0,0,.16);
  animation: none;
}

.hero p {
  max-width: 560px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 12px rgba(0,0,0,.24);
  animation: none;
}

.hero .button-row { animation: none; }

.button {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(255,94,20,.25);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .2s ease, color .2s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  width: 42px;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  opacity: 0;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255,94,20,.34);
}

.button:hover::after {
  opacity: 1;
  animation: shineSweep .7s ease;
}

.button.secondary {
  box-shadow: 0 12px 28px rgba(37,53,121,.22);
}

.button.secondary:hover {
  background: var(--navy-deep);
  box-shadow: 0 18px 38px rgba(13,21,52,.26);
}

.quote-card,
.modal-panel,
.contact-form {
  position: relative;
  overflow: hidden;
}

.quote-card {
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: var(--shadow-strong);
  animation: fadeRise .74s var(--ease) .2s both;
}

.quote-card::before,
.modal-panel::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft), var(--navy));
}

.field input,
.field textarea,
.field select {
  border-color: #d8dfeb;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255,94,20,.7);
  box-shadow: 0 0 0 4px rgba(255,94,20,.1);
  background: #fff;
}

.quote-modal:target .modal-scrim {
  animation: fadeRise .2s ease both;
}

.quote-modal:target .modal-panel {
  animation: modalIn .3s var(--ease) both;
}

.modal-close {
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.modal-close:hover {
  background: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}

.section {
  position: relative;
}

.section-title {
  text-wrap: balance;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--orange), rgba(255,94,20,.12));
}

.section-head .section-title::after { margin-top: 14px; }

.intro-band,
.product-preview,
.quality {
  background:
    linear-gradient(180deg, #f7f9fd, #fff);
}

.intro-copy,
.proof-card,
.cert-card,
.contact-card,
.process-list > div,
.filter-panel {
  position: relative;
  box-shadow: 0 14px 34px rgba(13,21,52,.08);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.intro-copy:hover,
.proof-card:hover,
.cert-card:hover,
.contact-card:hover,
.process-list > div:hover,
.filter-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255,94,20,.24);
  box-shadow: var(--shadow-hover);
}

.proof-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff 0%, #fff 66%, #fff3ed 100%);
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255,94,20,.08);
  transform: rotate(24deg);
}

.feature-card,
.product-card,
.post-card,
.home-category-card,
.category-card {
  position: relative;
  background: #fff;
  box-shadow: 0 12px 30px rgba(13,21,52,.075);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.feature-card::before,
.product-card::before,
.post-card::before,
.home-category-card::before,
.category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  transform: scaleX(.38);
  transform-origin: left;
  transition: transform .32s var(--ease);
}

.feature-card:hover,
.product-card:hover,
.post-card:hover,
.home-category-card:hover,
.category-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255,94,20,.3);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before,
.product-card:hover::before,
.post-card:hover::before,
.home-category-card:hover::before,
.category-card:hover::before {
  transform: scaleX(1);
}

.feature-card img,
.product-card img,
.post-card img,
.home-category-card img,
.category-card img,
.two-col img {
  transition: transform .7s var(--ease), filter .35s ease;
}

.feature-card:hover img,
.product-card:hover img,
.post-card:hover img,
.home-category-card:hover img,
.category-card:hover img,
.two-col:hover img {
  transform: scale(1.06);
  filter: saturate(1.14) contrast(1.04);
}

.sectoral-layout .catalog-head {
  display: block;
  margin-bottom: 34px;
}

.sectoral-layout .catalog-head p {
  max-width: 980px;
}

.sectoral-layout .category-card {
  cursor: default;
}

.sectoral-layout .category-card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(13,21,52,.075);
}

.sectoral-layout .category-card:hover::before {
  transform: scaleX(.38);
}

.sectoral-layout .category-card:hover img {
  transform: none;
  filter: none;
}

.home-services {
  padding: 92px 0 100px;
  background: #fff;
}

.home-services .section-head {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 58px;
  margin-bottom: 56px;
}

.home-services .section-title {
  max-width: 500px;
  font-size: clamp(44px, 4.8vw, 60px);
  line-height: 1.08;
  margin: 0;
}

.home-services .section-title::after {
  display: none;
}

.home-services .section-head .lead {
  max-width: none;
  margin: 0;
  padding: 26px 0 26px 44px;
  border-left: 2px solid rgba(13,21,52,.18);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: .01em;
}

.home-services .home-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.home-services .home-category-card {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.home-services .home-category-card::before {
  display: none;
}

.home-services .home-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(13,21,52,.14);
}

.home-services .home-category-card img {
  width: 100%;
  height: clamp(210px, 18vw, 252px);
  aspect-ratio: auto;
  object-fit: cover;
  background: #edf1f5;
  transition: transform .65s var(--ease), filter .3s ease;
}

.home-services .home-category-card strong {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: clamp(19px, 1.65vw, 24px);
  line-height: 1.18;
  font-weight: 700;
  transition: opacity .24s ease, transform .32s var(--ease);
}

.home-services .home-category-card span {
  display: none;
}

.home-services .service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 36px;
  background: rgba(255,94,20,.86);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity .34s ease, transform .45s var(--ease);
}

.home-services .service-card-overlay h3 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  transform: translateY(10px);
  transition: transform .42s var(--ease);
}

.home-services .service-card-overlay p {
  margin: 0;
  max-width: 360px;
  color: #fff;
  font-size: 16px;
  line-height: 1.82;
  font-weight: 700;
  transform: translateY(12px);
  transition: transform .42s var(--ease) .03s;
}

.home-services .service-card-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 2px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  transform: translateY(14px);
  transition: transform .42s var(--ease) .06s;
}

.home-services .service-card-overlay i {
  font-size: 13px;
}

.home-services .home-category-card:hover img,
.home-services .home-category-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}

.home-services .home-category-card:hover strong,
.home-services .home-category-card:focus-visible strong {
  opacity: 0;
  transform: translateY(18px);
}

.home-services .home-category-card:hover .service-card-overlay,
.home-services .home-category-card:focus-visible .service-card-overlay {
  opacity: 1;
  transform: scale(1);
}

.home-services .home-category-card:hover .service-card-overlay h3,
.home-services .home-category-card:hover .service-card-overlay p,
.home-services .home-category-card:hover .service-card-overlay span,
.home-services .home-category-card:focus-visible .service-card-overlay h3,
.home-services .home-category-card:focus-visible .service-card-overlay p,
.home-services .home-category-card:focus-visible .service-card-overlay span {
  transform: translateY(0);
}

.stats {
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.stat {
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.stat::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(37,53,121,.06);
}

.stat:hover {
  transform: translateY(-7px);
  border-color: rgba(255,94,20,.24);
  box-shadow: var(--shadow-hover);
}

.stat strong {
  position: relative;
  z-index: 1;
  font-size: 44px;
}

.service-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.55fr);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.service-image-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--navy-ink);
}

.service-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,15,42,.02), rgba(8,15,42,.24) 72%, rgba(8,15,42,.46)),
    linear-gradient(180deg, rgba(8,15,42,.05), rgba(8,15,42,.2));
}

.service-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

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

.service-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 38px;
  color: #fff;
  --service-photo: url("assets/site-images/Adsiz-tasarim-scaled.jpg");
  --service-photo-position: center;
  transition: transform .3s var(--ease), filter .3s ease;
}

.service-tile-grid .service-tile:nth-child(1),
.service-tile-grid .service-tile:nth-child(4) {
  background:
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.service-tile-grid .service-tile:nth-child(2),
.service-tile-grid .service-tile:nth-child(3) {
  background:
    linear-gradient(135deg, var(--orange), #f27a21);
}

.service-tile-grid .service-tile:nth-child(1) {
  --service-photo: url("assets/site-images/forging-press.png");
  --service-photo-position: center;
}

.service-tile-grid .service-tile:nth-child(2) {
  --service-photo: url("assets/site-images/supply-chain-management.png");
  --service-photo-position: center 42%;
}

.service-tile-grid .service-tile:nth-child(3) {
  --service-photo: url("assets/site-images/quality-assurance-testing.png");
  --service-photo-position: center;
}

.service-tile-grid .service-tile:nth-child(4) {
  --service-photo: url("assets/site-images/strategic-sourcing-process-management.png");
  --service-photo-position: center;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--service-photo) var(--service-photo-position) / cover no-repeat;
  opacity: 0;
  filter: grayscale(.25) saturate(1.05) contrast(1.08);
  transform: scale(1.04);
  transition: opacity .35s ease, transform .65s var(--ease), filter .35s ease;
}

.service-tile::after {
  display: none;
}

.service-tile-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: transform .55s var(--ease);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  opacity: .96;
  transform: translateY(0) scale(1);
  transition: opacity .34s ease, transform .46s var(--ease), max-height .46s var(--ease), margin .46s var(--ease);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  color: #fff;
  font-size: 21px;
  line-height: 1;
  opacity: .95;
  transform: translateY(0);
  transition: opacity .28s ease, transform .38s var(--ease), max-height .38s var(--ease), margin .38s var(--ease);
}

.service-tile h3 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(22px, 2.15vw, 29px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,.2);
  transform: translateY(0);
  transition: transform .55s var(--ease), text-shadow .35s ease;
}

.service-tile p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 700;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(18px);
  text-shadow: 0 2px 15px rgba(0,0,0,.32);
  transition: opacity .36s ease .1s, transform .5s var(--ease), max-height .5s var(--ease);
}

.service-tile:hover {
  filter: brightness(1.04);
}

.service-tile:hover::before {
  opacity: .28;
  filter: grayscale(.08) saturate(1.16) contrast(1.1);
  transform: scale(1.12);
}

.service-tile:hover .service-tile-inner {
  transform: translateY(-4px);
}

.service-tile:hover .service-icon,
.service-tile:hover .service-arrow {
  max-height: 0;
  min-height: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(-22px) scale(.78);
}

.service-tile:hover h3 {
  transform: translateY(-12px);
  text-shadow: 0 3px 18px rgba(0,0,0,.34);
}

.service-tile:hover p {
  opacity: 1;
  max-height: 260px;
  transform: translateY(0);
}

.process-section {
  background:
    linear-gradient(135deg, var(--navy-ink), var(--navy) 56%, var(--navy-deep));
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 86px 86px;
  pointer-events: none;
}

.process-section .wrap {
  position: relative;
  z-index: 1;
}

.step-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 44px rgba(0,0,0,.12);
  transition: transform .28s var(--ease), background .28s ease, border-color .28s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255,94,20,.16);
}

.step-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.36);
}

.step-card span {
  box-shadow: 0 12px 24px rgba(255,94,20,.32);
}

.quality-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy-ink), var(--navy) 64%, var(--navy-deep));
  box-shadow: var(--shadow-strong);
}

.quality-panel::after,
.cta-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 210px;
  height: 210px;
  border: 24px solid rgba(255,94,20,.14);
  transform: rotate(24deg);
}

.quality-panel > *,
.cta-panel > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,15,42,.94), rgba(37,53,121,.92)),
    url("assets/site-images/Adsiz-tasarim-scaled.jpg") center/cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 26px solid rgba(255,94,20,.18);
  transform: rotate(35deg);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.filter-panel {
  position: sticky;
  top: 132px;
  border-radius: var(--radius);
}

.filter-panel label {
  border-radius: var(--radius);
  padding: 0 8px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.filter-panel label:hover {
  background: #fff3ed;
  color: var(--navy);
  transform: translateX(4px);
}

.contact-form {
  background: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy-ink), var(--navy-dark) 58%, var(--navy-deep));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 76px 76px;
  pointer-events: none;
}

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

.footer-button {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(255,94,20,.24);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .2s ease;
}

.footer-button:hover {
  transform: translateY(-3px);
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(255,94,20,.34);
}

.site-footer {
  padding-top: 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.95)),
    url("assets/site-images/A2-foto.jpg") center / cover no-repeat;
}

.site-footer::before {
  display: none;
}

.footer-main {
  min-height: 520px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(220px, 1fr) minmax(220px, .85fr);
  align-items: stretch;
  gap: 64px;
  min-height: 520px;
  padding: 0;
}

.footer-contact-card {
  width: 360px;
  max-width: 100%;
  min-height: 578px;
  display: flex;
  flex-direction: column;
  margin-top: -58px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("assets/site-images/Adsiz-tasarim-scaled.jpg") center / cover no-repeat;
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}

.footer-social-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--orange);
}

.site-footer .footer-social-bar a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: transform .22s var(--ease), opacity .22s ease;
}

.site-footer .footer-social-bar a:hover {
  transform: translateY(-2px);
  opacity: .82;
}

.footer-contact-body {
  flex: 1;
  padding: 58px 40px 42px;
}

.footer-card-logo {
  width: 232px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 0 34px;
}

.site-footer .footer-contact-body p {
  margin: 0 0 30px;
  color: #5d6678;
  line-height: 1.75;
}

.footer-contact-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.65;
}

.footer-contact-list i {
  color: var(--orange);
  padding-top: 4px;
}

.site-footer .footer-contact-list a {
  display: block;
  width: fit-content;
  margin: 0;
  color: var(--navy);
  text-decoration: none;
}

.site-footer .footer-contact-list a:hover {
  color: var(--orange);
}

.footer-column {
  padding-top: 78px;
}

.site-footer .footer-column h3 {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.footer-list {
  display: grid;
  gap: 15px;
}

.site-footer .footer-list a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease, transform .22s var(--ease);
}

.site-footer .footer-list a i {
  width: 15px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.site-footer .footer-list a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 78px);
  gap: 5px;
}

.site-footer .footer-portfolio-grid a {
  width: 78px;
  height: 78px;
  display: block;
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.footer-portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease), filter .3s ease;
}

.site-footer .footer-portfolio-grid a:hover img {
  transform: scale(1.08);
  filter: saturate(1.16) contrast(1.04);
}

.footer-bottom {
  width: 100%;
  min-height: 88px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 22px 70px;
  font-size: 15px;
  font-weight: 700;
}

.site-footer .footer-top {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: translateY(-50%);
  background: rgba(255,255,255,.28);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, transform .22s var(--ease);
}

.site-footer .footer-top:hover {
  background: var(--orange);
  transform: translateY(-54%);
}

@media (max-width: 1080px) {
  .header-inner, .hero-grid, .quality-grid, .two-col, .catalog-layout, .contact-grid, .intro-grid, .cta-panel { grid-template-columns: 1fr; }
  .header-inner { gap: 18px; padding: 22px 0; }
  .nav { justify-content: flex-start; flex-wrap: wrap; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 16px; }
  .expert-layout { grid-template-columns: 1fr; gap: 44px; }
  .expert-head { min-height: 0; }
  .expert-quote-card { min-height: auto; max-width: 620px; }
  .category-grid, .product-grid, .feature-grid, .home-category-grid, .step-grid, .cert-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-services .section-head { grid-template-columns: 1fr; gap: 22px; }
  .home-services .section-head .lead { padding: 22px 0 0; border-left: 0; border-top: 2px solid rgba(13,21,52,.18); }
  .home-services .home-category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid, .footer-grid, .expert-stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; padding-top: 34px; }
  .footer-contact-card { width: 100%; min-height: auto; }
  .footer-column { padding-top: 24px; }
  .footer-portfolio-grid { grid-template-columns: repeat(3, minmax(72px, 1fr)); }
  .site-footer .footer-portfolio-grid a { width: 100%; aspect-ratio: 1 / 1; height: auto; }
}
@media (max-width: 720px) {
  .wrap, .footer-bottom { width: min(100% - 32px, 1180px); }
  .topbar .wrap { flex-wrap: wrap; padding: 10px 0; gap: 8px 14px; }
  .topbar .company-profile { margin-left: 0; }
  .socials { width: 100%; }
  .brand img { width: 220px; max-width: 78vw; }
  .nav { gap: 18px; }
  .hero { min-height: auto; padding: 54px 0; }
  .hero h1 { font-size: 32px; }
  .page-hero .wrap { min-height: 150px; display: block; padding: 42px 0; }
  .page-hero h1, .section-title { font-size: 36px; }
  .section { padding: 56px 0; }
  .category-grid, .product-grid, .feature-grid, .stats-grid, .service-band, .service-tile-grid, .proof-grid, .contact-cards, .footer-grid, .home-category-grid, .step-grid, .cert-grid, .expert-stats { grid-template-columns: 1fr; }
  .home-services { padding: 58px 0; }
  .home-services .section-head { margin-bottom: 34px; }
  .home-services .section-title { font-size: 40px; }
  .home-services .section-head .lead { font-size: 16px; }
  .home-services .home-category-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-services .home-category-card img { height: 236px; }
  .service-image-panel { min-height: 320px; }
  .footer-main { min-height: auto; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-top: 0; padding-bottom: 38px; }
  .footer-contact-body { padding: 38px 28px 34px; }
  .footer-column { padding-top: 8px; }
  .site-footer .footer-column h3 { margin-bottom: 18px; font-size: 20px; }
  .site-footer .footer-bottom { width: 100%; margin: 0; min-height: 76px; padding: 18px 58px 18px 24px; text-align: left; justify-content: flex-start; }
  .expert-section { padding: 58px 0; }
  .expert-head { display: block; }
  .expert-head h2 { font-size: 34px; }
  .expert-dots { padding-top: 24px; margin-bottom: 28px; }
  .expert-slide { grid-template-columns: 1fr; gap: 28px; }
  .expert-card p { min-height: auto; }
  .expert-quote-card { padding: 28px; }
  .catalog-head { display: block; }
  .catalog-head span { display: block; padding-top: 12px; }
  .quote-card, .quality-panel, .intro-copy, .cta-panel { padding: 28px; }
  .intro-copy h2, .quality-panel h2, .cta-panel h2 { font-size: 30px; }
}

@media (max-width: 1080px) {
  .site-header { position: static; }
  .filter-panel { position: relative; top: auto; }
  .hero { min-height: auto; padding: 76px 0; }
  .hero-grid { gap: 34px; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 0; }
  .hero {
    padding: 58px 0 50px;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(8,15,42,.9), rgba(16,27,77,.62)),
      radial-gradient(circle at 20% 20%, rgba(255,94,20,.36), transparent 26%);
  }
  .hero h1 {
    width: 100%;
    padding: 10px 14px 12px;
    font-size: 34px;
  }
  .hero p { font-size: 16px; }
  .quote-card { box-shadow: 0 20px 48px rgba(13,21,52,.2); }
  .button { width: 100%; }
  .button-row { width: 100%; }
  .button-row .button { flex: 1 1 100%; }
  .section-title::after { width: 56px; }
  .breadcrumb { display: inline-block; margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
