/* ==========================================================================
   SaaedServics QA — Design System
   Modern · Premium · Minimal · High-Tech · Luxury
   ========================================================================== */

:root {
  --bg:        #0F1115;   /* matte black   */
  --bg-2:      #171A1F;   /* carbon black  */
  --bg-3:      #1D2127;
  --gunmetal:  #2C3138;
  --silver:    #C9CCD1;
  --muted:     #BFC4CC;
  --dim:       #8A9099;
  --white:     #FFFFFF;
  --red:       #E10600;
  --red-hot:   #FF2B22;
  --green:     #00C853;
  --orange:    #FF9800;

  --line:        rgba(201, 204, 209, 0.13);
  --line-strong: rgba(201, 204, 209, 0.26);
  --red-glow:    rgba(225, 6, 0, 0.35);

  --font-head: 'Space Grotesk', 'Cairo', system-ui, sans-serif;
  --font-body: 'Inter', 'Cairo', system-ui, sans-serif;

  --radius:    20px;
  --radius-sm: 12px;
  --shadow-1:  0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-2:  0 24px 70px rgba(0, 0, 0, 0.6);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    180ms;
  --t-page:    420ms;

  --nav-h: 76px;
}

[dir="rtl"] {
  --font-head: 'Cairo', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Cairo', 'Inter', system-ui, sans-serif;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageIn var(--t-page) var(--ease-out) both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--red); color: var(--white); }

/* Carbon-fibre weave — 4% opacity, fixed overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(27deg, #000 5px, transparent 5px),
    linear-gradient(207deg, #000 5px, transparent 5px),
    linear-gradient(27deg, #222 5px, transparent 5px),
    linear-gradient(207deg, #222 5px, transparent 5px),
    linear-gradient(90deg, #14171b 10px, transparent 10px);
  background-size: 20px 20px;
  background-position: 0 5px, 10px 0, 0 10px, 10px 5px, 0 0;
  opacity: 0.04;
}
/* Ambient light drift */
body::after {
  content: "";
  position: fixed; inset: -40%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 30% at 22% 20%, rgba(201, 204, 209, 0.05), transparent 60%),
    radial-gradient(30% 26% at 80% 75%, rgba(225, 6, 0, 0.05), transparent 60%);
  animation: ambient 26s ease-in-out infinite alternate;
}
@keyframes ambient {
  from { transform: translate3d(-2%, -1%, 0) rotate(0deg); }
  to   { transform: translate3d(2%, 2%, 0) rotate(3deg); }
}
main, header, footer { position: relative; z-index: 1; }

/* ------------------------------------------------------------- typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
  text-wrap: balance;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { letter-spacing: 0; line-height: 1.35; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { max-width: 70ch; }

.overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 1.1rem;
}
.overline::before { content: ""; width: 34px; height: 2px; background: var(--red); border-radius: 2px; }
[dir="rtl"] .overline { letter-spacing: 0.08em; }

.lead { font-size: 1.13rem; color: var(--muted); }
.text-dim { color: var(--dim); }

/* Metallic sheen headline */
.sheen {
  background: linear-gradient(100deg, #fff 30%, #9ba1a9 42%, #fff 54%, #e8eaed 72%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: sheen 7s var(--ease-out) infinite;
}
@keyframes sheen { 0%, 55% { background-position: 120% 0; } 90%, 100% { background-position: -60% 0; } }

.accent { color: var(--red-hot); -webkit-text-fill-color: var(--red-hot); }

/* --------------------------------------------------------------- layout  */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-wide { width: min(1360px, 94vw); margin-inline: auto; }

.section { padding-block: clamp(4.5rem, 9vh, 7.5rem); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vh, 3.6rem); }
.section-head p { margin-top: 0.9rem; color: var(--muted); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.02em 2.1em;
  border-radius: 14px;
  transition: transform var(--t-fast) var(--ease-out), box-shadow 300ms var(--ease-out),
              background 300ms, border-color 300ms, color 300ms;
  overflow: hidden;
  white-space: nowrap;
}
[dir="rtl"] .btn { letter-spacing: 0.02em; font-size: 0.95rem; }
.btn:active { transform: scale(0.98); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(225, 6, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px var(--red-glow), 0 0 0 1px rgba(255, 60, 50, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(120%); }
[dir="rtl"] .btn-primary::after { transform: translateX(120%); }
[dir="rtl"] .btn-primary:hover::after { transform: translateX(-120%); }

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--silver);
  background: rgba(23, 26, 31, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 8px 26px rgba(225, 6, 0, 0.18), inset 0 0 0 1px rgba(225, 6, 0, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp { background: linear-gradient(180deg, #2ecc71, #1f9d55); color: #fff; box-shadow: 0 6px 24px rgba(31, 157, 85, 0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(31, 157, 85, 0.42); }

.btn-lg { padding: 1.15em 2.6em; font-size: 0.92rem; }
.btn-sm { padding: 0.72em 1.4em; font-size: 0.78rem; border-radius: 11px; }

/* ------------------------------------------------------------ navigation */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 420ms var(--ease-out), border-color 420ms, backdrop-filter 420ms, box-shadow 420ms;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 17, 21, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.nav-inner { width: min(1360px, 94vw); margin-inline: auto; display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { width: 42px; height: 42px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,.5); }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b {
  font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; letter-spacing: 0.04em;
  color: var(--white);
}
.brand-name b span { color: var(--red-hot); }
.brand-name small { font-size: 0.56rem; letter-spacing: 0.3em; color: var(--dim); text-transform: uppercase; margin-top: 3px; }
[dir="rtl"] .brand-name small { letter-spacing: 0.1em; font-size: 0.62rem; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav-links a {
  position: relative;
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  padding: 9px 13px; border-radius: 10px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--white); background: rgba(201, 204, 209, 0.07); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ""; position: absolute; inset-inline: 14px; bottom: 4px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--silver);
  border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 8px 13px;
  transition: border-color var(--t-fast), color var(--t-fast), box-shadow 300ms;
}
.lang-switch:hover { border-color: var(--red); color: var(--white); box-shadow: 0 0 18px rgba(225, 6, 0, 0.18); }
.lang-switch svg { width: 15px; height: 15px; }

.burger { display: none; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line-strong); position: relative; flex: none; }
.burger span {
  position: absolute; inset-inline: 12px; height: 2px; background: var(--silver); border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms, top 300ms var(--ease-out);
}
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 21px; } .burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0; z-index: 99;
  width: min(360px, 88vw);
  background: rgba(15, 17, 21, 0.92);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  border-inline-start: 1px solid var(--line);
  padding: calc(var(--nav-h) + 24px) 26px 32px;
  transform: translateX(105%);
  transition: transform 460ms var(--ease-out);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
[dir="rtl"] .mobile-menu { transform: translateX(-105%); }
.mobile-menu.open { transform: translateX(0) !important; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; color: var(--silver);
  padding: 13px 14px; border-radius: 12px; border: 1px solid transparent;
  transition: all var(--t-fast);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: var(--bg-2); border-color: var(--line); }
.mobile-menu .btn { margin-top: 18px; }
.menu-backdrop {
  position: fixed; inset: 0; z-index: 98; background: rgba(0, 0, 0, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 320ms;
}
.menu-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: block; }
}

/* ------------------------------------------------- full-page video layer */
.video-backdrop { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.video-backdrop img,
.video-backdrop video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.14) translateY(-1.5%); }
}
.video-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 21, 0.58) 0%, rgba(15, 17, 21, 0.52) 42%, rgba(15, 17, 21, 0.84) 100%),
    radial-gradient(120% 90% at 15% 45%, rgba(15, 17, 21, 0.45) 0%, transparent 55%),
    radial-gradient(60% 50% at 85% 15%, rgba(225, 6, 0, 0.13) 0%, transparent 65%);
}

/* Pages with the video layer: content floats translucent above it */
body.video-bg { background: transparent; }
body.video-bg::after { display: none; }
body.video-bg .card,
body.video-bg .review-card {
  background: linear-gradient(165deg, rgba(29, 33, 39, 0.82), rgba(23, 26, 31, 0.86) 55%);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
body.video-bg .marquee { background: rgba(15, 17, 21, 0.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
body.video-bg .marquee::before { background: linear-gradient(90deg, rgba(15,17,21,.85), transparent); }
body.video-bg .marquee::after { background: linear-gradient(-90deg, rgba(15,17,21,.85), transparent); }
body.video-bg footer.site {
  background: linear-gradient(180deg, rgba(13, 15, 18, 0.62), rgba(8, 10, 12, 0.88));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
body.video-bg .faq details,
body.video-bg .form-panel,
body.video-bg .step::before {
  background-color: rgba(23, 26, 31, 0.78);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: clip;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  filter: saturate(1.08) contrast(1.05);
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 17, 21, 0.62) 0%, rgba(15, 17, 21, 0.42) 40%, rgba(15, 17, 21, 0.94) 100%),
    radial-gradient(120% 90% at 15% 50%, rgba(15, 17, 21, 0.55) 0%, transparent 55%),
    radial-gradient(60% 50% at 85% 20%, rgba(225, 6, 0, 0.14) 0%, transparent 65%);
}
.hero-inner {
  width: min(1360px, 94vw); margin-inline: auto;
  padding-block: calc(var(--nav-h) + 40px) 110px;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(30px, 5vw, 70px); align-items: center;
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; } }

.hero-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.hero-logo img { width: 58px; height: 58px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55); }
.hero-logo .brand-name b { font-size: 1.35rem; }
.hero-logo .brand-name small { font-size: 0.62rem; }

.hero h1 { margin-bottom: 1.3rem; max-width: 13ch; }
.hero .lead { max-width: 52ch; font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 2.6rem; color: var(--dim); font-size: 0.86rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--green); }

/* Floating stat cards */
.hero-stats { display: grid; gap: 16px; }
@media (max-width: 980px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  --float-d: 0s;
  background: linear-gradient(160deg, rgba(29, 33, 39, 0.72), rgba(15, 17, 21, 0.55));
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: floaty 7s ease-in-out var(--float-d) infinite;
  transition: border-color 300ms, box-shadow 300ms;
}
.stat-card:hover { border-color: rgba(225, 6, 0, 0.45); box-shadow: 0 18px 50px rgba(0,0,0,.5), 0 0 30px rgba(225, 6, 0, 0.12); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.stat-card b {
  display: block;
  font-family: var(--font-head); font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
}
.stat-card b i { font-style: normal; color: var(--red-hot); }
.stat-card span { font-size: 0.84rem; color: var(--dim); letter-spacing: 0.05em; text-transform: uppercase; }
[dir="rtl"] .stat-card span { letter-spacing: 0; }
.stat-note { grid-column: 1 / -1; font-size: 0.72rem; color: var(--dim); opacity: .75; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  z-index: 2;
}
[dir="rtl"] .scroll-hint { letter-spacing: 0.1em; }
.scroll-hint::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: dropline 2.2s var(--ease-out) infinite;
}
@keyframes dropline { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.video-state {
  position: absolute; bottom: 26px; inset-inline-end: 30px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  opacity: 0.85;
}
[dir="rtl"] .video-state { letter-spacing: 0.08em; }
.video-state .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gunmetal); transition: background 250ms, box-shadow 250ms; }
.video-state.playing .dot { background: var(--red-hot); box-shadow: 0 0 12px var(--red-glow); animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.5; } }

/* Compact page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(48px, 9vh, 84px)) 0 clamp(44px, 7vh, 72px);
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(225, 6, 0, 0.1), transparent 60%),
    radial-gradient(50% 90% at 10% 100%, rgba(201, 204, 209, 0.05), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset-inline-start: -10%; top: -60%; width: 55%; height: 220%;
  background: linear-gradient(100deg, transparent 45%, rgba(255,255,255,0.028) 50%, transparent 55%);
  transform: rotate(8deg);
  pointer-events: none;
}
.page-hero h1 { max-width: 22ch; margin-block: 0.65rem 1rem; }
.page-hero .lead { max-width: 62ch; }
.page-hero .hero-ctas { margin-top: 1.9rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; font-size: 0.8rem; color: var(--dim); }
.breadcrumbs a { color: var(--dim); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs [aria-current] { color: var(--muted); }

/* ----------------------------------------------------------------- cards */
.card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  transition: transform 300ms var(--ease-out), border-color 300ms, box-shadow 300ms;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 180px at var(--mx, 50%) -20%, rgba(225, 6, 0, 0.12), transparent 65%);
  opacity: 0; transition: opacity 350ms;
}
.card:hover { transform: translateY(-6px); border-color: rgba(225, 6, 0, 0.4); box-shadow: var(--shadow-2), 0 0 40px rgba(225, 6, 0, 0.08); }
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 0.55rem; }
.card p { font-size: 0.95rem; color: var(--muted); }

.icon-badge {
  width: 54px; height: 54px; flex: none;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(160deg, var(--gunmetal), var(--bg-2));
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 18px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
  transition: transform 300ms var(--ease-out), border-color 300ms, box-shadow 300ms;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--silver); stroke-width: 1.6; transition: color 300ms; }
.card:hover .icon-badge { transform: translateY(-3px) scale(1.05); border-color: rgba(225, 6, 0, 0.5); box-shadow: 0 8px 24px rgba(225, 6, 0, 0.18); }
.card:hover .icon-badge svg { color: var(--red-hot); }

.card-link { position: absolute; inset: 0; z-index: 2; border-radius: inherit; }
.card-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  transition: color var(--t-fast), gap var(--t-fast);
}
[dir="rtl"] .card-more { letter-spacing: 0.04em; }
.card-more svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
[dir="rtl"] .card-more svg { transform: scaleX(-1); }
.card:hover .card-more { color: var(--red-hot); gap: 11px; }

/* Feature list card (Why choose us) */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .icon-badge { margin-bottom: 0; width: 48px; height: 48px; border-radius: 13px; }
.feature h3 { font-size: 1.06rem; }
.feature p { font-size: 0.92rem; }

/* ------------------------------------------------------- checklist & steps */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.98rem; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--green); margin-top: 3px; }

.steps { counter-reset: step; display: grid; gap: 0; position: relative; }
.step {
  counter-increment: step;
  position: relative;
  padding: 26px 0 26px 74px;
  border-bottom: 1px solid var(--line);
}
[dir="rtl"] .step { padding: 26px 74px 26px 0; }
.step:last-child { border-bottom: 0; }
.step::before {
  content: "0" counter(step);
  position: absolute; inset-inline-start: 0; top: 24px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--red-hot);
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 14px;
  background: var(--bg-2);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
.step h3 { margin-bottom: 0.4rem; font-size: 1.12rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 250ms;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 1.02rem;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--red-hot); }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-inline-end: 2px solid var(--dim); border-bottom: 2px solid var(--dim);
  transform: rotate(45deg); margin-top: -4px;
  transition: transform 300ms var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 6px; }
.faq details p { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }

/* ----------------------------------------------------------------- forms */
.form-panel {
  background: linear-gradient(165deg, rgba(29, 33, 39, 0.8), rgba(23, 26, 31, 0.9));
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim);
}
[dir="rtl"] .field label { letter-spacing: 0.04em; font-size: 0.8rem; }
.field input, .field select, .field textarea {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--white);
  font: inherit; font-size: 0.98rem;
  padding: 13px 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BFC4CC' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-inline-end: 42px;
}
[dir="rtl"] .field select { background-position: left 16px center; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }

.form-note { font-size: 0.82rem; color: var(--dim); margin-top: 14px; }
.form-note a { color: var(--silver); text-decoration: underline; }

/* ----------------------------------------------------------- reviews ---- */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 4px 26px;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 min(430px, 86vw);
  scroll-snap-align: start;
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 300ms, transform 300ms var(--ease-out);
}
.review-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 16px; }
.stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.review-card blockquote { color: var(--silver); font-size: 1rem; line-height: 1.75; }
.review-meta { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.review-meta .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--gunmetal), var(--bg-3));
  border: 1px solid var(--line-strong);
  font-family: var(--font-head); font-weight: 700; color: var(--silver); font-size: 0.95rem;
}
.review-meta b { display: block; color: var(--white); font-size: 0.95rem; }
.review-meta span { font-size: 0.8rem; color: var(--dim); }
.carousel-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 13px;
  border: 1px solid var(--line-strong); color: var(--silver);
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.carousel-nav button:hover { border-color: var(--red); color: var(--white); box-shadow: 0 0 18px rgba(225, 6, 0, 0.2); }
.carousel-nav svg { width: 19px; height: 19px; }
[dir="rtl"] .carousel-nav svg { transform: scaleX(-1); }

/* ---------------------------------------------------------------- gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out), filter 700ms; }
.shot:hover img { transform: scale(1.07); filter: saturate(1.1); }
.shot figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 21, 0.9));
  font-size: 0.85rem; color: var(--silver);
  transform: translateY(8px); opacity: 0;
  transition: all 400ms var(--ease-out);
}
.shot:hover figcaption { transform: translateY(0); opacity: 1; }
.shot.tall { grid-row: span 2; aspect-ratio: auto; }

/* ----------------------------------------------------------- big CTA band */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px) clamp(26px, 6vw, 80px);
  background:
    radial-gradient(90% 160% at 85% 110%, rgba(225, 6, 0, 0.32), transparent 60%),
    radial-gradient(60% 120% at 10% -20%, rgba(201, 204, 209, 0.08), transparent 55%),
    linear-gradient(160deg, #1a1e24, #101318);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: sheen 6s var(--ease-out) infinite;
}
.cta-band h2 { max-width: 24ch; margin-inline: auto; }
.cta-band p { max-width: 60ch; margin: 1rem auto 0; color: var(--muted); }
.cta-band .hero-ctas { justify-content: center; margin-top: 2.2rem; }

/* ------------------------------------------------------------- marquee -- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 22px; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { inset-inline-start: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { inset-inline-end: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
[dir="rtl"] .marquee::before { background: linear-gradient(-90deg, var(--bg), transparent); }
[dir="rtl"] .marquee::after { background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }
.marquee-track span {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gunmetal); text-transform: uppercase; white-space: nowrap;
  transition: color 300ms;
}
.marquee-track span:hover { color: var(--silver); }

/* ---------------------------------------------------------------- photos  */
.photo-frame {
  position: relative; border-radius: calc(var(--radius) + 6px); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2);
}
.photo-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(225, 6, 0, 0.1), transparent 40%);
  pointer-events: none;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.brand-plate {
  background: radial-gradient(120% 120% at 50% 0%, #3a3f46, #23272d 60%);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,.1);
}
.brand-plate img { border-radius: var(--radius-sm); }

/* --------------------------------------------------------------- contact  */
.contact-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px; }
.contact-tile b { color: var(--white); display: block; margin-bottom: 3px; font-family: var(--font-head); }
.contact-tile a { color: var(--muted); transition: color var(--t-fast); }
.contact-tile a:hover { color: var(--red-hot); }
.placeholder-chip {
  display: inline-block;
  background: rgba(255, 152, 0, 0.12);
  border: 1px dashed rgba(255, 152, 0, 0.5);
  color: var(--orange);
  font-size: 0.8rem; border-radius: 8px; padding: 2px 10px;
  font-family: ui-monospace, monospace;
}

.map-shell {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9);
  height: 100%; min-height: 380px;
}
.map-shell iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }

/* ---------------------------------------------------------------- footer  */
footer.site {
  margin-top: clamp(3rem, 7vh, 5rem);
  background: linear-gradient(180deg, var(--bg), #0a0c0f);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vh, 4.5rem) 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 18px; font-weight: 600;
}
[dir="rtl"] .footer-grid h4 { letter-spacing: 0.05em; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 0.92rem; transition: color var(--t-fast), padding var(--t-fast); }
.footer-grid li a { display: inline-flex; align-items: center; gap: 8px; }
.footer-grid li svg { width: 16px; height: 16px; flex: none; }
.footer-grid a:hover { color: var(--white); padding-inline-start: 4px; }
.footer-about p { font-size: 0.92rem; color: var(--dim); margin-top: 16px; max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--muted);
  transition: all var(--t-fast);
}
.socials a:hover { color: var(--white); border-color: var(--red); box-shadow: 0 0 18px rgba(225, 6, 0, 0.25); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: 10px; margin-top: 16px; }
.newsletter input {
  flex: 1; min-width: 0;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 12px;
  color: var(--white); padding: 12px 16px; font: inherit; font-size: 0.92rem;
}
.newsletter input:focus { outline: none; border-color: var(--red); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--dim);
}

/* ------------------------------------------------------ sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 90;
  display: none;
  gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 17, 21, 0.88);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; padding: 0.95em 0.5em; font-size: 0.8rem; }
@media (max-width: 760px) { .sticky-cta { display: flex; } body { padding-bottom: 74px; } }

/* Floating WhatsApp (desktop) */
.float-wa {
  position: fixed; bottom: 30px; inset-inline-end: 30px; z-index: 90;
  width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(180deg, #2ecc71, #1f9d55);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 34px rgba(31, 157, 85, 0.45);
  transition: transform 250ms var(--ease-out), box-shadow 250ms;
}
.float-wa:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 44px rgba(31, 157, 85, 0.55); }
.float-wa svg { width: 30px; height: 30px; }
@media (max-width: 760px) { .float-wa { display: none; } }

/* ------------------------------------------------------------- reveals -- */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity 900ms var(--ease-out) var(--d, 0ms), transform 900ms var(--ease-out) var(--d, 0ms);
}
.reveal-scale { opacity: 0; transform: scale(0.94); }
.reveal-scale.in { opacity: 1; transform: none; transition: opacity 900ms var(--ease-out) var(--d, 0ms), transform 900ms var(--ease-out) var(--d, 0ms); }

/* ---------------------------------------------------------------- tables  */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table.spec { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 560px; }
table.spec th, table.spec td { text-align: start; padding: 14px 18px; border-bottom: 1px solid var(--line); }
table.spec th { font-family: var(--font-head); color: var(--white); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; background: var(--bg-2); }
[dir="rtl"] table.spec th { letter-spacing: 0.03em; }
table.spec tr:last-child td { border-bottom: 0; }
table.spec td { color: var(--muted); }

/* --------------------------------------------------------------- utility  */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  color: var(--muted); font-size: 0.84rem; padding: 8px 16px;
  transition: all var(--t-fast);
}
a.chip:hover { border-color: var(--red); color: var(--white); box-shadow: 0 0 16px rgba(225, 6, 0, 0.15); transform: translateY(-2px); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

.divider-glow { height: 1px; border: 0; background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.5), transparent); margin: 0; }

.badge-247 {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 200, 83, 0.1); border: 1px solid rgba(0, 200, 83, 0.35);
  color: var(--green); border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; letter-spacing: 0.06em;
}
.badge-247 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.6s infinite; }

.prose { display: grid; gap: 1.1rem; }
.prose p { color: var(--muted); }
.prose h2 { margin-top: 1.2rem; }
.prose ul { display: grid; gap: 9px; padding-inline-start: 2px; }
.prose ul li { position: relative; padding-inline-start: 26px; color: var(--muted); }
.prose ul li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 11px;
  width: 14px; height: 2px; background: var(--red); border-radius: 2px;
}

.skip-link {
  position: absolute; inset-inline-start: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px; border-radius: 10px;
  transition: top 200ms;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------------------------------- tracking timeline  */
.tl { display: grid; gap: 0; margin-top: 18px; }
.tl-item {
  position: relative;
  padding: 0 0 30px 38px;
}
[dir="rtl"] .tl-item { padding: 0 38px 30px 0; }
.tl-item::before {
  content: ""; position: absolute; inset-inline-start: 10px; top: 22px; bottom: 0;
  width: 2px; background: var(--gunmetal);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  position: absolute; inset-inline-start: 3px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--gunmetal); background: var(--bg-2);
  transition: border-color 400ms, background 400ms, box-shadow 400ms;
}
.tl-item b { color: var(--dim); font-family: var(--font-head); transition: color 400ms; }
.tl-item p { font-size: 0.88rem; color: var(--dim); opacity: 0.8; }
.tl-item.done .tl-dot { border-color: var(--green); background: var(--green); box-shadow: 0 0 14px rgba(0, 200, 83, 0.5); }
.tl-item.done b { color: var(--white); }

/* --------------------------------------------------------- app mockups   */
.phone-stack { position: relative; min-height: 480px; }
.phone-mock {
  position: absolute; top: 0; inset-inline-start: 18%;
  width: min(250px, 60%); aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #23272d, #0c0e11);
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  padding: 12px;
  box-shadow: var(--shadow-2);
  animation: floaty 8s ease-in-out infinite;
}
.phone-mock.back {
  inset-inline-start: 48%; top: 60px;
  transform: scale(0.88) rotate(6deg);
  opacity: 0.85;
  animation-delay: 1.4s;
}
[dir="rtl"] .phone-mock.back { transform: scale(0.88) rotate(-6deg); }
.phone-screen {
  height: 100%; border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg, #14171c, #0F1115);
  border: 1px solid var(--line);
  padding: 26px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.ps-dot { width: 44px; height: 5px; border-radius: 3px; background: var(--gunmetal); margin: 0 auto 6px; }
.phone-screen b { font-family: var(--font-head); color: var(--white); font-size: 0.9rem; letter-spacing: 0.06em; }
.ps-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; display: grid; gap: 7px;
}
.ps-card i { display: block; height: 7px; border-radius: 4px; background: var(--gunmetal); width: 90%; }
.ps-card.red i:first-child { background: var(--red); opacity: 0.75; }
.ps-card.green i:first-child { background: var(--green); opacity: 0.65; }

/* --------------------------------------------------------- accessibility  */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .hero-media video, .video-backdrop video { display: none; }
  .hero-media img { display: block !important; }
}

@media print {
  .nav, .sticky-cta, .float-wa, .scroll-hint, .video-state, .mobile-menu { display: none !important; }
  body { background: #fff; color: #111; }
}
