/* Bold Canva-aligned aesthetic — Salah Hassibi portfolio v2 */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0A0E16;
  color: #F5F0E6;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
[lang="ar"], [dir="rtl"] {
  font-family: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;
}
.app {
  position: relative;
  background:
    radial-gradient(ellipse 1200px 800px at 20% -10%, rgba(45, 32, 80, 0.25), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 90% 40%, rgba(80, 30, 30, 0.18), transparent 60%),
    #0A0E16;
}
.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── Badges ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px;
  font-weight: 800; letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  text-transform: uppercase;
}
.badge-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  color: #F5F0E6;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 4px 20px rgba(0,0,0,0.4);
}
.badge-dark {
  background: rgba(10,14,22,0.85);
  color: #F5F0E6;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
}
.badge-red {
  background: var(--accent-red, #E13E3E);
  color: #FFFFFF;
  border: 1px solid color-mix(in oklab, var(--accent-red) 60%, white);
  box-shadow: 0 4px 20px -4px color-mix(in oklab, var(--accent-red) 40%, transparent);
}
.badge-accent {
  background: var(--accent, #E8A84A);
  color: #0A0908;
  border: 1px solid color-mix(in oklab, var(--accent) 60%, white);
  box-shadow: 0 4px 20px -4px color-mix(in oklab, var(--accent) 40%, transparent);
}
.badge-sm { padding: 8px 14px; font-size: 11px; }
.badge-md { padding: 10px 18px; font-size: 13px; }
.badge-lg { padding: 14px 26px; font-size: 15px; }
.badge-xl { padding: 18px 36px; font-size: clamp(22px, 3.5vw, 48px); font-weight: 900; letter-spacing: 0.01em; border-radius: 18px; }
[lang="ar"] .badge-xl { font-size: clamp(20px, 3.2vw, 44px); font-family: 'IBM Plex Sans Arabic', sans-serif; }

.pill-heading {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 40px;
}
.pill-heading-main { text-align: center; }
.pill-heading-sub { }

.section-head-center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 72px; }
.section-head-center .section-sub { max-width: 56ch; margin: 0 auto; }
.section-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6; color: rgba(245,240,230,0.65);
  text-wrap: pretty;
}

/* ── Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: all 0.25s ease;
  white-space: nowrap; font-family: inherit;
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--accent, #E8A84A); color: #0A0908;
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 60%, transparent),
              0 10px 30px -10px color-mix(in oklab, var(--accent) 60%, transparent);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.05); color: #F5F0E6; border-color: rgba(255,255,255,0.12); backdrop-filter: blur(12px); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: #F5F0E6; border-color: rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.play-badge { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: #0A0908; }

/* ── Nav ──────────────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all 0.3s ease; }
.nav.is-scrolled { padding: 12px 0; background: rgba(10,14,22,0.7); backdrop-filter: blur(20px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { max-width: 1360px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #F5F0E6; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #0A0908; font-weight: 800; font-size: 12px; font-family: 'Archivo', sans-serif; letter-spacing: 0.02em; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name-first { font-size: 10px; color: rgba(245,240,230,0.55); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.brand-name-last { font-family: 'Archivo', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; color: rgba(245,240,230,0.7); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 100px; transition: all 0.2s; }
.nav-link:hover { color: #F5F0E6; background: rgba(255,255,255,0.06); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; align-items: center; padding: 3px; background: rgba(255,255,255,0.06); border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); }
.lang-toggle button { appearance: none; border: 0; background: transparent; padding: 6px 12px; color: rgba(245,240,230,0.65); font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.lang-toggle button.is-on { background: #F5F0E6; color: #0A0E16; }
.burger { display: none; appearance: none; border: 0; background: transparent; padding: 8px; cursor: pointer; flex-direction: column; gap: 4px; }
.burger span { display: block; width: 20px; height: 1.5px; background: #F5F0E6; }
@media (max-width: 900px) { .nav-links { display: none; } .nav-links.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(10,14,22,0.95); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px; } .nav-links.is-open .nav-link { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; } .burger { display: flex; } }
@media (max-width: 560px) { .nav .btn-sm { display: none; } }

/* ── HERO (bold) ──────────────────────────────────── */
.hero-bold { position: relative; min-height: 100vh; min-height: 100svh; padding: 140px 20px 60px; overflow: hidden; display: flex; flex-direction: column; }
.hero-bold-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bold-glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; }
.hero-bold-glow-1 { width: 700px; height: 700px; background: radial-gradient(circle, oklch(0.55 0.2 280), transparent 70%); top: -200px; left: -150px; }
.hero-bold-glow-2 { width: 600px; height: 600px; background: radial-gradient(circle, oklch(0.55 0.2 15), transparent 70%); bottom: -200px; right: -100px; }
.hero-bold-grain { position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>"); opacity: 0.5; mix-blend-mode: overlay; pointer-events: none; }
.hero-bold-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 40px; align-items: center; text-align: center; }
.hero-bold-badges { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-main-pill { padding: 20px 42px !important; font-size: clamp(24px, 4.5vw, 56px) !important; }
[lang="ar"] .hero-main-pill { font-size: clamp(22px, 4.2vw, 52px) !important; }
.hero-bold-stage { position: relative; width: 100%; max-width: 900px; margin-top: 8px; }
.hero-bold-video {
  position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-bold-video > svg { width: 100%; height: 100%; display: block; }
.hero-bold-video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, transparent 40%, rgba(10,14,22,0.5)); transition: background 0.3s; cursor: pointer; }
.hero-bold-video-overlay:hover { background: linear-gradient(180deg, rgba(10,14,22,0.2), rgba(10,14,22,0.6)); }
.hero-bold-play { width: 76px; height: 76px; border-radius: 50%; background: var(--accent); color: #0A0908; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 12px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.4); transition: transform 0.3s; }
.hero-bold-video-overlay:hover .hero-bold-play { transform: scale(1.06); }
.hero-bold-video-caption { position: absolute; bottom: 20px; left: 20px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 100px; background: rgba(10,14,22,0.75); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.hbv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-red); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero-bold-wave { position: absolute; left: -50px; right: -50px; bottom: -40px; z-index: -1; pointer-events: none; }
.hero-bold-wave svg { width: 100%; height: 120px; filter: blur(3px); }
.hero-bold-foot { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 40px; max-width: 640px; }
.hero-bold-sub { font-size: clamp(15px, 1.2vw, 18px); color: rgba(245,240,230,0.72); line-height: 1.55; text-wrap: pretty; }
.hero-bold-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Stats ────────────────────────────────────────── */
.stats { padding: 40px 0 80px; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.stat { padding: 24px 20px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); text-align: center; transition: all 0.3s; }
.stat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.stat-n { font-family: 'Archivo', sans-serif; font-size: clamp(26px, 2.6vw, 36px); font-weight: 900; letter-spacing: -0.02em; color: var(--accent); margin-bottom: 8px; line-height: 1; }
.stat-l { font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 600; color: rgba(245,240,230,0.6); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.3; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── About (bold) ─────────────────────────────────── */
.about-bold { padding: 80px 0; }
.about-bold-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-bold-left { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.about-bold-card { padding: 32px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 14px; }
.about-bold-p { font-size: 15px; line-height: 1.65; color: rgba(245,240,230,0.8); text-wrap: pretty; }
.about-bold-highlight { display: inline-block; align-self: flex-start; padding: 10px 16px; border-radius: 10px; background: var(--accent-red); color: #FFFFFF; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.01em; margin-top: 4px; }
.about-bold-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: 100%; }
.about-bold-meta-row { padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 4px; }
.about-bold-meta-row span:first-child { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(245,240,230,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.about-bold-meta-row span:last-child { font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 700; }
.about-bold-right { }
.about-bold-portrait { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6); }
.about-bold-portrait svg { width: 100%; height: 100%; }
.about-bold-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.about-bold-portrait-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%); pointer-events: none; }
.about-bold-portrait-badge { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }
@media (max-width: 900px) { .about-bold-grid { grid-template-columns: 1fr; } .about-bold-portrait { max-width: 480px; margin: 0 auto; } }

/* ── Clients + Feedback ──────────────────────────── */
.feedback { padding: 80px 0; }
.feedback-head { display: flex; justify-content: center; margin-bottom: 40px; }
.feedback-clients { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; align-items: center; max-width: 1100px; margin: 0 auto 72px; padding: 24px; border-radius: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); }
.feedback-client { color: rgba(245,240,230,0.75); padding: 8px 12px; transition: color 0.3s; }
.feedback-client:hover { color: #F5F0E6; }

.feedback-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.feedback-col { display: flex; flex-direction: column; gap: 20px; }
.feedback-col-head { display: flex; justify-content: center; }

.feedback-reviews {
  columns: 2;
  column-gap: 12px;
  max-height: 720px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent);
  mask-image: linear-gradient(180deg, #000 78%, transparent);
}
.rev-card {
  break-inside: avoid;
  margin: 0 0 12px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.96);
  color: #1a1714;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
}
.rev-head { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: white; flex-shrink: 0;
  font-family: 'Archivo', sans-serif;
}
.rev-meta { flex: 1; min-width: 0; }
.rev-name {
  font-size: 13px; font-weight: 700; line-height: 1.1;
  font-family: 'Archivo', sans-serif;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  color: #1a1714;
}
.rev-role {
  font-size: 11px; color: rgba(0,0,0,0.6);
  margin-top: 3px; line-height: 1;
  display: flex; align-items: center; gap: 5px;
  font-family: 'Inter', sans-serif;
}
.rev-flag { font-size: 12px; line-height: 1; }
.rev-country { font-weight: 600; }
.rev-dot { opacity: 0.4; }
.rev-stars {
  font-size: 12px; color: #f5b800;
  letter-spacing: 0.5px; line-height: 1;
  flex-shrink: 0;
}
.rev-text {
  font-size: 12.5px; line-height: 1.55;
  color: rgba(0,0,0,0.78);
  margin: 0;
  font-family: 'Inter', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: 'JetBrains Mono', monospace;
}
.rev-price { color: rgba(0,0,0,0.55); font-weight: 600; }
.rev-verified { color: #1a8754; font-weight: 700; letter-spacing: 0.5px; }

.feedback-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  padding: 20px; border-radius: 20px;  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  max-height: 520px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
  mask-image: linear-gradient(180deg, #000 80%, transparent);
}
.proof-tile { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 9/16; }
.proof-tile svg { width: 100%; height: 100%; }
.proof-tile-views { position: absolute; bottom: 6px; left: 6px; display: inline-flex; align-items: center; gap: 4px; padding: 3px 7px; border-radius: 100px; background: rgba(10,14,22,0.8); backdrop-filter: blur(8px); font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 700; color: #F5F0E6; }
.pt-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-red); }

@media (max-width: 900px) { .feedback-split { grid-template-columns: 1fr; } .feedback-reviews { columns: 2; max-height: 600px; } }
@media (max-width: 520px) { .feedback-reviews { columns: 1; max-height: 800px; } }

/* ── Services (bold) ──────────────────────────────── */
.services-bold { padding: 100px 0; }
.svc-bold-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-bold-card { padding: 28px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 14px; transition: all 0.3s ease; min-height: 240px; }
.svc-bold-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); border-color: color-mix(in oklab, var(--accent) 40%, transparent); box-shadow: 0 20px 50px -20px color-mix(in oklab, var(--accent) 20%, transparent); }
.svc-bold-head { display: flex; justify-content: space-between; align-items: center; }
.svc-bold-t { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: -0.005em; color: #F5F0E6; line-height: 1.2; }
[lang="ar"] .svc-bold-t { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.svc-bold-d { color: rgba(245,240,230,0.65); font-size: 14px; line-height: 1.6; text-wrap: pretty; }
@media (max-width: 900px) { .svc-bold-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-bold-grid { grid-template-columns: 1fr; } }

/* ── Process (bold) ───────────────────────────────── */
.process-bold { padding: 100px 0; }
.proc-bold-row { display: flex; gap: 20px; align-items: stretch; justify-content: space-between; flex-wrap: wrap; }
.proc-bold-card { flex: 1; min-width: 220px; padding: 28px 24px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.proc-bold-title { text-align: center; }
.proc-bold-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 18px; color: var(--accent); }
.proc-bold-body { font-size: 13.5px; line-height: 1.55; color: rgba(245,240,230,0.65); text-wrap: pretty; }
.proc-bold-connect { display: flex; align-items: center; gap: 6px; padding: 0 4px; align-self: center; }
.pbc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.pbc-line { width: 28px; height: 1.5px; background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.4), rgba(255,255,255,0.15)); border-radius: 1px; }
@media (max-width: 900px) { .proc-bold-row { flex-direction: column; } .proc-bold-connect { transform: rotate(90deg); } }

/* ── Process — Filmstrip ─────────────────────────── */
.process-film { padding: 100px 0; position: relative; }
.process-film::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(ellipse 600px 400px at 20% 30%, color-mix(in oklab, var(--accent), transparent 92%), transparent 70%),
  radial-gradient(ellipse 500px 300px at 80% 80%, color-mix(in oklab, var(--accent), transparent 94%), transparent 70%);
  pointer-events: none; z-index: 0; }
.process-film > .container { position: relative; z-index: 1; }

/* Director's slate strip */
.film-slate { display: flex; align-items: center; gap: 18px; max-width: 980px; margin: 56px auto 28px; padding: 12px 18px; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); backdrop-filter: blur(12px); font-family: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,230,0.7); }
.film-slate-stripes { width: 76px; height: 22px; border-radius: 4px; background: repeating-linear-gradient(45deg, #F5F0E6 0 11px, #0a0908 11px 22px); flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4); }
.film-slate-rec { display: inline-flex; align-items: center; gap: 8px; color: #ff3b30; font-weight: 700; }
.film-slate-rec-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff3b30; box-shadow: 0 0 12px #ff3b30; animation: filmRecPulse 1.4s ease-in-out infinite; }
@keyframes filmRecPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
.film-slate-meta { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.film-slate-label { color: rgba(245,240,230,0.4); }
.film-slate-val { color: #F5F0E6; font-weight: 700; }
.film-slate-sep { color: rgba(245,240,230,0.25); margin: 0 2px; }
.film-slate-tc { margin-left: auto; padding: 6px 12px; border-radius: 6px; background: #0a0908; border: 1px solid rgba(255,255,255,0.12); color: var(--accent); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: 0.1em; }

/* Layout: filmstrip (center) + content rows on either side */
.film-wrap { position: relative; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 280px 1fr; grid-template-rows: repeat(4, minmax(220px, auto)); gap: 0 36px; align-items: stretch; }

/* Filmstrip */
.film-strip { grid-column: 2; grid-row: 1 / -1; position: relative; background: linear-gradient(180deg, #050403, #0a0908); border-radius: 4px; box-shadow: 0 24px 80px -20px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.04); }
.film-strip-perfs { position: absolute; top: 0; bottom: 0; width: 26px; background-image: linear-gradient(180deg, transparent 12px, rgba(245,240,230,0.92) 12px, rgba(245,240,230,0.92) 30px, transparent 30px); background-size: 100% 42px; background-repeat: repeat-y; mask-image: linear-gradient(180deg, transparent 12px, #000 12px, #000 30px, transparent 30px); -webkit-mask-image: linear-gradient(180deg, transparent 12px, #000 12px, #000 30px, transparent 30px); mask-size: 100% 42px; -webkit-mask-size: 100% 42px; mask-repeat: repeat-y; -webkit-mask-repeat: repeat-y; }
.film-strip-perfs--left { left: 8px; }
.film-strip-perfs--right { right: 8px; }
.film-strip-frames { position: relative; display: grid; grid-template-rows: repeat(4, 1fr); height: 100%; padding: 12px 42px; gap: 12px; }
.film-frame { position: relative; border-radius: 3px; overflow: hidden; background: linear-gradient(180deg, #1a1815 0%, #0e0c0a 100%); border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; transition: all 0.6s cubic-bezier(.2,.8,.2,1); color: rgba(245,240,230,0.35); }
.film-frame.is-active { background: linear-gradient(180deg, color-mix(in oklab, var(--accent), #000 35%) 0%, color-mix(in oklab, var(--accent), #000 70%) 100%); border-color: color-mix(in oklab, var(--accent), transparent 60%); color: #F5F0E6; box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent), transparent 60%), inset 0 1px 0 rgba(255,255,255,0.08); }
.film-frame.is-current { box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent), transparent 30%), 0 12px 40px -8px color-mix(in oklab, var(--accent), transparent 50%), inset 0 1px 0 rgba(255,255,255,0.12); }
.film-frame-art { width: 70%; height: 70%; display: flex; align-items: center; justify-content: center; }
.film-frame-svg { width: 100%; height: 100%; }
.film-frame-num { position: absolute; top: 6px; left: 8px; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 11px; letter-spacing: 0.12em; color: var(--accent); opacity: 0.85; }
.film-frame:not(.is-active) .film-frame-num { color: rgba(245,240,230,0.4); }
.film-frame-of { position: absolute; bottom: 6px; right: 8px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9px; letter-spacing: 0.2em; color: rgba(245,240,230,0.35); }
.film-frame-corner { position: absolute; width: 10px; height: 10px; border-color: rgba(245,240,230,0.25); border-style: solid; border-width: 0; }
.film-frame.is-active .film-frame-corner { border-color: var(--accent); }
.film-frame-corner--tl { top: 4px; left: 4px; border-top-width: 1px; border-left-width: 1px; }
.film-frame-corner--tr { top: 4px; right: 4px; border-top-width: 1px; border-right-width: 1px; }
.film-frame-corner--bl { bottom: 4px; left: 4px; border-bottom-width: 1px; border-left-width: 1px; }
.film-frame-corner--br { bottom: 4px; right: 4px; border-bottom-width: 1px; border-right-width: 1px; }
.film-frame-rec { position: absolute; top: 8px; right: 10px; display: inline-flex; align-items: center; gap: 5px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: #ff3b30; }
.film-frame-rec-dot { width: 6px; height: 6px; border-radius: 50%; background: #ff3b30; animation: filmRecPulse 1.2s ease-in-out infinite; }

/* Playhead */
.film-playhead { position: absolute; left: -12px; right: -12px; height: 2px; background: linear-gradient(90deg, transparent, #ff3b30 12%, #ff3b30 88%, transparent); box-shadow: 0 0 14px rgba(255,59,48,0.7); z-index: 10; pointer-events: none; transition: top 0.16s linear; }
.film-playhead::before, .film-playhead::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: #ff3b30; border-radius: 50%; box-shadow: 0 0 12px #ff3b30, 0 0 0 2px rgba(255,59,48,0.2); }
.film-playhead::before { left: -2px; }
.film-playhead::after { right: -2px; }
.film-playhead-flag { position: absolute; right: -90px; top: 50%; transform: translateY(-50%); padding: 4px 10px; background: #ff3b30; color: #0a0908; font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 800; font-size: 10px; letter-spacing: 0.08em; border-radius: 4px; box-shadow: 0 4px 14px rgba(255,59,48,0.5); white-space: nowrap; }
.film-playhead-flag::before { content: ''; position: absolute; left: -8px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 8px solid #ff3b30; }

/* Side rows */
.film-content { list-style: none; margin: 0; padding: 0; display: contents; }
.film-row { grid-column: 1; grid-row: var(--row); display: flex; align-items: center; padding: 24px 0; opacity: 0.35; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.film-row.is-right { grid-column: 3; transform: translateX(30px); }
.film-row.is-active { opacity: 1; transform: translateX(0); }
.film-row.is-left { justify-content: flex-end; text-align: right; }
.film-row.is-right { justify-content: flex-start; text-align: left; }
.film-card { max-width: 380px; }
.film-card-slate { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,230,0.55); margin-bottom: 14px; }
.film-row.is-active .film-card-slate { color: var(--accent); border-color: color-mix(in oklab, var(--accent), transparent 50%); background: color-mix(in oklab, var(--accent), transparent 92%); }
.film-card-slate-tag--muted { color: rgba(245,240,230,0.35); }
.film-row.is-active .film-card-slate-tag--muted { color: rgba(245,240,230,0.6); }
.film-card-slate-dot { font-size: 6px; line-height: 1; color: #ff3b30; }
.film-card-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 28px; line-height: 1.08; margin: 0 0 10px; letter-spacing: -0.02em; color: #F5F0E6; }
.film-card-desc { font-size: 15px; line-height: 1.55; color: rgba(245,240,230,0.72); margin: 0; text-wrap: pretty; }

/* Mobile */
@media (max-width: 820px) {
  .film-slate { gap: 12px; padding: 10px 14px; font-size: 9px; flex-wrap: wrap; }
  .film-slate-stripes { width: 56px; height: 16px; }
  .film-slate-tc { margin-left: 0; }
  .film-slate-meta { gap: 6px; }
  .film-wrap { grid-template-columns: 64px 1fr; grid-template-rows: repeat(4, auto); gap: 16px 16px; }
  .film-strip { grid-column: 1; grid-row: 1 / -1; }
  .film-strip-frames { padding: 10px 16px; gap: 10px; }
  .film-strip-perfs { width: 12px; }
  .film-strip-perfs--left { left: 2px; }
  .film-strip-perfs--right { right: 2px; }
  .film-frame-num { font-size: 9px; }
  .film-frame-of, .film-frame-rec { display: none; }
  .film-row { grid-column: 2; transform: none; padding: 8px 0; justify-content: flex-start !important; text-align: left !important; }
  .film-row.is-active, .film-row { opacity: 1; }
  .film-row { opacity: 0.5; }
  .film-row.is-active { opacity: 1; }
  .film-card-title { font-size: 20px; }
  .film-card-desc { font-size: 13px; }
  .film-playhead-flag { display: none; }
}

/* ── Order section ────────────────────────────────── */
.order-section { padding: 100px 0; position: relative; }
.order-title { margin-top: 14px; }

.order-steps { display: grid; grid-template-columns: repeat(3, 1fr) ; gap: 18px; margin: 56px auto 60px; max-width: 1080px; }
.order-step { position: relative; padding: 24px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; gap: 18px; align-items: flex-start; backdrop-filter: blur(12px); }
.order-step-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; line-height: 1; color: var(--accent); letter-spacing: -0.02em; flex-shrink: 0; }
.order-step-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; line-height: 1.15; margin: 0 0 6px; color: #F5F0E6; }
.order-step-desc { font-size: 13.5px; line-height: 1.55; color: rgba(245,240,230,0.7); margin: 0; text-wrap: pretty; }
.order-step-arrow { position: absolute; right: -22px; top: 50%; transform: translateY(-50%); color: rgba(245,240,230,0.3); font-size: 22px; line-height: 1; pointer-events: none; }
[dir="rtl"] .order-step-arrow { right: auto; left: -22px; transform: translateY(-50%) scaleX(-1); }

.order-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 24px; max-width: 1100px; margin: 0 auto; align-items: stretch; }

/* Payment card */
.order-pay-card { padding: 28px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 18px; }
.order-pay-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.order-pay-eyebrow { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,230,0.65); }
.order-pay-pill { padding: 4px 10px; border-radius: 999px; background: var(--accent); color: #0a0908; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; }
.order-pay-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.order-pay-item { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease; }
.order-pay-item:hover { border-color: color-mix(in oklab, var(--accent), transparent 60%); background: rgba(255,255,255,0.05); transform: translateY(-1px); }
.order-pay-logo { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; color: var(--accent); border: 1px solid rgba(255,255,255,0.06); }
.order-pay-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14.5px; color: #F5F0E6; line-height: 1.1; }
.order-pay-sub { font-size: 11.5px; color: rgba(245,240,230,0.55); margin-top: 3px; letter-spacing: 0.02em; }
.order-pay-detail { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; color: rgba(245,240,230,0.5); text-align: right; max-width: 160px; line-height: 1.3; }
[dir="rtl"] .order-pay-detail { text-align: left; }
.order-pay-foot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(245,240,230,0.6); padding: 4px 2px; }
.order-pay-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }

.order-guarantee { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 14px; background: color-mix(in oklab, var(--accent), transparent 92%); border: 1px solid color-mix(in oklab, var(--accent), transparent 70%); margin-top: auto; }
.order-guarantee-icon { width: 40px; height: 40px; border-radius: 10px; background: color-mix(in oklab, var(--accent), transparent 80%); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.order-guarantee-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; color: #F5F0E6; margin-bottom: 4px; }
.order-guarantee-body { font-size: 12.5px; line-height: 1.5; color: rgba(245,240,230,0.72); margin: 0; text-wrap: pretty; }

/* Form card */
.order-form-card { padding: 28px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.12); display: flex; flex-direction: column; gap: 16px; }
.order-form-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; color: #F5F0E6; margin: 0 0 6px; letter-spacing: -0.01em; }
.order-form-sub { font-size: 13.5px; color: rgba(245,240,230,0.65); margin: 0; line-height: 1.5; }
.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-field { display: flex; flex-direction: column; gap: 6px; }
.order-field-label { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,230,0.55); }
.order-field-input { width: 100%; padding: 12px 14px; border-radius: 10px; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.1); color: #F5F0E6; font-family: inherit; font-size: 14px; transition: border-color 0.2s ease, background 0.2s ease; outline: none; }
.order-field-input:focus { border-color: var(--accent); background: rgba(0,0,0,0.35); }
.order-field-textarea { resize: vertical; min-height: 92px; font-family: inherit; line-height: 1.5; }
.order-form-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; margin-top: 6px; }
.order-form-submit { width: 100%; justify-content: center; gap: 10px; padding: 14px 18px; font-size: 15px; }
.order-form-email { text-align: center; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,230,0.6); text-decoration: none; padding: 6px; }
.order-form-email:hover { color: var(--accent); }

@media (max-width: 900px) {
  .order-steps { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .order-step-arrow { display: none; }
  .order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .order-form-row { grid-template-columns: 1fr; }
  .order-pay-item { grid-template-columns: 36px 1fr; gap: 10px; }
  .order-pay-detail { grid-column: 1 / -1; text-align: left; max-width: none; padding-top: 4px; border-top: 1px dashed rgba(255,255,255,0.06); margin-top: 4px; }
  [dir="rtl"] .order-pay-detail { text-align: right; }
}

/* Clickable PayPal row */
.order-pay-item-clickable { width: 100%; cursor: pointer; font: inherit; color: inherit; text-align: inherit; appearance: none; }
.order-pay-item-clickable:hover { border-color: var(--accent); background: color-mix(in oklab, var(--accent), transparent 92%); }
.order-pay-item-clickable:hover .order-pay-cta-tag { background: var(--accent); color: #0a0908; }
.order-pay-cta-tag { display: inline-block; margin-left: 10px; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,0.08); color: rgba(245,240,230,0.85); font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; vertical-align: middle; transition: background 0.2s ease, color 0.2s ease; }
[dir="rtl"] .order-pay-cta-tag { margin-left: 0; margin-right: 10px; }

/* ── Checkout modal ──────────────────────────────── */
.checkout-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(8, 6, 4, 0.78); backdrop-filter: blur(10px); display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; animation: ck-fade 0.25s ease both; }
@keyframes ck-fade { from { opacity: 0; } to { opacity: 1; } }
.checkout-modal { position: relative; width: 100%; max-width: 1100px; background: #f5f1e8; color: #1a1612; border-radius: 22px; box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05); overflow: hidden; animation: ck-rise 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes ck-rise { from { opacity: 0; transform: translateY(24px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.checkout-close { position: absolute; top: 18px; right: 18px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.7); color: #1a1612; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease; }
.checkout-close:hover { background: #fff; transform: rotate(90deg); }
[dir="rtl"] .checkout-close { right: auto; left: 18px; }

.checkout-head { padding: 38px 44px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.checkout-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,0.06); font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #1a1612; margin-bottom: 14px; }
.checkout-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(28px, 4vw, 42px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; color: #0f0c08; }

.checkout-body { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 0; }
.checkout-form { padding: 32px 44px; border-right: 1px solid rgba(0,0,0,0.06); }
[dir="rtl"] .checkout-form { border-right: none; border-left: 1px solid rgba(0,0,0,0.06); }
.checkout-summary { padding: 32px 44px; background: #ece6d8; }
.checkout-section + .checkout-section { margin-top: 32px; }
.checkout-section-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; color: #0f0c08; margin: 0 0 18px; letter-spacing: -0.01em; }

.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkout-field { position: relative; display: block; margin-bottom: 14px; }
.checkout-field-block { display: block; }
.checkout-input { width: 100%; padding: 22px 16px 8px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.18); background: #fff; color: #0f0c08; font-family: inherit; font-size: 15px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; box-sizing: border-box; }
.checkout-input:focus { border-color: #0f0c08; box-shadow: 0 0 0 3px rgba(15,12,8,0.06); }
.checkout-textarea { resize: vertical; min-height: 90px; padding-top: 26px; line-height: 1.45; }
.checkout-label { position: absolute; top: 50%; left: 16px; transform: translateY(-50%); font-size: 14px; color: rgba(15,12,8,0.55); pointer-events: none; transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease; background: transparent; padding: 0 4px; }
[dir="rtl"] .checkout-label { left: auto; right: 16px; }
.checkout-input:focus + .checkout-label,
.checkout-input:not(:placeholder-shown) + .checkout-label { top: 12px; transform: translateY(0); font-size: 11px; color: rgba(15,12,8,0.7); font-weight: 600; }
.checkout-textarea + .checkout-label { top: 14px; transform: translateY(0); font-size: 11px; color: rgba(15,12,8,0.7); font-weight: 600; }
.checkout-label-static { top: 14px !important; transform: translateY(0) !important; font-size: 11px !important; color: rgba(15,12,8,0.7) !important; font-weight: 600; }
.req { color: #d4451c; margin-left: 2px; }
.checkout-hint { display: flex; align-items: center; gap: 8px; margin: -4px 0 0; font-size: 12.5px; color: rgba(15,12,8,0.6); }

.checkout-plan-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 14px; border-radius: 14px; background: #fff; border: 1px solid rgba(0,0,0,0.08); margin-bottom: 16px; }
.checkout-plan-thumb { width: 56px; height: 56px; border-radius: 10px; background: #1a1612; color: #f5f1e8; display: flex; align-items: center; justify-content: center; }
.checkout-plan-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14.5px; color: #0f0c08; line-height: 1.2; }
.checkout-plan-sub { font-size: 12px; color: rgba(15,12,8,0.6); margin-top: 4px; line-height: 1.4; }
.checkout-plan-price { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: #0f0c08; text-align: right; white-space: nowrap; }
[dir="rtl"] .checkout-plan-price { text-align: left; }
.checkout-currency { font-size: 11px; color: rgba(15,12,8,0.55); margin-right: 4px; font-weight: 600; }
.checkout-plan-quote { font-size: 11.5px; color: rgba(15,12,8,0.65); font-weight: 600; }

.checkout-switch { margin-bottom: 18px; }
.checkout-switch summary { cursor: pointer; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(15,12,8,0.65); padding: 8px 0; list-style: none; }
.checkout-switch summary::-webkit-details-marker { display: none; }
.checkout-switch summary::after { content: '+'; float: right; font-family: inherit; font-size: 14px; }
.checkout-switch[open] summary::after { content: '−'; }
[dir="rtl"] .checkout-switch summary::after { float: left; }
.checkout-switch-list { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.checkout-switch-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.1); background: #fff; cursor: pointer; font: inherit; color: #0f0c08; transition: border-color 0.2s ease, background 0.2s ease; }
.checkout-switch-item:hover { border-color: #0f0c08; }
.checkout-switch-item.is-active { border-color: #0f0c08; background: #1a1612; color: #f5f1e8; }
.checkout-switch-name { font-weight: 700; font-size: 13px; }
.checkout-switch-price { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; }

.checkout-totals { padding: 16px 0; border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1); display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.checkout-totals-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: rgba(15,12,8,0.7); }
.checkout-totals-grand { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 18px; color: #0f0c08; padding-top: 10px; border-top: 1px dashed rgba(0,0,0,0.12); }
.checkout-grand { font-size: 22px; }
.checkout-delivery-free { display: inline-flex; align-items: center; gap: 6px; color: #0f0c08; font-weight: 600; font-size: 12.5px; }

.checkout-cta { width: 100%; padding: 16px 20px; border-radius: 999px; background: #0f0c08; color: #f5f1e8; border: none; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15.5px; letter-spacing: 0.02em; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s ease, transform 0.15s ease; }
.checkout-cta:hover { background: #d4451c; transform: translateY(-1px); }
.checkout-cta:active { transform: translateY(0); }
.checkout-terms { margin: 12px 0 0; font-size: 11.5px; color: rgba(15,12,8,0.55); line-height: 1.5; text-align: center; }

/* ── Card checkout extras ─────────────────────────── */
.checkout-card-brands { display: flex; gap: 8px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.card-brand { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.08em; background: #fff; color: #1a1a1a; border: 1px solid rgba(0,0,0,0.08); }
.card-brand-mc { background: #1a1a1a; color: #fff; gap: 0; padding: 4px 10px; }
.mc-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.mc-r { background: #eb001b; margin-right: -5px; }
.mc-y { background: #f79e1b; mix-blend-mode: screen; }
.card-brand-bank { background: #f5f5f0; }

.checkout-card-num-wrap { position: relative; }
.checkout-card-num { letter-spacing: 0.08em; font-family: 'JetBrains Mono', ui-monospace, monospace; }
.checkout-card-brand-mark { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: inline-flex; align-items: center; gap: 0; padding: 4px 9px; border-radius: 5px; background: #1a1a1a; color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 10px; letter-spacing: 0.08em; pointer-events: none; }
.checkout-card-brand-mark.is-visa { background: #1434cb; }
[dir="rtl"] .checkout-card-brand-mark { right: auto; left: 12px; }

.checkout-cta-card { background: #1a1a1a; }
.checkout-cta-card:hover { background: #000; }

.checkout-sub { font-size: 14px; color: #6b6157; max-width: 540px; margin: 10px 0 0; line-height: 1.55; }

.checkout-totals-equiv { font-size: 11px; color: #8a7e6f; text-align: right; margin-top: 4px; font-style: italic; }
[dir="rtl"] .checkout-totals-equiv { text-align: left; }

.bank-card { background: linear-gradient(180deg, #f8f5f0 0%, #f1ece4 100%); border: 1px solid rgba(15, 12, 8, 0.08); border-radius: 14px; padding: 6px 0; position: relative; overflow: hidden; }
.bank-card-stripe { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #d4a574 0%, #e8c89c 50%, #d4a574 100%); }
.bank-row { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid rgba(15, 12, 8, 0.06); }
.bank-row:last-child { border-bottom: 0; }
.bank-row-label { flex: 0 0 130px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #8a7e6f; }
.bank-row-main { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-width: 0; }
.bank-row-value { font-size: 15px; font-weight: 600; color: #0f0c08; word-break: break-all; line-height: 1.4; }
.bank-row-value.is-mono { font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace; font-size: 13.5px; letter-spacing: 0.01em; }
.bank-row.is-highlight { background: rgba(212, 165, 116, 0.07); }
.bank-row.is-highlight .bank-row-value { color: #0f0c08; }
.bank-copy { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; background: #fff; border: 1px solid rgba(15, 12, 8, 0.12); border-radius: 7px; font-size: 12px; font-weight: 600; color: #0f0c08; cursor: pointer; transition: all 0.15s; flex-shrink: 0; font-family: inherit; }
.bank-copy:hover { background: #0f0c08; color: #fff; border-color: #0f0c08; }
.bank-copy.is-copied { background: #16a34a; color: #fff; border-color: #16a34a; }
.bank-copy.is-copied:hover { background: #16a34a; }

.bank-steps { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.bank-step { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #3a342d; line-height: 1.5; }
.bank-step-num { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: #0f0c08; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 1px; }
.bank-step-text { flex: 1; }

@media (max-width: 640px) {
  .bank-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 14px; }
  .bank-row-label { flex: none; }
  .bank-row-main { width: 100%; }
}
.checkout-select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5l5 5 5-5' stroke='%230f0c08' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; }
[dir="rtl"] .checkout-select { padding-right: 16px; padding-left: 38px; background-position: left 14px center; }

/* ── After-pay note ───────────────────────────────── */
.order-after-pay { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 14px; background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.2); margin-top: 4px; }
.order-after-pay-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(74,222,128,0.15); display: flex; align-items: center; justify-content: center; color: #4ade80; flex-shrink: 0; }
.order-after-pay-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 13.5px; color: #F5F0E6; margin-bottom: 4px; }
.order-after-pay-body { font-size: 12.5px; line-height: 1.55; color: rgba(245,240,230,0.72); margin: 0; text-wrap: pretty; }

/* ── WhatsApp floating button ─────────────────────── */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 32px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.3); text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 40px rgba(37,211,102,0.55), 0 6px 16px rgba(0,0,0,0.35); }
.wa-fab:active { transform: scale(1.02); }
.wa-fab-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25D366; opacity: 0.7; animation: wa-pulse 2.2s ease-out infinite; pointer-events: none; }
@keyframes wa-pulse { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }
.wa-fab-tip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px); padding: 8px 14px; border-radius: 999px; background: #0a0908; color: #F5F0E6; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.wa-fab-tip::after { content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 8px; height: 8px; background: #0a0908; }
.wa-fab:hover .wa-fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
[dir="rtl"] .wa-fab { right: auto; left: 28px; }
[dir="rtl"] .wa-fab-tip { right: auto; left: calc(100% + 14px); transform: translateY(-50%) translateX(-8px); }
[dir="rtl"] .wa-fab-tip::after { right: auto; left: -4px; }
[dir="rtl"] .wa-fab:hover .wa-fab-tip { transform: translateY(-50%) translateX(0); }
@media (max-width: 560px) { .wa-fab { width: 54px; height: 54px; bottom: 20px; right: 20px; } [dir="rtl"] .wa-fab { left: 20px; } .wa-fab-tip { display: none; } }

@media (max-width: 820px) {
  .checkout-modal { border-radius: 18px; }
  .checkout-head { padding: 28px 24px 20px; }
  .checkout-body { grid-template-columns: 1fr; }
  .checkout-form, .checkout-summary { padding: 24px; }
  .checkout-form { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  [dir="rtl"] .checkout-form { border-left: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .checkout-row { grid-template-columns: 1fr; gap: 0; }
  .checkout-overlay { padding: 20px 12px; }
}
.lang-sections { padding: 100px 0; }
.lang-strip { margin-bottom: 80px; }
.lang-strip-head { display: flex; justify-content: center; margin-bottom: 40px; }
.lang-strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1100px; margin: 0 auto; }
.phone-tile { aspect-ratio: 9/16; }
.phone-tile--landscape { aspect-ratio: 16/9; }
.lang-strip-grid--landscape { grid-template-columns: repeat(2, 1fr); max-width: 900px; gap: 24px; }
@media (max-width: 900px) { .lang-strip-grid--landscape { grid-template-columns: repeat(1, 1fr); max-width: 520px; } }
.phone-tile-inner { position: relative; width: 100%; height: 100%; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5); }
.phone-tile-inner:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.3); box-shadow: 0 20px 50px -12px rgba(0,0,0,0.6); }
.phone-tile-inner svg { width: 100%; height: 100%; display: block; transition: transform 0.5s ease; }
.phone-tile-inner:hover svg { transform: scale(1.04); }
.phone-tile-video .phone-tile-inner:hover svg { transform: none; }
.phone-tile-video .phone-tile-inner { background: #000; display: flex; align-items: center; justify-content: center; }
.phone-tile-video .phone-tile-inner iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 200% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) !important;
  border: 0 !important;
}
.phone-tile-tag-floating { position: absolute; top: 10px; left: 10px; z-index: 3; pointer-events: none; }
.phone-tile-hover { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,14,22,0.8)); padding: 12px; display: flex; flex-direction: column; justify-content: space-between; opacity: 0; transition: opacity 0.3s; }
.phone-tile-inner:hover .phone-tile-hover { opacity: 1; }
.phone-tile-tags { display: flex; gap: 5px; }
.pt-tag { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 9px; padding: 4px 8px; border-radius: 100px; background: rgba(255,255,255,0.18); backdrop-filter: blur(12px); color: #F5F0E6; letter-spacing: 0.04em; text-transform: uppercase; }
.phone-tile-play { align-self: flex-end; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #0A0908; display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .lang-strip-grid { grid-template-columns: repeat(3, 1fr); } .lang-strip-grid > :nth-child(n+4) { display: none; } }
@media (max-width: 520px) { .lang-strip-grid { grid-template-columns: repeat(2, 1fr); max-width: 400px; } .lang-strip-grid > :nth-child(n+3) { display: none; } }

/* ── Testimonial ──────────────────────────────────── */
.testimonial { padding: 80px 0; }
.t-card { max-width: 880px; margin: 0 auto; padding: 48px; border-radius: 24px; position: relative; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(16px); }
.t-quote-mark { position: absolute; top: 16px; left: 32px; font-family: 'Archivo', sans-serif; font-size: 120px; line-height: 0.6; color: var(--accent); opacity: 0.4; font-weight: 900; }
[dir="rtl"] .t-quote-mark { left: auto; right: 32px; }
.t-quote { font-family: 'Archivo', sans-serif; font-size: clamp(18px, 1.9vw, 24px); line-height: 1.5; font-weight: 500; color: #F5F0E6; max-width: 60ch; margin-bottom: 32px; text-wrap: pretty; position: relative; }
[lang="ar"] .t-quote { font-family: 'IBM Plex Sans Arabic', sans-serif; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), oklch(0.45 0.1 60)); flex-shrink: 0; }
.t-name { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 800; }
.t-role { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(245,240,230,0.6); letter-spacing: 0.04em; margin-top: 2px; text-transform: uppercase; }
.t-rating { margin-left: auto; color: var(--accent); letter-spacing: 0.1em; font-size: 14px; }
[dir="rtl"] .t-rating { margin-left: 0; margin-right: auto; }

/* ── Pricing ──────────────────────────────────────── */
.pricing { padding: 100px 0; }
.pricing .section-head, .pricing .section-head-center { }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.price-card { position: relative; padding: 32px 28px 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 20px; transition: all 0.3s; }
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
.price-card.is-featured { background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 12%, transparent), rgba(255,255,255,0.04)); border-color: color-mix(in oklab, var(--accent) 60%, transparent); box-shadow: 0 30px 80px -30px color-mix(in oklab, var(--accent) 50%, transparent); }
.price-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: 100px; background: var(--accent); color: #0A0908; font-family: 'Archivo', sans-serif; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 800; }
.price-head { display: flex; justify-content: space-between; align-items: baseline; }
.price-name { font-family: 'Archivo', sans-serif; font-size: 22px; font-weight: 900; letter-spacing: -0.01em; }
[lang="ar"] .price-name { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.price-tag { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(245,240,230,0.55); letter-spacing: 0.06em; text-transform: uppercase; }
.price-num { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.price-amt { font-family: 'Archivo', sans-serif; font-size: 52px; letter-spacing: -0.03em; line-height: 1; font-weight: 900; }
.price-desc { font-size: 14px; line-height: 1.55; color: rgba(245,240,230,0.7); margin: 16px 0 0; text-wrap: pretty; }
.price-meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.price-meta-item { display: inline-flex; align-items: center; gap: 7px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; color: #F5F0E6; }
.price-meta-item svg { color: var(--accent); flex-shrink: 0; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-list li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.5; color: rgba(245,240,230,0.75); }
.price-list .check { color: var(--accent); flex-shrink: 0; font-weight: 700; }
.price-card .btn { margin-top: auto; }
.price-foot { margin-top: 32px; text-align: center; color: rgba(245,240,230,0.55); font-size: 13px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ── FAQ ──────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-left { text-align: center; margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); overflow: hidden; transition: all 0.3s; }
.faq-item.is-open { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.faq-q { appearance: none; border: 0; background: transparent; width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #F5F0E6; text-align: inherit; cursor: pointer; font-family: 'Archivo', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.3; }
[lang="ar"] .faq-q { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.faq-plus { font-family: 'Archivo', sans-serif; font-size: 22px; color: var(--accent); font-weight: 300; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; color: rgba(245,240,230,0.7); font-size: 14.5px; line-height: 1.6; padding: 0 24px; }
.faq-item.is-open .faq-a { padding: 0 24px 20px; }

/* ── Contact (bold) ───────────────────────────────── */
.contact-bold { padding: 100px 0; }
.contact-bold-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-bold-title { font-family: 'Archivo', sans-serif; font-size: clamp(64px, 9vw, 140px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.9; color: #F5F0E6; margin-bottom: 32px; }
[lang="ar"] .contact-bold-title { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.contact-bold-card { padding: 28px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(16px); display: flex; flex-direction: column; gap: 4px; }
.cb-row { display: flex; align-items: center; gap: 18px; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; color: #F5F0E6; font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.cb-row:last-child { border-bottom: 0; }
.cb-row:hover { color: var(--accent); }
.cb-ic { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(245,240,230,0.7); flex-shrink: 0; }
.contact-bold-right { }
.contact-bold-portrait { position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6); }
.contact-bold-portrait svg:first-child { width: 100%; height: 100%; }
.contact-bold-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-bold-wave { position: absolute; left: 0; right: 0; bottom: -20px; }
.contact-bold-wave svg { width: 100%; height: 100px; filter: blur(2px); }
@media (max-width: 900px) { .contact-bold-grid { grid-template-columns: 1fr; } .contact-bold-portrait { max-width: 480px; margin: 0 auto; } }

/* ── Social proof image override ─────────────────── */
.feedback-proof-image {
  display: block !important;
  padding: 12px !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.feedback-proof-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

/* ── Hero video thumbnail (custom poster) ─────────── */
.hero-bold-thumb-btn {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  background: #000;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.hero-bold-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.hero-bold-thumb-btn:hover .hero-bold-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.85);
}
.hero-bold-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0A0908;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-bold-thumb-play svg {
  margin-left: 4px;
}
.hero-bold-thumb-btn:hover .hero-bold-thumb-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
}
@media (max-width: 600px) {
  .hero-bold-thumb-play { width: 64px; height: 64px; }
  .hero-bold-thumb-play svg { width: 24px; height: 24px; }
}

/* ── Booking calendar ─────────────────────────────── */
.booking-section { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 50%, transparent); }
.booking-head { text-align: center; margin-bottom: 48px; }
.booking-sub { margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 16px; color: rgba(245,240,230,0.65); max-width: 480px; margin-left: auto; margin-right: auto; }
.booking-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: stretch; max-width: 1100px; margin: 0 auto; }
.booking-cal, .booking-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 28px; backdrop-filter: blur(16px); }
.booking-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.booking-cal-title { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; color: #F5F0E6; letter-spacing: -0.01em; margin: 0; }
[lang="ar"] .booking-cal-title { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.booking-nav { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #F5F0E6; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.booking-nav:hover { background: var(--accent); border-color: var(--accent); color: #0A0908; }
.booking-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.booking-cal-dayname { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; color: rgba(245,240,230,0.4); text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 0; }
.booking-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.booking-cal-cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 600; color: #F5F0E6; background: rgba(255,255,255,0.03); border: 1px solid transparent; border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.booking-cal-cell:not(.empty):not(.blocked):not(.selected):hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.booking-cal-cell.empty { background: transparent; cursor: default; pointer-events: none; }
.booking-cal-cell.blocked { color: rgba(245,240,230,0.2); background: transparent; cursor: not-allowed; text-decoration: line-through; }
.booking-cal-cell.selected { background: var(--accent); color: #0A0908; border-color: var(--accent); font-weight: 800; transform: scale(1.05); box-shadow: 0 8px 20px -8px var(--accent); }
.booking-cal-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(245,240,230,0.6); }
.booking-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-avail { background: rgba(255,255,255,0.2); }
.legend-blocked { background: rgba(255,255,255,0.05); border: 1px dashed rgba(245,240,230,0.3); }
.legend-selected { background: var(--accent); }

.booking-form { display: flex; flex-direction: column; gap: 20px; }
.booking-form-section { display: flex; flex-direction: column; gap: 8px; }
.booking-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: rgba(245,240,230,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.booking-times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.booking-time { padding: 10px 4px; font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; color: #F5F0E6; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.booking-time:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.booking-time.selected { background: var(--accent); color: #0A0908; border-color: var(--accent); font-weight: 700; }
.booking-time:disabled { opacity: 0.3; cursor: not-allowed; }
.booking-hint { font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(245,240,230,0.4); margin: 0; font-style: italic; }
.booking-input { padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 14px; color: #F5F0E6; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; outline: none; transition: border-color 0.15s; }
.booking-input::placeholder { color: rgba(245,240,230,0.35); }
.booking-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.06); }
.booking-summary { padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.15); border-radius: 10px; }
.booking-summary-line { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Archivo', sans-serif; font-size: 14px; color: #F5F0E6; }
.booking-summary-line span:first-child { color: rgba(245,240,230,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.booking-summary-line strong { color: var(--accent); font-weight: 800; }
.booking-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.booking-btn { padding: 14px 20px; font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 12px; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.booking-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.booking-btn-primary { background: var(--accent); color: #0A0908; }
.booking-btn-primary:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--accent); }
.booking-btn-secondary { background: transparent; color: #F5F0E6; border-color: rgba(255,255,255,0.2); }
.booking-btn-secondary:hover:not(:disabled) { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .booking-grid { grid-template-columns: 1fr; } .booking-times { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px) { .booking-times { grid-template-columns: repeat(3, 1fr); } .booking-cal, .booking-form { padding: 20px; } }

/* ── Footer ───────────────────────────────────────── */
.foot { padding: 80px 0 40px; }
.foot-big { font-family: 'Archivo', sans-serif; font-size: clamp(40px, 7vw, 100px); line-height: 1; letter-spacing: -0.04em; font-weight: 900; display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
[lang="ar"] .foot-big { font-family: 'IBM Plex Sans Arabic', sans-serif; }
.foot-eye { color: var(--accent); font-size: 0.4em; }
.foot-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(245,240,230,0.55); letter-spacing: 0.04em; }
