:root {
  color-scheme: light;
  --canvas: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #5b6778;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --amber: #f5b700;
  --amber-hover: #e8a900;
  --amber-soft: #fff8db;
  --amber-line: #f3d37b;
  --amber-ink: #8a4f00;
  --green: #16a36b;
  --green-soft: #e9f9f2;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.11);
  --shell: min(1240px, calc(100% - 40px));
}

@font-face {
  font-family: Tajawal;
  src: url("/fonts/tajawal-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Tajawal;
  src: url("/fonts/tajawal-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Tajawal;
  src: url("/fonts/tajawal-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Tajawal;
  src: url("/fonts/tajawal-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Tajawal, Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

a,
button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(245, 183, 0, 0.62);
  outline-offset: 4px;
  border-radius: 12px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.page-atmosphere {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 183, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 183, 0, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 73% 11%, rgba(251, 191, 36, 0.21), transparent 25%),
    radial-gradient(circle at 9% 42%, rgba(251, 191, 36, 0.1), transparent 23%);
  background-size: 36px 36px, 36px 36px, auto, auto;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.78) 32%, transparent 78%);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.075);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
}

.brand-frame {
  display: grid;
  place-items: center;
  padding: 4px 11px;
  border: 1px solid #29313e;
  border-radius: 14px;
  background: #07090d;
  box-shadow: var(--shadow-sm);
}

.brand-frame img {
  display: block;
  width: 120px;
  height: 48px;
  object-fit: contain;
}

.header-inner nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-inner nav a {
  position: relative;
  padding-block: 30px 27px;
  white-space: nowrap;
}

.header-inner nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--amber);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-inner nav a:hover,
.header-inner nav .featured-link {
  color: var(--amber-ink);
}

.header-inner nav a:hover::after,
.header-inner nav .featured-link::after {
  opacity: 1;
  transform: none;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.button svg {
  width: 18px;
  height: 18px;
}

.cta-arrow {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.whatsapp-mark {
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.button-secondary .whatsapp-mark {
  color: var(--green);
}

.button-primary {
  border-color: #dca300;
  background: var(--amber);
  color: #16130a;
  box-shadow: 0 7px 22px rgba(245, 183, 0, 0.24);
}

.button-primary:hover {
  background: var(--amber-hover);
  box-shadow: 0 11px 28px rgba(245, 183, 0, 0.31);
  transform: translateY(-2px);
}

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
  color: var(--amber-ink);
}

.button-quiet svg {
  color: var(--green);
}

.button-large {
  min-height: 54px;
  padding-inline: 25px;
  font-size: 15px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--ink);
}

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

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
  padding-block: 144px 86px;
}

.eyebrow,
.section-label,
.section-head span,
.brands header > span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 11px;
  border: 1px solid var(--amber-line);
  border-radius: 999px;
  background: rgba(255, 248, 219, 0.82);
  color: var(--amber-ink);
  font-size: 11px;
  font-weight: 700;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.14);
}

.hero h1 {
  margin: 24px 0 19px;
  color: #090f1c;
  font-size: clamp(52px, 5.7vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 em {
  position: relative;
  color: var(--amber-hover);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 68%;
  height: 4px;
  border-radius: 12px;
  background: var(--amber);
  content: "";
}

.lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.95;
}

.hero-actions {
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 25px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-ink);
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 220, 102, 0.33);
  filter: blur(75px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(196, 141, 0, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 355px;
  height: 355px;
  border-style: dashed;
}

.diagnostic-card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid rgba(240, 190, 55, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg), 0 0 45px rgba(245, 183, 0, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(3deg) rotateX(1deg);
}

.diagnostic-card::after {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  content: "";
  animation: scan 4.5s ease-in-out infinite;
}

.diagnostic-head,
.diagnostic-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.connected,
.update-chip,
.diagnostic-foot span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.connected i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 163, 107, 0.1);
}

.update-chip {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
}

.update-chip svg,
.diagnostic-foot svg {
  width: 14px;
  height: 14px;
  color: var(--amber-ink);
}

.diagnostic-body {
  margin: 20px;
  padding: 22px;
  border: 1px solid var(--amber-line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #fffdf5 100%);
  box-shadow: var(--shadow-sm);
}

.order-mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.order-mini-head small,
.order-mini-head strong {
  display: block;
}

.order-mini-head small,
.diagnostic-meta small,
.tracking-card small {
  color: var(--muted);
  font-size: 10px;
}

.order-mini-head strong {
  margin-top: 5px;
  font-size: 19px;
}

.order-mini-head > b {
  padding: 5px 8px;
  border: 1px solid var(--amber-line);
  border-radius: 7px;
  background: var(--amber-soft);
  color: var(--amber-ink);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.diagnostic-body > p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.status-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid #f0d47f;
  border-radius: 11px;
  background: #fff9e7;
  font-size: 12px;
  font-weight: 700;
}

.status-panel span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-panel i,
.tracking-status b i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(245, 183, 0, 0.1);
}

.status-panel small {
  color: var(--amber-ink);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: var(--muted);
  font-size: 10px;
}

.progress-track {
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 20px;
  background: #e8edf4;
}

.progress-track i {
  width: 75%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber-hover), #ffd53d);
}

.diagnostic-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px 20px;
}

.diagnostic-meta div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.84);
}

.diagnostic-meta small,
.diagnostic-meta strong {
  display: block;
}

.diagnostic-meta strong {
  margin-top: 4px;
  font-size: 12px;
}

.diagnostic-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.diagnostic-foot a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--amber-ink);
}

.diagnostic-foot a .cta-arrow {
  width: 15px;
  height: 15px;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 94px;
}

.proof article {
  min-height: 165px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.proof article::after {
  width: 120px;
  height: 120px;
  margin: -82px -24px 0 0;
  border-radius: 50%;
  background: rgba(255, 231, 145, 0.16);
  content: "";
}

.feature-icon,
.service-icon,
.location-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber-line);
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber-ink);
}

.feature-icon svg,
.service-icon svg,
.location-icon svg {
  width: 21px;
  height: 21px;
}

.proof h2,
.service-card h3,
.process-list h3,
.location-card h3 {
  margin: 2px 0 7px;
  font-size: 19px;
}

.proof p,
.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.section {
  padding-block: 94px;
  scroll-margin-top: 82px;
}

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

.section-head span,
.brands header > span {
  margin-bottom: 13px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--amber-ink);
}

.section-head h2,
.brands h2,
.tracking h2,
.contact h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.23;
  letter-spacing: -0.025em;
}

.section-head > p,
.brands header > p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-head.centered {
  display: block;
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered span {
  margin-inline: auto;
}

.section-head.centered > p {
  margin: 13px auto 0;
}

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

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--amber-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.service-top > b {
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.service-card h3 {
  font-size: 21px;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0 26px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.service-link {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  border: 1px solid var(--amber-line);
  border-radius: 12px;
  background: #fffdf6;
  color: var(--amber-ink);
  font-size: 12px;
  font-weight: 700;
}

.service-link:hover {
  background: var(--amber);
  color: var(--ink);
}

.service-link .cta-arrow {
  width: 16px;
  height: 16px;
}

.process-wrap {
  border-block: 1px solid var(--line);
  background: rgba(241, 245, 249, 0.72);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 47px 0 0;
  padding: 0;
  list-style: none;
}

.process-line {
  position: absolute;
  z-index: 0;
  top: 32px;
  right: 16.6%;
  left: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), var(--amber), var(--line-strong));
  transform: scaleX(0);
  transition: transform 900ms ease;
}

.process-list.is-visible .process-line {
  transform: none;
}

.process-list li {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 63px 25px 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.process-list li.active {
  border-color: var(--amber-line);
  box-shadow: 0 12px 34px rgba(180, 122, 0, 0.08);
}

.process-list li > i {
  position: absolute;
  top: 13px;
  right: 20px;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.process-list li.active > i {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(245, 183, 0, 0.12);
}

.process-list small {
  color: var(--amber-ink);
  font-size: 10px;
  font-weight: 700;
}

.tracking {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--amber-line);
  border-radius: 26px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.97), rgba(255, 251, 235, 0.9));
  box-shadow: var(--shadow-md);
}

.tracking::before {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 220, 94, 0.22);
  filter: blur(60px);
  content: "";
}

.tracking-copy,
.tracking-card {
  position: relative;
}

.tracking h2,
.contact h2 {
  margin: 17px 0 13px;
  font-size: clamp(34px, 3.7vw, 48px);
}

.tracking-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.tracking-entry {
  display: flex;
  gap: 8px;
  margin-top: 25px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tracking-entry > span {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  color: var(--ink-soft);
}

.tracking-entry svg {
  width: 18px;
  color: var(--amber-ink);
}

.tracking-entry b[dir="ltr"] {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
}

.tracking-card {
  padding: 24px;
  border: 1px solid var(--amber-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.tracking-card header,
.tracking-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tracking-card header {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.tracking-card header div:last-child {
  text-align: left;
}

.tracking-card small,
.tracking-card strong {
  display: block;
}

.tracking-card header strong {
  margin-top: 4px;
  font-size: 12px;
}

.tracking-card header div:first-child strong {
  color: var(--amber-ink);
}

.tracking-status {
  margin-block: 20px;
  padding: 17px;
  border: 1px solid #f1daa0;
  border-radius: 13px;
  background: #fffbeb;
}

.tracking-status > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tracking-status b {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #08724a;
  font-size: 12px;
}

.tracking-status b i {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 163, 107, 0.1);
}

.tracking-status p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.tracking-card footer {
  color: var(--muted);
  font-size: 10px;
}

.tracking-card footer strong {
  color: var(--amber-ink);
}

.brands {
  border-top: 1px solid var(--line);
  text-align: center;
}

.brands header {
  max-width: 720px;
  margin-inline: auto;
}

.brands header > span {
  margin-inline: auto;
}

.brands h2 {
  font-size: clamp(29px, 3vw, 39px);
}

.brands header > p {
  margin: 10px auto 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.brands-grid div {
  height: 98px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brands-grid div:hover {
  border-color: var(--amber-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brands-grid img {
  width: 100%;
  max-width: 74px;
  max-height: 34px;
  filter: grayscale(1) contrast(1.2);
}

.customer-reviews[hidden],
.customer-reviews-controls[hidden] {
  display: none;
}

.customer-reviews {
  border-top: 1px solid var(--line);
}

.customer-reviews-grid {
  display: flex;
  direction: rtl;
  gap: 0;
  transition: transform 500ms cubic-bezier(0.22, 0.75, 0.2, 1);
  will-change: transform;
}

.customer-reviews-viewport {
  overflow: hidden;
  margin: -5px;
  padding: 5px;
  touch-action: pan-y;
}

.customer-reviews-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--reviews-per-view), minmax(0, 1fr));
  gap: 16px;
  padding: 4px;
}

.customer-reviews-grid article {
  position: relative;
  min-width: 0;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.customer-reviews-grid article::before {
  position: absolute;
  top: 7px;
  left: 17px;
  color: #fff1bd;
  content: "“";
  font: 900 76px Georgia, serif;
  line-height: 1;
}

.customer-reviews-grid article:hover {
  border-color: var(--amber-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.customer-review-stars {
  direction: ltr;
  width: max-content;
  color: #eead00;
  font-size: 17px;
  letter-spacing: 2px;
}

.customer-reviews-grid blockquote {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  margin: 25px 0 20px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.customer-reviews-grid article footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.customer-reviews-grid article footer strong {
  font-size: 13px;
}

.customer-reviews-grid article footer span {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.customer-reviews-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 26px;
}

.customer-reviews-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.customer-reviews-arrow:hover {
  border-color: var(--amber);
  background: var(--amber-soft);
}

.customer-reviews-arrow svg {
  width: 19px;
  height: 19px;
}

.customer-reviews-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.customer-reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #cbd5e1;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.customer-reviews-dots button[aria-current="true"] {
  width: 25px;
  background: var(--amber-hover);
}

.customer-reviews-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
  overflow: hidden;
  padding: clamp(35px, 5vw, 64px);
  border: 1px solid var(--amber-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.contact::after {
  position: absolute;
  top: -110px;
  left: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 224, 111, 0.25);
  filter: blur(65px);
  content: "";
}

.contact-copy,
.location-card {
  position: relative;
  z-index: 1;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 21px;
  color: var(--ink-soft);
}

.contact-detail svg {
  width: 22px;
  color: var(--amber-ink);
}

.contact-actions {
  margin-top: 27px;
}

.location-card {
  padding: 27px;
  border: 1px solid var(--amber-line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.location-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.location-icon svg {
  width: 28px;
  height: 28px;
}

.location-card h3 {
  font-size: 21px;
}

.location-card > p {
  margin: 0;
  color: var(--amber-ink);
  font-size: 12px;
  font-weight: 700;
}

.location-card > div {
  margin: 20px 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--canvas);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.location-card > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.location-card > a:hover {
  background: #0e8958;
}

.location-card > a svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.site-footer > .shell {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding-block: 35px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
}

.footer-brand .brand-frame {
  padding: 3px 9px;
  border-radius: 11px;
}

.footer-brand .brand-frame img {
  width: 105px;
  height: 41px;
}

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--amber-ink);
}

.site-footer .staff {
  color: #7c8796;
}

.site-footer small {
  color: #7c8796;
  font-size: 10px;
}

.support-fab {
  position: fixed;
  z-index: 55;
  bottom: 22px;
  left: 22px;
  display: flex;
  direction: rtl;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: #12a868;
  color: #fff;
  box-shadow: 0 14px 38px rgba(18, 168, 104, 0.28);
}

.support-fab:hover {
  background: #0b8d57;
  transform: translateY(-2px);
}

.support-fab > i {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.support-fab svg {
  width: 28px;
  fill: #fff;
  stroke: none;
}

.support-intro {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 350ms ease, padding 350ms ease, opacity 250ms ease;
}

.support-fab.is-open .support-intro {
  max-width: 180px;
  padding: 0 15px 0 17px;
  opacity: 1;
}

.support-intro small,
.support-intro b {
  display: block;
}

.support-intro small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
}

.support-intro b {
  margin-top: 1px;
  font-size: 12px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.services-grid .reveal:nth-child(2),
.process-list .reveal:nth-of-type(2),
.proof .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.services-grid .reveal:nth-child(3),
.process-list .reveal:nth-of-type(3),
.proof .reveal:nth-child(3) {
  transition-delay: 160ms;
}

@keyframes scan {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.85;
    transform: translateY(384px);
  }
}

@media (max-width: 1080px) {
  .header-track {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
    gap: 42px;
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer > .shell {
    grid-template-columns: 1fr auto;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .header-inner nav {
    position: absolute;
    top: 73px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .header-inner nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header-inner nav a {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
  }

  .header-inner nav a:last-child {
    border-bottom: 0;
  }

  .header-inner nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 132px;
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
    margin-inline: auto;
  }

  .lead {
    margin-inline: auto;
  }

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

  .proof,
  .services-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .proof article {
    min-height: 135px;
  }

  .service-card {
    min-height: 330px;
  }

  .process-line {
    top: 70px;
    right: 39px;
    bottom: 70px;
    left: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--line-strong), var(--amber), var(--line-strong));
    transform: scaleY(0);
  }

  .process-list li {
    min-height: 150px;
    padding: 27px 82px 27px 27px;
  }

  .process-list li > i {
    top: 25px;
  }

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

  .tracking-card,
  .location-card {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .customer-reviews-page {
    gap: 13px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(calc(100% - 28px), 1240px);
  }

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

  .brand-frame {
    padding: 3px 8px;
    border-radius: 11px;
  }

  .brand-frame img {
    width: 102px;
    height: 41px;
  }

  .button-quiet {
    display: none;
  }

  .header-inner nav {
    top: 67px;
  }

  .hero {
    min-height: auto;
    padding-block: 113px 64px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(43px, 13vw, 56px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    justify-content: start;
    gap: 10px;
    text-align: right;
  }

  .hero-visual {
    min-height: 430px;
    margin-inline: -4px;
  }

  .visual-halo {
    width: 300px;
    height: 300px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    display: none;
  }

  .diagnostic-card {
    border-radius: 17px;
    transform: none;
  }

  .diagnostic-head,
  .diagnostic-foot {
    padding: 13px;
    font-size: 9px;
  }

  .diagnostic-body {
    margin: 13px;
    padding: 16px;
  }

  .order-mini-head strong {
    font-size: 16px;
  }

  .diagnostic-meta {
    padding: 0 13px 13px;
  }

  .proof {
    gap: 12px;
    padding-bottom: 66px;
  }

  .proof article {
    min-height: 0;
    padding: 22px;
  }

  .section {
    padding-block: 68px;
    scroll-margin-top: 74px;
  }

  .section-head {
    display: block;
    margin-bottom: 29px;
  }

  .section-head h2,
  .brands h2,
  .tracking h2,
  .contact h2 {
    font-size: 32px;
  }

  .section-head > p {
    margin-top: 13px;
  }

  .service-card {
    min-height: 0;
    padding: 23px;
  }

  .process-list {
    margin-top: 32px;
  }

  .process-list li {
    padding-right: 74px;
  }

  .tracking,
  .contact {
    gap: 34px;
    padding: 25px 18px;
    border-radius: 20px;
  }

  .tracking-entry {
    flex-direction: column;
  }

  .tracking-entry > span {
    min-height: 42px;
  }

  .tracking-entry .button {
    width: 100%;
  }

  .tracking-card {
    padding: 17px;
  }

  .tracking-card header {
    gap: 10px;
  }

  .tracking-status > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .brands-grid div {
    height: 88px;
    padding: 20px;
  }

  .customer-reviews-page {
    gap: 10px;
  }

  .customer-reviews-grid article {
    min-height: 238px;
    padding: 18px 16px;
  }

  .customer-reviews-grid blockquote {
    margin: 23px 0 17px;
    font-size: 13px;
  }

  .site-footer > .shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 23px;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-brand p {
    margin: 0;
  }

  .site-footer small {
    grid-column: 1;
  }

  .support-fab {
    bottom: 14px;
    left: 14px;
  }

  .support-fab > i {
    width: 54px;
    height: 54px;
  }

  .support-fab.is-open .support-intro {
    max-width: 155px;
  }
}

@media (max-width: 359px) {
  .hero h1 {
    font-size: 40px;
  }

  .diagnostic-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .diagnostic-meta {
    grid-template-columns: 1fr;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .process-line {
    transform: none;
  }
}
