﻿/* ══════════════════════════════════════════════════════
   idiibi — Main Stylesheet v5
   Design: Dark theme · Green accent · Cairo + Space Grotesk
   ══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --bg:          #0f1010;
  --bg-alt:      #161717;
  --bg-card:     #1a1c1c;
  --bg-card2:    #1f2121;
  --green:       #2aff82;
  --green-dark:  #1fd96e;
  --green-glow:  rgba(42, 255, 130, 0.18);
  --green-dim:   rgba(42, 255, 130, 0.10);
  --green-line:  rgba(42, 255, 130, 0.20);
  --text:        #f0f0f0;
  --muted:       #9ca3af;
  --subtle:      #6b7280;
  --border:      rgba(255, 255, 255, 0.07);
  --border-g:    rgba(42, 255, 130, 0.15);
  --radius:      14px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --shadow:      0 4px 20px rgba(0,0,0,0.35);
  --shadow-g:    0 8px 40px rgba(42, 255, 130, 0.12);
  --transition:  0.2s ease;
  --font-body:   'Cairo', system-ui, sans-serif;
  --font-mono:   'Space Grotesk', 'Cairo', monospace;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* PWA safe-area */
@media (display-mode: standalone) {
  body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-line); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
::selection { background: rgba(42, 255, 130, 0.25); color: #fff; }

/* ─── Focus ─── */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ─── Container ─── */
.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ─── Scroll Progress ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─── Offline Bar ─── */
#offline-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9998;
  background: #dc2626;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#offline-bar.show { transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(42,255,130,0);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(42,255,130,0.18);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(42,255,130,0.12);
  color: var(--green);
  border: 1px solid rgba(42,255,130,0.25);
}
.btn-secondary:hover {
  background: rgba(42,255,130,0.20);
  border-color: rgba(42,255,130,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--green-line);
  color: var(--green);
  background: var(--green-dim);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.w-full { width: 100%; margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 16, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  border-bottom-color: var(--border-g);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { border-radius: 8px; }
.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-copy strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
}
.logo-copy small {
  font-size: 10px;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-weight: 500;
}
#nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}
.s-alt {
  background: var(--bg-alt);
  padding: 96px 0;
}
.s-cta {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(42,255,130,0.06) 0%, transparent 70%), var(--bg);
  padding: 96px 0;
}
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; max-width: 700px; margin-inline: auto; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 10px 0 14px;
}
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 4px;
}
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.s-hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  min-height: calc(100dvh - 64px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-bg .g1 {
  width: 600px; height: 600px;
  background: rgba(42,255,130,0.08);
  top: -100px; right: -100px;
}
.hero-bg .g2 {
  width: 400px; height: 400px;
  background: rgba(42,255,130,0.05);
  bottom: 0; left: 20%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,255,130,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,255,130,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 0%, transparent 70%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #fff;
  margin: 12px 0 20px;
}
.accent-text { color: var(--green); display: block; }
.hero-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-chips span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-item span { font-size: 12px; color: var(--subtle); font-weight: 500; margin-top: 3px; display: block; }
.stat-sep { width: 1px; height: 40px; background: var(--border); }
.hero-partners {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--muted);
}
.hero-partners b { color: var(--text); font-weight: 700; }
.hero-partners em { color: var(--green); font-style: normal; font-weight: 700; }

/* ─── Dashboard Visual ─── */
.hero-visual { direction: ltr; }
.dash-shell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--green-dim);
  animation: floatShell 6s ease-in-out infinite;
}
@keyframes floatShell {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.dash-dots i:nth-child(1) { background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #ffbd2e; }
.dash-dots i:nth-child(3) { background: #28ca41; }
.dash-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.dash-live {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
}
.dash-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.dash-main-panel {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.dash-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.dash-main-panel h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dash-desc { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.funnel-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.funnel-step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-g);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.funnel-step span {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.funnel-step small { font-size: 10px; color: var(--muted); display: block; margin-top: 2px; }
.funnel-arrow { color: var(--subtle); font-size: 14px; }
.dash-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mini-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  transition: border-color var(--transition);
}
.mini-card:hover { border-color: var(--border-g); }
.mini-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--green-dim);
  padding: 2px 6px;
  border-radius: 100px;
  margin-bottom: 5px;
}
.mini-card p { font-size: 11px; color: var(--muted); line-height: 1.3; }

/* ══════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-track b { color: var(--green); font-size: 10px; font-weight: 400; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ENTERPRISE / SPLIT LAYOUT
══════════════════════════════════════════════════════ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.split-copy .section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.value-stack { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.value-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.value-row:last-child { border-bottom: none; }
.v-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-row h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.value-row p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Package Card */
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-g);
  position: sticky;
  top: 84px;
}
.pkg-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.pkg-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pkg-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
}
.curr { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--green); }
.pkg-price strong { font-family: var(--font-mono); font-size: 36px; font-weight: 800; color: var(--green); }
.per { font-size: 13px; color: var(--muted); margin-right: auto; }
.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.pkg-list li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--green-dim);
  border: 1.5px solid var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%232aff82' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.pkg-actions { display: flex; gap: 8px; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-card:hover {
  border-color: var(--border-g);
  background: var(--bg-card2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-g);
}
.svc-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.svc-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-card > p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.svc-card ul { display: flex; flex-direction: column; gap: 5px; margin-top: auto; }
.svc-card ul li {
  font-size: 12px;
  color: var(--subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   STEPS (HOW IT WORKS)
══════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { border-color: var(--border-g); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.25;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.step-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.25s ease;
}
.client-card:hover {
  border-color: var(--border-g);
  background: var(--bg-card2);
  transform: translateY(-2px);
}
.client-card strong { font-size: 15px; font-weight: 700; color: #fff; }
.client-card span { font-family: var(--font-mono); font-size: 11px; color: var(--subtle); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--green); }
.faq-answer {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ══════════════════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════════════════ */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.25s ease;
  cursor: pointer;
}
.cta-card:hover {
  border-color: var(--border-g);
  background: var(--bg-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-g);
}
.cta-card.cta-featured {
  border-color: var(--green-line);
  background: linear-gradient(135deg, var(--bg-card2), rgba(42,255,130,0.04));
}
.cta-card.cta-featured:hover { box-shadow: 0 12px 40px rgba(42,255,130,0.15); }
.cta-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.cta-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-card p { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.cta-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  transition: transform var(--transition);
  display: inline-block;
}
.cta-card:hover .cta-link { transform: translateX(-4px); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}
.footer-brand img { border-radius: 8px; flex-shrink: 0; }
.footer-brand strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.footer-brand small { font-size: 11px; color: var(--subtle); line-height: 1.3; max-width: 260px; display: block; }
.footer-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--text); }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-meta a { font-size: 13px; color: var(--muted); transition: color var(--transition); }
.footer-meta a:hover { color: var(--green); }
.footer-meta span { font-size: 12px; color: var(--subtle); }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.08s; }
.reveal:nth-child(6) { transition-delay: 0.16s; }
.reveal:nth-child(7) { transition-delay: 0.24s; }
.reveal:nth-child(8) { transition-delay: 0.08s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1100px
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .split-layout { grid-template-columns: 1fr; }
  .pkg-card { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Remove backdrop-filter so it doesn't create a containing block
     that traps the position:fixed nav menu inside the 64px header */
  #site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 16, 16, 0.97);
  }
  .hamburger { display: flex; }
  #nav-menu {
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(15, 16, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 20px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 200;
    overflow-y: auto;
  }
  #nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 17px; padding: 12px 16px; width: 100%; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-outline { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .hero-copy h1 { font-size: 2rem; }
  .section, .s-alt, .s-contact { padding: 64px 0; }
  .section-head h2 { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-stats { gap: 14px; }
  .stat-item strong { font-size: 20px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .clients-grid { grid-template-columns: 1fr; }
  .pkg-actions { flex-direction: column; }
  .nav-actions .btn-sm { display: none; }
  .logo-copy small { display: none; }
  .split-layout { gap: 32px; }
}

/* ──── Reduced Motion ──── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash-shell { animation: none; }
  .ticker-track { animation: none; }
}

/* ──── Print ──── */
@media print {
  #site-header, .ticker, #scroll-progress, #offline-bar, .hamburger, .nav-actions { display: none !important; }
  body { color: #000; background: #fff; }
  .s-alt, .s-contact, .s-hero { background: #fff; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 11px; color: #666; }
}
/* ══════════════════════════════════════════════════════
   LANG TOGGLE BUTTON
══════════════════════════════════════════════════════ */
.lang-btn {
  min-width: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-g);
  color: var(--green);
  background: var(--green-dim);
  transition: all var(--transition);
}
.lang-btn:hover {
  background: rgba(42,255,130,0.15);
  border-color: var(--green);
}

/* ══════════════════════════════════════════════════════
   LTR OVERRIDES (html[dir="ltr"])
══════════════════════════════════════════════════════ */
html[dir="ltr"] body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
html[dir="ltr"] .nav-actions {
  margin-right: 0;
  margin-left: auto;
}
html[dir="ltr"] .logo-copy small {
  letter-spacing: -0.3px;
}
html[dir="ltr"] .hero-chips { justify-content: flex-start; }
html[dir="ltr"] .hero-stats { direction: ltr; }
html[dir="ltr"] .hero-partners { direction: ltr; }
html[dir="ltr"] .footer-inner { direction: ltr; }

/* ══════════════════════════════════════════════════════
   S-CONTACT SECTION
══════════════════════════════════════════════════════ */
.s-contact { background: var(--bg); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(130deg, var(--bg-card2) 0%, rgba(42,255,130,0.06) 100%);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-g);
}
.cta-banner-body { flex: 1; }
.cta-banner-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cta-banner h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cta-banner-p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cta-banner-actions .btn {
  white-space: nowrap;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── Contact Cards 3-COL ── */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.cc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.cc:hover {
  border-color: var(--border-g);
  background: var(--bg-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-g);
}
.cc-featured {
  border-color: var(--green-line);
  background: linear-gradient(155deg, var(--bg-card2) 0%, rgba(42,255,130,0.05) 100%);
}
.cc-featured:hover { box-shadow: 0 16px 48px rgba(42,255,130,0.15); }

/* Icon */
.cc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  display: grid;
  place-items: center;
  color: var(--green);
  margin-bottom: 16px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-mono);
}
.cc-icon svg { stroke: var(--green); }

/* Tag */
.cc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.cc h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.cc > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

/* Address row */
.cc-addr {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--subtle);
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 8px;
}
.cc-addr svg { stroke: var(--subtle); flex-shrink: 0; }

/* Note below button */
.cc-note {
  font-size: 12px;
  color: var(--subtle);
  text-align: center;
  margin-top: 8px;
}

/* Feature chips (featured card) */
.cc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.cc-chips span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-line);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.4px;
}

/* Featured pill badge (top) */
.cc-featured-pill {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--bg);
  background: var(--green);
  padding: 3px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

/* Offset content below pill */
.cc.cc-featured {
  padding-top: 44px;
}

/* LTR: pill stays centered */
html[dir="ltr"] .cc-featured-pill {
  left: 50%;
  transform: translateX(-50%);
}

/* ── Trust Bar ── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.trust-icon { font-size: 16px; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   PWA INSTALL BANNER
══════════════════════════════════════════════════════ */
.pwa-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--bg-card2);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(42,255,130,0.1);
  min-width: 360px;
  max-width: 520px;
  width: calc(100vw - 40px);
  animation: slideUp 0.35s ease;
}
.pwa-banner[hidden] { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.pwa-banner-content img { border-radius: 8px; flex-shrink: 0; }
.pwa-banner-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.pwa-banner-content span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.pwa-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS — 1100px
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .cc.cc-about { grid-column: 1 / -1; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: row; width: 100%; }
  .cta-banner-actions .btn { min-width: 0; flex: 1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS — 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* LTR mobile nav: slide from left */
  html[dir="ltr"] #nav-menu {
    transform: translateX(-100%);
  }
  html[dir="ltr"] #nav-menu.open {
    transform: translateX(0);
  }
  html[dir="ltr"] .nav-actions {
    margin-left: auto;
    margin-right: 0;
  }
  /* Contact cards: single column */
  .contact-cards { grid-template-columns: 1fr; }
  .cc.cc-about { grid-column: auto; }
  .trust-bar { padding: 14px 16px; gap: 0; }
  .trust-item { padding: 6px 12px; font-size: 12px; }
  .trust-sep { display: none; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { min-width: 0; width: 100%; }
  /* lang button stays visible on mobile */
  .nav-actions .lang-btn { display: flex; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS — 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .pwa-banner { min-width: 0; flex-direction: column; align-items: flex-start; }
  .pwa-banner-actions { width: 100%; }
  .pwa-banner-actions .btn { flex: 1; }
  .cta-banner { padding: 24px 20px; }
  .cta-banner h3 { font-size: 18px; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .trust-sep { display: none; }
}
/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* Bio */
.about-bio { display: flex; flex-direction: column; gap: 0; }
.about-bio-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-bio-text:last-of-type { margin-bottom: 32px; }

/* Values row */
.about-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.av-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 80px;
  text-align: center;
}
.av-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.av-item span:last-child { font-size: 11px; color: var(--subtle); font-weight: 500; }
.av-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Founder Card */
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-g);
  position: sticky;
  top: 84px;
}
.founder-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0b0b;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.founder-card:hover .founder-photo { transform: scale(1.03); }
.founder-photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,28,28,0.97) 100%);
  pointer-events: none;
}

/* Founder Info */
.founder-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.founder-role-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.founder-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.founder-quote {
  border-right: 3px solid var(--green);
  padding-right: 14px;
  margin-bottom: 18px;
  position: relative;
}
html[dir="ltr"] .founder-quote {
  border-right: none;
  border-left: 3px solid var(--green);
  padding-right: 0;
  padding-left: 14px;
}
.fq-mark {
  font-size: 32px;
  color: var(--green);
  opacity: 0.35;
  line-height: 1;
  display: block;
  margin-bottom: -4px;
}
.founder-quote p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

/* Contact row */
.founder-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.fc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.fc-item svg { stroke: var(--subtle); flex-shrink: 0; }
.fc-item:hover { border-color: var(--green-line); color: var(--text); }
.fc-item:hover svg { stroke: var(--green); }

/* Social links */
.founder-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.social-fb { color: #a0b3d6; }
.social-fb:hover { background: rgba(24,119,242,0.12); border-color: rgba(24,119,242,0.3); color: #6899e4; }
.social-ig { color: #d4a0c8; }
.social-ig:hover { background: rgba(193,53,132,0.12); border-color: rgba(193,53,132,0.3); color: #e06fc0; }
.social-x { color: var(--muted); }
.social-x:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: var(--text); }
.x-icon { font-size: 14px; line-height: 1; }

/* ══════════════════════════════════════════════════════
   MOBILE FIXES — 1100px
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-layout { grid-template-columns: 1fr; }
  .founder-card { position: static; max-width: 400px; margin: 0 auto; }
  .founder-photo-wrap { aspect-ratio: 4 / 3; }
}

/* ══════════════════════════════════════════════════════
   MOBILE FIXES — 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero: reduce min-height on mobile */
  .s-hero { min-height: auto; padding: 72px 0 48px; }
  /* Tighter hero text */
  .hero-lead { font-size: 15px; }
  .hero-chips { gap: 6px; }
  .hero-chips span { font-size: 10px; padding: 4px 10px; }
  /* Hero stats: one row centered */
  .hero-stats { justify-content: center; }
  /* Section head: full width */
  .section-head.center { max-width: 100%; }
  /* Founder card full width */
  .founder-card { max-width: 100%; }
  /* Social links: wrap nicely */
  .founder-social { gap: 6px; }
  .social-link { font-size: 11px; padding: 7px 10px; }
  /* About values */
  .about-values { padding: 16px 12px; }
  .av-num { font-size: 22px; }
  /* Nav: lang-btn always visible */
  .nav-actions .lang-btn { display: flex !important; }
}

/* ══════════════════════════════════════════════════════
   MOBILE FIXES — 480px
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .s-hero { padding: 60px 0 40px; }
  .hero-copy h1 { font-size: 1.75rem; letter-spacing: -0.5px; }
  .hero-Lead { font-size: 14px; }
  .hero-partners { flex-wrap: wrap; font-size: 12px; }
  /* About values: 2x2 grid */
  .about-values { flex-wrap: wrap; justify-content: center; }
  .av-item { min-width: 40%; }
  .av-sep { display: none; }
  /* Founder contact: smaller */
  .fc-item { font-size: 12px; }
  /* FAQ layout */
  .faq-layout { padding: 0; }
  /* Footer */
  .footer-nav { gap: 2px; }
}
/* ══════════════════════════════════════════════════════
   FOUNDER HERO — about.html
══════════════════════════════════════════════════════ */
.s-founder-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: calc(100dvh - 64px);
  display: flex;
  align-items: center;
}
.fh-bg { position: absolute; inset: 0; pointer-events: none; }
.fh-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
/* RTL: col1(420px) sits on the RIGHT → photo-right, copy-left ✓
   LTR: col1(420px) sits on the LEFT → photo-left, copy-right ✓  */
.fh-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-g);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(42,255,130,0.1);
  aspect-ratio: 3 / 4;
  max-height: 580px;
}
.fh-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.fh-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,16,16,0.6) 100%);
  pointer-events: none;
}
.fh-copy { display: flex; flex-direction: column; gap: 0; }
.fh-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 8px 0 20px;
  line-height: 1.15;
}
.fh-quote {
  background: rgba(42,255,130,0.04);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: 20px 24px 20px 20px;
  margin-bottom: 24px;
}
html[dir="ltr"] .fh-quote { padding: 20px 20px 20px 24px; }
.fh-quote .fq-mark {
  font-size: 36px; color: var(--green); opacity: 0.4;
  line-height: 1; display: block; margin-bottom: 4px;
}
.fh-quote p { font-size: 16px; color: var(--text); line-height: 1.75; font-style: italic; }
.fh-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fh-social { display: flex; gap: 8px; margin-bottom: 28px; }
.fh-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* About page body + CTA */
.ab-body { display: flex; flex-direction: column; gap: 32px; }
.ab-text { max-width: 720px; margin: 0 auto; text-align: center; }
.ab-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.ab-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #fff;
  margin-bottom: 12px; line-height: 1.3;
}
.ab-cta p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.ab-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .fh-layout { grid-template-columns: 1fr; gap: 40px; }
  .fh-photo-wrap { max-width: 360px; max-height: none; margin: 0 auto; aspect-ratio: 1 / 1; }
  .s-founder-hero { min-height: auto; padding: 72px 0 48px; }
}
@media (max-width: 480px) {
  .fh-photo-wrap { max-width: 260px; }
  .fh-name { font-size: 1.75rem; }
  .fh-quote p { font-size: 14px; }
  .fh-actions { flex-direction: column; }
  .fh-actions .btn { justify-content: center; }
  .ab-cta-actions { flex-direction: column; align-items: center; }
  .ab-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   LEAD CAPTURE FORM
══════════════════════════════════════════════════════ */
.lead-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border-g);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 40px;
}
.lf-head { margin-bottom: 28px; }
.lf-head h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  line-height: 1.4;
}
.lf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.lf-col-full { grid-column: 1 / -1; }
.lf-field { display: flex; flex-direction: column; gap: 6px; }
.lf-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.2px;
}
.lf-req-star { color: var(--green); font-size: 14px; }
.lf-field input,
.lf-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  resize: vertical;
}
.lf-field input:focus,
.lf-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,255,130,0.12);
}
.lf-field input:user-invalid:not(:placeholder-shown),
.lf-field textarea:user-invalid:not(:placeholder-shown) {
  border-color: #ff6060;
  box-shadow: 0 0 0 3px rgba(255,96,96,0.10);
}
.lf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lf-note {
  font-size: 13px;
  color: var(--subtle);
  margin: 0;
}
/* Spinner inside button */
.lf-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: lf-spin 0.65s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes lf-spin { to { transform: rotate(360deg); } }
/* Feedback states */
.lf-feedback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.lf-success {
  color: var(--green);
  background: rgba(42,255,130,0.06);
  border: 1px solid var(--green-line);
}
.lf-error {
  color: #ff8080;
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.2);
}
@media (max-width: 768px) {
  .lead-form-wrap { padding: 28px 20px; }
  .lf-grid { grid-template-columns: 1fr; }
  .lf-col-full { grid-column: 1; }
  .lf-actions { flex-direction: column; align-items: flex-start; }
  .lf-actions .btn { width: 100%; justify-content: center; }
}
