:root {
  --orange: #f26522;
  --orange-dark: #d94f15;
  --black: #050505;
  --ink: #17130f;
  --muted: #615c55;
  --soft: #f7f7f5;
  --white: #ffffff;
  --line: #e3ded8;
  --line-strong: #d4cbc2;
  --surface: #fbfbfa;
  --brown: #9b6537;
  --focus: 0 0 0 4px rgba(242, 101, 34, 0.22);
  --shadow: 0 22px 50px rgba(5, 5, 5, 0.08);
  --shadow-soft: 0 12px 28px rgba(5, 5, 5, 0.06);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Cairo", "IBM Plex Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-align: right;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  /* Keep sticky navigation stable in mobile Safari while the fixed menu is open. */
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior: contain;
}

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

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

a,
button {
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
  min-width: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

section[id] {
  scroll-margin-top: 124px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 3000;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 222, 216, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(5, 5, 5, 0.06);
}

.nav {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 270px;
  flex: 0 0 auto;
  border-radius: 6px;
}

.brand img {
  width: 270px;
  height: 108px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline-start: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  color: #332d28;
  font-size: 15px;
  font-weight: 800;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 10px;
  inset-block-end: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
  background: rgba(242, 101, 34, 0.06);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  border-color: var(--orange);
  background: rgba(242, 101, 34, 0.05);
}

.menu-toggle:active {
  transform: translateY(1px);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 99px;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(242, 101, 34, 0.22);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(242, 101, 34, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--black);
  background: #fbfbfa;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #201a15;
}

.hero {
  min-height: 700px;
  padding: 98px 0 62px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 101, 34, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 16% 54%, rgba(242, 101, 34, 0.08) 0 14%, transparent 15%),
    var(--soft);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset-block-start: 126px;
  inset-inline-end: -120px;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(242, 101, 34, 0.12);
  border-radius: 50%;
}

.hero::after {
  inset-block-end: 26px;
  inset-inline-start: 0;
  width: 44%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.16) 0 24px,
    transparent 24px 38px
  );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  align-items: center;
  gap: 72px;
}

.hero-content {
  position: relative;
  padding-inline-start: 24px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset-block: 10px;
  inset-inline-start: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 99px;
}

.hero-content h1 {
  max-width: 740px;
  margin: 0;
  color: var(--black);
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #433c36;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.trust-badges li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #302b26;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(5, 5, 5, 0.03);
}

.trust-badges li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  isolation: isolate;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(242, 101, 34, 0.22);
  border-radius: 6px;
  transform: translate(12px, -12px);
}

.frame-code {
  position: absolute;
  inset-block-start: -32px;
  inset-inline-end: 0;
  color: #817a72;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  direction: ltr;
}

.hero-photo-wrap {
  overflow: hidden;
  border-radius: 6px;
}

.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transform: scale(1.02);
}

.tape-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tape-ring-large {
  inset-block-start: -38px;
  inset-inline-start: -34px;
  width: 116px;
  height: 116px;
  background: var(--orange);
  box-shadow:
    inset 0 0 0 17px rgba(255, 255, 255, 0.9),
    0 16px 32px rgba(242, 101, 34, 0.22);
}

.tape-ring-small {
  inset-block-end: 128px;
  inset-inline-end: -24px;
  width: 64px;
  height: 64px;
  background: var(--black);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.95);
}

.measure-rail {
  position: absolute;
  inset-block-start: 64px;
  inset-inline-end: -18px;
  display: grid;
  gap: 28px;
}

.measure-rail span {
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(5, 5, 5, 0.34);
}

.measure-rail span:nth-child(even) {
  width: 26px;
  background: rgba(242, 101, 34, 0.68);
}

.packing-label {
  position: absolute;
  inset-block-start: 34px;
  inset-inline-start: 30px;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 222, 216, 0.9);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.packing-label span {
  padding: 4px 8px;
  color: var(--black);
  background: var(--soft);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.floating-contact {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 26px;
  min-width: 220px;
  padding: 15px 18px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-contact:hover {
  transform: translateY(-2px);
  background: var(--black);
}

.floating-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.floating-contact strong {
  display: block;
  margin-top: 2px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.stats-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
  margin-top: -24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat-item {
  position: relative;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  overflow: hidden;
  background: var(--white);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.stat-item::before {
  content: "";
  position: absolute;
  inset-block: 18px;
  inset-inline-start: 0;
  width: 2px;
  background: var(--orange);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.stat-item:hover {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(242, 101, 34, 0.06), rgba(242, 101, 34, 0)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.stat-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.stat-item + .stat-item {
  border-inline-start: 1px solid var(--line);
}

.stat-item span {
  color: var(--orange);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.stat-item strong {
  margin-top: 6px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.why-copy h2,
.about-copy h2,
.contact-info h2,
.cta-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: 42px;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.why-copy p,
.about-copy p,
.contact-info p,
.cta-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 600;
}

.products {
  --catalog-orange: #f36a21;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.026) 1px, transparent 1px),
    #f4f5f4;
  background-size: 48px 48px;
}

.products::before {
  content: "";
  position: absolute;
  inset-block-start: 68px;
  inset-inline-end: max(20px, calc((100vw - var(--container)) / 2));
  width: 180px;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.16) 0 2px,
    transparent 2px 12px
  );
}

.catalog-heading {
  max-width: 790px;
  margin: 0 auto 52px;
  text-align: center;
}

.catalog-subtitle {
  display: block;
  margin-bottom: 12px;
  color: #ae410d;
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.catalog-heading h2 {
  margin: 0;
  color: #111111;
  font-size: 44px;
  line-height: 1.28;
  font-weight: 900;
}

.catalog-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
  font-weight: 600;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.055);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--catalog-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
  z-index: 3;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(243, 106, 33, 0.48);
  box-shadow:
    0 22px 44px rgba(17, 17, 17, 0.1),
    0 0 0 1px rgba(243, 106, 33, 0.08),
    0 10px 28px rgba(243, 106, 33, 0.12);
}

.product-card:hover::before,
.product-card:focus-within::before {
  transform: scaleX(1);
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ffffff;
  border-block-end: 1px solid rgba(17, 17, 17, 0.08);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  transform: scale(1.045);
}

.catalog-card__number {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding-inline: 7px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 5px;
  color: #111111;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-copy h3 {
  margin: 0;
  color: #111111;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 900;
}

.product-name-en {
  min-height: 40px;
  margin: 5px 0 0;
  color: #ae410d;
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  text-align: right;
}

.product-copy .product-description {
  min-height: 58px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 600;
}

.product-features {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  min-height: 27px;
  padding-inline-start: 22px;
  color: #302d29;
  font-size: 13px;
  font-weight: 700;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 1px;
  color: var(--catalog-orange);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.product-cta {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-top: auto;
  overflow: hidden;
  background: var(--catalog-orange);
  color: var(--white);
  border-color: var(--catalog-orange);
  box-shadow: 0 12px 24px rgba(243, 106, 33, 0.2);
}

.product-cta:hover,
.product-cta:focus-visible {
  background: #d95717;
  color: var(--white);
  border-color: #d95717;
  box-shadow: 0 14px 30px rgba(243, 106, 33, 0.28);
}

.product-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

.product-cta.is-rippling::after {
  animation: catalog-ripple 560ms ease-out;
}

@keyframes catalog-ripple {
  0% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(32);
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--orange-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--black);
  transform: translateX(-3px);
}

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

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 46px;
}

.why-copy {
  position: sticky;
  top: 118px;
  padding: 36px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    var(--soft);
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-copy h2 {
  font-size: 38px;
}

.why-copy .btn {
  margin-top: 28px;
}

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

.feature-card,
.industry-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.feature-card:focus-within,
.industry-card:hover,
.industry-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(242, 101, 34, 0.36);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--black);
  color: var(--orange);
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3,
.industry-card h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

.feature-card p,
.industry-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.industries {
  background:
    linear-gradient(180deg, var(--soft), #ffffff 48%, var(--soft));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-icon {
  width: 52px;
  height: 52px;
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  background:
    linear-gradient(currentColor, currentColor) 12px 34px / 28px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 16px 20px / 20px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 20px 8px / 12px 4px no-repeat;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.truck-icon {
  background:
    radial-gradient(circle at 16px 38px, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 38px 38px, currentColor 0 4px, transparent 5px),
    linear-gradient(currentColor, currentColor) 8px 24px / 24px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 30px 28px / 12px 8px no-repeat;
}

.store-icon {
  background:
    linear-gradient(currentColor, currentColor) 10px 16px / 32px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 32px / 28px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 8px / 24px 4px no-repeat;
}

.warehouse-icon {
  background:
    linear-gradient(currentColor, currentColor) 10px 34px / 32px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 14px 24px / 24px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 18px 14px / 16px 4px no-repeat;
}

.custom-cta {
  overflow: hidden;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 38px),
    var(--black);
}

.custom-cta::before {
  content: "";
  position: absolute;
  inset-block-start: -146px;
  inset-inline-start: 8%;
  width: 310px;
  height: 310px;
  border: 52px solid rgba(242, 101, 34, 0.24);
  border-radius: 50%;
}

.custom-cta::after {
  content: "";
  position: absolute;
  inset-block-end: 28px;
  inset-inline-end: 8%;
  width: 180px;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    rgba(242, 101, 34, 0.7) 0 12px,
    transparent 12px 24px
  );
  opacity: 0.45;
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-copy h2,
.cta-copy p {
  color: var(--white);
}

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

.cta-button {
  min-width: 230px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 58px;
}

.about-media {
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  inset-block-start: 24px;
  inset-inline-end: -18px;
  width: 6px;
  height: calc(100% - 48px);
  background: var(--orange);
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  padding: 9px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.about-founder {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 72px;
  margin-top: 104px;
  padding-block: 80px;
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  -webkit-clip-path: inset(0 -100vmax);
  clip-path: inset(0 -100vmax);
}

.about-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.about-founder__copy,
.about-founder__portrait {
  position: relative;
  z-index: 1;
}

.about-founder__copy {
  padding-inline-start: 30px;
}

.about-founder__copy::before {
  content: "";
  position: absolute;
  inset-block: 6px;
  inset-inline-start: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(242, 101, 34, 0.08));
}

.about-founder__role {
  display: inline-block;
  color: #ae410d;
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.about-founder__copy h3 {
  margin: 12px 0 0;
  color: var(--black);
  font-size: 52px;
  line-height: 1.18;
  font-weight: 900;
}

.about-founder__copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}

.about-founder__values {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.about-founder__values span {
  position: relative;
  padding-inline: 16px;
}

.about-founder__values span:first-child {
  padding-inline-start: 0;
}

.about-founder__values span + span::before {
  content: "";
  position: absolute;
  inset-block: 6px;
  inset-inline-start: 0;
  width: 1px;
  background: var(--line-strong);
}

.about-founder__copy .btn {
  margin-top: 30px;
}

.about-founder__portrait {
  width: min(100%, 420px);
  margin: 0 auto;
}

.about-founder__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 9px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 24px 58px rgba(5, 5, 5, 0.13);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.about-founder__frame::before {
  content: "";
  position: absolute;
  inset-block: 28px;
  inset-inline-end: -14px;
  width: 5px;
  background: var(--orange);
  border-radius: 4px;
}

.about-founder__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: saturate(0.94) contrast(1.02);
}

.about-founder__frame > span {
  position: absolute;
  inset-block-end: 24px;
  inset-inline-start: 24px;
  padding: 6px 9px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--white);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.about-founder__portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-inline: 8px;
}

.about-founder__portrait figcaption strong {
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.about-founder__portrait figcaption span {
  color: var(--muted);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.contact {
  background:
    linear-gradient(90deg, rgba(242, 101, 34, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    var(--soft);
  background-size: 58px 58px, 58px 58px, auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 42px;
}

.contact-info {
  padding-top: 12px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 101, 34, 0.42);
  box-shadow: var(--shadow-soft);
}

.contact-method span {
  color: var(--muted);
  font-weight: 800;
}

.contact-method strong {
  color: var(--black);
  font-family: "Inter", "Cairo", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.delivery-note {
  padding: 16px 18px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full,
.form-submit,
.form-success {
  grid-column: 1 / -1;
}

label {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfbfa;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 118px;
  padding: 12px 13px;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--line-strong);
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--focus);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b91c1c;
}

.field-error {
  min-height: 19px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 800;
}

.form-success {
  padding: 18px;
  background: rgba(242, 101, 34, 0.085);
  border: 1px solid rgba(242, 101, 34, 0.28);
  border-radius: var(--radius);
}

.form-success strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.form-success p {
  margin: 6px 0 14px;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 36px;
}

.footer-brand img {
  width: 138px;
  height: 70px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 2px;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 8px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand span {
  color: var(--orange);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  gap: 22px;
  padding-block: 4px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  direction: ltr;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.copyright span {
  direction: rtl;
}

.copyright-credit {
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-weight: 600;
}

.nav.container {
  width: min(1420px, calc(100% - 40px));
}

.executive-hero {
  min-height: calc(100svh - 116px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(5, 5, 5, 0.03) 1px, transparent 1px),
    var(--white);
  background-size: 54px 54px;
}

.executive-hero::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 7px;
  background: var(--orange);
}

.executive-hero::after {
  content: "";
  position: absolute;
  inset-block-start: 42px;
  inset-inline-end: max(24px, calc((100vw - 1420px) / 2));
  width: 220px;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.16) 0 2px,
    transparent 2px 13px
  );
}

.executive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 72px;
}

.executive-intro {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding-inline-start: 34px;
}

.executive-intro::before {
  content: "";
  position: absolute;
  inset-block: 8px;
  inset-inline-start: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), rgba(242, 101, 34, 0.08));
}

.executive-role {
  display: inline-block;
  color: var(--orange-dark);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.executive-intro h1 {
  margin: 14px 0 0;
  color: var(--black);
  font-size: 78px;
  line-height: 1.08;
  font-weight: 900;
}

.executive-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
}

.executive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.executive-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.executive-signature span {
  position: relative;
  padding-inline: 18px;
}

.executive-signature span:first-child {
  padding-inline-start: 0;
}

.executive-signature span + span::before {
  content: "";
  position: absolute;
  inset-block: 6px;
  inset-inline-start: 0;
  width: 1px;
  background: var(--line-strong);
}

.executive-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 10px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(5, 5, 5, 0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset-block-start: 30px;
  inset-inline-end: -18px;
  width: 5px;
  height: calc(100% - 60px);
  background: var(--orange);
  border-radius: 4px;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset-block-end: -18px;
  inset-inline-start: 32px;
  width: calc(100% - 64px);
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.18) 0 18px,
    transparent 18px 30px
  );
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  filter: saturate(0.94) contrast(1.02);
}

.portrait-code {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 26px;
  padding: 6px 9px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--white);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.executive-portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-inline: 10px;
}

.executive-portrait figcaption strong {
  color: var(--black);
  font-size: 19px;
  font-weight: 900;
}

.executive-portrait figcaption span {
  color: var(--muted);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
}

.executive-biography {
  background: var(--soft);
}

.biography-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: 76px;
}

.biography-heading {
  position: sticky;
  top: 148px;
}

.section-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.biography-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: 44px;
  line-height: 1.34;
  font-weight: 900;
}

.biography-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  font-weight: 600;
}

.biography-content {
  border-block-start: 1px solid var(--line-strong);
}

.biography-block {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-block-end: 1px solid var(--line-strong);
}

.biography-block > span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.biography-block h3 {
  margin: 0;
  color: var(--black);
  font-size: 20px;
  line-height: 1.65;
  font-weight: 900;
}

.biography-block p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-weight: 600;
}

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

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

.leadership-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.leadership-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 220ms ease;
}

.leadership-card::after {
  content: "";
  position: absolute;
  inset-block-end: 18px;
  inset-inline-end: 18px;
  width: 52px;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.13) 0 2px,
    transparent 2px 8px
  );
}

.leadership-card:hover,
.leadership-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(242, 101, 34, 0.42);
  box-shadow: var(--shadow-soft);
}

.leadership-card:hover::before,
.leadership-card:focus-within::before {
  height: 100%;
}

.leadership-card > span {
  color: var(--orange);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.leadership-card h3 {
  margin: 40px 0 10px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 900;
}

.leadership-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 600;
}

.executive-vision {
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 58px),
    var(--black);
  color: var(--white);
}

.executive-vision::before {
  content: "";
  position: absolute;
  inset-block-start: -150px;
  inset-inline-start: 7%;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(242, 101, 34, 0.22);
  border-radius: 50%;
}

.executive-vision::after {
  content: "";
  position: absolute;
  inset-block-end: 42px;
  inset-inline-end: 6%;
  width: 210px;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(242, 101, 34, 0.78) 0 13px,
    transparent 13px 26px
  );
}

.vision-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.vision-mark {
  align-self: start;
  color: var(--orange);
  direction: ltr;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.vision-layout h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: 48px;
  line-height: 1.35;
  font-weight: 900;
}

.vision-layout p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
}

@keyframes executive-page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .product-card.reveal {
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.has-js .product-card.reveal.is-visible:hover,
.has-js .product-card.reveal.is-visible:focus-within {
  transform: translateY(-7px);
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 2px solid CanvasText;
    outline-offset: 3px;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .nav-panel {
    gap: 14px;
  }

  .nav-link {
    padding: 0 5px;
    font-size: 13px;
  }

  .nav {
    gap: 14px;
  }

  .nav-panel {
    gap: 8px;
  }

  .nav-cta {
    padding-inline: 14px;
  }

  .hero-grid,
  .why-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-photo {
    height: 470px;
  }

  .why-copy {
    position: static;
  }

  .industry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .executive-hero-grid {
    gap: 42px;
  }

  .executive-intro h1 {
    font-size: 64px;
  }

  .biography-layout {
    gap: 46px;
  }

  .biography-block {
    grid-template-columns: 120px 1fr;
  }

  .biography-block p {
    grid-column: 2;
  }

  .vision-layout {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .vision-layout .btn {
    grid-column: 2;
    justify-self: start;
  }

  .stat-item:nth-child(3) {
    border-inline-start: 0;
  }

  .stat-item:nth-child(n + 3) {
    border-block-start: 1px solid var(--line);
  }
}

@media (max-width: 840px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .nav {
    min-height: 104px;
  }

  .brand,
  .brand img {
    width: 210px;
  }

  .brand img {
    height: 94px;
  }

  .nav-panel {
    position: fixed;
    inset-block-start: 104px;
    inset-inline: 16px;
    z-index: 1;
    display: grid;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .executive-hero {
    min-height: auto;
    padding: 62px 0 74px;
  }

  .executive-hero-grid,
  .biography-layout {
    grid-template-columns: 1fr;
  }

  .executive-hero-grid {
    gap: 54px;
  }

  .executive-intro {
    max-width: 720px;
  }

  .executive-portrait {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .biography-heading {
    position: static;
    max-width: 690px;
  }

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

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

  .vision-layout .btn {
    grid-column: auto;
    justify-self: start;
  }

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

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
  }

  .nav-link::after {
    inset-inline: 12px auto;
    width: 26px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 54px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-content {
    padding-inline-start: 18px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.18;
  }

  .hero-content p {
    font-size: 18px;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-heading h2 {
    font-size: 36px;
  }

  .section-heading h2,
  .why-copy h2,
  .about-copy h2,
  .contact-info h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: fit-content;
  }

  .about-founder {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 64px;
  }

  .about-founder__copy {
    max-width: 720px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, 0.97);
  }

  .hero {
    padding: 64px 0 44px;
  }

  .executive-hero {
    padding: 48px 0 62px;
  }

  .executive-hero::after {
    inset-block-start: 24px;
    width: 120px;
  }

  .executive-intro {
    padding-inline-start: 0;
  }

  .executive-intro::before {
    display: none;
  }

  .executive-intro h1 {
    margin-top: 10px;
    font-size: 48px;
  }

  .executive-lead {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.95;
  }

  .executive-actions {
    display: grid;
    margin-top: 26px;
  }

  .executive-actions .btn {
    width: 100%;
  }

  .executive-signature span {
    padding-inline: 12px;
  }

  .portrait-frame {
    padding: 7px;
  }

  .portrait-frame::before {
    inset-inline-end: -10px;
  }

  .executive-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .biography-heading h2,
  .vision-layout h2 {
    font-size: 31px;
  }

  .biography-block {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .biography-block p {
    grid-column: auto;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    min-height: 210px;
    padding: 22px;
  }

  .vision-layout p {
    font-size: 16px;
  }

  .hero::before {
    inset-block-start: 126px;
    inset-inline-end: -150px;
    width: 310px;
    height: 310px;
    border-width: 34px;
  }

  .hero-content {
    padding-inline-start: 0;
  }

  .hero-content::before {
    display: none;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.26;
  }

  .hero-content p {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.95;
  }

  .hero-actions,
  .trust-badges {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .visual-frame {
    overflow: hidden;
    padding: 10px;
  }

  .visual-frame::before,
  .measure-rail,
  .frame-code {
    display: none;
  }

  .hero-photo {
    height: 360px;
  }

  .packing-label {
    inset-block-start: 18px;
    inset-inline-start: 18px;
    flex-wrap: wrap;
    max-width: calc(100% - 36px);
  }

  .floating-contact {
    position: static;
    display: block;
    margin-top: 10px;
    min-width: 0;
  }

  .tape-ring-large {
    inset-block-start: 16px;
    inset-inline-start: 16px;
    width: 82px;
    height: 82px;
    box-shadow:
      inset 0 0 0 13px rgba(255, 255, 255, 0.9),
      0 14px 24px rgba(242, 101, 34, 0.18);
  }

  .tape-ring-small {
    display: none;
  }

  .stats-strip {
    margin-top: 0;
    padding-bottom: 18px;
  }

  .stats-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item,
  .stat-item:nth-child(3),
  .stat-item:nth-child(n + 3) {
    border-inline-start: 0;
    border-block-start: 1px solid var(--line);
  }

  .section-heading {
    text-align: right;
  }

  .catalog-heading {
    margin-bottom: 36px;
    text-align: right;
  }

  .catalog-heading h2 {
    font-size: 31px;
  }

  .catalog-heading p {
    font-size: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .why-copy h2,
  .about-copy h2,
  .contact-info h2,
  .cta-copy h2 {
    font-size: 29px;
  }

  .why-copy,
  .feature-card,
  .industry-card,
  .contact-form {
    padding: 18px;
  }

  .product-visual {
    min-height: 170px;
  }

  .tape-roll {
    width: 132px;
    height: 132px;
  }

  .tape-roll::before {
    inset: 30px;
  }

  .contact-method {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .about-founder {
    gap: 40px;
    margin-top: 72px;
    padding-block: 52px;
  }

  .about-founder__copy {
    padding-inline-start: 0;
  }

  .about-founder__copy::before {
    display: none;
  }

  .about-founder__copy h3 {
    font-size: 38px;
  }

  .about-founder__copy p {
    font-size: 16px;
  }

  .about-founder__copy .btn {
    width: 100%;
  }

  .about-founder__portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-grid {
    gap: 26px;
  }
}

@media (min-width: 841px) and (max-width: 1080px) {
  .menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .nav {
    min-height: 104px;
  }

  .brand,
  .brand img {
    width: 230px;
  }

  .brand img {
    height: 94px;
  }

  .nav-panel {
    position: fixed;
    inset-block-start: 104px;
    inset-inline: 20px;
    z-index: 1;
    display: grid;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 14px;
  }

  .nav-link::after {
    inset-inline: 12px auto;
    width: 26px;
  }

  .nav-cta {
    width: 100%;
  }
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-button {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1fbd5a;
  color: #ffffff;
  border-color: #1fbd5a;
  box-shadow: 0 15px 32px rgba(37, 211, 102, 0.32);
  transform: translateY(-2px);
}

.whatsapp-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.nav-whatsapp {
  min-width: 128px;
  white-space: nowrap;
}

@media (min-width: 1081px) and (max-width: 1320px) {
  .nav-panel {
    gap: 12px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 13px;
  }

  .nav-whatsapp {
    min-width: 112px;
    padding-inline: 14px;
  }
}

.floating-contact.whatsapp-button {
  min-width: 178px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.floating-contact.whatsapp-button:hover,
.floating-contact.whatsapp-button:focus-visible {
  background: #1fbd5a;
}

.floating-contact.whatsapp-button span {
  display: inline;
  color: #ffffff;
  font-size: 15px;
}

.contact-method.whatsapp-button {
  display: flex;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.contact-method.whatsapp-button:hover,
.contact-method.whatsapp-button:focus-visible {
  background: #1fbd5a;
  border-color: #1fbd5a;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.contact-method.whatsapp-button span {
  color: #ffffff;
}

.footer-contact .whatsapp-button {
  width: min(100%, 230px);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #25d366;
  border-radius: 6px;
  color: #ffffff;
}

.footer-contact .whatsapp-button:hover,
.footer-contact .whatsapp-button:focus-visible {
  color: #ffffff;
  background: #1fbd5a;
  box-shadow: 0 15px 32px rgba(37, 211, 102, 0.32);
  transform: translateY(-2px);
}

.footer-contact .whatsapp-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.footer-socials {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  direction: ltr;
}

.footer-contact .footer-social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease,
    color 180ms ease, box-shadow 180ms ease;
}

.footer-contact .footer-social-link:hover,
.footer-contact .footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(242, 101, 34, 0.24);
}

.footer-contact .footer-social-link:active {
  transform: translateY(0);
  box-shadow: none;
}

.social-icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .nav-panel {
    max-height: calc(100vh - 116px);
    max-height: calc(100dvh - 104px - env(safe-area-inset-bottom) - 12px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-whatsapp {
    width: 100%;
  }
}

@media (max-width: 840px) {
  .footer-contact .whatsapp-button {
    width: min(100%, 320px);
  }

  .copyright {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .floating-contact.whatsapp-button {
    width: 100%;
    display: flex;
  }
}


/* Counter metrics - fixed visible fallback and animation */
.counters-section {
  padding-bottom: 34px;
}

.counters-grid {
  overflow: hidden;
}

.counter-item {
  text-align: center;
  align-items: center;
  gap: 4px;
}

.counter-number {
  direction: ltr;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 48px;
  color: var(--orange) !important;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.counter-item strong {
  margin-top: 8px;
  font-size: 18px;
}

.counter-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

@media (max-width: 780px) {
  .counter-number {
    font-size: 34px !important;
  }
  .counter-item small {
    font-size: 12px;
  }
}
