/* =========================================================
   Profit Lab — Logo 01 design language
   black #0E0E0E · cream #F5F2EA · burnt-orange #D05508
   Anton italic-stencil display · agency / streetwear vibe
   ========================================================= */

:root {
  --bg: #0E0E0E;
  --bg-2: #161513;
  --bg-3: #1E1C19;
  --ink: #F5F2EA;
  --ink-2: #ADA89B;
  --ink-3: #767065;
  --ink-4: #443F38;
  --line: rgba(245, 242, 234, 0.12);
  --line-2: rgba(245, 242, 234, 0.22);

  --orange: #D05508;
  --orange-2: #E8721F;
  --orange-soft: rgba(208, 85, 8, 0.16);
  --error: #E0503C;
  --error-light: #E8806C;

  --font-display: 'Anton', 'Cairo', system-ui, sans-serif;
  --font-body: 'Inter', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --skew: -6deg;

  --t-fast: 170ms cubic-bezier(.2,.7,.3,1);
  --t-med: 360ms cubic-bezier(.2,.7,.3,1);

  --z-header: 50;
  --z-overlay: 80;
}

html[lang="ar"] {
  --font-display: 'Cairo', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
  --skew: 0deg;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: var(--ink); }

/* ===================== AMBIENT ===================== */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.glow {
  position: absolute;
  width: 900px; height: 900px;
  top: -340px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(208,85,8,0.16) 0%, transparent 62%);
  filter: blur(40px);
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,242,234,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,242,234,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 78%);
}
.grain {
  position: absolute; inset: 0;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===================== STATUS PILL ===================== */
.status-pill {
  position: fixed;
  bottom: 22px; inset-inline-start: 22px;
  z-index: var(--z-overlay);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--ink-2);
  background: rgba(14,14,14,0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.status-dot {
  width: 8px; height: 8px; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(208,85,8,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(208,85,8,0.55); }
  70% { box-shadow: 0 0 0 13px rgba(208,85,8,0); }
  100% { box-shadow: 0 0 0 0 rgba(208,85,8,0); }
}
@media (max-width: 720px) { .status-pill { display: none; } }

/* ===================== TYPOGRAPHY UTILS ===================== */
.accent-text { color: var(--orange); display: block; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-2); text-transform: uppercase;
}
.exp-tag {
  display: inline-block; padding: 4px 8px;
  background: var(--orange-soft);
  border: 1px solid rgba(208,85,8,0.4);
  color: var(--orange-2); font-weight: 500;
}
.eyebrow-sep { color: var(--ink-4); }
.mono { font-family: var(--font-mono); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap; line-height: 1;
}
.btn-sm { padding: 11px 16px; font-size: 12px; }
.btn-lg { padding: 19px 30px; font-size: 16px; }
.btn-primary {
  color: var(--bg); background: var(--orange);
  box-shadow: 4px 4px 0 0 rgba(245,242,234,0.0);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 0 var(--ink);
}
.btn-ghost {
  color: var(--ink); background: transparent;
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 0 var(--orange); }
.btn-arrow { transition: transform var(--t-fast); }
.btn:hover .btn-arrow { transform: translateX(3px); }
html[dir="rtl"] .btn-arrow { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .btn-arrow { transform: scaleX(-1) translateX(3px); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px var(--pad-x);
  background: rgba(14,14,14,0.6);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.scrolled { background: rgba(14,14,14,0.85); border-bottom-color: var(--line); }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo-flask { display: inline-flex; width: 30px; height: 45px; color: var(--ink); }
.logo-flask svg { width: 100%; height: 100%; }
.fl-outline { stroke: currentColor; }
.fl-cap { fill: currentColor; }
.fl-liquid { fill: var(--orange); }
.fl-b { fill: var(--bg); }
.logo-wm {
  font-family: var(--font-display);
  font-size: 26px; line-height: 0.8;
  font-style: italic; transform: skewX(var(--skew));
  display: inline-flex; align-items: baseline; gap: 7px;
  letter-spacing: 0.01em;
}
.logo-wm .lw-2 { color: var(--ink); }
.logo-wm .lw-dot { color: var(--orange); }
html[lang="ar"] .logo-wm { font-weight: 900; font-style: normal; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-family: var(--font-mono);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 6px 0;
  transition: color var(--t-fast);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
html[dir="rtl"] .primary-nav a::after { transform-origin: right; }
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

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

.lang-toggle {
  position: relative; display: inline-flex; align-items: stretch;
  padding: 3px; border: 1px solid var(--line-2);
  background: rgba(245,242,234,0.04);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  overflow: hidden; direction: ltr; unicode-bidi: isolate;
}
.lang-thumb {
  position: absolute; top: 3px; left: 3px;
  width: calc(50% - 3px); height: calc(100% - 6px);
  background: var(--orange); transition: transform var(--t-med);
  pointer-events: none;
}
html[lang="en"] .lang-thumb { transform: translateX(0); }
html[lang="ar"] .lang-thumb { transform: translateX(100%); }
.lang-opt {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 1 1 0; min-width: 34px; padding: 6px 10px;
  color: var(--ink-2); transition: color var(--t-fast); cursor: pointer;
}
html[lang="en"] .lang-opt[data-lang="en"] { color: var(--bg); }
html[lang="ar"] .lang-opt[data-lang="ar"] { color: var(--bg); }

.menu-btn {
  display: none; width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.menu-btn span { display: block; width: 16px; height: 2px; background: var(--ink); transition: transform var(--t-fast), opacity var(--t-fast); }
.menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: calc(var(--z-header) - 1);
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(22px);
  padding: 100px var(--pad-x) 40px;
  display: flex; flex-direction: column; gap: 16px;
  opacity: 0; pointer-events: none; transition: opacity var(--t-med);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 34px;
  font-style: italic; transform: skewX(var(--skew));
  color: var(--ink); text-transform: uppercase;
}
html[lang="ar"] .mobile-menu a { font-style: normal; transform: none; font-weight: 900; }
.mobile-menu a.btn-primary { align-self: flex-start; font-size: 15px; margin-top: 14px; transform: none; }

/* ===================== SECTIONS ===================== */
.section {
  position: relative; z-index: 1;
  padding: clamp(80px, 11vw, 150px) var(--pad-x);
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto;
}
.section-head {
  max-width: 820px; margin-bottom: clamp(40px, 6vw, 70px);
  display: flex; flex-direction: column; gap: 18px;
}
.section-head-tight { margin-bottom: clamp(28px, 4vw, 46px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.92; letter-spacing: 0.005em;
  margin: 0; text-transform: uppercase;
  font-style: italic; transform: skewX(var(--skew));
  transform-origin: left;
}
html[dir="rtl"] .section-title { transform-origin: right; }
html[lang="ar"] .section-title { font-style: normal; transform: none; font-weight: 900; line-height: 1.15; }
.section-title span { display: block; }
.section-title-sm { font-size: clamp(30px, 4.4vw, 54px); }
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-2); max-width: 600px; margin: 4px 0 0;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px, 14vw, 180px) var(--pad-x) clamp(60px, 8vw, 100px);
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin: 0 auto; z-index: 1; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hero-text { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: 0.9; letter-spacing: 0.005em;
  margin: 22px 0 26px; text-transform: uppercase;
}
.hero-title .ht-line {
  display: block; font-style: italic;
  transform: skewX(var(--skew)); transform-origin: left;
}
html[dir="rtl"] .hero-title .ht-line { transform-origin: right; }
.hero-title .ht-accent { color: var(--orange); }
.hero-title .ht-strike { position: relative; color: var(--ink-3); width: max-content; }
.hero-title .ht-strike::after {
  content: ""; position: absolute; left: -1%; right: -1%; top: 52%;
  height: 6px; background: var(--orange); transform: rotate(-1.5deg);
}
html[lang="ar"] .hero-title { font-style: normal; font-weight: 900; line-height: 1.18; }
html[lang="ar"] .hero-title .ht-line { font-style: normal; transform: none; }
html[lang="ar"] .hero-title .ht-strike { width: auto; }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2); max-width: 540px; margin: 0 0 32px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-meta {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 16px 22px; border: 1px solid var(--line);
  background: rgba(245,242,234,0.025); flex-wrap: wrap;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-num {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1; color: var(--orange);
  font-style: italic; transform: skewX(var(--skew));
}
html[lang="ar"] .meta-num { font-style: normal; transform: none; font-weight: 900; }
.meta-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.13em; color: var(--ink-3); text-transform: uppercase;
}
.hero-meta-divider { width: 1px; height: 32px; background: var(--line-2); }

/* hero graphic — big flask */
.hero-graphic {
  position: relative; aspect-ratio: 3 / 4;
  max-width: 420px; width: 100%;
  margin-inline-start: auto;
  display: flex; align-items: center; justify-content: center;
}
.big-flask { width: 100%; height: 100%; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.bf-svg { width: 100%; height: 100%; overflow: visible; }
.bf-outline { stroke: var(--ink); }
.bf-cap { fill: var(--ink); }
.bf-liquid { fill: var(--orange); }
.bf-tick { stroke: var(--ink); stroke-width: 2.5; }
.bf-bubbles circle { fill: rgba(14,14,14,0.55); animation: rise 4s ease-in infinite; }
.bf-bubbles circle:nth-child(1) { animation-delay: 0s; }
.bf-bubbles circle:nth-child(2) { animation-delay: 1.1s; }
.bf-bubbles circle:nth-child(3) { animation-delay: 2.2s; }
.bf-bubbles circle:nth-child(4) { animation-delay: 0.6s; }
.bf-bubbles circle:nth-child(5) { animation-delay: 1.7s; }
@keyframes rise {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-90px); opacity: 0; }
}

.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--bg-2);
  border: 1px solid var(--line-2);
  box-shadow: 0 14px 36px -14px rgba(0,0,0,0.8);
  animation: chipfloat 4.5s ease-in-out infinite;
}
.chip-1 { top: 6%; inset-inline-start: -8%; animation-delay: 0s; }
.chip-2 { top: 44%; inset-inline-end: -12%; animation-delay: -1.5s; }
.chip-3 { bottom: 8%; inset-inline-start: 6%; animation-delay: -3s; }
@keyframes chipfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.chip-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 10px var(--orange); }
.chip-body { display: flex; flex-direction: column; }
.chip-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: var(--ink-3); }
.chip-value {
  font-family: var(--font-display); font-size: 17px; color: var(--ink);
  font-style: italic; transform: skewX(var(--skew)); line-height: 1.1;
}
html[lang="ar"] .chip-value { font-style: normal; transform: none; font-weight: 900; }
.chip-value .x { color: var(--orange); }

.scroll-cue {
  position: absolute; bottom: 26px; inset-inline-start: var(--pad-x);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
}
.scroll-line { display: inline-block; width: 42px; height: 1px; background: var(--ink-3); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--orange); animation: cuemove 2.4s ease-in-out infinite; }
@keyframes cuemove { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
html[dir="rtl"] .scroll-line::after { animation-direction: reverse; }

/* ===================== SERVICES ===================== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative; padding: 34px 30px 28px;
  background: var(--bg-2); border: 1px solid var(--line);
  overflow: hidden; transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,0%), var(--orange-soft), transparent 40%);
  opacity: 0; transition: opacity var(--t-med); pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(208,85,8,0.4); background: linear-gradient(180deg, rgba(208,85,8,0.07), var(--bg-2)); }
.featured-tag {
  position: absolute; top: 0; inset-inline-end: 0;
  padding: 6px 12px; background: var(--orange); color: var(--bg);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
}
.service-num {
  font-family: var(--font-display); font-size: 30px;
  color: var(--ink-4); font-style: italic; transform: skewX(var(--skew));
  display: inline-block; line-height: 1;
}
html[lang="ar"] .service-num { font-style: normal; transform: none; font-weight: 900; }
.service-card.featured .service-num { color: rgba(208,85,8,0.5); }
.service-icon {
  width: 56px; height: 56px; margin: 22px 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); color: var(--orange);
}
.service-icon:has(.svc-icon-grid), .service-icon:has(.svc-icon-stack) { padding: 5px; }
.svc-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; width: 100%; height: 100%; }
.svc-icon-grid.one { grid-template-columns: 1fr; place-items: center; }
.service-icon .plat { background: #F5F2EA; border-radius: 5px; display: grid; place-items: center; aspect-ratio: 1; }
.svc-icon-grid.one .plat { width: 100%; }
.service-icon .plat img { width: 74%; height: 74%; object-fit: contain; display: block; }
/* 8 platform logos: two pages of 4, crossfading every 3s */
.svc-icon-stack { position: relative; width: 100%; height: 100%; }
.svc-icon-page { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.svc-icon-page.a { animation: svcPageA 6s infinite; }
.svc-icon-page.b { opacity: 0; animation: svcPageB 6s infinite; }
@keyframes svcPageA { 0%,46%{opacity:1} 54%,96%{opacity:0} 100%{opacity:1} }
@keyframes svcPageB { 0%,46%{opacity:0} 54%,96%{opacity:1} 100%{opacity:0} }
@media (prefers-reduced-motion: reduce) { .svc-icon-page { animation: none; } .svc-icon-page.b { opacity: 0; } }
.service-title {
  font-family: var(--font-display); font-size: 27px;
  text-transform: uppercase; font-style: italic;
  transform: skewX(var(--skew)); transform-origin: left;
  margin: 0 0 12px; line-height: 0.95;
}
html[dir="rtl"] .service-title { transform-origin: right; }
html[lang="ar"] .service-title { font-style: normal; transform: none; font-weight: 900; line-height: 1.2; }
.service-desc { color: var(--ink-2); font-size: 14px; line-height: 1.65; margin: 0 0 18px; }
.svc-logos { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.svc-logo { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px 5px 9px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(245,242,234,0.025); font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); line-height: 1; transition: border-color var(--t-fast); }
.svc-logo svg { display: block; flex: none; }
/* Platform chips: logo only, enlarged (labels hidden via font-size:0; row is aria-hidden) */
.svc-logos-icon { gap: 12px; }
.svc-logos-icon .svc-logo { gap: 0; padding: 10px; font-size: 0; letter-spacing: 0; }
.svc-logos-icon .svc-logo svg { width: auto; height: 30px; }
.service-card:hover .svc-logo { border-color: var(--line); }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px;
  border-bottom: 1px solid var(--line-2); transition: border-color var(--t-fast), gap var(--t-fast);
}
.service-link:hover { border-color: var(--orange); gap: 12px; color: var(--orange); }
html[dir="rtl"] .service-link .arr { transform: scaleX(-1); }

/* ===================== BRANDS MARQUEE ===================== */
.brands { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.marquee {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line); padding: 26px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track { display: flex; gap: 22px; width: max-content; animation: marquee 55s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-cell {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px; min-width: 220px;
  border: 1px solid var(--line); background: rgba(245,242,234,0.02);
  flex-shrink: 0; transition: background var(--t-fast), border-color var(--t-fast);
}
.brand-cell:hover { background: rgba(245,242,234,0.05); border-color: var(--line-2); }
.brand-mono {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--orange-2); padding: 3px 7px;
  background: var(--orange-soft); border: 1px solid rgba(208,85,8,0.35);
}
.brand-name {
  font-family: var(--font-display); font-size: 18px;
  font-style: italic; transform: skewX(var(--skew)); color: var(--ink);
}
html[lang="ar"] .brand-name { font-style: normal; transform: none; font-weight: 700; }

/* ---- Brand showcase: category columns ---- */
.brands .section-sub { max-width: 60ch; }

.brand-cols {
  column-count: 3; column-gap: 28px;
  margin-top: clamp(26px, 4vw, 44px);
}
@media (max-width: 900px) { .brand-cols { column-count: 2; } }
@media (max-width: 560px) { .brand-cols { column-count: 1; } }
.brand-col { break-inside: avoid; margin: 0 0 30px; }
.bc-head {
  display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px;
  padding-bottom: 9px; border-bottom: 1px solid var(--line-2);
}
.bc-label {
  font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew));
  font-size: 18px; letter-spacing: 0.01em; color: var(--ink); line-height: 1;
}
html[lang="ar"] .bc-label { font-style: normal; transform: none; font-weight: 700; }
.bc-num { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin-inline-start: auto; }

/* niche filter bar (brands.html) */
.brand-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-top: clamp(20px, 3vw, 32px); }
.brand-filter {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--ink-2); background: rgba(245,242,234,0.02);
  border: 1px solid var(--line-2); border-radius: 999px; cursor: pointer; line-height: 1;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.brand-filter:hover { color: var(--ink); border-color: var(--ink-3); }
.brand-filter.is-active { color: var(--bg); background: var(--orange); border-color: var(--orange); }
.brand-filter:focus-visible { outline: 2px solid var(--orange-2); outline-offset: 2px; }
.bf-count { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }
.brand-filter:hover .bf-count { color: var(--ink-2); }
.brand-filter.is-active .bf-count { color: var(--bg); opacity: 0.7; }
.brand-col.is-hidden { display: none; }
@media (prefers-reduced-motion: reduce) { .brand-filter { transition: none; } }

.col-list { display: flex; flex-direction: column; gap: 9px; }
.logo-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(245,242,234,0.015); text-decoration: none; color: inherit;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.logo-tile:hover { border-color: var(--orange); background: rgba(245,242,234,0.05); transform: translateX(2px); }
html[dir="rtl"] .logo-tile:hover { transform: translateX(-2px); }
.lt-img {
  flex: 0 0 auto; width: 76px; height: 50px; background: var(--ink);
  border-radius: 3px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 7px;
}
.lt-img:has(.lt-bg) { padding: 0; }
.lt-pic { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.lt-invert { filter: brightness(0); }
.lt-bg { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.lt-mono {
  font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew));
  font-size: 20px; line-height: 1; color: var(--bg);
}
html[lang="ar"] .lt-mono { font-style: normal; transform: none; }
.lt-name { font-size: 13px; line-height: 1.2; color: var(--ink-2); font-weight: 500; }
.logo-tile:hover .lt-name { color: var(--ink); }

/* ---- Case studies: editorial stacked rows ---- */
.cases .section-sub { max-width: 56ch; }
.case-list { margin-top: clamp(24px, 4vw, 44px); border-top: 1px solid var(--line-2); }
.case {
  display: grid; grid-template-columns: minmax(170px, 270px) 1fr;
  gap: clamp(20px, 4vw, 56px); align-items: start;
  padding: clamp(24px, 3.6vw, 42px) 0; border-bottom: 1px solid var(--line);
}
.cm-num {
  display: block; font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew));
  font-size: clamp(38px, 6.2vw, 82px); line-height: 0.86; color: var(--orange); letter-spacing: -0.01em;
}
html[lang="ar"] .cm-num { font-style: normal; transform: none; }
.cm-label {
  display: block; margin-top: 10px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.case-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.case-tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange-2);
  background: var(--orange-soft); border: 1px solid rgba(208,85,8,0.35); padding: 4px 10px;
}
.case-note { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.45; color: var(--ink); max-width: 60ch; }
.case-how { list-style: none; display: grid; gap: 9px; }
.case-how li {
  position: relative; padding-inline-start: 22px; color: var(--ink-2);
  font-size: 14px; line-height: 1.5; max-width: 64ch;
}
.case-how li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 0.62em;
  width: 10px; height: 1px; background: var(--orange);
}
@media (max-width: 680px) {
  .case { grid-template-columns: 1fr; gap: 14px; }
  .cm-num { font-size: clamp(44px, 13vw, 64px); }
}

/* ---- Receipts: anonymized proof cards ---- */
.receipts { margin-top: clamp(40px, 6vw, 72px); display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.rcpt-banner { border-top: 1px solid var(--line-2); padding-top: 18px; }
.rcpt-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--orange-2); }
.rcpt-note { color: var(--ink-2); font-size: 13px; line-height: 1.55; margin-top: 8px; max-width: 66ch; }
.rcpt-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.rcpt-lbl { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: clamp(18px, 2.4vw, 26px); color: var(--ink); }
html[lang="ar"] .rcpt-lbl { font-style: normal; transform: none; font-weight: 700; }
.rcpt-src { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--ink-3); margin-inline-start: auto; }
.rcpt-group { margin-bottom: 18px; }
.rcpt-gl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.rcpt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .rcpt-grid { grid-template-columns: 1fr; } }
.proof-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245,242,234,0.025), transparent 60%), var(--bg-2); padding: 14px 16px 32px; }
.proof-card .pc-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em; color: var(--ink-3); padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.pc-v { display: inline-flex; align-items: center; gap: 5px; color: var(--ink-2); }
.pc-dot { width: 6px; height: 6px; border-radius: 50%; background: #3FB950; display: inline-block; }
.pc-num { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew));
  font-size: clamp(24px, 3vw, 34px); color: var(--ink); margin-top: 14px; line-height: 1; }
html[lang="ar"] .pc-num { font-style: normal; transform: none; }
.pc-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; }
.pc-row { display: flex; align-items: center; gap: 10px; margin-top: 9px; flex-wrap: wrap; }
.pc-row .pc-sub { margin-top: 0; }
.pc-roas { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; color: var(--orange-2);
  background: var(--orange-soft); border: 1px solid rgba(208,85,8,0.35); padding: 3px 8px; }
.pc-spark { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 32px; display: block; }

/* real Shopify dashboard screenshots */
.rcpt-subnote { color: var(--ink-3); font-size: 12px; margin: -4px 0 16px; }
.shot-hero, .shot-card { display: block; position: relative; border: 1px solid var(--line-2); border-radius: var(--radius);
  overflow: hidden; background: #ECEAE3; text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast); }
.shot-hero { margin-bottom: 14px; }
.shot-hero:hover, .shot-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 22px 48px -30px rgba(208,85,8,0.5); }
.shot-hero img, .shot-card img { width: 100%; height: auto; display: block; }
/* Uniform card height; screenshots fill the frame edge-to-edge (cover), anchored top so the headline figures stay. */
.shot-card img { aspect-ratio: 16 / 10; height: auto; object-fit: cover; object-position: top center; background: #f4f2ec; }
.shot-badge { position: absolute; top: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--ink);
  background: rgba(14,14,14,0.72); border: 1px solid var(--line-2); padding: 4px 8px; backdrop-filter: blur(4px); }
html[dir="rtl"] .shot-badge { left: auto; right: 10px; }
.shot-cap { display: block; font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew));
  font-size: clamp(15px, 1.8vw, 20px); color: var(--ink); background: var(--bg-2);
  border-top: 1px solid var(--line); padding: 10px 14px; }
html[lang="ar"] .shot-cap { font-style: normal; transform: none; font-weight: 700; }
.shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
@media (max-width: 720px) { .shot-grid { grid-template-columns: 1fr; } }
.shot-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .shot-grid-3 { grid-template-columns: 1fr; } }
.shot-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  aspect-ratio: 1840 / 405; border: 1px dashed var(--line-2); border-radius: var(--radius);
  background: rgba(245,242,234,0.015); color: var(--ink-3); text-align: center; }
.shot-ph-i { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: 26px; line-height: 1; }
.shot-ph-t { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

/* home client strip (top 10) + brands page */
.client-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: clamp(24px, 4vw, 40px); }
@media (max-width: 760px) { .client-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .client-strip { grid-template-columns: repeat(2, 1fr); } }
.cs-tile { display: flex; flex-direction: column; gap: 9px; text-decoration: none; color: inherit; }
.cs-plate { height: 100px; background: transparent; border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; padding: 22px; overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast); }
.cs-tile:hover .cs-plate { border-color: var(--line-2); background: rgba(245,242,234,0.03); }
.cs-pic, .cs-pic.lt-invert, .cs-pic.lt-bg { max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; display: block; filter: brightness(0) invert(1); opacity: 0.72; transition: opacity var(--t-fast); }
.cs-tile:hover .cs-pic { opacity: 1; }
.cs-plate .lt-mono { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: 24px; color: var(--ink); opacity: 0.78; }
.cs-name { text-align: center; font-size: 12px; color: var(--ink-2); }
.cs-note { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-2); margin-top: 3px; }
.lt-note { display: inline-block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange-2); background: var(--orange-soft); border: 1px solid rgba(208,85,8,0.35); padding: 1px 6px; border-radius: 2px; margin-inline-start: 6px; white-space: nowrap; }
.brands-viewall { margin-top: clamp(22px, 3vw, 32px); text-align: center; }

/* home brands — specimen rack (lab "sample" cards · no marquee) */
.rack { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
  margin-top: clamp(22px, 3.4vw, 40px); }
@media (max-width: 1100px) { .rack { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 760px)  { .rack { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .rack { grid-template-columns: repeat(2, 1fr); } }
.specimen { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 9px;
  color: inherit; text-decoration: none;
  transition: transform var(--t-fast); }
.specimen:hover { transform: translateY(-4px); }
.specimen:focus-visible { outline: none; }
.specimen:focus-visible .spc-plate { outline: 2px solid var(--orange); outline-offset: 3px; }
.spc-code { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; color: var(--ink-3); }
.spc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 2px rgba(208,85,8,0.18); flex: 0 0 auto; }
.spc-note { margin-inline-start: auto; font-size: 8px; letter-spacing: 0.08em; color: var(--ink-4); text-transform: uppercase; white-space: nowrap; }
.spc-plate { position: relative; display: flex; align-items: center; justify-content: center; height: 50px; background: var(--ink); border-radius: 3px; padding: 7px; overflow: hidden; }
.spc-plate img { max-width: 100%; max-height: 100%; object-fit: contain; }
.spc-plate img.spc-invert { filter: brightness(0); }
.spc-plate.spc-bg { padding: 0; }
.spc-plate.spc-bg img { width: 100%; height: 100%; object-fit: cover; max-width: none; max-height: none; }
.spc-mono { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: 24px; line-height: 1; color: var(--bg); letter-spacing: 0.01em; }
html[lang="ar"] .spc-mono { font-style: normal; transform: none; font-weight: 900; }
.spc-liquid { position: relative; height: 5px; border-radius: 2px; background: rgba(245,242,234,0.06); overflow: hidden; }
.spc-liquid::before { content: ""; position: absolute; inset: 0; width: var(--fill, 64%); background: linear-gradient(90deg, var(--orange) 0%, rgba(208,85,8,0.05) 100%); transition: height var(--t-fast); }
.specimen:hover .spc-liquid { height: 8px; }
.spc-name { font-family: var(--font-body); font-weight: 600; font-size: 12px; line-height: 1.18; color: var(--orange); text-align: center; margin-top: 1px; transition: color var(--t-fast); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.specimen:hover .spc-name { color: var(--orange-2); }
.spc-cat { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); text-align: center; line-height: 1.2; }
html[lang="ar"] .spc-cat { letter-spacing: 0; }
.primary-nav a.is-active { color: var(--ink); }
.primary-nav a.is-active::after { content: ""; display: block; height: 2px; background: var(--orange); margin-top: 3px; }
.cta-mini { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; padding: clamp(30px,6vw,60px) 0; }
.cta-mini-t { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: clamp(26px,5vw,48px); color: var(--ink); }
html[lang="ar"] .cta-mini-t { font-style: normal; transform: none; }

/* ===================== NUMBERS ===================== */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
@media (max-width: 960px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }
.stat {
  position: relative; padding: 38px 28px;
  border-inline-end: 1px solid var(--line);
  border-block-end: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: background var(--t-med);
}
.stat:hover { background: rgba(245,242,234,0.02); }
.stat:nth-child(3n) { border-inline-end: none; }
.stat:nth-last-child(-n+3):not(:nth-last-child(n+4)) { border-block-end: none; }
@media (max-width: 960px) {
  .stat { border-inline-end: 1px solid var(--line) !important; }
  .stat:nth-child(2n) { border-inline-end: none !important; }
}
@media (max-width: 560px) { .stat { border-inline-end: none !important; } }
.stat-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--ink-3); text-transform: uppercase;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 78px); line-height: 1;
  color: var(--orange); font-style: italic;
  transform: skewX(var(--skew)); transform-origin: left;
  display: flex; align-items: baseline;
}
html[dir="rtl"] .stat-value { transform-origin: right; }
html[lang="ar"] .stat-value { font-style: normal; transform: none; font-weight: 900; }
.stat-value .prefix { font-size: 0.6em; }
.stat-value .suffix { font-size: 0.6em; }
.stat-meta { font-size: 13px; color: var(--ink-2); }

/* ===================== PORTFOLIO ===================== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }
.project { cursor: pointer; }
.project-thumb {
  display: block; position: relative; aspect-ratio: 4/3;
  overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-2); margin-bottom: 14px;
  transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}
.project:hover .project-thumb { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 24px 50px -28px rgba(208,85,8,0.4); }
.browser-frame { position: absolute; inset: 14px; background: var(--bg-3); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; }
.browser-dots { display: inline-flex; gap: 5px; padding: 9px 12px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-4); }
.browser-dots span:nth-child(3) { background: rgba(208,85,8,0.6); }
.browser-url {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  padding: 3px 14px; background: rgba(245,242,234,0.04); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); white-space: nowrap;
}
.browser-body { flex: 1; position: relative; }
.browser-body.p-1 { background: radial-gradient(circle at 30% 30%, rgba(208,85,8,0.22), transparent 55%), var(--bg-2); }
.browser-body.p-2 { background: radial-gradient(circle at 60% 40%, rgba(208,85,8,0.16), transparent 55%), var(--bg-3); }
.browser-body.p-3 { background: radial-gradient(circle at 50% 60%, rgba(245,242,234,0.08), transparent 55%), var(--bg-2); }
.browser-body.p-4 { background: radial-gradient(circle at 40% 40%, rgba(208,85,8,0.2), transparent 55%), var(--bg-3); }
.browser-body.p-5 { background: radial-gradient(circle at 70% 50%, rgba(208,85,8,0.14), transparent 55%), var(--bg-2); }
.browser-body.p-6 { background: radial-gradient(circle at 30% 60%, rgba(245,242,234,0.06), transparent 55%), var(--bg-3); }
.browser-body::before { content: ""; position: absolute; inset: 16px 16px auto 16px; height: 14px; border-radius: 3px; background: rgba(245,242,234,0.08); }
.browser-body::after { content: ""; position: absolute; inset: 44px 16px 16px 16px; border-radius: 4px; background: linear-gradient(180deg, transparent 0 30%, rgba(245,242,234,0.05) 30% 36%, transparent 36% 62%, rgba(245,242,234,0.05) 62% 68%, transparent 68%); }
.project-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 0 2px; }
.project-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-2); text-transform: uppercase; padding: 4px 8px;
  background: rgba(245,242,234,0.04); border: 1px solid var(--line);
}
.project-name {
  font-family: var(--font-display); font-size: 19px;
  font-style: italic; transform: skewX(var(--skew));
  margin: 0; flex: 1 1 auto; text-transform: uppercase;
}
html[lang="ar"] .project-name { font-style: normal; transform: none; font-weight: 900; }
.project-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-2);
  transition: color var(--t-fast), gap var(--t-fast); margin-inline-start: auto;
}
.project-link:hover { color: var(--orange); gap: 9px; }
.browser-body video, .browser-body img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.browser-body:has(video)::before, .browser-body:has(video)::after, .browser-body:has(img)::before, .browser-body:has(img)::after { display: none; }
html[dir="rtl"] .project-link .arr { transform: scaleX(-1); }

/* ===================== REVIEWS ===================== */
.reviews-block { margin-bottom: clamp(40px, 6vw, 70px); }
.reviews-block:last-of-type { margin-bottom: 0; }
.reviews-header { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.reviews-kind {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange-2);
  padding: 6px 12px; background: var(--orange-soft);
  border: 1px solid rgba(208,85,8,0.35); white-space: nowrap;
}
.reviews-rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
html[dir="rtl"] .reviews-rule { background: linear-gradient(90deg, transparent, var(--line)); }
.reviews-count { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; white-space: nowrap; }
.reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 960px) { .reviews-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .reviews-row { grid-template-columns: 1fr; } }
.review-card {
  position: relative; padding: 28px 26px;
  background: var(--bg-2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform var(--t-med), border-color var(--t-med);
}
.review-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.quote-mark {
  position: absolute; top: 12px; inset-inline-end: 20px;
  font-family: var(--font-display); font-size: 76px; line-height: 1;
  color: rgba(208,85,8,0.22);
}
.review-text { font-size: 15px; line-height: 1.65; color: var(--ink); margin: 0; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--bg);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600; flex-shrink: 0;
}
.reviewer > div:nth-child(2) { display: flex; flex-direction: column; }
.reviewer-name { font-family: var(--font-display); font-size: 15px; font-style: italic; transform: skewX(var(--skew)); color: var(--ink); }
html[lang="ar"] .reviewer-name { font-style: normal; transform: none; font-weight: 700; }
.reviewer-role { font-size: 12px; color: var(--ink-3); }
.stars { margin-inline-start: auto; font-size: 13px; color: var(--orange); white-space: nowrap; }

/* ===================== CTA ===================== */
.cta-strip { padding-block: clamp(60px, 8vw, 100px); }
.cta-inner {
  position: relative; padding: clamp(50px, 7vw, 90px) clamp(28px, 4vw, 56px);
  border: 1px solid var(--line); background: var(--bg-2);
  overflow: hidden; text-align: center;
}
.cta-ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(208,85,8,0.22), transparent 60%); filter: blur(40px); }
.cta-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,242,234,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,242,234,0.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner .eyebrow { justify-content: center; display: inline-flex; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.92; margin: 16px 0 18px; text-transform: uppercase;
}
.cta-title span { display: block; font-style: italic; transform: skewX(var(--skew)); }
html[lang="ar"] .cta-title span { font-style: normal; transform: none; font-weight: 900; }
.cta-sub { font-size: clamp(15px, 1.3vw, 18px); color: var(--ink-2); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: inline-flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.cta-secondary { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.cta-secondary .mono { color: var(--ink); border-bottom: 1px dashed var(--line-2); padding-bottom: 2px; }

/* ===================== FOOTER ===================== */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: clamp(48px,6vw,72px) var(--pad-x) 32px; margin-top: clamp(40px,6vw,80px); }
.footer-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: clamp(40px,6vw,80px); padding-bottom: 44px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 18px; }
.footer-blurb { color: var(--ink-2); font-size: 14px; line-height: 1.65; max-width: 360px; margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3); }
.footer-social { display: inline-flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--ink-2); transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
.footer-social a:hover { color: var(--orange); border-color: rgba(208,85,8,0.4); background: var(--orange-soft); }

/* ===================== REVEALS ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 760ms cubic-bezier(.2,.7,.3,1), transform 760ms cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .primary-nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { max-width: 320px; margin: 20px auto 0; }
  .float-chip { transform: scale(0.9); }
}
@media (max-width: 560px) {
  .hero-meta { gap: 14px; padding: 14px 16px; }
  .hero-meta-divider { display: none; }
  .meta-num { font-size: 24px; }
  .float-chip { display: none; }
}

/* ===================== RTL ===================== */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .brand-mono,
html[dir="rtl"] .stat-value,
html[dir="rtl"] .meta-num,
html[dir="rtl"] .chip-value,
html[dir="rtl"] .browser-url,
html[dir="rtl"] .exp-tag,
html[dir="rtl"] .lang-toggle { direction: ltr; unicode-bidi: isolate; }

/* ===================== SIGNUP / APPLY ===================== */
.su-header { background: rgba(14,14,14,0.72); border-bottom: 1px solid var(--line); }
.su-back { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); transition: color var(--t-fast); }
.su-back:hover { color: var(--ink); }
.su-back-arr { transition: transform var(--t-fast); }
.su-back:hover .su-back-arr { transform: translateX(-3px); }
html[dir="rtl"] .su-back-arr { transform: scaleX(-1); }
html[dir="rtl"] .su-back:hover .su-back-arr { transform: scaleX(-1) translateX(-3px); }
@media (max-width: 460px) { .su-back span { display: none; } }

.su-main { position: relative; z-index: 1; max-width: calc(var(--container) + var(--pad-x) * 2); margin: 0 auto; padding: clamp(110px, 13vh, 160px) var(--pad-x) clamp(60px, 9vw, 110px); }
.su-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
@media (max-width: 920px) { .su-wrap { grid-template-columns: 1fr; gap: 44px; } }

/* LEFT · pitch */
.su-aside { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 110px; }
@media (max-width: 920px) { .su-aside { position: static; gap: 20px; } }
.su-title { font-family: var(--font-display); font-size: clamp(40px, 5.6vw, 76px); line-height: 0.92; letter-spacing: 0.005em; margin: 0; text-transform: uppercase; font-style: italic; transform: skewX(var(--skew)); transform-origin: left; }
html[dir="rtl"] .su-title { transform-origin: right; }
html[lang="ar"] .su-title { font-style: normal; transform: none; font-weight: 900; line-height: 1.12; }
.su-title span { display: block; }
.su-lede { font-size: clamp(15px, 1.3vw, 18px); color: var(--ink-2); max-width: 46ch; margin: 0; line-height: 1.6; }

.su-trust { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 12px; }
.su-trust li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink); }
.su-tick { color: var(--orange); flex: none; margin-top: 1px; }

.su-steps { margin-top: 8px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(245,242,234,0.02); }
.su-steps-k { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.su-steps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.su-steps-list li { display: flex; gap: 14px; align-items: flex-start; }
.su-step-n { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--orange-2); border: 1px solid rgba(208,85,8,0.4); background: var(--orange-soft); border-radius: var(--radius); padding: 3px 7px; flex: none; line-height: 1; margin-top: 2px; }
.su-step-tx { display: flex; flex-direction: column; gap: 3px; }
.su-step-t { font-weight: 700; font-size: 15px; color: var(--ink); }
.su-step-d { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

.su-proof { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line); }
.su-proof-stat { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); color: var(--orange); font-size: 40px; line-height: 1; flex: none; }
html[lang="ar"] .su-proof-stat { font-style: normal; transform: none; font-weight: 900; }
.su-proof-txt { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; }

/* RIGHT · form card */
.su-formwrap { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); position: relative; overflow: hidden; }
.su-formwrap::before { content: ""; position: absolute; inset-block-start: -120px; inset-inline-end: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(208,85,8,0.14), transparent 65%); filter: blur(30px); pointer-events: none; }
.su-form { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }
.su-form[hidden] { display: none; }

.su-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.su-q { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; padding: 0; }
.su-req { color: var(--orange); }
.su-opt { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-inline-start: 8px; }

.su-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 460px) { .su-services { grid-template-columns: 1fr; } }
.su-chip { position: relative; display: flex; align-items: flex-start; padding: 13px 36px 13px 14px; border: 1.5px solid var(--line-2); border-radius: var(--radius); cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast); background: rgba(245,242,234,0.015); }
html[dir="rtl"] .su-chip { padding: 13px 14px 13px 36px; }
.su-chip:hover { border-color: var(--ink-3); background: rgba(245,242,234,0.04); }
.su-chip input { position: absolute; opacity: 0; pointer-events: none; }
.su-chip.su-chip-wide { grid-column: 1 / -1; }
.su-chip-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.su-chip-t { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.su-chip-d { font-size: 12px; color: var(--ink-2); line-height: 1.35; }
.su-chip-x { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.su-chip-x-i { font-size: 10px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink-2); padding: 2px 7px; border: 1px solid var(--line-2); border-radius: 999px; line-height: 1.4; white-space: nowrap; }
.su-chip:has(input:checked) .su-chip-x-i { border-color: rgba(208,85,8,0.45); color: var(--orange); }
.su-chip-mark { position: absolute; top: 14px; right: 13px; width: 16px; height: 16px; border: 1.5px solid var(--line-2); border-radius: 50%; transition: border-color var(--t-fast), background var(--t-fast); }
html[dir="rtl"] .su-chip-mark { right: auto; left: 13px; }
.su-chip-mark::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--bg); opacity: 0; transition: opacity var(--t-fast); }
.su-chip:has(input:checked) { border-color: var(--orange); background: var(--orange-soft); }
.su-chip:has(input:checked) .su-chip-mark { border-color: var(--orange); background: var(--orange); }
.su-chip:has(input:checked) .su-chip-mark::after { opacity: 1; }
.su-chip:has(input:focus-visible) { outline: 2px solid var(--orange-2); outline-offset: 2px; }
.su-services.is-invalid .su-chip { border-color: rgba(224,80,60,0.55); }
/* JS-driven fallback for browsers without :has() (mirrors the rules above) */
.su-chip.is-checked { border-color: var(--orange); background: var(--orange-soft); }
.su-chip.is-checked .su-chip-mark { border-color: var(--orange); background: var(--orange); }
.su-chip.is-checked .su-chip-mark::after { opacity: 1; }
.su-chip.is-checked .su-chip-x-i { border-color: rgba(208,85,8,0.45); color: var(--orange); }

.su-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.su-row-budget { grid-template-columns: 1.65fr 1fr; }
@media (max-width: 540px) { .su-row, .su-row-budget { grid-template-columns: 1fr; } }
.su-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.su-label { font-size: 13px; font-weight: 600; color: var(--ink); display: flex; align-items: center; }
.su-input { width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line-2); border-radius: var(--radius); padding: 13px 14px; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.su-input::placeholder { color: var(--ink-2); }
.su-input:hover { border-color: var(--ink-3); }
.su-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); }
.su-input.is-invalid { border-color: var(--error); }
.su-input.is-invalid:focus { box-shadow: 0 0 0 3px rgba(224,80,60,0.18); }
.su-textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

.su-selectwrap { position: relative; }
.su-select { appearance: none; -webkit-appearance: none; padding-inline-end: 38px; cursor: pointer; }
.su-select option { color: var(--ink); background: var(--bg-2); }
.su-select-arr { position: absolute; top: 50%; right: 14px; transform: translateY(-50%); color: var(--ink-2); pointer-events: none; }
html[dir="rtl"] .su-select-arr { right: auto; left: 14px; }

.su-error { font-size: 12.5px; color: var(--error-light); margin: 0; }
.su-error-generic { padding: 10px 12px; border: 1px solid rgba(224,80,60,0.4); background: rgba(224,80,60,0.08); border-radius: var(--radius); }
.su-error[hidden] { display: none; }

.su-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.su-submit { width: 100%; justify-content: center; margin-top: 4px; }
.su-submit:disabled { opacity: 0.6; cursor: progress; transform: none; box-shadow: none; }
.su-formnote { font-size: 13px; color: var(--ink-2); text-align: center; margin: 0; }
.su-formnote .mono { color: var(--ink); border-bottom: 1px dashed var(--line-2); padding-bottom: 1px; }

/* SUCCESS */
.su-success { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: clamp(16px, 3vw, 32px) 0; }
.su-success[hidden] { display: none; }
.su-success:focus { outline: none; }
.su-success-mark { color: var(--orange); margin-bottom: 4px; }
.su-success-t { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; margin: 0; line-height: 1; }
html[lang="ar"] .su-success-t { font-style: normal; transform: none; font-weight: 900; }
.su-success-d { font-size: 16px; color: var(--ink); max-width: 42ch; margin: 0; line-height: 1.55; }
.su-success-note { font-size: 13.5px; color: var(--ink-2); margin: 0; }
.su-success-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }

/* FOOTER */
.su-footer { position: relative; z-index: 1; max-width: calc(var(--container) + var(--pad-x) * 2); margin: 0 auto; padding: 28px var(--pad-x) 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); }
.su-footer .footer-copy { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); }
.su-footer .mono { font-size: 13px; color: var(--ink-2); }

/* SIGNUP · a11y + responsive refinements */
@media (max-width: 920px) { .su-formwrap { max-width: 560px; margin-inline: auto; } }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .su-input, .su-textarea, .su-chip, .su-chip-mark, .su-back-arr, .btn { transition: none; }
}

/* results — see-the-rest button + hero trio */
.results-cta { text-align: center; margin-top: clamp(22px, 3.4vw, 38px); }
.shot-cap strong { color: var(--ink); font-weight: 700; }

/* AI service — full-width feature card */
.service-card.svc-wide { grid-column: 1 / -1; }
@media (max-width:720px){ .service-card.svc-wide { grid-column: auto; } }

/* homepage result cards — drop the Best month/day labels (caption carries the figure) */
#case-studies .shot-badge { display: none; }

/* homepage "Many more wins" carousel — one win per slide: stat panel + dashboard, arrows + dots */
.wins-head { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.4vw, 22px); margin: clamp(14px, 2.5vw, 28px) 0 clamp(20px, 3vw, 34px); }
.wins-line { flex: 0 0 auto; width: clamp(40px, 7vw, 72px); height: 1px; background: linear-gradient(90deg, rgba(245,242,234,0) 0%, rgba(245,242,234,0.22) 50%, rgba(245,242,234,0) 100%); }
.wins-title { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: clamp(22px, 3.2vw, 34px); letter-spacing: 0.01em; color: var(--orange); white-space: nowrap; }
html[lang="ar"] .wins-title { font-style: normal; transform: none; font-weight: 900; }

.wins-carousel { position: relative; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, rgba(245,242,234,0.035), transparent 55%); }
.wins-viewport { overflow: hidden; }
.wins-track { display: flex; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); will-change: transform; }
.win-slide { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: 0.82fr 1px 1.18fr; align-items: center;
  gap: clamp(20px, 3vw, 44px); padding: clamp(28px, 4vw, 52px) clamp(26px, 5vw, 72px); }
.win-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.win-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); }
.win-figure-row { display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.win-figure { font-family: var(--font-display); font-style: italic; transform: skewX(var(--skew)); font-size: clamp(46px, 7vw, 92px); line-height: 0.92; color: var(--ink); letter-spacing: -0.01em; }
html[lang="ar"] .win-figure { font-style: normal; transform: none; font-weight: 900; }
.win-pill { align-self: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #29c46a; background: rgba(41,196,106,0.08); border: 1px solid rgba(41,196,106,0.3); border-radius: 999px; padding: 5px 12px; line-height: 1; white-space: nowrap; }
.win-sub { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); }
.win-sub-em { color: #29c46a; }
.win-verif { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.win-divider { width: 1px; align-self: stretch; background: linear-gradient(180deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent); }
.win-shot { display: block; border-radius: 10px; overflow: hidden; justify-self: center; }
.win-shot img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: contain; border-radius: 10px; background: #f4f2ec; }

.wins-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(14,14,14,0.86); backdrop-filter: blur(10px); color: var(--orange); border: 1px solid rgba(208,85,8,0.4);
  cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; padding-bottom: 3px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.55); transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s; }
.wins-arrow:hover { background: var(--orange); color: var(--bg); border-color: var(--orange); transform: translateY(-50%) scale(1.06); }
.wins-prev { left: 14px; } .wins-next { right: 14px; }
html[dir="rtl"] .wins-prev { left: auto; right: 14px; } html[dir="rtl"] .wins-next { right: auto; left: 14px; }
.wins-dots { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: clamp(16px, 2.4vw, 24px); }
.win-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.win-dot:hover { background: rgba(208,85,8,0.5); }
.win-dot.is-active { background: var(--orange); transform: scale(1.35); }
@media (max-width: 760px) {
  .win-slide { grid-template-columns: 1fr; gap: 22px; }
  .win-divider { display: none; }
  .win-shot { order: -1; }
  .win-stat { align-items: center; text-align: center; }
}

/* ============================================================
   Mobile + UX polish pass
   ============================================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: 88px; }
body { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange); color: #fff; }

/* press feedback (phones have no hover) */
.btn:active { transform: translateY(1px) scale(0.99); }
.wins-arrow:active { transform: translateY(-50%) scale(0.93); }
.su-chip:active, .win-dot:active, .brand-filter:active, .menu-btn:active { transform: scale(0.97); }

/* visible keyboard focus ring (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, .su-chip:focus-within {
  outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 5px;
}

/* notch-safe horizontal insets */
.site-header { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
.site-footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }

/* Reviews hidden until real testimonials are ready — remove these 2 rules to restore */
#reviews { display: none; }
a[href="#reviews"], a[href="index.html#reviews"] { display: none; }

@media (max-width: 760px) {
  /* comfier carousel controls */
  .wins-dots { gap: 11px; margin-top: 18px; }
  .win-dot { width: 9px; height: 9px; }
  .wins-arrow { width: 42px; height: 42px; font-size: 22px; }
  .wins-prev { left: 8px; } .wins-next { right: 8px; }
  /* ensure inline links / buttons clear the thumb */
  .footer-social a { width: 40px; height: 40px; }
}

/* ============================================================
   Elegance pass — image fade-in + refinements
   ============================================================ */
/* images fade in softly as they decode (only when JS is present) */
html.js .imgfade { opacity: 0; transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
html.js .imgfade.is-loaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) { html.js .imgfade { opacity: 1 !important; transition: none; } }

/* avoid layout jump / blank flashes on logo plates while the image fades */
.lt-img, .spc-plate, .win-shot { background: var(--ink); }

/* smoother momentum scrolling on iOS */
html, body { -webkit-overflow-scrolling: touch; }

/* footer contact + social: comfortable tap targets, subtle hover lift */
.footer-col a { transition: color var(--t-fast), transform var(--t-fast); }
.footer-col a:hover { color: var(--orange); }
@media (hover: hover) { .footer-social a:hover { transform: translateY(-2px); } }

/* keep the now-2-icon social row from looking sparse — center on small screens */
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-social { gap: 12px; }
}

/* ============================================================
   CTA centralized · hyper-responsive buttons · social removed
   ============================================================ */
/* kill the ~300ms mobile tap delay + double-tap zoom on all controls → instant feel */
.btn, .su-chip, .win-dot, .wins-arrow, .brand-filter, .menu-btn, .lang-toggle,
.footer-col a, .nav a, a[role="button"], button { touch-action: manipulation; cursor: pointer; }

/* snappier press on every primary action */
.btn:active { transform: translateY(1px) scale(0.985); transition-duration: 60ms; }

/* footer: location text (non-link) + site url replacing the old social row */
.footer-loc { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
.footer-url { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-2); transition: color var(--t-fast); }
.footer-url:hover { color: var(--orange); }

/* CTA: single centered action — give the lone button room to breathe */
.cta-actions { margin-top: 4px; }
.cta-actions .btn-lg { padding-inline: clamp(30px, 5vw, 48px); }

/* brand tiles with no real link: not clickable, no pointer/hover affordance */
.logo-tile.is-static, .specimen.is-static { cursor: default; }
.logo-tile.is-static:hover, .specimen.is-static:hover { transform: none; border-color: var(--line-2); box-shadow: none; }
