:root {
  --ink: #17212b;
  --muted: #66727f;
  --line: #dde4ea;
  --panel: #f7f9fb;
  --paper: #ffffff;
  --brand: #0877a8;
  --brand-dark: #045678;
  --accent: #f3b33f;
  --success: #128c48;
  --shadow: 0 20px 45px rgba(26, 40, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Tahoma", sans-serif;
  line-height: 1.55;
}

body.is-rtl {
  font-family: "Tahoma", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #33414e;
  font-weight: 700;
}

.nav a:hover {
  color: var(--brand);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-toggle,
.button,
.whatsapp,
.instagram-link,
.instagram-button,
.cart-link,
.cart-button,
.back-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.lang-toggle {
  min-height: 42px;
  padding: 0 14px;
  color: var(--brand-dark);
  background: #e8f4f9;
}

.button,
.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.button.primary {
  color: white;
  background: var(--brand);
}

.button.ghost {
  color: var(--brand-dark);
  background: white;
  border: 1px solid var(--line);
}

.whatsapp {
  gap: 8px;
  color: white;
  background: var(--success);
}

.whatsapp.small {
  min-height: 42px;
  padding: 0 14px;
}

.whatsapp.large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 18px;
}

.instagram-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #8b2b65;
  background: #ffeaf6;
  font-size: 13px;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  color: #8b2b65;
  background: #ffeaf6;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #f0f3f6;
}

.cart-link strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 8vw, 94px) clamp(20px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.service-band h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.08;
  color: #101820;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(38px, 6vw, 76px);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-visual {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    url("assets/equipment-hero.png") center / cover no-repeat;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 42px);
  background: #fbfcfd;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.wide {
  max-width: 960px;
}

.section-heading h2,
.service-band h2,
.contact-section h2 {
  font-size: clamp(30px, 4vw, 50px);
}

.section-heading p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.intro-section,
.about-section,
.divisions-section,
.why-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 70px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: white;
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #3f4b56;
  font-size: 18px;
}

.intro-copy p {
  margin: 0;
}

.about-section {
  background: #fbfcfd;
  border-bottom: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.about-main,
.about-cards article,
.about-detail-grid article,
.commitment-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 36, 48, 0.06);
}

.about-main {
  display: grid;
  gap: 18px;
  padding: 26px;
  color: #3f4b56;
  font-size: 18px;
}

.about-main p {
  margin: 0;
}

.about-cards {
  display: grid;
  gap: 14px;
}

.about-cards article {
  padding: 22px;
}

.about-cards h3,
.about-detail-grid h3,
.commitment-panel h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 24px;
}

.about-cards p,
.commitment-panel p {
  margin: 0;
  color: var(--muted);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.about-detail-grid article {
  padding: 22px;
}

.about-detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-inline-start: 20px;
  color: #3f4b56;
}

.commitment-panel {
  margin-top: 18px;
  padding: 24px;
  border-color: rgba(8, 119, 168, 0.28);
  background: #f2f9fc;
}

.divisions-section {
  background: var(--panel);
}

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

.division-grid article {
  min-height: 310px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 36, 48, 0.06);
}

.division-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.division-grid h3 {
  margin: 16px 0 10px;
  font-size: 25px;
}

.division-grid p {
  margin: 0;
  color: var(--muted);
}

.why-section {
  background: #142433;
  color: white;
}

.why-section .section-heading h2 {
  color: white;
}

.why-section .eyebrow {
  color: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.why-grid span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

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

.product-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 36, 48, 0.07);
}

.product-card:hover {
  transform: translateY(-3px);
  transition: transform 180ms ease;
}

.product-media {
  min-height: 172px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background:
    linear-gradient(135deg, rgba(8, 119, 168, 0.78), rgba(243, 179, 63, 0.18)),
    url("assets/equipment-hero.png") center / cover no-repeat;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.product-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.price {
  display: block;
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.2;
}

.detail-price {
  margin: 0 0 18px;
  font-size: 30px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #7a4d00;
  background: #fff2d3;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.view-link {
  color: var(--brand-dark);
  font-weight: 900;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: white;
  background: var(--brand);
}

.cart-button.large {
  min-height: 56px;
  padding: 0 22px;
  font-size: 18px;
}

.product-detail {
  padding-top: 34px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 14px;
  color: var(--brand-dark);
  background: #e8f4f9;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.detail-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-content {
  padding: 8px 0;
}

.detail-content h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

.detail-content .lead {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-list li {
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 70px);
  background: #fbfcfd;
  border-top: 1px solid var(--line);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.cart-panel,
.order-form {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 36, 48, 0.06);
}

.cart-line {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 86px auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line:first-child {
  padding-top: 0;
}

.cart-line img {
  width: 88px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--muted);
  font-size: 14px;
}

.cart-line label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.cart-line input {
  width: 74px;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line button {
  min-height: 38px;
  padding: 0 10px;
  color: #8b1d1d;
  background: #fff0f0;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.cart-total,
.payment-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  margin-top: 16px;
}

.cart-total {
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.payment-note {
  color: var(--muted);
  font-size: 14px;
}

.payment-note strong {
  color: var(--ink);
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.order-form textarea {
  min-height: 94px;
  resize: vertical;
}

.order-form .whatsapp {
  width: 100%;
}

.disabled {
  opacity: 0.65;
  pointer-events: none;
}

.service-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 70px);
  color: white;
  background: #142433;
}

.service-band h2 {
  color: white;
}

.service-band .eyebrow {
  color: var(--accent);
}

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

.service-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.service-list span {
  color: var(--accent);
  font-weight: 900;
}

.service-list h3 {
  margin: 12px 0 8px;
}

.service-list p {
  margin: 0;
  color: #cbd5df;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 70px);
  background: var(--panel);
}

.contact-section div {
  max-width: 720px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.is-rtl .nav,
.is-rtl .header-actions,
.is-rtl .hero-actions,
.is-rtl .product-meta,
.is-rtl .detail-actions,
.is-rtl .back-button,
.is-rtl .whatsapp {
  flex-direction: row-reverse;
}

.is-rtl .eyebrow {
  text-transform: none;
}

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

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .detail-shell,
  .checkout-grid,
  .intro-section,
  .about-layout,
  .service-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
    order: -1;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .hero-copy {
    padding: 38px 18px 48px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .trust-strip,
  .product-grid,
  .about-detail-grid,
  .division-grid,
  .why-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .cart-line label,
  .cart-line button {
    grid-column: 2;
  }

  .cart-line img {
    width: 70px;
    height: 70px;
  }

  .product-card {
    min-height: auto;
  }

  .contact-section,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp.large {
    width: 100%;
  }

  .detail-actions,
  .detail-actions .cart-button {
    width: 100%;
  }
}
