:root {
  --home-red: #ed2f24;
  --home-red-dark: #c92018;
  --home-red-soft: #fff0ee;
  --home-ink: #151515;
  --home-ink-2: #292929;
  --home-muted: #6b6b6b;
  --home-paper: #f7f6f4;
  --home-paper-2: #efedeb;
  --home-line: #e8e3df;
  --home-white: #fff;
  --home-green: #06a75d;
  --home-shadow-sm: 0 12px 32px rgba(24, 19, 17, .07);
  --home-shadow-md: 0 20px 55px rgba(24, 19, 17, .11);
  --home-shadow-lg: 0 35px 90px rgba(24, 19, 17, .16);
  --home-radius-sm: 16px;
  --home-radius-md: 24px;
  --home-radius-lg: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--home-ink);
  background: var(--home-white);
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.home-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.home-container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.home-section { padding: 96px 0; }

.home-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(21, 21, 21, .07);
  backdrop-filter: blur(18px);
}
.home-header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.home-brand {
  justify-self: start;
  display: inline-flex;
  text-decoration: none;
}
.home-brand img {
  width: 150px;
  height: 58px;
  object-fit: contain;
}
.home-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.home-nav a {
  position: relative;
  padding: 25px 0 22px;
  color: #444;
  font-size: .95rem;
  font-weight: 850;
  text-decoration: none;
  transition: color .2s ease;
}
.home-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  left: 50%;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--home-red);
  transition: right .2s ease, left .2s ease;
}
.home-nav a:hover,
.home-nav a.active { color: var(--home-red); }
.home-nav a:hover::after,
.home-nav a.active::after { right: 0; left: 0; }
.home-header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 21px;
  border-radius: 999px;
  background: var(--home-red);
  color: #fff;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(237, 47, 36, .24);
  transition: transform .2s ease, background .2s ease;
}
.home-header-cta:hover { transform: translateY(-2px); background: var(--home-red-dark); }
.home-header-cta svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: scaleX(-1); }
.home-menu-button {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--home-shadow-sm);
  cursor: pointer;
}
.home-menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--home-ink);
  transition: transform .2s ease, opacity .2s ease;
}
.home-menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.home-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.home-menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 80px;
  background:
    radial-gradient(circle at 8% 10%, rgba(237, 47, 36, .09), transparent 31%),
    radial-gradient(circle at 88% 0%, rgba(237, 47, 36, .055), transparent 26%),
    linear-gradient(180deg, #fff, #fbfaf9);
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -230px;
  bottom: -205px;
  border: 45px solid rgba(237, 47, 36, .055);
  border-radius: 50%;
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}
.home-eyebrow,
.home-section-heading > span,
.home-showcase-copy > span,
.home-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-red);
  font-size: .93rem;
  font-weight: 950;
}
.home-eyebrow {
  padding: 7px 13px;
  border: 1px solid #ffd6d2;
  border-radius: 999px;
  background: var(--home-red-soft);
}
.home-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-red);
  box-shadow: 0 0 0 5px rgba(237, 47, 36, .13);
}
.home-hero h1 {
  margin: 18px 0 4px;
  font-size: clamp(3.1rem, 6.6vw, 6.3rem);
  font-weight: 1000;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.home-hero h1 em { color: var(--home-red); font-style: normal; }
.home-scribble {
  width: min(100%, 465px);
  height: 18px;
  margin: 12px 0 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 20'%3E%3Cpath d='M3 10 C20 1 31 19 48 10 S79 1 96 10 S127 19 144 10 S175 1 192 10 S223 19 240 10 S271 1 288 10 S319 19 336 10 S367 1 384 10 S415 19 432 10 S463 1 517 10' fill='none' stroke='%23ed2f24' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
.home-scribble-short { width: 180px; margin: 8px auto 15px; }
.home-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--home-muted);
  font-size: 1.13rem;
  line-height: 1.95;
}
.home-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.home-hero-features > div {
  min-width: 0;
  padding: 17px 12px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 9px 25px rgba(24, 19, 17, .055);
}
.home-mini-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 11px;
  background: var(--home-red-soft);
  color: var(--home-red);
}
.home-mini-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-hero-features b,
.home-hero-features small { display: block; }
.home-hero-features b { font-size: .94rem; }
.home-hero-features small { color: var(--home-muted); font-size: .75rem; }
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 28px;
}
.home-primary-button,
.home-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 26px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-primary-button {
  color: #fff;
  background: var(--home-red);
  box-shadow: 0 15px 34px rgba(237, 47, 36, .24);
}
.home-primary-button:hover,
.home-dark-button:hover { transform: translateY(-3px); }
.home-primary-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scaleX(-1);
}
.home-text-link { color: var(--home-ink); font-weight: 900; text-underline-offset: 5px; }
.home-response-note { display: block; margin-top: 10px; color: #777; }

.home-hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.home-product-card {
  position: relative;
  z-index: 3;
  width: min(620px, 95%);
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 44px 44px 95px 44px;
  background: #fff;
  box-shadow: var(--home-shadow-lg);
  transform: rotate(-1.2deg);
}
.home-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, .035);
  border-radius: inherit;
  pointer-events: none;
}
.home-product-card img { width: 100%; aspect-ratio: 14 / 9; object-fit: cover; }
.home-hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(237, 47, 36, .18);
}
.home-hero-orbit-one { width: 500px; height: 500px; top: 50px; left: 0; }
.home-hero-orbit-two { width: 315px; height: 315px; right: 30px; bottom: 20px; border-width: 30px; opacity: .32; }
.home-floating-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(21, 21, 21, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--home-shadow-md);
  backdrop-filter: blur(12px);
}
.home-floating-badge > span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--home-red);
  color: #fff;
  font-weight: 950;
}
.home-floating-badge b,
.home-floating-badge small { display: block; }
.home-floating-badge b { font-size: .91rem; }
.home-floating-badge small { color: var(--home-muted); font-size: .74rem; }
.home-floating-badge-top { top: 52px; right: -5px; }
.home-floating-badge-bottom { bottom: 70px; left: -7px; }

.home-trust-strip { background: var(--home-ink); color: #fff; }
.home-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.home-trust-grid > div {
  position: relative;
  min-height: 112px;
  padding: 23px 26px;
  border-inline-start: 1px solid rgba(255,255,255,.11);
}
.home-trust-grid > div:first-child { border-inline-start: 0; }
.home-trust-grid span {
  position: absolute;
  top: 13px;
  left: 17px;
  color: rgba(255,255,255,.12);
  font-size: 2.4rem;
  font-weight: 1000;
  line-height: 1;
}
.home-trust-grid b,
.home-trust-grid small { display: block; position: relative; z-index: 2; }
.home-trust-grid b { margin-bottom: 1px; }
.home-trust-grid small { color: #bdbdbd; font-size: .8rem; }

.home-section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.home-section-heading-wide { max-width: 910px; }
.home-section-heading h2,
.home-showcase-copy h2,
.home-contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  font-weight: 1000;
  line-height: 1.28;
  letter-spacing: -.04em;
}
.home-section-heading p,
.home-showcase-copy > p,
.home-contact-copy > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.03rem;
}

.home-problem-section { background: var(--home-paper); }
.home-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-value-grid article {
  min-height: 285px;
  padding: 31px;
  border: 1px solid var(--home-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--home-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-value-grid article:hover { transform: translateY(-5px); box-shadow: var(--home-shadow-md); }
.home-value-grid article.featured { color: #fff; border-color: var(--home-red); background: var(--home-red); }
.home-value-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 18px;
  background: var(--home-red-soft);
  color: var(--home-red);
}
.home-value-grid .featured .home-value-icon { background: rgba(255,255,255,.18); color: #fff; }
.home-value-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-value-grid h3 { margin: 0 0 7px; font-size: 1.35rem; }
.home-value-grid p { margin: 0; color: var(--home-muted); }
.home-value-grid .featured p { color: rgba(255,255,255,.85); }

.home-audience-section { background: #fff; }
.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.home-audience-grid article {
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 23px 16px;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  box-shadow: var(--home-shadow-sm);
  transition: transform .2s ease, border-color .2s ease;
}
.home-audience-grid article:hover { transform: translateY(-5px); border-color: #f3a8a2; }
.home-audience-grid svg {
  width: 48px;
  margin-bottom: 9px;
  fill: none;
  stroke: var(--home-ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-audience-grid b { font-size: .98rem; }
.home-audience-grid small { color: var(--home-red); font-size: .75rem; }

.home-services-section { background: var(--home-paper); }
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.home-services-grid a {
  min-height: 205px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 25px 15px;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  background: #fff;
  color: var(--home-ink);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(24,19,17,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.home-services-grid a:hover { transform: translateY(-5px); border-color: #f1aaa5; box-shadow: var(--home-shadow-md); }
.home-services-grid a.highlight { border-color: var(--home-red); background: var(--home-red); color: #fff; }
.home-services-grid a > span {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 19px;
  background: var(--home-red-soft);
  color: var(--home-red);
}
.home-services-grid a.highlight > span { background: rgba(255,255,255,.16); color: #fff; }
.home-services-grid svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-services-grid b { line-height: 1.35; }
.home-services-grid small { color: var(--home-muted); font-size: .73rem; }
.home-services-grid .highlight small { color: rgba(255,255,255,.8); }

.home-showcase-section { background: #fff; overflow: hidden; }
.home-showcase-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}
.home-showcase-copy > p { margin-top: 5px; }
.home-showcase-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: grid;
  gap: 11px;
}
.home-showcase-copy li { display: flex; align-items: flex-start; gap: 9px; color: #444; }
.home-showcase-copy li b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 50%;
  background: #e7f8ef;
  color: var(--home-green);
  font-size: .76rem;
}
.home-dark-button {
  margin-top: 30px;
  background: var(--home-ink);
  color: #fff;
  box-shadow: 0 15px 34px rgba(21, 21, 21, .18);
}
.home-dark-button span { font-size: 1.3rem; }
.home-showcase-image {
  position: relative;
  margin: 0;
  padding: 17px;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--home-shadow-lg);
  transform: rotate(-1deg);
}
.home-showcase-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -26px 28px 28px -26px;
  border: 3px solid var(--home-red);
  border-radius: 42px;
}
.home-showcase-image img { width: 100%; aspect-ratio: 1.37 / 1; object-fit: cover; border-radius: 27px; }
.home-showcase-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 9px 4px;
  color: #555;
  font-size: .86rem;
}
.home-showcase-image figcaption b { color: var(--home-red); }

.home-why-section { background: var(--home-paper); }
.home-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.home-why-grid article {
  min-height: 270px;
  padding: 28px 24px;
  border: 1px solid var(--home-line);
  border-radius: 25px;
  background: #fff;
  text-align: center;
  box-shadow: var(--home-shadow-sm);
}
.home-why-grid article > span {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--home-red-soft);
  color: var(--home-red);
}
.home-why-grid svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-why-grid h3 { margin: 0 0 7px; font-size: 1.1rem; }
.home-why-grid p { margin: 0; color: var(--home-muted); font-size: .9rem; }

.home-contact-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--home-ink);
  color: #fff;
}
.home-contact-section::before,
.home-contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--home-red);
  opacity: .12;
}
.home-contact-section::before { width: 420px; height: 420px; right: -230px; top: -230px; }
.home-contact-section::after { width: 300px; height: 300px; left: -160px; bottom: -180px; }
.home-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
}
.home-contact-kicker { color: #ff6f65; }
.home-contact-copy h2 { max-width: 700px; }
.home-contact-copy > p { margin-top: 14px; color: #bfbfbf; }
.home-contact-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.home-contact-points span {
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #ddd;
  font-size: .82rem;
}
.home-hand-arrow { width: 180px; margin: 25px 20px 0 auto; opacity: .88; transform: scaleX(-1); }
.home-hand-arrow svg { width: 100%; fill: none; stroke: #fff; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.home-lead-card {
  padding: clamp(28px, 5vw, 45px);
  border-radius: 32px;
  background: #fff;
  color: var(--home-ink);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.home-lead-heading span { color: var(--home-red); font-weight: 950; }
.home-lead-heading h2 { margin: 2px 0 0; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.35; }
.home-lead-heading p { margin: 4px 0 0; color: var(--home-muted); }
#homeLeadForm { margin-top: 25px; display: grid; gap: 15px; }
#homeLeadForm label { display: grid; gap: 7px; }
#homeLeadForm label > span { color: #383838; font-size: .88rem; font-weight: 850; }
#homeLeadForm input,
#homeLeadForm select {
  width: 100%;
  min-height: 54px;
  padding: 11px 15px;
  border: 1px solid #ddd7d3;
  border-radius: 14px;
  outline: none;
  background: #fbfaf9;
  color: var(--home-ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
#homeLeadForm input:focus,
#homeLeadForm select:focus {
  border-color: var(--home-red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(237,47,36,.10);
}
.home-turnstile-container { display: none; min-height: 0; overflow: hidden; }
.home-turnstile-container.active { display: flex; min-height: 66px; justify-content: center; overflow: visible; }
#homeLeadButton {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 2px;
  padding: 12px 22px;
  border: 0;
  border-radius: 15px;
  background: var(--home-red);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(237,47,36,.24);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
#homeLeadButton:hover:not(:disabled) { transform: translateY(-2px); background: var(--home-red-dark); }
#homeLeadButton:disabled { cursor: wait; opacity: .72; }
#homeLeadButton svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transform: scaleX(-1); }
.home-form-note { margin: -2px 0 0; color: #7b7b7b; font-size: .78rem; text-align: center; }
.home-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; opacity: 0 !important; }
.home-lead-message { display: none; padding: 11px 14px; border-radius: 13px; font-size: .86rem; }
.home-lead-message.show { display: block; }
.home-lead-message.error { color: #9b1c1c; background: #fff0f0; border: 1px solid #ffd2d2; }
.home-lead-message.success { color: #08633d; background: #ecf9f2; border: 1px solid #bce8d1; }

.home-footer { padding: 34px 0 22px; background: #0b0b0b; color: #fff; }
.home-footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.home-footer-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.home-footer-brand img { width: 116px; height: 55px; object-fit: contain; filter: drop-shadow(0 5px 15px rgba(0,0,0,.3)); }
.home-footer-brand span { max-width: 240px; color: #bdbdbd; font-size: .8rem; }
.home-footer-promises { display: flex; gap: 22px; color: #d0d0d0; font-size: .8rem; }
.home-footer-promises span { display: inline-flex; align-items: center; gap: 7px; }
.home-footer-promises b { color: #ff5d53; }
.home-footer-main > a:last-child { justify-self: end; color: #bdbdbd; font-size: .82rem; }
.home-footer-bottom { padding-top: 20px; color: #858585; font-size: .76rem; text-align: center; }
.home-mobile-cta { display: none; }

@media (max-width: 1100px) {
  .home-header-inner { grid-template-columns: 1fr auto auto; }
  .home-menu-button { display: block; order: 3; }
  .home-brand { order: 1; }
  .home-header-cta { order: 2; }
  .home-nav {
    position: fixed;
    inset: 81px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 15px 18px 22px;
    border-bottom: 1px solid var(--home-line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 45px rgba(20,20,20,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .home-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .home-nav a { padding: 13px 7px; border-bottom: 1px solid #eee; }
  .home-nav a::after { display: none; }
  .home-hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .home-hero h1 { font-size: clamp(3rem, 7vw, 5rem); }
  .home-hero-visual { min-height: 500px; }
  .home-audience-grid { grid-template-columns: repeat(5, 1fr); }
  .home-services-grid { grid-template-columns: repeat(4, 1fr); }
  .home-why-grid { grid-template-columns: repeat(2, 1fr); }
  .home-footer-main { grid-template-columns: 1fr 1fr; }
  .home-footer-promises { justify-self: end; }
  .home-footer-main > a:last-child { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 860px) {
  .home-section { padding: 78px 0; }
  .home-hero { padding: 55px 0 64px; }
  .home-hero-grid,
  .home-showcase-grid,
  .home-contact-grid { grid-template-columns: 1fr; }
  .home-hero-copy { text-align: center; }
  .home-eyebrow { margin-inline: auto; }
  .home-scribble { margin-inline: auto; }
  .home-hero-copy > p { margin-inline: auto; }
  .home-hero-actions { justify-content: center; }
  .home-hero-features { max-width: 680px; margin-inline: auto; margin-top: 28px; }
  .home-hero-visual { min-height: 510px; margin-top: 5px; }
  .home-product-card { width: min(650px, 94%); }
  .home-hero-orbit-one { left: 6%; }
  .home-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .home-trust-grid > div:nth-child(3) { border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .home-trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.11); }
  .home-value-grid { grid-template-columns: 1fr; }
  .home-value-grid article { min-height: auto; }
  .home-audience-grid { grid-template-columns: repeat(3, 1fr); }
  .home-services-grid { grid-template-columns: repeat(3, 1fr); }
  .home-showcase-copy { text-align: center; }
  .home-showcase-copy ul { width: fit-content; max-width: 100%; margin-inline: auto; text-align: right; }
  .home-showcase-image { max-width: 760px; margin-inline: auto; }
  .home-contact-copy { text-align: center; }
  .home-contact-copy h2 { margin-inline: auto; }
  .home-contact-points { justify-content: center; }
  .home-hand-arrow { display: none; }
  .home-lead-card { max-width: 700px; width: 100%; margin-inline: auto; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  .home-container { width: min(100% - 24px, 1180px); }
  .home-header-inner { min-height: 70px; gap: 10px; grid-template-columns: 1fr auto auto; }
  .home-brand img { width: 105px; height: 48px; }
  .home-header-cta { min-height: 42px; padding: 8px 14px; font-size: .82rem; }
  .home-header-cta svg { display: none; }
  .home-menu-button { width: 42px; height: 42px; }
  .home-nav { inset: 71px 0 auto 0; }
  .home-hero { padding: 41px 0 55px; }
  .home-hero h1 { margin-top: 15px; font-size: clamp(2.85rem, 15vw, 4.6rem); }
  .home-hero-copy > p { font-size: .99rem; line-height: 1.85; }
  .home-hero-features { grid-template-columns: 1fr; gap: 9px; }
  .home-hero-features > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    text-align: right;
    column-gap: 11px;
    padding: 12px 13px;
  }
  .home-mini-icon { grid-row: 1 / 3; margin: 0; }
  .home-hero-actions { display: grid; }
  .home-primary-button { width: 100%; }
  .home-text-link { text-align: center; }
  .home-hero-visual { min-height: 390px; margin-top: 20px; }
  .home-product-card { width: 100%; border-width: 6px; border-radius: 28px 28px 60px 28px; }
  .home-floating-badge { min-width: 173px; padding: 10px 11px; }
  .home-floating-badge > span { width: 31px; height: 31px; }
  .home-floating-badge b { font-size: .78rem; }
  .home-floating-badge small { font-size: .64rem; }
  .home-floating-badge-top { top: 2px; right: -2px; }
  .home-floating-badge-bottom { bottom: 12px; left: -1px; }
  .home-hero-orbit-one { width: 330px; height: 330px; top: 10px; left: 5px; }
  .home-hero-orbit-two { width: 210px; height: 210px; right: -25px; bottom: -10px; }
  .home-trust-grid { grid-template-columns: 1fr 1fr; }
  .home-trust-grid > div { min-height: 104px; padding: 19px 15px; }
  .home-trust-grid b { font-size: .88rem; }
  .home-trust-grid small { font-size: .7rem; }
  .home-section { padding: 66px 0; }
  .home-section-heading { margin-bottom: 32px; }
  .home-section-heading h2,
  .home-showcase-copy h2,
  .home-contact-copy h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  .home-value-grid { gap: 13px; }
  .home-value-grid article { padding: 25px; border-radius: 23px; }
  .home-audience-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .home-audience-grid article { min-height: 155px; padding: 18px 10px; border-radius: 20px; }
  .home-audience-grid svg { width: 41px; }
  .home-services-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .home-services-grid a { min-height: 168px; padding: 18px 9px; border-radius: 20px; }
  .home-services-grid a > span { width: 51px; height: 51px; margin-bottom: 7px; border-radius: 16px; }
  .home-services-grid svg { width: 27px; }
  .home-services-grid b { font-size: .87rem; }
  .home-showcase-grid { gap: 42px; }
  .home-showcase-image { padding: 10px; border-radius: 25px; }
  .home-showcase-image::before { inset: -14px 15px 16px -14px; border-width: 2px; border-radius: 29px; }
  .home-showcase-image img { border-radius: 18px; }
  .home-showcase-image figcaption { display: grid; text-align: center; }
  .home-why-grid { grid-template-columns: 1fr; gap: 12px; }
  .home-why-grid article { min-height: auto; padding: 24px 20px; }
  .home-contact-section { padding: 70px 0 92px; }
  .home-contact-grid { gap: 35px; }
  .home-lead-card { padding: 25px 18px; border-radius: 24px; }
  .home-contact-points { display: grid; }
  .home-footer { padding-bottom: 86px; }
  .home-footer-main { grid-template-columns: 1fr; text-align: center; }
  .home-footer-brand { justify-content: center; display: grid; }
  .home-footer-brand span { max-width: none; }
  .home-footer-promises { justify-self: center; display: grid; gap: 9px; }
  .home-footer-main > a:last-child { grid-column: auto; }
  .home-mobile-cta {
    position: fixed;
    z-index: 100;
    right: 12px;
    left: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
    padding: 10px 18px;
    border-radius: 17px;
    background: var(--home-red);
    color: #fff;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(237,47,36,.34);
  }
  .home-mobile-cta b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.18); }
}

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