/* ══════════════════════════════════════════════════════════
   FORGESERVE — AppMaisters-Inspired Design System
   style.css v6
══════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --ember:   #FF6B00;
  --ember-d: #cc5200;
  --neon:    #00C2FF;
  --navy:    #0B1F3A;
  --navy-m:  #112547;
  --ink:     #0d0d0d;
  --off:     #F5F5F3;
  --mid:     #6B7280;
  --border:  #E5E7EB;
  --border-d:#1e3358;
  --green:   #10b981;
  --hi:      var(--ember);

  --text-dark:  #111827;
  --text-mid:   #4B5563;
  --text-lt:    #9CA3AF;
  --text-white: #F9FAFB;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── WRAP ───────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.stuck {
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 36px; width: auto; }
.ft-logo { height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language picker */
.lang-picker { position: relative; }
.lang-btn {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  letter-spacing: .04em;
  transition: color .2s, border-color .2s;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.lang-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 160px;
  box-shadow: var(--shadow-md);
  z-index: 300;
}
.lang-drop.open { display: block; }
.lang-drop button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background .15s;
}
.lang-drop button:hover { background: var(--off); }
.lang-drop button.active { color: var(--ember); font-weight: 600; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--ember);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--ember-d); transform: translateY(-1px); }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ══════════════════════════════════════════════════════════
   HERO — Full-bleed screenshot bg
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.55) saturate(.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,31,58,.82) 0%,
    rgba(11,31,58,.65) 45%,
    rgba(11,31,58,.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.35);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #ffa660;
  letter-spacing: .04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.kicker-dot {
  width: 7px; height: 7px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ember);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,0,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.01em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 700px;
}
.heading-accent { color: var(--ember); }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ember);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-md);
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,107,0,.4);
}
.btn-primary:hover {
  background: var(--ember-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,107,0,.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  backdrop-filter: blur(4px);
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.hero-proof strong { color: #fff; }
.proof-faces {
  display: flex;
  align-items: center;
}
.pf {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.pf:first-child { margin-left: 0; }

/* Hero stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(11,31,58,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}
.h-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.h-stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.h-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
}
.h-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   INTEGRATIONS STRIP
══════════════════════════════════════════════════════════ */
.int-strip {
  background: var(--navy-m);
  border-bottom: 1px solid var(--border-d);
  padding: 18px 0;
}
.int-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.int-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.int-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.int-logos span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
  transition: color .2s;
}
.int-logos span:hover { color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════
   SECTION BASES — light & dark
══════════════════════════════════════════════════════════ */
.section-light {
  background: #fff;
  padding: 100px 0;
}
.section-light + .section-light { background: var(--off); }

.section-dark {
  background: var(--navy);
  padding: 100px 0;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.sec-header {
  margin-bottom: 64px;
}
.sec-header.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
  position: relative;
}
.eyebrow::before,
.eyebrow::after {
  content: '—';
  opacity: .5;
  margin: 0 6px;
}
.eyebrow-lt { color: #ffa660; }
.eyebrow-lt::before, .eyebrow-lt::after { color: rgba(255,255,255,.35); }

.sec-h {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-h-lt { color: #fff; }

.sec-p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}
.sec-header.center .sec-p { margin: 0 auto; }
.sec-p-lt { color: rgba(255,255,255,.68); }

/* ══════════════════════════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════════════════════════ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}
.prob-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prob-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.prob-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.prob-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.prob-unify {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pu-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.pu-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   PLATFORM CATEGORY STRIP
══════════════════════════════════════════════════════════ */
.cat-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow-x: auto;
}
.cat-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}
.cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  cursor: default;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.cat-item:hover {
  color: #fff;
  background: rgba(255,107,0,.08);
}
.cat-ico { font-size: 16px; }
.cat-sep {
  width: 1px;
  background: rgba(255,255,255,.08);
  margin: 10px 0;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════════════ */
.feat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}
.feat-block:last-child { margin-bottom: 0; }

.feat-block.feat-reverse .feat-copy { order: 2; }
.feat-block.feat-reverse .feat-vis  { order: 1; }

.feat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0,0,0,.06);
  letter-spacing: -.02em;
  margin-bottom: -12px;
}
.feat-copy h3 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.feat-copy p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.feat-list li::before {
  content: '✓';
  color: var(--ember);
  font-weight: 700;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ember);
  letter-spacing: .03em;
  text-transform: uppercase;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
}
.feat-link:hover {
  border-color: var(--ember);
  gap: 10px;
}

/* Screenshot wrapper */
.ss-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.06);
  background: #eef2f7;
}
.ss-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s var(--ease);
}
.ss-wrap:hover .ss-img { transform: scale(1.02); }

/* ══════════════════════════════════════════════════════════
   DASHBOARD SHOWCASE
══════════════════════════════════════════════════════════ */
.dash-ss-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
  background: var(--navy-m);
}
.dash-ss {
  width: 100%;
  height: auto;
  display: block;
}

.dash-view-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.dv-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dv-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.08);
  transition: border-color .2s, transform .2s;
  display: block;
}
.dv-item:hover .dv-img {
  border-color: var(--ember);
  transform: translateY(-2px);
}
.dv-item span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   CUSTOMER / GUEST EXPERIENCE
══════════════════════════════════════════════════════════ */
.phone-gallery {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.phone-frame {
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.phone-frame.phone-featured {
  flex: 1.3;
  max-width: 240px;
}
.phone-screen {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  border: 3px solid #fff;
  display: block;
  transition: transform .3s var(--ease);
}
.phone-frame:hover .phone-screen { transform: translateY(-6px); }
.phone-frame.phone-featured .phone-screen {
  border-color: var(--ember);
  box-shadow: 0 24px 80px rgba(255,107,0,.25);
}

.phone-caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
}
.phone-frame.phone-featured .phone-caption { color: var(--ember); }

.cust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.cust-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .02em;
  transition: background .2s, border-color .2s;
}
.cust-pill:hover {
  background: rgba(255,107,0,.06);
  border-color: rgba(255,107,0,.3);
  color: var(--ember);
}

/* ══════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════ */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-d);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  transition: box-shadow .25s;
}
.plan-featured {
  background: #fff;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255,107,0,.15), 0 20px 60px rgba(255,107,0,.2);
}

.plan-badge {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.plan-badge-zerofee { background: #e53e3e; }
.plan-badge-enterprise { background: #3b82f6; }

.plan-fee-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.fee-pct { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.plan-featured .fee-pct { background: rgba(0,0,0,.07); color: var(--text-mid); }
.fee-zero { background: rgba(16,185,129,.18); color: #34d399; }

.plan-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin-bottom: 20px;
}
.plan-featured .plan-desc { color: var(--text-mid); }

.plan-callout {
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.25);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #ffa660;
  margin-bottom: 12px;
  line-height: 1.45;
}
.plan-callout-green {
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.25);
  color: #34d399;
}

.plan-upgrade-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.45;
}
.plan-featured .plan-upgrade-note { color: var(--text-lt); }

.plan-btn-inferno {
  background: #e53e3e;
  border-color: #e53e3e;
  color: #fff !important;
}
.plan-btn-inferno:hover { background: #c53030; border-color: #c53030; }

.plan-btn-titan {
  border-color: #3b82f6;
  color: #93c5fd !important;
}
.plan-btn-titan:hover { background: rgba(59,130,246,.12); border-color: #60a5fa; color: #fff !important; }

.plan-titan { border-color: rgba(59,130,246,.3); }
.plan-name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.plan-featured .plan-name { color: var(--text-dark); }
.plan-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-featured .plan-tagline { color: var(--text-mid); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.pp-sym {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  align-self: flex-start;
  margin-top: 8px;
}
.plan-featured .pp-sym { color: var(--text-mid); }
.pp-amt {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  transition: opacity .25s;
}
.plan-featured .pp-amt { color: var(--text-dark); }
.pp-per {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  margin-left: 4px;
}
.plan-featured .pp-per { color: var(--text-mid); }
.pp-custom {
  font-size: 28px !important;
  letter-spacing: -.01em !important;
  color: rgba(255,255,255,.85) !important;
}
.plan-featured .pp-custom { color: var(--text-dark) !important; }

.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}
.plan-featured .plan-feats li { color: var(--text-dark); }
.ck {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.ck.green { color: var(--green); }
.ck.dim { color: rgba(255,255,255,.2); }
.plan-featured .ck.dim { color: var(--border); }

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s, border-color .2s, color .2s;
}
.plan-btn:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.plan-btn-featured {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255,107,0,.35);
}
.plan-btn-featured:hover {
  background: var(--ember-d);
  border-color: var(--ember-d);
  box-shadow: 0 6px 20px rgba(255,107,0,.45);
}

.plan-local-price {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  font-style: italic;
}
.plan-featured .plan-local-price { color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact {
  background: var(--navy-m);
  padding: 100px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cl-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cl-promises {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.clp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.clp-ico {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.clp-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.clp-item p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.fg label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fg input, .fg select {
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.fg input::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus, .fg select:focus {
  border-color: var(--ember);
  background: rgba(255,255,255,.08);
}
.fg select option { background: var(--navy); color: #fff; }

.form-ok {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r-sm);
  color: #34d399;
  font-size: 14px;
  font-weight: 600;
}

.form-err {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--r-sm);
  color: #f87171;
  font-size: 14px;
  font-weight: 600;
}

/* Honeypot — visually removed, still in the DOM for bots */
.fg-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin: 16px 0 20px;
  max-width: 240px;
  line-height: 1.6;
}
.ft-socials {
  display: flex;
  gap: 12px;
}
.ftsoc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.ftsoc:hover { border-color: var(--ember); color: var(--ember); }

.ft-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ftc h5 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ftc a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color .2s;
}
.ftc a:hover { color: #fff; }

.ft-bottom { padding: 20px 0; }
.ft-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Pricing plans — hover lift only (no entrance animation via plan class) */
.plan:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.plan-featured:hover { transform: translateY(-6px); }

/* ══════════════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
══════════════════════════════════════════════════════════ */
html[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .nav-inner { direction: rtl; }
html[dir="rtl"] .hero-content .wrap { direction: rtl; }
html[dir="rtl"] .hero-actions { direction: rtl; }
html[dir="rtl"] .hero-proof { direction: rtl; }
html[dir="rtl"] .proof-faces .pf { margin-right: -8px; margin-left: 0; }
html[dir="rtl"] .proof-faces .pf:first-child { margin-right: 0; }
html[dir="rtl"] .feat-block { direction: rtl; }
html[dir="rtl"] .feat-block .feat-copy { direction: rtl; }
html[dir="rtl"] .feat-block.feat-reverse .feat-copy { order: 1; }
html[dir="rtl"] .feat-block.feat-reverse .feat-vis  { order: 2; }
html[dir="rtl"] .feat-list li { direction: rtl; }
html[dir="rtl"] .feat-list li::before { order: -1; }
html[dir="rtl"] .clp-item { direction: rtl; }
html[dir="rtl"] .ft-bottom-row { direction: rtl; }
html[dir="rtl"] .footer-inner { direction: rtl; }
html[dir="rtl"] .int-inner { direction: rtl; }
html[dir="rtl"] .cat-inner { direction: rtl; }
html[dir="rtl"] .sec-header { direction: rtl; }
html[dir="rtl"] .sec-header.center { text-align: center; }
html[dir="rtl"] .form-row { direction: rtl; }
html[dir="rtl"] .contact-layout { direction: rtl; }
html[dir="rtl"] .contact-form { direction: rtl; }
html[dir="rtl"] .hero-stats-inner { direction: rtl; }
html[dir="rtl"] .lang-drop { right: auto; left: 0; }
html[dir="rtl"] .lang-drop button { text-align: right; }

/* ══════════════════════════════════════════════════════════
   CJK LANGUAGE SCALING (Japanese, Korean)
══════════════════════════════════════════════════════════ */
html.lang-cjk .hero-h1 {
  font-size: clamp(26px, 3.5vw, 48px) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.25 !important;
}
html.lang-cjk .sec-h {
  font-size: clamp(24px, 3vw, 40px) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
html.lang-cjk .feat-copy h3 {
  font-size: clamp(20px, 2.2vw, 30px) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
html.lang-cjk .plan-name { text-transform: none !important; }

/* ══════════════════════════════════════════════════════════
   ARABIC LANGUAGE SCALING
══════════════════════════════════════════════════════════ */
html.lang-ar .hero-h1 {
  font-size: clamp(28px, 4vw, 56px) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
}
html.lang-ar .sec-h {
  font-size: clamp(26px, 3.5vw, 46px) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
html.lang-ar .feat-copy h3 {
  font-size: clamp(20px, 2.5vw, 32px) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
html.lang-ar .plan-name { text-transform: none !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prob-grid { grid-template-columns: repeat(2, 1fr); }

  .feat-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 64px;
  }
  .feat-block.feat-reverse .feat-copy { order: 0; }
  .feat-block.feat-reverse .feat-vis  { order: 0; }
  .feat-num { font-size: 48px; }

  .dash-view-strip { grid-template-columns: repeat(5, 1fr); gap: 8px; }

  .plans {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(11,31,58,.98);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    font-size: 22px;
    text-align: center;
    z-index: 100;
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .nav-cta-btn { display: none; }

  /* Hero */
  .hero-content { padding: 120px 0 48px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Stats bar */
  .hero-stats-inner { flex-wrap: wrap; gap: 24px; padding: 24px; }
  .h-stat { flex: calc(50% - 12px); min-width: 140px; }
  .h-stat-sep { display: none; }

  /* Problem */
  .prob-grid { grid-template-columns: 1fr; }
  .prob-unify { flex-direction: column; gap: 12px; }
  .pu-line { width: 80%; height: 1px; }

  /* Features */
  .feat-block { gap: 32px; margin-bottom: 52px; }

  /* Dashboard */
  .dash-view-strip { grid-template-columns: repeat(3, 1fr); }

  /* Phones */
  .phone-gallery { flex-wrap: wrap; gap: 16px; }
  .phone-frame, .phone-frame.phone-featured {
    max-width: calc(50% - 8px);
    flex: calc(50% - 8px);
  }

  /* Sections */
  .section-light, .section-dark { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .sec-header { margin-bottom: 40px; }

  /* Pricing */
  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .ft-bottom-row { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .sec-p { font-size: 15px; }
  .phone-gallery { flex-direction: column; align-items: center; }
  .phone-frame, .phone-frame.phone-featured { max-width: 220px; flex: auto; }
  .ft-cols { grid-template-columns: 1fr; }
  .dash-view-strip { grid-template-columns: repeat(2, 1fr); }
  .eyebrow::before, .eyebrow::after { display: none; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 6px; }
}
