/* =====================================================
   IncubaOS — Landing styles
   Palette: #E61B47 / #FF5A6E / #1A2233 / #7E8798 / #E9EDF3 / #F8FAFC
   ===================================================== */
:root {
  --primary: #E61B47;
  --coral:   #FF5A6E;
  --charcoal:#1A2233;
  --slate:   #7E8798;
  --mist:    #E9EDF3;
  --cloud:   #F8FAFC;
  --white:   #ffffff;
  --grad:    linear-gradient(135deg, #E61B47 0%, #FF5A6E 100%);
  --grad-soft:linear-gradient(135deg, #FFE8EC 0%, #FFF1F3 100%);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl:36px;
  --r-pill:999px;

  --shadow-xs: 0 1px 2px rgba(26,34,51,.04);
  --shadow-sm: 0 1px 2px rgba(26,34,51,.04), 0 2px 6px rgba(26,34,51,.06);
  --shadow-md: 0 4px 12px rgba(26,34,51,.06), 0 12px 32px rgba(26,34,51,.08);
  --shadow-lg: 0 20px 50px rgba(26,34,51,.12);

  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body:    'Inter', 'Sora', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --container: 1200px;
}

html[lang="ar"] {
  --font-display: 'IBM Plex Sans Arabic', 'Sora', sans-serif;
  --font-body:    'IBM Plex Sans Arabic', 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--primary);
  background: #FFE8EC;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.eyebrow-dark { background: rgba(255,255,255,.08); color: #FFB3BD; }

/* ===== Headings ===== */
.h2, h2.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  text-wrap: balance;
}
.lede {
  font-size: 17px;
  color: var(--slate);
  margin: 16px auto 0;
  max-width: 680px;
  line-height: 1.65;
  text-wrap: pretty;
}
.center .h2 { margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all .2s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 6px 20px rgba(230,27,71,.28), 0 2px 4px rgba(230,27,71,.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(230,27,71,.38); }
.btn-secondary {
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--mist);
}
.btn-secondary:hover { border-color: var(--slate); }
.btn-secondary-dark {
  background: white;
  color: var(--charcoal);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-secondary-dark:hover { background: var(--mist); }
.btn-ghost-light {
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--mist);
  padding: 10px 20px;
  font-weight: 500;
}
.btn-ghost-light:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost-light .arrow { color: var(--primary); }

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(233,237,243,.7);
  z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 14px 32px;
  max-width: var(--container);
  margin: 0 auto;
  direction: ltr;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 14.5px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 12px; align-items: center; direction: ltr; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-xs);
}
.nav-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), opacity .2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: rgba(15,21,32,.45);
  z-index: 99;
  pointer-events: none;
}
.mobile-nav-panel {
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px 24px;
  max-height: calc(100vh - 64px);
  overflow: auto;
  pointer-events: auto;
}
.mobile-nav-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--mist);
  border-radius: 50%;
  background: var(--cloud);
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1;
}
.mobile-nav-links {
  display: grid;
  gap: 8px;
  padding-top: 36px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  color: var(--charcoal);
  font-weight: 600;
  background: var(--white);
}
.mobile-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.mobile-nav-links .mega-item-s,
.mobile-nav-links .mega-item-ico,
.mobile-nav-links .arr { display: none; }
.mobile-nav-links .mega-item-body,
.mobile-nav-links .mega-item-t { display: contents; }
body.mobile-nav-open { overflow-x: hidden; overflow-y: auto; }

.lang-switch {
  display: inline-flex;
  background: var(--cloud);
  border-radius: var(--r-pill);
  padding: 3px;
  border: 1px solid var(--mist);
}
.lang-switch button {
  background: transparent;
  border: none;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate);
  transition: all .2s;
}
.lang-switch button.active {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 1px 3px rgba(26,34,51,.08);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #0F1520 0%, #1A2233 100%);
  color: white;
  padding: 60px 0 0;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(230,27,71,.25), rgba(255,90,110,.05) 40%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at top right, black 30%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-copy { max-width: 540px; }
.display {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  text-wrap: balance;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.6;
  margin: 22px 0 32px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-foot {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
}
.hero-foot svg { color: var(--coral); }

/* Hero visual: laptop + phone */
.hero-visual {
  position: relative;
  height: 480px;
}
.laptop {
  position: absolute;
  top: 30px;
  left: 0;
  right: 80px;
  width: calc(100% - 60px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.laptop-screen {
  background: #0A0F1A;
  border: 8px solid #2A3447;
  border-radius: 12px 12px 4px 4px;
  padding: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: none;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #3A4458 0%, #1A2233 100%);
  border-radius: 0 0 14px 14px;
  margin: 0 -22px;
  position: relative;
}
.laptop-base::before {
  content:'';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #0F1520;
  border-radius: 0 0 8px 8px;
}

/* Mini-app inside laptop */
.mini-app {
  display: grid;
  grid-template-columns: 140px 1fr;
  height: 100%;
  background: var(--cloud);
  font-size: 7px;
  color: var(--charcoal);
}
.mini-side {
  background: white;
  border-right: 1px solid var(--mist);
  padding: 10px 8px;
}
.mini-side-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  color: var(--charcoal);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 5px;
  padding: 0 6px;
}
.mini-side-logo .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-block;
}
.mini-side-nav { display: flex; flex-direction: column; gap: 2px; }
.mini-nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--slate);
  font-size: 8px;
  font-weight: 500;
}
.mini-nav-item.active {
  background: #FFE8EC;
  color: var(--primary);
  font-weight: 600;
}
.mini-nav-item .i {
  width: 8px; height: 8px;
  background: currentColor;
  opacity: .6;
  border-radius: 2px;
}
.mini-main { padding: 12px 14px; }
.mini-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mini-search { width: 120px; height: 14px; background: white; border-radius: 4px; border: 1px solid var(--mist); }
.mini-avatar { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); }
.mini-h { font-family: var(--font-display); font-weight: 700; font-size: 12px; margin-bottom: 10px; }
.mini-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.stat { background: white; padding: 6px 8px; border-radius: 6px; border: 1px solid var(--mist); }
.stat-label { font-size: 6px; color: var(--slate); }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--charcoal); margin-top: 1px; }
.stat-trend { font-size: 6px; color: #1F9D55; font-weight: 600; margin-top: 1px; }
.stat-trend.up::before { content:'↑ '; }
.mini-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-card { background: white; border-radius: 6px; border: 1px solid var(--mist); padding: 8px; }
.mini-card-h { font-size: 7px; font-weight: 700; margin-bottom: 6px; }
.mini-rows { display: flex; flex-direction: column; gap: 4px; }
.mini-row { display: flex; align-items: center; gap: 5px; padding: 3px 0; border-bottom: 1px solid var(--cloud); }
.mini-row:last-child { border-bottom: none; }
.ava { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ava1 { background: linear-gradient(135deg,#FF5A6E,#E61B47); }
.ava2 { background: linear-gradient(135deg,#2E5BFF,#5878FF); }
.ava3 { background: linear-gradient(135deg,#1F9D55,#34C66E); }
.ava4 { background: linear-gradient(135deg,#F6A623,#FFB84D); }
.ava5 { background: linear-gradient(135deg,#7B3FF1,#9B5FFF); }
.r-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.r-name { height: 4px; width: 60%; background: var(--mist); border-radius: 2px; }
.r-sub  { height: 3px; width: 40%; background: var(--cloud); border-radius: 2px; }
.badge { font-size: 5.5px; padding: 1.5px 4px; border-radius: 999px; font-weight: 600; }
.b-green { background: #E1F5E8; color: #1F7A3A; }
.b-pink  { background: #FFE8EC; color: var(--primary); }
.b-grey  { background: var(--mist); color: var(--slate); }
.chart { width: 100%; height: 60px; margin-top: 4px; }

/* Phone */
.phone {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 175px;
  height: 360px;
  background: #0A0F1A;
  border: 6px solid #2A3447;
  border-radius: 30px;
  padding: 8px;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,.55));
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #0A0F1A;
  border-radius: 12px;
}
.phone-screen {
  background: white;
  border-radius: 22px;
  height: 100%;
  padding: 36px 14px 14px;
  font-size: 9px;
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.phone-time {
  position: absolute;
  top: 10px; left: 18px;
  font-size: 9px;
  font-weight: 700;
}
.phone-h { font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.phone-progress-label { font-size: 8px; color: var(--slate); margin-bottom: 4px; }
.phone-bar { height: 5px; background: var(--mist); border-radius: 999px; margin-bottom: 14px; overflow: hidden; }
.phone-bar span { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.phone-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.p-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--cloud);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 500;
}
.p-ico {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--mist);
  display: inline-block;
}
.p-1 { background: linear-gradient(135deg,#FFE8EC,#FFC2CB); }
.p-2 { background: linear-gradient(135deg,#E6F0FF,#B8D0FF); }
.p-3 { background: linear-gradient(135deg,#E1F5E8,#A8E3BB); }
.p-4 { background: linear-gradient(135deg,#FFF1D9,#FFD89B); }
.phone-circle {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.phone-circle svg { width: 100%; height: 100%; }
.phone-circle-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-circle-label span { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.phone-circle-label small { font-size: 7px; color: var(--slate); }

/* ===== CHALLENGE / Before-After ===== */
.ba-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.ba-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ba-head { margin-bottom: 20px; }
.ba-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  background: var(--cloud);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.ba-tag-dark {
  background: var(--charcoal);
  color: white;
}
.ba-tiles {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.ba-tile {
  background: var(--cloud);
  border-radius: var(--r-md);
  padding: 14px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  font-weight: 500;
  border: 1px solid var(--mist);
}
.ba-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  background: white;
  box-shadow: var(--shadow-xs);
}
.ba-arrow { display: flex; align-items: center; justify-content: center; }
.ba-after .ba-after-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
}
.ba-platform { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.ba-platform-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--charcoal); }
.cm {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  position: relative;
}
.cm::before {
  content:''; position: absolute;
  width: 9px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  margin-top: -2px;
}
.cm-red { background: var(--grad); }

.prev-mini {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  height: 180px;
  display: grid;
  grid-template-columns: 50px 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.pm-side { background: var(--cloud); border-right: 1px solid var(--mist); }
.pm-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.pm-row-h { height: 8px; width: 80px; background: var(--mist); border-radius: 4px; }
.pm-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.pm-stats > div { height: 28px; background: var(--cloud); border-radius: 4px; }
.pm-chart-row { display: grid; grid-template-columns: 60px 1fr; gap: 8px; flex: 1; }
.pm-donut svg { width: 100%; height: 100%; }
.pm-bars { display: flex; align-items: flex-end; gap: 4px; height: 100%; padding-top: 4px; }
.pmb { flex: 1; background: var(--grad); border-radius: 3px 3px 0 0; min-height: 10px; }

/* ===== Flow ===== */
.flow {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex; align-items: center; gap: 10px;
  background: white;
  padding: 10px 16px 10px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}
.flow-n {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.flow-l { font-size: 14px; font-weight: 500; }
.flow-sep {
  width: 24px;
  height: 1px;
  background: var(--mist);
  position: relative;
}
.flow-sep::after {
  content:'›';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  color: var(--slate);
  font-size: 18px;
  line-height: 1;
}

/* ===== Features ===== */
.feat-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.feat-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral);
}
.feat-head { display: flex; align-items: center; gap: 10px; }
.feat-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #FFE8EC;
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-ico svg { width: 18px; height: 18px; }
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}
.feat-vis {
  background: var(--cloud);
  border-radius: var(--r-md);
  height: 90px;
  border: 1px solid var(--mist);
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.vis-portal { display: grid; grid-template-columns: 24px 1fr; gap: 6px; }
.vis-portal-side { background: var(--charcoal); border-radius: 4px; }
.vis-portal-body { display: flex; flex-direction: column; gap: 4px; }
.vp-h { height: 8px; background: var(--mist); border-radius: 3px; width: 50%; }
.vp-stat { height: 14px; background: white; border-radius: 4px; border: 1px solid var(--mist); }
.vis-admin { display: flex; flex-direction: column; gap: 6px; }
.va-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.va-row .va-cell { height: 12px; background: white; border-radius: 3px; border: 1px solid var(--mist); }
.va-chart { display: grid; grid-template-columns: 1fr 30px; gap: 6px; height: 40px; }
.va-chart svg { width: 100%; height: 100%; background: white; border-radius: 4px; }
.va-donut svg { width: 30px; height: 30px; }
.vis-projects { display: flex; flex-direction: column; gap: 6px; justify-content: center; height: 100%; }
.vpj { display: flex; align-items: center; gap: 6px; }
.vpj .d { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.vpj .d.g { background: #1F9D55; }
.vpj .d.a { background: #F6A623; }
.vpj .d.r { background: var(--primary); }
.vpj .bar { height: 8px; background: var(--mist); border-radius: 4px; flex: 1; position: relative; }
.vpj .bar::after { content:''; position: absolute; inset: 0; background: var(--grad); border-radius: 4px; width: var(--w, 50%); }
.vpj:nth-child(1) .bar::after { width: 80%; }
.vpj:nth-child(2) .bar::after { width: 55%; }
.vpj:nth-child(3) .bar::after { width: 40%; background: var(--mist); }
.vpj:nth-child(4) .bar::after { width: 75%; }
.vis-eval { display: flex; flex-direction: column; gap: 5px; justify-content: center; height: 100%; }
.ve-row { display: flex; align-items: center; gap: 8px; }
.ve-l { height: 8px; background: var(--mist); border-radius: 3px; width: 50px; }
.ve-stars { color: var(--primary); font-size: 13px; letter-spacing: 1px; }
.vis-kpi { display: grid; grid-template-columns: 1fr 50px; gap: 8px; height: 100%; }
.vk-line { width: 100%; height: 100%; background: white; border-radius: 6px; }
.vk-bars { display: flex; align-items: flex-end; gap: 3px; }
.vk-bars > div { flex: 1; background: var(--grad); border-radius: 2px 2px 0 0; }
.vis-content { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.vc-card { background: white; border-radius: 6px; border: 1px solid var(--mist); position: relative; overflow: hidden; }
.vc-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 60%; background: linear-gradient(135deg, #E9EDF3, #c4cad6); }
.vc-card::after { content:''; position: absolute; bottom: 8px; left: 6px; right: 6px; height: 4px; background: var(--mist); border-radius: 2px; }
.vis-wl { display: flex; align-items: center; justify-content: center; gap: 8px; height: 100%; }
.vw-sw { width: 28px; height: 28px; border-radius: 8px; box-shadow: var(--shadow-xs); }
.vis-ai { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; }
.va-msg { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--charcoal); font-weight: 500; }
.va-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .5; } }
.va-tag { font-size: 10px; padding: 4px 10px; background: #FFE8EC; color: var(--primary); border-radius: var(--r-pill); align-self: flex-start; font-weight: 600; }

/* ===== White Label ===== */
.wl-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
.check-list-lg li { font-size: 15px; }
.wl-themes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.theme-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mist);
  position: relative;
}
.theme-card:nth-child(2) { transform: translateY(-12px); }
.theme-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: white;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.theme-mock {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 4px;
  height: 180px;
  margin-top: 4px;
}
.tm-side { background: var(--mist); border-radius: 6px; }
.tm-side.dark { background: var(--charcoal); }
.tm-body { display: flex; flex-direction: column; gap: 6px; padding: 4px; }
.tm-h { height: 10px; background: var(--mist); border-radius: 3px; width: 60%; }
.tm-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.tm-stats > div { height: 26px; background: var(--cloud); border-radius: 4px; border: 1px solid var(--mist); }
.tm-chart { width: 100%; flex: 1; min-height: 60px; background: var(--cloud); border-radius: 6px; border: 1px solid var(--mist); }
.theme-red .tm-side { background: linear-gradient(180deg,#1A2233,#0F1520); }
.theme-blue .tm-side { background: linear-gradient(180deg,#1B2A55,#0F1A35); }
.theme-green .tm-side { background: linear-gradient(180deg,#0F4A2C,#062B18); }

/* ===== AI Assistant ===== */
.ai-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.ai-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.ai-feat { display: flex; gap: 12px; }
.ai-feat-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #FFE8EC;
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-feat-ico svg { width: 18px; height: 18px; }
.ai-feat h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ai-feat p { font-size: 13px; color: var(--slate); line-height: 1.5; }
.ai-note { margin-top: 24px; font-size: 13px; color: var(--slate); font-style: italic; }

.ai-visual { position: relative; }
.ai-dash {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.ai-dash-h { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ad-logo { width: 22px; height: 22px; border-radius: 6px; background: var(--grad); }
.ad-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.ai-dash-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.ai-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
.ai-stat { background: var(--cloud); border-radius: var(--r-sm); padding: 10px; }
.s-l { font-size: 10px; color: var(--slate); }
.s-n { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-top: 2px; }
.ai-charts { display: grid; grid-template-columns: 1fr 1.2fr; gap: 10px; }
.ai-chart { background: var(--cloud); border-radius: var(--r-sm); padding: 10px; }
.ac-l { font-size: 10px; color: var(--slate); font-weight: 600; margin-bottom: 8px; }
.ac-rows { display: flex; flex-direction: column; gap: 6px; }
.ac-row { display: flex; align-items: center; gap: 6px; }
.ac-av { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.ac-b1 { flex: 1; height: 5px; background: var(--mist); border-radius: 2px; }
.ac-chart { width: 100%; height: 60px; }

.ai-panel {
  position: absolute;
  top: 30px;
  right: -30px;
  width: 250px;
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}
.aip-h { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--mist); }
.aip-ico { color: var(--primary); }
.aip-ico svg { width: 18px; height: 18px; }
.aip-t { font-family: var(--font-display); font-weight: 700; font-size: 14px; flex: 1; }
.aip-x { color: var(--slate); cursor: pointer; font-size: 18px; }
.aip-block { margin-bottom: 14px; }
.aip-label { font-size: 11px; color: var(--slate); font-weight: 600; margin-bottom: 4px; }
.aip-val { font-size: 13px; font-weight: 600; }
.aip-score-row { display: flex; align-items: center; gap: 8px; }
.aip-score { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--primary); }
.aip-meter { flex: 1; height: 6px; background: var(--mist); border-radius: 3px; overflow: hidden; }
.aip-meter span { display: block; height: 100%; background: var(--grad); border-radius: 3px; }
.aip-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.aip-list li { font-size: 12px; color: var(--charcoal); padding-left: 14px; position: relative; line-height: 1.4; }
.aip-list li::before {
  content:'';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.aip-btn {
  width: 100%;
  padding: 10px;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px;
}

/* ===== Deployment ===== */
.dep-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.dep-vis { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.dep-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.dep-card-h { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.dep-card-h svg { background: var(--cloud); padding: 8px; border-radius: var(--r-md); }
.dep-mid {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 600;
}
.dep-mid svg { display: block; }
.dep-or { letter-spacing: .05em; }
.dep-arrow { color: var(--slate); font-size: 22px; }

/* ===== Built For ===== */
.bf-head { text-align: left; max-width: 700px; margin-bottom: 40px; }
.bf-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.bf-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.bf-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--coral); }
.bf-ico {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bf-ico svg { width: 24px; height: 24px; }
.bf-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.bf-card p { font-size: 14px; color: var(--slate); line-height: 1.55; }

/* ===== Real Workflows ===== */
.rw-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.rw-foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--slate);
  font-style: italic;
}
.rw-foot-i {
  color: var(--primary);
  font-style: normal;
  font-size: 16px;
}
.rw-vis { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.rw-photo, .rw-dash {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rw-photo { background: var(--charcoal); }
.rw-illu { width: 100%; height: 100%; }
.rw-dash {
  background: white;
  border: 1px solid var(--mist);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rwd-h { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.rwd-logo { width: 18px; height: 18px; border-radius: 5px; background: var(--grad); }
.rwd-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.rwd-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.rwd-stats > div { background: var(--cloud); border-radius: var(--r-sm); padding: 8px; display: flex; flex-direction: column; }
.rwd-n { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.rwd-l { font-size: 10px; color: var(--slate); }
.rwd-section { font-size: 11px; font-weight: 600; color: var(--slate); margin-top: 4px; }
.rwd-rows { display: flex; flex-direction: column; gap: 6px; }
.rwd-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--mist); }
.rwd-av { width: 18px; height: 18px; border-radius: 50%; background: var(--grad); }
.rwd-line { flex: 1; height: 6px; background: var(--mist); border-radius: 3px; }
.rwd-chart { width: 100%; height: 50px; margin-top: 4px; }

/* ===== Pricing ===== */
.pr-head { text-align: center; max-width: 720px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pr-head .h2, .pr-head .lede { width: 100%; }
.pr-head .btn { margin-top: 12px; }
.pr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pr-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pr-card-featured {
  background: var(--charcoal);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pr-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
}
.pr-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.pr-sub { font-size: 13.5px; color: var(--slate); margin-bottom: 20px; }
.pr-card-featured .pr-sub { color: rgba(255,255,255,.65); }
.pr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pr-list li { font-size: 14px; padding-left: 22px; position: relative; }
.pr-list li::before {
  content:'';
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
}
.pr-list li::after {
  content:'';
  position: absolute;
  left: 4px; top: 7px;
  width: 6px; height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}

/* ===== Security ===== */
.sec-head { text-align: left; max-width: 700px; margin-bottom: 40px; }
.sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px 40px; }
.sec-item { display: flex; flex-direction: column; gap: 8px; padding-left: 12px; border-left: 2px solid var(--mist); }
.sec-item:hover { border-left-color: var(--primary); }
.sec-ico { color: var(--primary); margin-bottom: 6px; }
.sec-ico svg { width: 26px; height: 26px; }
.sec-item h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.sec-item p { font-size: 13.5px; color: var(--slate); line-height: 1.5; }

/* ===== CTA ===== */
.cta {
  background: var(--charcoal);
  border-radius: var(--r-2xl);
  padding: 80px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,27,71,.3), transparent 60%);
  pointer-events: none;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 8px auto 16px;
  max-width: 700px;
  text-wrap: balance;
  position: relative;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta .btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.2);
}
.cta .btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: white; color: white; }

/* ===== Footer ===== */
.footer { background: var(--cloud); padding: 80px 0 32px; border-top: 1px solid var(--mist); }
.ft-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--mist); }
.ft-logo { height: 36px; width: auto; display: block; margin-bottom: 14px; }
.ft-by {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--slate);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.ft-by strong {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: .02em;
}
.ft-brand p { font-size: 14px; color: var(--slate); max-width: 280px; line-height: 1.55; }
.ft-col h5 { font-family: var(--font-display); font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--charcoal); text-transform: uppercase; letter-spacing: .04em; }
.ft-col a { display: block; font-size: 14px; color: var(--slate); padding: 5px 0; transition: color .15s; }
.ft-col a:hover { color: var(--primary); }
.ft-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; color: var(--slate); }

/* ===== Family announcement popup ===== */
.incuba-family-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.incuba-family-popup.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.incuba-family-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(9, 14, 23, .48);
  backdrop-filter: blur(14px);
}
.incuba-family-card {
  position: relative;
  z-index: 1;
  width: min(100%, 492px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.96)),
    radial-gradient(circle at 15% 0%, rgba(230,27,71,.13), transparent 34%);
  box-shadow: 0 28px 80px rgba(9, 14, 23, .28);
  padding: 30px;
  text-align: center;
  transform: translateY(18px) scale(.98);
  transition: transform .24s ease;
}
.incuba-family-popup.is-visible .incuba-family-card { transform: translateY(0) scale(1); }
.incuba-family-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--grad);
}
.incuba-family-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.incuba-family-close:hover {
  transform: translateY(-1px);
  background: white;
  border-color: rgba(230,27,71,.18);
}
.incuba-family-close span {
  position: absolute;
  top: 18px;
  left: 11px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
}
.incuba-family-close span:first-child { transform: rotate(45deg); }
.incuba-family-close span:last-child { transform: rotate(-45deg); }
.incuba-family-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px auto 22px;
}
.incuba-family-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--mist);
  box-shadow: 0 16px 36px rgba(15,23,42,.08);
}
.incuba-family-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.incuba-family-logo-sprouts {
  width: 152px;
  padding: 16px;
}
.incuba-family-logo-sprouts img { max-height: 42px; }
.incuba-family-logo-incubaos {
  width: 136px;
  padding: 18px;
}
.incuba-family-logo-incubaos img { max-height: 34px; }
.incuba-family-plus {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  background: var(--grad);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(230,27,71,.22);
}
.incuba-family-kicker {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}
.incuba-family-card h2 {
  margin: 0 auto 12px;
  max-width: 410px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}
.incuba-family-copy {
  margin: 0 auto 24px;
  max-width: 390px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}
.incuba-family-cta {
  width: 100%;
  justify-content: center;
  min-height: 50px;
}

/* ===== RTL adjustments ===== */
html[dir="rtl"] .nav-links { justify-content: center; }
html[dir="rtl"] .nav-links,
html[dir="rtl"] .mobile-nav-panel { direction: rtl; }
html[dir="rtl"] .flow-sep::after { content:'‹'; right: auto; left: -4px; }
html[dir="rtl"] .pr-tag { left: auto; right: 28px; }
html[dir="rtl"] .ba-arrow svg { transform: scaleX(-1); }
html[dir="rtl"] .dep-arrow { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] .pr-list li { padding-left: 0; padding-right: 22px; }
html[dir="rtl"] .pr-list li::before { left: auto; right: 0; }
html[dir="rtl"] .pr-list li::after { left: auto; right: 4px; }
html[dir="rtl"] .sec-item { border-left: none; border-right: 2px solid var(--mist); padding-left: 0; padding-right: 12px; }
html[dir="rtl"] .sec-item:hover { border-right-color: var(--primary); }
html[dir="rtl"] .ai-panel { right: auto; left: -30px; }
html[dir="rtl"] .laptop { left: 80px; right: 0; }
html[dir="rtl"] .phone { right: auto; left: 0; }
html[dir="rtl"] .aip-list li { padding-left: 0; padding-right: 14px; }
html[dir="rtl"] .aip-list li::before { left: auto; right: 0; }
html[dir="rtl"] .phone-time { left: auto; right: 18px; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .bf-grid { grid-template-columns: repeat(2,1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow svg { transform: rotate(90deg); }
  .dep-grid, .wl-grid, .ai-grid, .rw-grid { grid-template-columns: 1fr; }
  .dep-vis { grid-template-columns: 1fr; }
  .dep-mid { flex-direction: row; }
  .ai-panel { position: relative; top: 0; right: 0; width: 100%; margin-top: 20px; }
  html[dir="rtl"] .ai-panel { left: auto; right: 0; }
  .pr-grid { grid-template-columns: 1fr; }
  .pr-card-featured { transform: none; }
  .sec-grid { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .nav-inner { gap: 18px; }
  .nav-cta { margin-left: auto; }
  .nav-cta > .btn-sm { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-open .mobile-nav { display: block; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .feat-grid, .bf-grid, .sec-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wl-themes { grid-template-columns: 1fr; }
  .theme-card:nth-child(2) { transform: none; }
  .ai-feats { grid-template-columns: 1fr; }
  .ai-grid,
  .ai-visual,
  .ai-dash,
  .ai-panel {
    min-width: 0;
    max-width: 100%;
  }
  .rw-vis { grid-template-columns: 1fr; }
  .ba-tiles { grid-template-columns: repeat(2,1fr); }
  .ba-after-grid { grid-template-columns: 1fr; }
  .ai-stats, .mini-stats { grid-template-columns: repeat(2,1fr); }
  .cta { padding: 56px 24px; }
  .nav-inner { padding: 12px 16px; gap: 10px; }
  .nav-logo img { height: 28px; max-width: 112px; object-fit: contain; }
  .nav-cta { gap: 8px; }
  .lang-switch button { padding: 5px 9px; }
  .nav-toggle { width: 38px; height: 38px; flex: 0 0 38px; }
  .mobile-nav { inset: 62px 0 0; }
  .hero { padding-top: 38px; }
  .hero-inner { padding-top: 22px; padding-bottom: 44px; }
  .hero-visual { height: 340px; }
  .laptop { right: 12px; width: calc(100% - 24px); }
  .phone { width: 132px; height: 272px; right: 4px; bottom: -4px; }
  .phone-screen { padding: 32px 10px 10px; }
  .phone-list { gap: 4px; }
  .p-item { padding: 6px 7px; font-size: 8px; }
  .phone-circle { width: 58px; height: 58px; }
  .hero-foot { align-items: flex-start; }
  .ba-after .ba-after-grid { grid-template-columns: 1fr; }
  .dep-mid { justify-content: center; flex-wrap: wrap; }
  .ft-bottom { flex-direction: column; gap: 10px; }
  .incuba-family-popup { padding: 16px; }
  .incuba-family-card {
    border-radius: 24px;
    padding: 28px 18px 20px;
  }
  .incuba-family-logos {
    gap: 8px;
    margin-top: 16px;
  }
  .incuba-family-logo {
    height: 62px;
    border-radius: 18px;
  }
  .incuba-family-logo-sprouts { width: 126px; padding: 13px; }
  .incuba-family-logo-incubaos { width: 112px; padding: 15px; }
  .incuba-family-plus {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
@media (max-width: 540px) {
  .nav-cta > .btn-sm { display: none; }
  .hero-ctas .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .ft-grid { grid-template-columns: 1fr; }
  .ba-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .nav-logo img { max-width: 88px; }
  .lang-switch button { padding: 5px 7px; font-size: 12px; }
  .container { padding: 0 16px; }
}
