/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — updated to new design system */
  --brand:       #2c63e0;
  --brand-dark:  #1d4cc4;
  --brand-light: #eef4ff;
  --accent:      #f59e0b;
  --dark:        #0c1322;
  --mid:         #51597a;
  --muted:       #a4abc2;
  --light:       #f5f7fb;
  --surface:     #f5f7fb;
  --border:      #e3e6ef;
  --border-strong: #cbd0e0;
  --success:     #16a364;
  --radius:      10px;
  --radius-sm:   6px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;
  --shadow-sm:   0 1px 2px rgba(12,19,34,0.06);
  --shadow:      0 4px 16px rgba(12,19,34,0.08);
  --shadow-lg:   0 16px 48px rgba(12,19,34,0.12);
  --shadow-pop:  0 24px 64px rgba(12,19,34,0.18);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Heebo', system-ui, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01";
}
.lang-en body, .lang-en { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.025em; margin: 0; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) { .container { padding: 0 16px; } }

.section { padding: clamp(36px, 5vw, 60px) 0; }
.section-sm { padding: clamp(24px, 3.5vw, 40px) 0; }
.section-light { background: var(--surface); }
.section-dark  { background: var(--dark); }

/* ── Typography ── */
h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
p  { font-size: 15px; color: var(--mid); line-height: 1.7; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); border: 1px solid #d9e6ff;
  border-radius: var(--radius-pill); padding: 4px 12px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 14px; }
.section-sub   { font-size: clamp(16px, 2vw, 18px); color: var(--mid); margin-bottom: 40px; line-height: 1.6; max-width: 680px; }
.section-title.centered, .section-sub.centered { text-align: center; margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .15s; white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  border: 1px solid var(--brand-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 1px 3px rgba(12,19,34,.2);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(44,99,224,.4); }
.btn-outline { background: #fff; color: var(--dark); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--surface); border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--mid); border: 1px solid transparent; }
.btn-ghost:hover { background: var(--surface); color: var(--dark); }
.btn-dark { background: var(--dark); color: #fff; border: 1px solid var(--dark); }
.btn-dark:hover { background: #1a2238; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-white { background: #fff; color: var(--brand); border: 1px solid #fff; }
.btn-white:hover { background: var(--brand-light); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  padding: 0 24px; height: 64px; gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }
.main-nav { display: flex; gap: 2px; flex: 1; margin-inline-start: 16px; align-items: center; }
.main-nav > a.nav-item,
.main-nav a {
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  text-decoration: none; padding: 8px 10px; border-radius: var(--radius);
  transition: background .12s, color .12s; white-space: nowrap;
}
.main-nav > a.nav-item:hover,
.main-nav a:hover { background: var(--surface); color: var(--dark); }

/* ── Nav Dropdowns ── */
.nav-item.has-drop { position: relative; }
.nav-drop-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  background: none; border: none; cursor: pointer;
  padding: 8px 10px; border-radius: var(--radius);
  transition: background .12s, color .12s; white-space: nowrap;
  font-family: inherit;
}
.nav-drop-btn:hover,
.nav-item.has-drop:hover .nav-drop-btn { background: var(--surface); color: var(--dark); }
.drop-chevron { transition: transform .2s; flex-shrink: 0; }
.nav-item.has-drop:hover .drop-chevron,
.nav-item.has-drop.open .drop-chevron { transform: rotate(180deg); }

.nav-drop {
  display: none;
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid #e3e6ef;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(12,19,34,.14);
  min-width: 220px; padding: 8px;
  z-index: 200;
}
.nav-item.has-drop:hover .nav-drop,
.nav-item.has-drop.open .nav-drop { display: block; }
.nav-drop a {
  display: block; padding: 8px 12px;
  font-size: 13.5px; color: var(--mid); font-weight: 500;
  text-decoration: none; border-radius: 8px;
  transition: background .1s, color .1s; white-space: nowrap;
}
.nav-drop a:hover { background: #f0f4ff; color: var(--brand); }
.drop-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #94a3b8;
  padding: 6px 12px 2px;
}

/* Mega drop — anchored to header width */
.mega-drop {
  display: none;
  width: 680px; padding: 20px 16px;
  flex-direction: row; gap: 0;
  /* anchor right edge to right side of header inner */
  right: 0; left: auto; transform: none;
  border-radius: 14px;
}
.nav-item.has-drop:hover .mega-drop,
.nav-item.has-drop.open .mega-drop { display: flex; }
/* Keep mega-drop inside viewport */
@media (max-width: 1100px) {
  .mega-drop { width: min(680px, 90vw); }
}
.mega-col {
  flex: 1; padding: 0 10px;
  border-inline-end: 1px solid #eef0f6;
}
.mega-col:last-child { border-inline-end: none; }
.mega-col .nav-drop a { padding: 7px 10px; font-size: 13px; }
.mega-group-label {
  font-size: 10px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: #2c63e0;
  padding: 8px 10px 3px; margin-top: 4px;
  opacity: .7;
}
.mega-divider { height: 1px; background: #f0f2f8; margin: 8px 0; }
.mega-featured {
  color: var(--brand) !important; font-weight: 600 !important;
}
.mega-featured:hover { background: #f0f4ff !important; }
.header-contact {
  display: flex; align-items: center; gap: 10px;
}
.header-phone {
  font-size: 13px; font-weight: 700; color: var(--brand);
  text-decoration: none; direction: ltr; white-space: nowrap; padding: 6px 0;
}
.header-phone:hover { text-decoration: underline; }
.header-whatsapp { display: flex; align-items: center; color: #25D366; opacity: .85; transition: opacity .15s; }
.header-whatsapp:hover { opacity: 1; }
.header-search-btn {
  background: none; border: none; display: flex; align-items: center; justify-content: center;
  padding: 8px; border-radius: var(--radius); color: var(--mid); cursor: pointer; transition: all .12s;
}
.header-search-btn:hover { background: var(--surface); color: var(--dark); }
.header-login {
  font-size: 13px; font-weight: 600; color: var(--mid); text-decoration: none;
  padding: 7px 13px; border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .15s; white-space: nowrap;
}
.header-login:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-nav-cta {
  background: var(--brand); color: #fff;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .15s; white-space: nowrap;
  border: 1px solid var(--brand-dark); flex-shrink: 0;
}
.btn-nav-cta:hover { background: var(--brand-dark); }
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.mobile-menu-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .2s; }

/* ── Hero (homepage) ── */
.hero-v2 {
  position: relative;
  padding: clamp(20px, 3vw, 36px) 0 clamp(28px, 4vw, 48px);
  background: radial-gradient(900px 500px at 50% -100px, var(--brand-light), transparent 70%), #fff;
  overflow: hidden;
}
.hero-v2-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(800px 400px at 50% 20%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(800px 400px at 50% 20%, black, transparent 80%);
  opacity: 0.4;
}
.hero-v2 .container { position: relative; z-index: 1; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 5px 14px; font-size: 13px; font-weight: 600; color: var(--mid);
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 3px rgba(22,163,100,.18); flex-shrink: 0;
}
.hero-v2 h1 {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 840px;
  margin: 0 auto;
}
.hero-v2 h1 .accent { color: var(--brand); display: block; }
.hero-v2 .lead {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--mid);
  max-width: 620px; margin: 20px auto 0;
  line-height: 1.6;
}
.hero-v2 .hero-ctas {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-v2 .hero-micronote {
  font-size: 13px; color: var(--muted); margin-top: 14px;
}
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 28px;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12.5px; font-weight: 500; color: var(--dark);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.trust-icon { font-size: 14px; line-height: 1; }

/* Integrations row */
.hero-integrations {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; margin-top: 20px;
  flex-wrap: wrap;
}
.integrations-label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  white-space: nowrap;
}
.integrations-icons {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.intg-icon {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: rgba(255,255,255,0.8); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  transition: box-shadow .15s, transform .15s;
  cursor: default;
}
.intg-icon:hover { box-shadow: 0 4px 12px rgba(12,19,34,.1); transform: translateY(-1px); }
.intg-icon span { font-size: 10px; font-weight: 500; color: var(--mid); white-space: nowrap; }

.hero-dashboard {
  margin-top: clamp(48px, 7vw, 72px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pop);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  max-width: 900px;
  margin-inline: auto;
}
.hero-db-chrome {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.db-dots { display: flex; gap: 6px; }
.db-dots span { width: 11px; height: 11px; border-radius: 50%; }
.db-url {
  flex: 1; text-align: center; font-size: 12px; color: var(--muted);
  font-family: ui-monospace, 'SF Mono', monospace;
}
.hero-db-body { display: grid; grid-template-columns: 200px 1fr; min-height: 380px; }
.db-sidebar {
  background: var(--surface); border-inline-end: 1px solid var(--border);
  padding: 16px;
}
.db-sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--mid); margin-bottom: 3px; cursor: default;
}
.db-sidebar-item.active {
  background: var(--brand-light); color: var(--brand-dark); font-weight: 600;
}
.db-sidebar-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.db-content { padding: 20px; }
.db-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.db-title-row h3 { font-size: 18px; letter-spacing: -0.01em; }
.db-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #d6f5e3; color: #128a55; border: 1px solid #a8e6c4;
  border-radius: var(--radius-pill); padding: 3px 10px; font-size: 11px; font-weight: 700;
}
.db-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.db-stat {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 14px;
  background: #fff;
}
.db-stat-label { font-size: 11px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.db-stat-dot { width: 6px; height: 6px; border-radius: 50%; }
.db-stat-num { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--dark); }
.db-charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.db-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; background: #fff; }
.db-card-label { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.db-heatmap { display: grid; grid-template-columns: auto repeat(7, 1fr); gap: 4px; }
.db-hm-label { font-size: 10px; color: var(--muted); align-self: center; padding-inline-end: 4px; }
.db-hm-day { font-size: 10px; color: var(--muted); text-align: center; font-weight: 600; }
.db-hm-cell { aspect-ratio: 1.2/1; border-radius: 3px; }
.db-payroll-num { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--dark); }
.db-payroll-bar { height: 6px; background: var(--border); border-radius: var(--radius-pill); margin: 10px 0 12px; overflow: hidden; }
.db-payroll-fill { height: 100%; background: var(--success); border-radius: var(--radius-pill); }
.db-payroll-link { font-size: 13px; font-weight: 600; color: var(--brand); }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  background: radial-gradient(900px 400px at 50% -80px, var(--brand-light), transparent 70%), #fff;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(700px 350px at 50% 0%, black, transparent 80%);
  opacity: 0.35;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--dark); font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.page-hero .lead {
  font-size: clamp(15px, 2vw, 17px); color: var(--mid);
  max-width: 620px; line-height: 1.75; margin-bottom: 28px;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb, .page-hero .breadcrumb .sep { color: var(--muted); }
/* Force outline buttons on light hero to use dark colors (override inline styles) */
.page-hero .btn-outline { color: var(--dark) !important; border-color: var(--border-strong) !important; background: #fff !important; }
.page-hero .btn-outline:hover { color: var(--brand) !important; border-color: var(--brand) !important; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 10px 0 18px; font-size: 13px; color: var(--muted);
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: box-shadow .15s, transform .15s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; font-size: 17px; }
.card p { font-size: 14px; }
.card .arrow { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--brand); }

/* ── Feature Cards (new design) ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; background: #fff;
  display: flex; flex-direction: column; gap: 14px;
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); flex-shrink: 0;
}
.feat-tag { font-size: 11px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.feat-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.feat-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── Logo Strip ── */
.logos-strip { padding: 48px 0; border-bottom: 1px solid var(--border); }
.logos-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-align: center; margin-bottom: 20px; }
.logos-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; justify-items: center; opacity: 0.65; }
.logo-item { font-size: 13px; font-weight: 700; color: var(--mid); letter-spacing: -0.01em; font-family: ui-monospace, monospace; }

/* ── Testimonial ── */
.testimonial-wrap {
  background: var(--dark); color: #fff;
  border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 64px);
  position: relative; overflow: hidden;
}
.testimonial-glow {
  position: absolute; top: -60px; inset-inline-end: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, var(--brand), transparent 70%);
  opacity: 0.35; pointer-events: none;
}
.testimonial-quote {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500; letter-spacing: -0.015em;
  line-height: 1.35; position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--success)); flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
.stat-num { font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: var(--brand); letter-spacing: -0.025em; display: block; }
.stat-label { font-size: 13px; color: var(--mid); margin-top: 6px; font-weight: 500; }

/* ── CTA Section ── */
.cta-box {
  background: linear-gradient(135deg, var(--brand-light), #fff 60%);
  border: 1px solid #d9e6ff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 72px) clamp(24px, 5vw, 48px);
  text-align: center;
}
.cta-box h2 { letter-spacing: -0.025em; }

/* ── Feature List ── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check { color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; align-items: start; }
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 28px 32px;
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow .15s, transform .15s;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 8px 32px rgba(44,99,224,.14);
  transform: translateY(-4px);
}
.pricing-card.featured:hover { transform: translateY(-6px); }
/* "הכי פופולרי" badge */
.pricing-card.featured::before {
  content: 'הכי פופולרי';
  position: absolute; top: -13px; right: 50%; transform: translateX(50%);
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-card .price { font-size: 36px; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.pricing-card .price small { font-size: 14px; font-weight: 400; color: var(--mid); letter-spacing: 0; }
.pricing-card .features { list-style: none; margin: 20px 0 24px; flex: 1; padding: 0; }
.pricing-card .features li { font-size: 13px; color: var(--mid); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.pricing-card .features li:last-child { border-bottom: none; }
.pricing-card .features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }

/* ── Prose ── */
.prose { max-width: 720px; }
.prose h2 { font-size: 26px; margin: 36px 0 14px; color: var(--dark); }
.prose h3 { font-size: 19px; margin: 28px 0 10px; color: var(--dark); }
.prose p  { font-size: 16px; color: var(--mid); margin-bottom: 18px; line-height: 1.8; }
.prose ul, .prose ol { padding-inline-start: 24px; margin-bottom: 18px; }
.prose li { font-size: 16px; color: var(--mid); margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--dark); }
.prose a { color: var(--brand); text-decoration: underline; }

/* ── FAQ Accordion ── */
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 16px; font-weight: 600;
  color: var(--dark); font-family: inherit; text-align: inherit;
}
.faq-q .icon { font-size: 18px; color: var(--brand); flex-shrink: 0; transition: transform .2s; margin-inline-start: 12px; }
.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 20px; font-size: 15px; color: var(--mid); line-height: 1.8; display: none; }
.faq-a.open { display: block; }

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 48px; padding: 56px 24px 40px; max-width: 1100px; margin: 0 auto;
}
.footer-brand .logo img { filter: brightness(0) invert(1); height: 32px; }
.footer-brand p { font-size: 13px; margin-top: 14px; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.footer-links h3 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.07em; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact { margin-top: 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 8px; transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px; text-align: center;
  max-width: 1100px; margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ── Forms ── */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--mid); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: inherit; color: var(--dark);
  transition: border-color .15s; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(44,99,224,.1);
}

/* ── Search overlay ── */
.search-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-start; justify-content: center; padding-top: 10vh; }
.search-overlay[hidden] { display: none; }
.search-overlay-backdrop { position: absolute; inset: 0; background: rgba(12,19,34,.55); backdrop-filter: blur(3px); }
.search-overlay-panel { position: relative; background: #fff; border-radius: var(--radius-lg); width: min(640px, 92vw); max-height: 70vh; display: flex; flex-direction: column; box-shadow: var(--shadow-pop); overflow: hidden; }
.search-overlay-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px 8px; }
.search-overlay-head h2 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.search-overlay-close { background: none; border: 0; font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 6px; }
.search-overlay-close:hover { color: var(--dark); }
.search-overlay-input-wrap { display: flex; align-items: center; gap: 10px; padding: 6px 22px 14px; border-bottom: 1px solid var(--border); }
.search-overlay-input { flex: 1; border: 0; outline: none; font-size: 1rem; padding: 10px 0; background: transparent; color: var(--dark); font-family: inherit; }
.search-overlay-results { list-style: none; margin: 0; padding: 8px 0; overflow-y: auto; flex: 1; }
.search-overlay-results li { margin: 0; }
.search-overlay-results a { display: block; padding: 12px 22px; color: var(--dark); text-decoration: none; border-inline-start: 3px solid transparent; }
.search-overlay-results a:hover { background: var(--surface); border-inline-start-color: var(--brand); }
.search-overlay-results .r-title { font-weight: 600; font-size: .93rem; margin-bottom: 2px; }
.search-overlay-results .r-desc { font-size: .8rem; color: var(--mid); line-height: 1.45; }
.search-overlay-results .r-url { font-size: .7rem; color: var(--muted); margin-top: 2px; direction: ltr; text-align: start; }
.search-overlay-hint { padding: 14px 22px 18px; margin: 0; color: var(--muted); font-size: .82rem; }
.search-overlay-empty { padding: 18px 22px; color: var(--muted); font-size: .85rem; }

/* ── Mobile ── */
@media (max-width: 860px) {
  .main-nav {
    display: none; position: absolute; top: 64px; inset-inline: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 8px 0;
    box-shadow: var(--shadow); z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--border); font-size: 15px; border-radius: 0; }
  .mobile-menu-toggle { display: flex; }
  .header-contact .header-phone { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-db-body { grid-template-columns: 1fr; }
  .db-sidebar { display: none; }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
  .db-charts { grid-template-columns: 1fr; }
  .logos-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 32px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-v2 h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-v2 .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-dashboard { border-radius: var(--radius-lg); }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
}
