/* ركن الفهد — Landing Page Styles */
:root {
  --ink: #10161f;
  --ink-soft: #243040;
  --steel: #3a4656;
  --muted: #5e6b7a;
  --line: #d8dee6;
  --surface: #ffffff;
  --bg: #f3f5f8;
  --bg-alt: #e9eef3;
  --accent: #c9850a;
  --accent-hover: #a86d08;
  --accent-soft: #fff4df;
  --whatsapp: #1fa855;
  --whatsapp-hover: #188a45;
  --hero-overlay: linear-gradient(
    180deg,
    rgba(10, 14, 22, 0.55) 0%,
    rgba(10, 14, 22, 0.72) 45%,
    rgba(10, 14, 22, 0.78) 100%
  );
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(16, 22, 31, 0.08);
  --header-h: 76px;
  --mobile-cta-h: 68px;
  --container: 1120px;
  --font-ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Manrope", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-ar);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[dir="ltr"] {
  font-family: var(--font-en);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--accent);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(201, 133, 10, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
}

.btn-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  width: auto;
  height: 52px;
  max-width: min(48vw, 170px);
  object-fit: contain;
}

@media (min-width: 900px) {
  .logo-img {
    height: 60px;
    max-width: 200px;
  }
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-list a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel);
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--ink);
  background: var(--bg-alt);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.mobile-menu {
  position: relative;
}

.mobile-menu > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  color: var(--ink);
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary svg {
  width: 22px;
  height: 22px;
}

.mobile-menu .icon-close {
  display: none;
}

.mobile-menu[open] .icon-menu {
  display: none;
}

.mobile-menu[open] .icon-close {
  display: block;
}

.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--steel);
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.lang-switch:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.mobile-nav {
  position: fixed;
  inset-inline: 0;
  top: var(--header-h);
  z-index: 80;
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 0.75rem 1rem 1rem;
  box-shadow: 0 12px 28px rgba(16, 22, 31, 0.1);
  max-height: calc(100vh - var(--header-h) - var(--mobile-cta-h));
  overflow-y: auto;
}

.mobile-menu[open] .mobile-nav {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink-soft);
}

.mobile-nav-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.mobile-nav-actions a {
  border-bottom: 0;
  padding: 0;
}

/* Hero — full-bleed industrial plane */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #10161f;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero::after {
  content: none;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 42rem);
  margin-inline: auto;
  padding: 6rem 0 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-signal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.brand-signal::before {
  content: none;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.25rem);
  line-height: 1.22;
  font-weight: 800;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.hero-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.size-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  min-width: 140px;
  backdrop-filter: blur(4px);
  text-align: center;
}

.size-pill strong {
  font-size: 1.05rem;
  color: #fff;
}

.size-pill span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.brand-signal,
.hero h1,
.hero-lead,
.hero-sizes,
.hero-ctas,
.hero-note {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .brand-signal {
    opacity: 0;
    animation: rise-in 0.7s var(--ease) 0.05s forwards;
  }

  .hero h1 {
    opacity: 0;
    animation: rise-in 0.75s var(--ease) 0.15s forwards;
  }

  .hero-lead {
    opacity: 0;
    animation: rise-in 0.75s var(--ease) 0.28s forwards;
  }

  .hero-sizes {
    opacity: 0;
    animation: rise-in 0.75s var(--ease) 0.38s forwards;
  }

  .hero-ctas {
    opacity: 0;
    animation: rise-in 0.75s var(--ease) 0.48s forwards;
  }

  .hero-note {
    opacity: 0;
    animation: rise-in 0.75s var(--ease) 0.58s forwards;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose {
  max-width: 48rem;
  margin-inline: auto;
  color: var(--steel);
  text-align: center;
}

.prose p + p {
  margin-top: 1rem;
}

.uses-intro {
  margin-bottom: 1.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-head-center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.25rem;
}

.fleet-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.fleet-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.fleet-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.fleet-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 1rem;
}

.contact-table th,
.contact-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.contact-table th {
  background: var(--bg-alt);
  font-weight: 800;
  color: var(--ink);
}

.contact-table tr:last-child td {
  border-bottom: 0;
}

.contact-table td {
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-table a {
  color: var(--accent-hover);
  font-weight: 800;
}

.contact-table a:hover {
  text-decoration: underline;
}

.fleet-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .fleet-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .fleet-media img {
    aspect-ratio: 5 / 4;
    min-height: 320px;
  }
}

/* Services */
.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s var(--ease);
}

.section-alt .service-card {
  background: var(--bg);
}

.service-card:hover {
  border-color: #c5ced8;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}

.service-card .icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Container types */
.types-grid {
  display: grid;
  gap: 1.25rem;
}

.type-card {
  display: grid;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.type-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.type-visual {
  aspect-ratio: 16 / 10;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.type-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.type-visual .placeholder-label {
  text-align: center;
  padding: 1rem;
}

.type-visual .placeholder-label strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.type-body {
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: center;
}

.type-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.type-body p {
  color: var(--muted);
}

/* Why us */
.why-list {
  display: grid;
  gap: 0.85rem;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-hover);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0;
}

.why-item .check svg {
  width: 14px;
  height: 14px;
}

.why-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.why-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Areas */
.areas-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.chip {
  padding: 0.55rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.35rem 1.35rem 1.35rem 4.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
  text-align: center;
}

[dir="rtl"] .step {
  padding: 1.35rem 4.5rem 1.35rem 1.35rem;
}

.step::before {
  content: counter(step);
  position: absolute;
  top: 1.25rem;
  inset-inline-start: 1.15rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.steps-cta {
  margin-top: 1.75rem;
  text-align: center;
}

/* Uses */
.uses-grid {
  display: grid;
  gap: 0.75rem;
}

.use-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}

.use-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #243040, #121820);
  border: 1px solid var(--line);
  position: relative;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a2332;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
}

.gallery-placeholder small {
  display: block;
  margin-top: 0.4rem;
  opacity: 0.65;
  font-size: 0.78rem;
  word-break: break-all;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-inline-end: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
  text-align: center;
}

.faq-item[open] .faq-answer {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 133, 10, 0.2), transparent 50%),
    linear-gradient(145deg, #10161f, #243040);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 auto 0.75rem;
  max-width: 22ch;
}

.cta-band > .container > p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-phone a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 6.5rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.footer-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-desc {
  margin: 0 auto 1rem;
  max-width: 28rem;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-nav,
.footer-services {
  text-align: center;
}

.footer-nav h3,
.footer-services h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.footer-nav a,
.footer-services a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover,
.footer-services a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(16, 22, 31, 0.08);
}

.mobile-cta-bar .btn {
  width: 100%;
  min-height: 48px;
  box-shadow: none;
}

/* Media queries */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step,
  [dir="rtl"] .step,
  [dir="ltr"] .step {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .step::before {
    position: static;
    margin: 0 auto 1rem;
  }
}

@media (min-width: 900px) {
  .nav {
    display: block;
  }

  .mobile-menu {
    display: none;
  }

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

  .site-footer {
    padding-bottom: 3.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    justify-items: center;
  }

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

  .hero-inner {
    padding: 7rem 0 6rem;
  }
}

@media (max-width: 899px) {
  .header-actions .btn-call-desktop,
  .header-actions .btn-whatsapp-desktop {
    display: none;
  }

  body {
    padding-bottom: var(--mobile-cta-h);
  }
}

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

  .brand-signal,
  .hero h1,
  .hero-lead,
  .hero-sizes,
  .hero-ctas,
  .hero-note {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
