@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --orange: #F5B731;
  --orange-dim: rgba(245,183,49,0.10);
  --orange-mid: rgba(245,183,49,0.22);
  --bg: #ffffff;
  --bg-card: #f7f6f3;
  --bg-elevated: #eeece8;
  --text: #111110;
  --text-sec: #5c5852;
  --text-muted: #9e9a94;
  --border: rgba(0,0,0,0.08);
  --r: 8px;
  --r-lg: 14px;
  --max: 1200px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 1600px;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  border-radius: 0;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition:
    max-width 0.6s ease,
    padding 0.6s ease,
    border-radius 0.6s ease,
    top 0.6s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.nav.scrolled {
  top: 14px;
  max-width: 720px;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}
.nav.scrolled .nav-demo-btn {
  padding: 8px 16px;
}
.nav.scrolled .nav-pricing-pill {
  background: transparent;
}
.nav.scrolled .nav-pricing-pill:hover {
  background: rgba(0,0,0,0.04);
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.logo-mark {
  width: 30px; height: 30px; background: var(--orange);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 17px; height: 17px; fill: #0c0b0a; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  color: var(--text-sec); text-decoration: none; font-size: 15px;
  padding: 7px 15px; border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: rgba(0,0,0,0.05);
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; border-radius: var(--r);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #111110; }
.btn-primary:hover { background: #e8aa22; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.04); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ── LAYOUT ──────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.section { padding: 120px 0; }
.section-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 18px; display: block;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* -- LEGAL PAGES -------------------------------- */
body.legal {
  background: #fbfaf7;
}
.legal-hero {
  padding: 150px 24px 54px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #f7f3ea 100%);
}
.legal-hero-inner,
.legal-content {
  max-width: 920px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a17910;
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
}
.legal-hero p {
  max-width: 660px;
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.65;
}
.legal-content {
  padding: 70px 24px 96px;
}
.legal-note {
  border: 1px solid rgba(245,183,49,0.35);
  background: rgba(245,183,49,0.11);
  border-radius: 8px;
  padding: 18px 20px;
  color: #4f421f;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 38px;
}
.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-section:last-child {
  border-bottom: 0;
}
.legal-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.legal-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin: 22px 0 8px;
}
.legal-section p,
.legal-section li {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
}
.legal-section p + p {
  margin-top: 12px;
}
.legal-section ul {
  margin: 12px 0 0 20px;
}
.legal-section a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

/* ── TYPE ────────────────────────────────── */
.display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 800; line-height: 0.96; letter-spacing: -0.04em;
}
.h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
}
.h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
}
.h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.015em;
}
.accent { color: var(--orange); }
.body-lg { font-size: 19px; line-height: 1.7; color: var(--text-sec); }
.body-md { font-size: 16px; line-height: 1.65; color: var(--text-sec); }

/* ── CARDS ───────────────────────────────── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: rgba(245,92,39,0.22); transform: translateY(-2px); }

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 180px 56px 100px;
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dim); border: 1px solid var(--orange-mid);
  color: var(--orange); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 32px;
  width: fit-content; letter-spacing: 0.06em; text-transform: uppercase;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.hero h1 { margin-bottom: 26px; }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px); color: var(--text-sec);
  line-height: 1.65; max-width: 480px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 0;
  padding-top: 40px; border-top: 1px solid var(--border);
  width: fit-content;
}
.hero-stat { padding: 0 48px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px; font-weight: 700; color: var(--text);
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

/* ── MOCKUP ──────────────────────────────── */
.mockup-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mockup-inner { max-width: var(--max); margin: 0 auto; padding: 96px 56px; }
.mockup-hdr { margin-bottom: 52px; }
.mockup-shell {
  width: 100%; background: #fff;
  border-radius: 14px; border: 1px solid rgba(0,0,0,0.09);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.07), 0 32px 72px rgba(0,0,0,0.12);
}
.mockup-bar {
  height: 38px; background: #f2f1ef;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; padding: 0 14px; gap: 7px;
}
.m-dot { width: 11px; height: 11px; border-radius: 50%; }
.m-dot.r { background: #ff5f57; }
.m-dot.y { background: #febc2e; }
.m-dot.g { background: #27c93f; }
.mockup-bd { display: flex; height: 460px; }
.m-sidebar {
  width: 192px; flex-shrink: 0; background: #f7f6f3;
  border-right: 1px solid rgba(0,0,0,0.07);
  padding: 18px 10px; display: flex; flex-direction: column; gap: 2px;
}
.m-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 800; color: #111;
  padding: 8px 10px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.m-logo-sq { width: 18px; height: 18px; background: var(--orange); border-radius: 4px; flex-shrink: 0; }
.m-nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 6px; font-size: 12px; color: #999;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.m-nav-item.on { background: rgba(0,0,0,0.06); color: #111; }
.m-nav-sq { width: 13px; height: 13px; border-radius: 3px; background: currentColor; opacity: 0.4; flex-shrink: 0; }
.m-main { flex: 1; overflow: hidden; display: flex; flex-direction: column; background: #fff; }
.m-topbar {
  height: 50px; border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: space-between; padding: 0 22px;
}
.m-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #111; }
.m-search {
  background: #f5f4f1; border: 1px solid rgba(0,0,0,0.09);
  border-radius: 6px; padding: 5px 12px; font-size: 12px; color: #aaa; width: 180px;
}
.m-content { flex: 1; padding: 20px 22px; overflow: hidden; display: flex; flex-direction: column; gap: 18px; }
.m-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.m-stat {
  background: #fafaf9; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px; padding: 13px;
}
.m-stat-v { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: #111; }
.m-stat-l { font-size: 11px; color: #999; margin-top: 3px; }
.m-stat-c { font-size: 11px; color: #27c93f; margin-top: 5px; }
.m-chart-area { background: #fafaf9; border: 1px solid rgba(0,0,0,0.07); border-radius: 8px; padding: 14px; flex: 0 0 90px; }
.m-chart-lbl { font-size: 11px; color: #999; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.m-chart-lbl svg { display: block; }
.m-flow-list { display: flex; flex-direction: column; gap: 6px; }
.m-flow-hdr { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; color: #111; margin-bottom: 2px; display: flex; justify-content: space-between; }
.m-flow {
  display: flex; align-items: center; justify-content: space-between;
  background: #fafaf9; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px; padding: 8px 12px; font-size: 11px; color: #999;
}
.m-flow-name { color: #333; font-size: 11px; }
.m-status { display: flex; align-items: center; gap: 5px; font-size: 10px; }
.m-dot2 { width: 5px; height: 5px; border-radius: 50%; }
.m-dot2.on { background: #27c93f; }
.m-dot2.pause { background: var(--orange); }
.m-dot2.run { background: #4a9eff; }

/* ── PILLARS ─────────────────────────────── */
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-dim); border: 1px solid var(--orange-mid);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pillar-link { color: var(--orange); font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-weight: 500; }
.pillar-link:hover { gap: 8px; }

/* ── HOW IT WORKS ────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--orange);
  margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--text-sec); line-height: 1.6; }

/* ── INDUSTRIES ──────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 28px 24px;
  text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.industry-card:hover { border-color: rgba(245,92,39,0.22); transform: translateY(-2px); }
.ind-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange-dim); border: 1px solid var(--orange-mid);
  display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.ind-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ind-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; }
.ind-desc { font-size: 14px; color: var(--text-sec); line-height: 1.5; }
.ind-arrow { margin-top: 6px; color: var(--orange); font-size: 16px; }

/* ── TESTIMONIAL ─────────────────────────── */
.testi-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-inner { max-width: 780px; margin: 0 auto; padding: 100px 56px; text-align: center; }
.testi-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.2vw, 32px); font-weight: 600;
  line-height: 1.35; color: var(--text); letter-spacing: -0.01em; margin-bottom: 40px;
}
.testi-q .qmark { color: var(--orange); font-size: 1.2em; line-height: 0; vertical-align: -0.15em; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--orange);
}
.testi-name { font-size: 15px; font-weight: 500; text-align: left; }
.testi-role { font-size: 13px; color: var(--text-muted); }

/* ── CTA BANNER ──────────────────────────── */
.cta-section { border-top: 1px solid var(--border); }
.cta-inner { max-width: var(--max); margin: 0 auto; padding: 120px 56px; text-align: center; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-sec); margin-bottom: 40px; font-size: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────── */
.footer { border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 64px 56px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 800;
  color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.footer-logo-mark { width: 26px; height: 26px; background: var(--orange); border-radius: 6px; flex-shrink: 0; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 220px; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--text); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 24px 56px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-muted);
}

/* ── ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── PLATFORM PAGE EXTRAS ────────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0; border-top: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: none; }
.feature-row.flip { direction: rtl; }
.feature-row.flip > * { direction: ltr; }
.feature-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-dim); border: 1px solid var(--orange-mid);
  color: var(--orange); font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.feature-text h3 { margin-bottom: 14px; font-size: clamp(24px, 2.2vw, 36px); }
.feature-text p { color: var(--text-sec); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.feature-items { display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-sec); }
.feature-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); margin-top: 8px; flex-shrink: 0; }
.feature-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: stretch;
}

/* ── INTEGRATION LOGOS ───────────────────── */
.int-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.int-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-muted); aspect-ratio: 1; text-align: center; line-height: 1.3;
  transition: border-color 0.2s, color 0.2s;
}
.int-item:hover { border-color: rgba(0,0,0,0.2); color: var(--text); }

/* ── PAGE HERO (non-home) ────────────────── */
.page-hero {
  padding: 180px 56px 100px;
  max-width: var(--max); margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 700px; margin-bottom: 24px; }
.page-hero p { max-width: 520px; font-size: 19px; color: var(--text-sec); line-height: 1.7; }


/* ── HERO (CENTERED) ─────────────────────── */
.hero-centered {
  padding: 160px 24px 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.hero-centered .hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange-dim); border: 1px solid var(--orange-mid);
  color: var(--orange); font-size: 12px; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 28px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-centered h1 { max-width: 720px; margin-bottom: 22px; }
.hero-centered .hero-sub {
  font-size: 18px; color: var(--text-sec); max-width: 480px;
  line-height: 1.65; margin-bottom: 36px;
}
.hero-centered .hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 64px;
}
.hero-screenshot {
  width: 100%; max-width: 1080px; margin: 0 auto;
  position: relative; padding: 0 24px;
}
.hero-screenshot-inner {
  width: 100%; border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1); border-bottom: none;
  box-shadow: 0 -4px 0 rgba(245,92,39,0.12), 0 0 0 1px rgba(0,0,0,0.06), 0 24px 64px rgba(0,0,0,0.1);
}

/* ── LOGO STRIP ──────────────────────────── */
.logo-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.logo-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 56px;
}
.logo-strip-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: center; margin-bottom: 28px;
}
.logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.logo-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--text-muted); letter-spacing: -0.01em;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--text-sec); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled {
    max-width: calc(100% - 24px);
    padding: 6px 6px 6px 18px;
  }
  .hero { padding: 0 24px 80px; }
  .wrap { padding: 0 24px; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .mockup-sidebar, .m-sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .m-stat-row { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .int-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero { padding: 140px 24px 80px; }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .nav {
    top: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.86);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  }
  .nav.scrolled {
    top: 10px;
    max-width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
  }
  .nav > div {
    min-width: 0;
  }
  .nav > div:first-child {
    gap: 10px !important;
  }
  .nav > div:last-child {
    gap: 6px !important;
  }
  .nav-logo img {
    height: 20px !important;
    max-width: 118px;
  }
  .nav-login {
    display: none !important;
  }
  .nav-pricing-pill {
    min-height: 38px;
    padding: 8px 12px !important;
    font-size: 13px !important;
    border-radius: 100px !important;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-pricing-pill:hover,
  .nav-pricing-pill:focus,
  .nav-pricing-pill:active {
    border-radius: 100px !important;
  }
  .nav-demo-btn {
    min-height: 38px;
    padding: 8px 15px !important;
    font-size: 13px !important;
    justify-content: center;
    border-radius: 100px !important;
    -webkit-tap-highlight-color: transparent;
  }
  .ghost-pill,
  .price-cta,
  .btn {
    min-height: 42px;
    padding: 10px 18px !important;
    justify-content: center;
    border-radius: 100px !important;
    -webkit-tap-highlight-color: transparent;
  }
  .ghost-pill:hover,
  .ghost-pill:focus,
  .ghost-pill:active,
  .price-cta:hover,
  .price-cta:focus,
  .price-cta:active,
  .btn:hover,
  .btn:focus,
  .btn:active {
    border-radius: 100px !important;
  }
  .legal-hero {
    padding: 118px 18px 42px;
  }
  .legal-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }
  .legal-hero p {
    font-size: 15px;
  }
  .legal-content {
    padding: 44px 18px 68px;
  }
  .legal-note {
    padding: 16px;
    margin-bottom: 24px;
  }
  .legal-section {
    padding: 24px 0;
  }
  .legal-section p,
  .legal-section li {
    font-size: 15px;
    line-height: 1.68;
  }
  .industry-grid, .int-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 380px) {
  .nav-pricing-pill {
    padding: 8px 9px !important;
  }
  .nav-demo-btn {
    padding: 8px 12px !important;
  }
}
