/* Mina Demir Celik redesign
   Brand assets:
   - assets/img/mina-logo.svg: user-provided Mina Demir Celik logo
   - assets/img/whatsapp-icon.webp: user-provided WhatsApp icon
   Visual sources used locally:
   - assets/img/metal-cutting-sparks.jpg: Pexels Photo 36003964, Michael Orshan
   - assets/img/laser-cutting-metal.jpg: Pexels Photo 29386087, Timothy Yiadom
   - assets/img/forklift-warehouse.jpg: Pexels Photo 14688876
   - assets/img/platform-lift.jpg: Pexels Photo 35719034, Roman Biernacki
   - assets/img/steel-foundry.jpg: Pexels Photo 5845914, Tima Miroshnichenko
   - assets/video/mina-industrial-hero.mp4: optimized silent background video from Pexels Video 13457611
*/

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

:root {
  --mina-navy: #262b4b;
  --mina-navy-2: #171b33;
  --mina-ink: #101525;
  --mina-orange: #ed7f1d;
  --mina-orange-2: #ff9d3d;
  --steel: #747d8c;
  --mist: #eef1f5;
  --line: #dde2ea;
  --paper: #f7f8fb;
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 28px 80px rgba(16, 21, 37, 0.16);
  --radius: 8px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mina-ink);
  background: var(--paper);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--mina-navy);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: calc(100% - 44px);
  max-width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  pointer-events: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(38, 43, 75, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 72px rgba(16, 21, 37, 0.16);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.96);
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-word {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-title {
  color: var(--mina-navy);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand-tag {
  color: var(--mina-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: #424961;
  font-size: 13px;
  font-weight: 900;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--mina-navy);
  background: rgba(38, 43, 75, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--mina-navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #f28b2b, #ed6d16);
  box-shadow: 0 18px 42px rgba(237, 127, 29, 0.28);
}

.btn-navy {
  color: var(--white);
  background: linear-gradient(135deg, #303657, var(--mina-navy));
  box-shadow: 0 18px 42px rgba(38, 43, 75, 0.26);
}

.btn-outline {
  color: var(--mina-navy);
  border-color: rgba(38, 43, 75, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 12px 28px rgba(16, 21, 37, 0.08);
}

.btn-light {
  color: var(--mina-navy);
  background: var(--white);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #20d764, #10ad4e);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.25);
}

.wa-mini {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  color: var(--white);
  background: var(--mina-navy-2);
}

.page-hero {
  min-height: 540px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 21, 37, 0.96), rgba(38, 43, 75, 0.72) 45%, rgba(16, 21, 37, 0.24)),
    linear-gradient(0deg, rgba(16, 21, 37, 0.96), rgba(16, 21, 37, 0.02) 55%);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.hero-video { display: block; }





.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 34px;
  padding: 190px 0 56px;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 820px);
  padding-bottom: 74px;
}

.hero-brand {
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.hero-brand img {
  width: 106px;
  height: 106px;
  object-fit: contain;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffbd7b;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--mina-orange);
}

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

h1 {
  max-width: 970px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
}

.lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
}

.panel-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-no {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--mina-orange);
  background: var(--white);
  font-weight: 950;
}

.panel-row h2,
.panel-row h3 {
  margin-bottom: 3px;
  font-size: 20px;
  line-height: 1.1;
}

.panel-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

section {
  padding: 92px 0;
}

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

.section-navy {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 43, 75, 0.97), rgba(23, 27, 51, 0.97)),
    url("../img/laser-cutting-metal.jpg") center/cover;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head > div {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--mina-orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-head h2,
.split-copy h2,
.cta-slab h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.split-copy p,
.cta-slab p {
  color: #667085;
  font-size: 18px;
}

.section-navy .section-head p,
.section-navy .split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.division-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 16px;
  color: var(--white);
  background: var(--mina-navy);
  box-shadow: var(--shadow);
}

.division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 21, 37, 0.92), rgba(16, 21, 37, 0.1) 58%);
}

.division-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.division-card:hover img {
  transform: scale(1.06);
}

.division-content {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.division-content span {
  color: #ffbd7b;
  font-weight: 950;
}

.division-content h3 {
  margin: 8px 0;
  font-size: 30px;
  line-height: 1;
}

.division-content p {
  color: rgba(255, 255, 255, 0.76);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.quick-chip {
  min-height: 102px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--mina-navy);
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(16, 21, 37, 0.06);
}

.quick-chip small {
  color: var(--mina-orange);
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mina-navy);
  box-shadow: var(--shadow);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(38, 43, 75, 0.22), transparent);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-media img[src$="mina-logo.svg"] {
  padding: 56px;
  object-fit: contain;
  background: var(--white);
}

.proof-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: #667085;
  font-weight: 700;
}

.proof-list li::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mina-orange), #f05a24);
  box-shadow: 0 12px 26px rgba(237, 127, 29, 0.18);
}

.section-navy .proof-list li {
  color: rgba(255, 255, 255, 0.74);
}

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

.step-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.step-card strong {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mina-orange);
  color: var(--white);
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.service-item {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 21, 37, 0.07);
}

.service-item h3 {
  margin-bottom: 6px;
  color: var(--mina-navy);
  font-size: 24px;
}

.service-item p {
  margin-bottom: 0;
  color: #667085;
}

.service-item.full {
  grid-column: 1 / -1;
  min-height: auto;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-pill {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--mina-navy);
  font-weight: 950;
}

.product-pill span {
  color: var(--mina-orange);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 18px;
}

.catalog-aside {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 21, 37, 0.07);
}

.catalog-aside h3 {
  margin-bottom: 14px;
  color: var(--mina-navy);
  font-size: 18px;
}

.catalog-filter {
  display: grid;
  gap: 8px;
}

.catalog-filter a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #515970;
  background: #f4f6fa;
  font-size: 13px;
  font-weight: 900;
}

.catalog-filter a:hover {
  color: var(--white);
  background: var(--mina-navy);
}

.catalog-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--mina-navy), #31375a);
}

.catalog-note p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.product-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 21, 37, 0.08);
}

.catalog-media {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--mina-navy);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.06);
}

.catalog-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(38, 43, 75, 0.88);
  font-size: 11px;
  font-weight: 950;
}

.catalog-body {
  padding: 18px;
}

.catalog-body h3 {
  margin-bottom: 7px;
  color: var(--mina-navy);
  font-size: 22px;
  line-height: 1.08;
}

.catalog-body p {
  margin-bottom: 14px;
  color: #667085;
  font-size: 14px;
}

.spec-list {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #edf0f5;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.spec-list strong {
  color: var(--mina-ink);
}

.catalog-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mini-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--mina-navy);
  background: #f2f4f8;
  font-size: 13px;
  font-weight: 950;
}

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

.capability-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(16, 21, 37, 0.07);
}

.capability-card small {
  color: var(--mina-orange);
  font-weight: 950;
}

.capability-card h3 {
  margin: 10px 0 8px;
  color: var(--mina-navy);
  font-size: 22px;
  line-height: 1.08;
}

.capability-card p {
  margin: 0;
  color: #667085;
}

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

.rent-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 16px;
  color: var(--white);
  background: var(--mina-navy);
  box-shadow: var(--shadow);
}

.rent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 21, 37, 0.92), rgba(16, 21, 37, 0.08));
}

.rent-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.rent-copy {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 2;
}

.rent-copy h3 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1;
}

.rent-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-link {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--mina-navy);
  background: var(--white);
  font-weight: 950;
}

.contact-link small {
  display: block;
  color: #667085;
  font-weight: 800;
}

.map-frame {
  width: 100%;
  min-height: 520px;
  height: 100%;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.cta-slab {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(38, 43, 75, 0.98), rgba(38, 43, 75, 0.84)),
    url("../img/metal-cutting-sparks.jpg") center/cover;
  box-shadow: var(--shadow);
}

.cta-slab p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumb a {
  color: var(--white);
}

.site-footer {
  color: var(--white);
  background: #15182f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr;
  gap: 30px;
  padding: 58px 0 36px;
}

.footer-logo {
  width: 78px;
  height: 78px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-main p,
.footer-main a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-main h2,
.footer-main h3 {
  margin: 16px 0 10px;
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #20d764, #10ad4e);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.mobile-action-bar {
  display: none;
}

.mobile-menu-proxy {
  position: fixed;
  top: 30px;
  right: 32px;
  z-index: 180;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mina-orange);
  border-radius: 999px;
  color: var(--white);
  background: var(--mina-orange);
  box-shadow: 0 16px 34px rgba(237, 127, 29, 0.28);
  cursor: pointer;
}

.mobile-menu-proxy span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .mobile-menu-proxy span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .mobile-menu-proxy span:nth-child(2) {
  opacity: 0;
}

.nav-open .mobile-menu-proxy span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1081px) {
  .mobile-menu-proxy {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    padding-right: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand-title {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid !important;
    place-items: center;
    color: var(--white);
    border-color: var(--mina-orange);
    background: var(--mina-orange);
    box-shadow: 0 16px 34px rgba(237, 127, 29, 0.28);
  }

  .mobile-menu-proxy {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 96px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
    font-size: 17px;
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-grid,
  .page-hero .hero-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .division-grid,
  .quick-grid,
  .product-grid,
  .product-catalog,
  .capability-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 66px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    gap: 9px;
  }

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

  .brand-title {
    max-width: 170px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-tag {
    font-size: 10px;
  }

  .site-nav {
    grid-column: 1 / -1;
    left: 14px;
    right: 14px;
    top: 84px;
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .mobile-menu-proxy {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    min-height: 760px;
  }

  .page-hero {
    min-height: 520px;
  }

  .hero-grid,
  .page-hero .hero-grid {
    padding: 150px 0 38px;
  }

  .hero-brand {
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
  }

  .hero-brand img {
    width: 78px;
    height: 78px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-actions,
  .section-head,
  .cta-actions {
    display: grid;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 64px 0;
  }

  .division-grid,
  .quick-grid,
  .product-grid,
  .product-catalog,
  .capability-grid,
  .step-grid,
  .service-list,
  .rent-grid {
    grid-template-columns: 1fr;
  }

  .division-card,
  .rent-card {
    min-height: 360px;
  }

  .rent-card img {
    min-height: 360px;
  }

  .split-media,
  .split-media img {
    min-height: 340px;
  }

  .service-item.full {
    grid-template-columns: 1fr;
  }

  .cta-slab {
    padding: 28px;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: auto;
    right: 14px;
    bottom: 18px;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .mobile-action-bar a {
    width: 54px;
    height: 54px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    color: var(--white);
    font-size: 0;
    font-weight: 950;
    box-shadow: 0 16px 38px rgba(16, 21, 37, 0.26);
  }

  .mobile-action-bar a:first-child {
    background: var(--green);
  }

  .mobile-action-bar a:last-child {
    background: var(--mina-orange);
  }

  .mobile-action-bar img {
    width: 26px;
    height: 26px;
  }
}

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