/* ============================================================
   APP RENT — style.css (Light Mode)
   Design: apprent-site light mode
   Inter font · Blue accent · Clean white
   ============================================================ */

:root {
  --bg:         #ffffff;
  --bg-soft:    #f7f8fb;
  --fg:         #0b1220;
  --muted:      #5b6478;
  --line:       #e7eaf0;
  --primary:    #0f172a;
  --accent:     #2563eb;
  --accent-soft:#eff4ff;
  --ok:         #16a34a;
  --warn:       #f59e0b;
  --gold:       #d4a017;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(15,23,42,.04),0 4px 16px rgba(15,23,42,.04);
  --shadow:     0 8px 30px rgba(15,23,42,.08);
  --shadow-lg:  0 30px 80px -20px rgba(15,23,42,.18);
  --nav-h:      64px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --t:          0.2s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Reveal animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 500;
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 28px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 34px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--fg); background: var(--bg-soft); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  transition: all var(--t);
}
.nav-btn-ghost:hover { border-color: var(--primary); color: var(--fg); }
.nav-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--t);
}
.nav-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  z-index: 499;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
}
.nav-drawer a:hover { color: var(--fg); background: var(--bg-soft); }
.nav-drawer .drawer-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}
.nav-drawer .drawer-ghost {
  border: 1px solid var(--line);
  text-align: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--line); background: #fff; color: var(--fg); }
.btn-outline:hover { border-color: var(--primary); }
.btn-lg { padding: 14px 24px; font-size: 15.5px; border-radius: 12px; }
.block  { display: flex; justify-content: center; width: 100%; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 70px 0 30px;
  background:
    radial-gradient(1000px 400px at 80% -100px, #eef3ff 0%, transparent 60%),
    radial-gradient(800px 300px at 0% 0%, #f6f8fc 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 52px;
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.06;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
h1 em { font-style: italic; color: var(--accent); }
.lead { color: var(--muted); font-size: 17px; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; margin: 28px 0 26px; flex-wrap: wrap; }
.trust { display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--muted); }
.trust strong { color: var(--fg); }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #1f2a44;
  color: #fff;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  border: 2px solid #fff;
  margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Mock dashboard */
.mock {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fafbfd;
  border-bottom: 1px solid var(--line);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f56; }
.dot.y { background: #ffbd2e; }
.dot.g { background: #27c93f; }
.mock-url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.mock-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 380px;
}
.mock-side {
  background: #fafbfd;
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-logo {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}
.mock-nav {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}
.mock-nav:hover   { background: #fff; }
.mock-nav.active  { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.mock-main { padding: 18px; }
.mock-tab  { display: none; animation: fade .25s; }
.mock-tab.active { display: block; }
@keyframes fade { from { opacity:0; transform:translateY(4px); } to { opacity:1; } }
.mock-h { font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.kpi {
  background: #fafbfd;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}
.kpi span  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.kpi b     { display: block; font-size: 16px; margin: 4px 0 2px; }
.kpi small { font-size: 11px; color: var(--muted); }
.kpi small.up { color: var(--ok); font-weight: 600; }
.mock-chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  align-items: end;
  height: 110px;
  padding: 10px;
  background: #fafbfd;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.mock-chart div {
  background: linear-gradient(180deg, var(--accent), #93b5ff);
  border-radius: 4px;
  animation: grow .6s ease-out;
}
@keyframes grow { from { height: 0 !important; } }
.mock-list { display: flex; flex-direction: column; gap: 8px; }
.row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  background: #fafbfd;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
}
.pill { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.pill.ok   { background: #dcfce7; color: #15803d; }
.pill.warn { background: #fef3c7; color: #a16207; }
.pill.mute { background: #f1f5f9; color: #475569; }
.pill.gold { background: #fef3c7; color: #a16207; }
.mock-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-badge.up   { top: 24px; right: -20px; color: var(--ok); }
.mock-badge.fast { bottom: 30px; left: -24px; color: var(--accent); }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 50px 24px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.stats b, .stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.stats span { color: var(--muted); font-size: 13.5px; }

/* ── LOGOS MARQUEE ────────────────────────────────────────── */
.logos-strip {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}
.logos-title {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0 0 22px;
  font-weight: 600;
}
.logos-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logos-row {
  display: flex;
  gap: 56px;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.logos-row span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #9aa3b3;
  letter-spacing: -.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t);
}
.logos-row span:hover { color: var(--fg); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section     { padding: 90px 0; }
.section.alt { background: var(--bg-soft); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
}
h2 em { color: var(--accent); font-style: italic; }
.section .lead { max-width: 660px; margin-bottom: 40px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }

.card-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--t);
}
.card-soft:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-soft .ico  { font-size: 26px; margin-bottom: 10px; }
.card-soft h3    { margin: 6px 0 8px; font-size: 17px; }
.card-soft p     { margin: 0; color: var(--muted); font-size: 14px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Checklist */
.check { list-style: none; padding: 0; margin: 24px 0; }
.check li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--fg);
  font-size: 15px;
}
.check li:before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--ok);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* Solution floating cards */
.solution-visual { position: relative; height: 380px; }
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  min-width: 240px;
  animation: float 4s ease-in-out infinite;
}
.float-card .fc-head { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.float-card .fc-body { font-size: 14px; line-height: 1.5; }
.float-card:nth-child(1) { top: 10px; left: 20px; }
.float-card.delay  { top: 130px; right: 20px; animation-delay: 1s; }
.float-card.delay2 { bottom: 20px; left: 60px; animation-delay: 2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-soft);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.step p  { margin: 0; color: var(--muted); font-size: 15px; }
.step-line {
  position: absolute;
  top: 56px; right: -32px;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.step:last-child .step-line { display: none; }

/* Features */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--t);
}
.feature:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ico-bg {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature p  { margin: 0; color: var(--muted); font-size: 14.5px; }

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}
.compare-col {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.compare-col.bad  { background: #fafafa; opacity: .9; }
.compare-col.good { background: linear-gradient(180deg, #fff, #f4f9ff); border-color: #cfe0ff; box-shadow: var(--shadow); }
.compare-head { margin-bottom: 20px; }
.compare-head h3 { margin: 10px 0 0; font-size: 22px; letter-spacing: -.02em; }
.tag-bad  { display: inline-block; padding: 4px 10px; border-radius: 999px; background: #fee2e2; color: #b91c1c; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.tag-good { display: inline-block; padding: 4px 10px; border-radius: 999px; background: #dcfce7; color: #15803d; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.compare-col.bad  li { color: #7a8095; text-decoration: line-through; text-decoration-color: #cbd0db; }
.compare-col.good li { color: var(--fg); font-weight: 500; }

/* Metrics band */
.metrics-band { background: linear-gradient(180deg, #0b1220, #111a30); color: #fff; }
.metrics-band .eyebrow { color: #7dd3fc; background: rgba(125,211,252,.1); }
.metrics-band h2 { color: #fff; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.metric {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
}
.metric-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.metric p { margin: 0; color: #9ca7c2; font-size: 14px; line-height: 1.5; }

/* ── DEMO ─────────────────────────────────────────────────── */
.demo-tabs {
  display: flex;           /* bdel inline-flex → flex */
  justify-content: center; /* had hiya li katcenteri */
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 12px;
  margin: 0 auto 24px;     /* auto = centered horizontalement */
  flex-wrap: wrap;
  width: fit-content;      /* important: ma takhdch full width */
}


.demo-tab {
  background: transparent;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  transition: all var(--t);
}
.demo-tab.active { background: var(--primary); color: #fff; }

.demo-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demo-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fafbfd;
  border-bottom: 1px solid var(--line);
}
.chrome-dots { display: flex; gap: 6px; }
.demo-url {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.demo-screens { position: relative; }
.demo-screen { display: none; }
.demo-screen.active { display: block; }
.demo-screen img { width: 100%; height: auto; }
.demo-caption {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fafbfd;
}

/* ── PRICING ──────────────────────────────────────────────── */
.period-switch {
  display: inline-flex;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px;
  border-radius: 12px;
  margin: 0 auto 36px;
  flex-wrap: wrap;
  gap: 4px;
}


.period-switch button {
  background: transparent;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t);
}
.period-switch button small {
  background: var(--ok);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
}
.period-switch button.active { background: var(--primary); color: #fff; }
.period-switch button.active small { background: #fff; color: var(--ok); }

.pricing { align-items: stretch; margin-top: 0; gap: 24px; }
.plan {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--t);
}
.plan:hover { box-shadow: var(--shadow); }
.plan.popular {
  border-color: #1e293b;
  box-shadow: 0 8px 40px rgba(15,23,42,.13);
  transform: none;
}
.badge-pop {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  letter-spacing: .01em;
}
.plan h3 {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.price { margin: 0 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price .cur    { font-size: 16px; color: var(--muted); font-weight: 500; }
.price .amount { font-family: 'Inter', sans-serif; font-size: 64px; font-weight: 800; letter-spacing: -0.04em; color: #0f172a; line-height: 1; }
.price .per    { color: var(--muted); font-size: 15px; }
.billed-as     { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.billed-as strong { font-weight: 600; color: var(--fg); text-decoration: none; }
.plan-desc     { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.plan .btn.block {
  background: #0f172a;
  color: #fff;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--t);
  margin-bottom: 0;
}
.plan .btn.block:hover { opacity: .88; transform: none; box-shadow: none; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.plan-features li {
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: "✓";
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  flex-shrink: 0;
}
.plan-features li.off {
  color: #c0c8d8;
  text-decoration: line-through;
}
.plan-features li.off::before { color: #c0c8d8; content: "✕"; }
.muted  { color: var(--muted); font-size: 13px; }
.center { text-align: center; margin-top: 30px; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.tcard p { font-size: 15px; line-height: 1.65; color: var(--fg); margin: 14px 0 20px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.tcard small { display: block; color: var(--muted); font-size: 12.5px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-list .faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: inherit;
  color: var(--fg);
}
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--accent);
  transition: all var(--t);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { display: none; padding-bottom: 16px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.65; }

/* ── CONTACT ──────────────────────────────────────────────── */
.section.cta { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); }
.contact-info { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.contact-info a { color: var(--accent); font-weight: 600; }
.form-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: none;
}
.form-card h3 { margin: 0 0 2px; font-size: 22px; font-weight: 700; }
.form-card > .muted { margin-bottom: 8px; }
.form-card label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: var(--fg);
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-card textarea { min-height: 100px; resize: vertical; }
.fg { flex: 1; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Form billing box */
.form-billed-wrap { margin-top: 18px; }
.form-billed-box {
  background: #f7f8fb;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.billed-icon  { display: none; }
.billed-details { display: contents; }
.billed-label { color: var(--muted); font-size: 13px; }
.billed-amount { font-weight: 600; font-size: 15px; color: var(--fg); }
.billed-saving {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 2px;
  align-self: flex-start;
}
@keyframes billed-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.billed-pop { animation: billed-pop .25s ease; }

#form-response {
  margin-top: 12px;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
}
#form-response.success { background: #dcfce7; color: #15803d; }
#form-response.error   { background: #fee2e2; color: #b91c1c; }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: #0b1220; color: #cbd5e1; padding: 60px 0 30px; }
.footer .logo { color: #fff; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.footer .logo-mark { width: 28px; height: 28px; border-radius: 8px; background: #fff; color: #0b1220; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f2a44;
}
.foot h5 { color: #fff; margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.foot a  { display: block; color: #94a3b8; padding: 4px 0; font-size: 14px; transition: color var(--t); }
.foot a:hover { color: #fff; }
.footer .muted { color: #64748b; }
.footer-bottom { padding-top: 22px; text-align: center; font-size: 13px; color: #64748b; }
.footer-bottom-inner { padding-top: 20px; border-top: 1px solid #1f2a44; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mock-badge.up   { right: 10px; }
  .mock-badge.fast { left: 10px; }
  .foot { grid-template-columns: 1fr 1fr; gap: 24px; }
  .plan.popular { transform: none; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .mock-side { display: none; }
  .mock-body { grid-template-columns: 1fr; }
  .steps, .compare, .metrics-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }
}

@media (max-width: 560px) {
  .grid-3, .grid-4, .row2, .stats { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  h1 { font-size: 40px; }
  .mock-badge { display: none; }
  .hero { padding: 50px 0 20px; }
}

/* ============================================================
   APP RENT — Section Vitrine
   À ajouter dans le CSS de apprent.ma (landing page)
   Accent bleu #2563eb — light mode
   ============================================================ */

/* ── Section wrapper ──────────────────────────────────────── */
.vitrine-section {
  background: #f8fafc;
  padding: 96px 0 88px;
}

.vitrine-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ───────────────────────────────────────────────── */
.vitrine-header {
  text-align: center;
  margin-bottom: 52px;
}

.vitrine-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 22px;
}

.vitrine-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  animation: vitrine-blink 2s infinite;
}

@keyframes vitrine-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.vitrine-h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 580px;
  margin: 0 auto 18px;
}

.vitrine-accent {
  color: #2563eb;
}

.vitrine-desc {
  font-size: 17px;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Browser mockup ───────────────────────────────────────── */
.vitrine-browser {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.vitrine-browser-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vitrine-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.vitrine-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.vitrine-browser-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 12px;
  color: #94a3b8;
  font-family: monospace;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

.vitrine-browser-url strong {
  color: #2563eb;
}

.vitrine-browser-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* ── Car cards dans mockup ────────────────────────────────── */
.vitrine-car-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.vitrine-car-card:hover {
  border-color: #93c5fd;
}

.vitrine-car-card--featured {
  border-color: #93c5fd;
}

.vitrine-car-img {
  height: 80px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.vitrine-car-info {
  padding: 12px 14px;
}

.vitrine-car-name {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.vitrine-car-price {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Tags dispo / louée */
.vitrine-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 100px;
  padding: 3px 10px;
}

.vitrine-tag--ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.vitrine-tag--no {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.vitrine-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.vitrine-tag-dot--ok { background: #22c55e; }
.vitrine-tag-dot--no { background: #ef4444; }

.vitrine-car-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.vitrine-car-btn:hover {
  background: #1d4ed8;
}

.vitrine-car-btn--disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
}

.vitrine-car-btn--disabled:hover {
  background: #e2e8f0;
}

/* ── 4 Feature cards ──────────────────────────────────────── */
.vitrine-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
  margin-top: 30px;
}

.vitrine-feat {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vitrine-feat:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.07);
}

.vitrine-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 14px;
}

.vitrine-feat h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 7px;
}

.vitrine-feat p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ── CTA ──────────────────────────────────────────────────── */
.vitrine-cta {
  text-align: center;
}

.vitrine-btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px 36px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.vitrine-btn-demo:hover {
  background: #1d4ed8;
  color: #ffffff;
  transform: translateY(-1px);
  text-decoration: none;
}

.vitrine-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #94a3b8;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .vitrine-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .vitrine-section {
    padding: 64px 0 56px;
  }

  .vitrine-container {
    padding: 0 20px;
  }

  .vitrine-browser-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  /* Sur mobile: cacher la 3ème voiture */
  .vitrine-car-card:nth-child(3) {
    display: none;
  }

  .vitrine-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .vitrine-h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .vitrine-features {
    grid-template-columns: 1fr;
  }

  .vitrine-browser-body {
    grid-template-columns: 1fr;
  }

  .vitrine-car-card:nth-child(2),
  .vitrine-car-card:nth-child(3) {
    display: none;
  }
}

/* ── Animations scroll (injectées par section-vitrine.js) ── */
.vitrine-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.vitrine-visible {
  opacity: 1;
  transform: translateY(0);
}