@charset "UTF-8";
/* ==========================================================================
   CRMOBILE — אתר מכירה
   פלטת צבעים נגזרת מהלוגו: נייבי #00013B · תכלת #07C2FF · כחול #3320FF · סגול #7A02FD
   ========================================================================== */

:root {
	/* דיו */
	--ink: #00013b;
	--ink-2: #0b1150;
	--ink-3: #232a63;
	--ink-mute: #5b628c;
	--ink-soft: #838aad;

	/* מברשת הלוגו */
	--cyan: #07c2ff;
	--blue: #3320ff;
	--violet: #7a02fd;

	/* משטחים */
	--bg: #ffffff;
	--bg-soft: #f4f6fe;
	--bg-tint: #eef1ff;
	--line: #e1e5f5;
	--line-2: #eef0fa;

	/* מצבים */
	--ok: #027a48;
	--ok-bg: #e9fbf2;
	--warn: #b54708;
	--warn-bg: #fff8e8;
	--bad: #b42318;
	--bad-bg: #fef3f2;

	/* גרדיאנטים */
	--grad: linear-gradient(115deg, #07c2ff 0%, #3320ff 52%, #7a02fd 100%);
	--grad-soft: linear-gradient(115deg, rgba(7, 194, 255, .12) 0%, rgba(51, 32, 255, .12) 52%, rgba(122, 2, 253, .12) 100%);
	--grad-dark: linear-gradient(160deg, #00013b 0%, #0a0733 46%, #1b0546 100%);

	/* מסגרות וצללים */
	--r-sm: 10px;
	--r: 16px;
	--r-lg: 24px;
	--r-xl: 34px;
	--sh-sm: 0 1px 2px rgba(0, 1, 59, .06), 0 4px 12px rgba(0, 1, 59, .05);
	--sh: 0 10px 30px rgba(0, 1, 59, .08);
	--sh-lg: 0 26px 70px rgba(0, 1, 59, .16);
	--sh-glow: 0 20px 60px rgba(51, 32, 255, .28);

	/* פריסה */
	--wrap: 1180px;
	--gut: 24px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body.site {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Heebo, "Segoe UI", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.75;
	direction: rtl;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img,
svg { max-width: 100%; height: auto; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	margin: 0 0 .55em;
	line-height: 1.16;
	letter-spacing: -.015em;
	font-weight: 800;
	color: var(--ink);
	text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 700; }

ul, ol { margin: 0 0 1.1em; padding-inline-start: 1.35em; }
li { margin-bottom: .45em; }

code {
	font-family: Consolas, "Courier New", monospace;
	background: var(--bg-tint);
	border-radius: 6px;
	padding: 1px 6px;
	font-size: .92em;
	direction: ltr;
	display: inline-block;
}

:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
	border-radius: 6px;
}

::selection {
	background: rgba(51, 32, 255, .16);
	color: var(--ink);
}

.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }

.skip-link {
	position: absolute;
	inset-inline-start: 50%;
	top: -100px;
	transform: translateX(50%);
	background: var(--ink);
	color: #fff;
	padding: 10px 20px;
	border-radius: 0 0 12px 12px;
	z-index: 999;
	font-weight: 700;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ===== טיפוגרפיה שיווקית ===== */
.eyebrow {
	margin: 0 0 14px;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 10px;
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 3px;
	border-radius: 99px;
	background: var(--grad);
	flex: none;
}
.eyebrow.is-center { justify-content: center; }

.grad-text {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.section-lead {
	font-size: 1.12rem;
	line-height: 1.8;
	color: var(--ink-mute);
	max-width: 68ch;
	margin: 0 0 34px;
}
.section-lead.is-center { margin-inline: auto; text-align: center; }

.prose { max-width: 74ch; }
.prose h3 { margin-top: 1.7em; }
.prose p,
.prose li { color: var(--ink-mute); }
.prose strong { color: var(--ink); }

/* ===== כפתורים ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 14px 28px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 800;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
	white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
	background: var(--grad);
	color: #fff;
	box-shadow: var(--sh-glow);
	position: relative;
	background-size: 160% 100%;
	background-position: 0% 50%;
}
.btn-primary:hover { background-position: 100% 50%; color: #fff; }

.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--sh); }
.btn-dark:hover { background: var(--ink-2); color: #fff; }

.btn-ghost {
	background: #fff;
	color: var(--ink);
	box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); }

.btn-wide { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }

.linkish {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: var(--blue);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ===== ניווט ===== */
.cms-preview-bar {
	background: var(--warn);
	color: #fff;
	text-align: center;
	padding: 9px 14px;
	font-size: .88rem;
	font-weight: 700;
}
.cms-preview-bar a { color: #fff; text-decoration: underline; }

.site-nav {
	position: sticky;
	top: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding: 13px clamp(16px, 4vw, 40px);
	background: rgba(255, 255, 255, .82);
	backdrop-filter: saturate(180%) blur(16px);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--line-2);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	color: var(--ink);
	flex: none;
}
.site-brand img { width: 38px; height: 38px; border-radius: 11px; }
.site-brand strong { font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; }
.site-brand:hover { text-decoration: none; }

.site-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-inline-end: auto;
	flex-wrap: wrap;
	order: 2;
}
.site-links a {
	color: var(--ink-mute);
	font-weight: 600;
	font-size: .97rem;
	padding: 9px 14px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}
.site-links a:hover { background: var(--bg-tint); color: var(--ink); text-decoration: none; }
.site-links a.is-on { color: var(--blue); background: var(--bg-tint); }

.site-nav-cta { display: flex; align-items: center; gap: 10px; flex: none; order: 3; }
.site-nav-cta .btn { padding: 11px 22px; font-size: .95rem; width: auto; }
.site-home-btn { display: none; }

.nav-toggle {
	display: none;
	background: #fff;
	border: 1.5px solid var(--line);
	color: var(--ink);
	width: 44px;
	height: 44px;
	border-radius: 13px;
	font-size: 1.2rem;
	cursor: pointer;
	line-height: 1;
}

/* ===== מקטעים ===== */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-inner {
	width: min(var(--wrap), 100% - (var(--gut) * 2));
	margin-inline: auto;
}
.section.is-soft { background: var(--bg-soft); }
.section.is-tint {
	background:
		radial-gradient(1100px 480px at 88% -8%, rgba(7, 194, 255, .1), transparent 62%),
		radial-gradient(900px 460px at 6% 108%, rgba(122, 2, 253, .09), transparent 62%),
		var(--bg-soft);
}

.section-head { max-width: 74ch; margin-bottom: 44px; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .section-lead { margin-inline: auto; }

/* ===== HERO ===== */
.hero {
	position: relative;
	overflow: hidden;
	background: var(--grad-dark);
	color: #fff;
	padding: clamp(56px, 7vw, 104px) 0 clamp(72px, 9vw, 128px);
	isolation: isolate;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(760px 420px at 78% 6%, rgba(7, 194, 255, .34), transparent 60%),
		radial-gradient(680px 460px at 12% 92%, rgba(122, 2, 253, .38), transparent 62%),
		radial-gradient(520px 300px at 50% 40%, rgba(51, 32, 255, .22), transparent 66%);
	z-index: -2;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
	background-size: 62px 62px;
	mask-image: radial-gradient(closest-side at 50% 42%, #000 55%, transparent 100%);
	-webkit-mask-image: radial-gradient(closest-side at 50% 42%, #000 55%, transparent 100%);
	z-index: -1;
}

.hero-inner {
	width: min(var(--wrap), 100% - (var(--gut) * 2));
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hero .eyebrow { color: #8be3ff; }
.hero .eyebrow::before { background: linear-gradient(90deg, #07c2ff, #7a02fd); }

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .grad-text {
	background: linear-gradient(115deg, #6ddcff 0%, #9d8bff 50%, #cf8bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero-lead {
	font-size: clamp(1.06rem, 1.6vw, 1.24rem);
	line-height: 1.78;
	color: #c8cdf0;
	max-width: 58ch;
	margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-actions .btn-ghost {
	background: rgba(255, 255, 255, .07);
	color: #fff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .26);
	backdrop-filter: blur(6px);
}
.hero-actions .btn-ghost:hover {
	background: rgba(255, 255, 255, .14);
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5);
	color: #fff;
}

.hero-proof {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
}
.hero-proof li {
	margin: 0;
	color: #b7bde6;
	font-size: .95rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}
.hero-proof li::before {
	content: "";
	width: 18px;
	height: 18px;
	border-radius: 99px;
	flex: none;
	background:
		linear-gradient(135deg, rgba(7, 194, 255, .95), rgba(122, 2, 253, .95));
	box-shadow: 0 0 0 4px rgba(7, 194, 255, .12);
	position: relative;
}

/* צילום מסך מדומה */
.app-shot { margin: 0; }
.app-shell {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	background: #fff;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-lg), 0 0 0 1px rgba(255, 255, 255, .12);
	transform: perspective(1600px) rotateY(4deg) rotateX(2deg);
	font-size: 12px;
	line-height: 1.5;
	color: var(--ink);
}
.app-side { background: var(--ink); color: #b9c0e8; padding: 14px 11px; }
.app-side-brand { margin-bottom: 14px; }
.app-side-brand b { display: block; color: #fff; font-size: 12.5px; letter-spacing: .02em; }
.app-side-brand small { color: #7d86bd; font-size: 10px; }
.app-side p {
	margin: 12px 0 6px;
	font-size: 9.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #6b74ad;
}
.app-side span {
	display: block;
	padding: 6px 9px;
	border-radius: 8px;
	margin-bottom: 3px;
	font-size: 11.5px;
	color: #c3c9ef;
}
.app-side span.is-on { background: var(--grad); color: #fff; font-weight: 700; }

.app-main { background: var(--bg-soft); min-width: 0; }
.app-top {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: wrap;
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: 10px 14px;
}
.app-top strong { font-size: 12px; margin-inline-end: 4px; }
.app-pill {
	background: var(--bg-tint);
	border-radius: 99px;
	padding: 4px 10px;
	font-size: 10.5px;
	font-weight: 700;
	color: var(--ink-3);
	white-space: nowrap;
}
.app-pill b { color: var(--blue); }
.app-pill.is-work { background: rgba(122, 2, 253, .1); color: var(--violet); }
.app-pill.is-work b { color: var(--violet); }

.app-shell .app-page { padding: 14px; background: none; }
.app-shell .app-page h3 { font-size: 14px; margin: 0 0 10px; }
.app-search {
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: 10px;
	padding: 8px 11px;
	color: var(--ink-soft);
	font-size: 11px;
	margin-bottom: 11px;
}
.app-search em { color: var(--ink-soft); font-style: normal; opacity: .8; }

.app-table { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.app-th, .app-tr {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, .95fr) minmax(0, 1.25fr);
	gap: 8px;
	padding: 8px 11px;
	align-items: center;
}
.app-th { background: var(--bg-soft); font-size: 10px; color: var(--ink-soft); font-weight: 700; }
.app-tr { border-top: 1px solid var(--line-2); font-size: 11px; }
.app-tr span { min-width: 0; display: flex; align-items: center; gap: 6px; }
.app-tr i {
	font-style: normal;
	width: 21px;
	height: 21px;
	border-radius: 99px;
	background: var(--grad);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.app-tr small { color: var(--ink-soft); font-size: 9.5px; }
.app-acts { gap: 5px !important; flex-wrap: wrap; }
.app-acts u {
	text-decoration: none;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 7px;
	padding: 2px 7px;
	font-size: 9.5px;
	font-weight: 700;
	color: var(--ink-3);
}
.app-acts u.pri { background: var(--grad); color: #fff; border-color: transparent; }

.app-shot figcaption {
	margin-top: 16px;
	color: #a3aad6;
	font-size: .9rem;
	text-align: center;
}

/* ===== רצועת נתונים ===== */
.metric-strip {
	width: min(var(--wrap), 100% - (var(--gut) * 2));
	margin: -56px auto 0;
	position: relative;
	z-index: 5;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--sh);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	overflow: hidden;
}
.metric {
	padding: 26px 22px;
	border-inline-start: 1px solid var(--line-2);
	text-align: center;
}
.metric:first-child { border-inline-start: 0; }
.metric b {
	display: block;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.metric span { display: block; margin-top: 6px; color: var(--ink-mute); font-size: .92rem; font-weight: 600; }

/* ===== כרטיסי יכולת ===== */
.feat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
	gap: 18px;
}
.feat-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px 26px;
	position: relative;
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feat-card::before {
	content: "";
	position: absolute;
	inset-block-start: 0;
	inset-inline: 0;
	height: 3px;
	background: var(--grad);
	opacity: 0;
	transition: opacity .18s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.feat-card:hover::before { opacity: 1; }
.feat-card h3 { margin-bottom: 10px; }
.feat-card p { color: var(--ink-mute); font-size: .99rem; margin-bottom: 14px; }
.feat-ico {
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: var(--grad-soft);
	color: var(--blue);
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid rgba(51, 32, 255, .14);
}
.feat-ico svg { width: 25px; height: 25px; stroke-width: 1.9; }
.feat-list { list-style: none; margin: 0; padding: 0; }
.feat-list li {
	position: relative;
	padding-inline-start: 22px;
	margin-bottom: 7px;
	font-size: .93rem;
	color: var(--ink-3);
}
.feat-list li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: .62em;
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: var(--grad);
}
.feat-tag {
	display: inline-block;
	margin-top: 4px;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .06em;
	color: var(--violet);
	background: rgba(122, 2, 253, .08);
	border-radius: 99px;
	padding: 3px 10px;
}

/* ===== שורות הסבר מעמיק ===== */
.deep { display: grid; gap: clamp(48px, 7vw, 84px); }
.deep-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 62px);
	align-items: center;
}
.deep-row:nth-child(even) .deep-visual { order: -1; }
.deep-copy h2 { font-size: clamp(1.5rem, 2.7vw, 2.1rem); }
.deep-copy p { color: var(--ink-mute); }
.deep-copy .feat-list { margin-top: 18px; }
.deep-copy .feat-list li { font-size: .97rem; margin-bottom: 9px; }

.deep-visual {
	background:
		radial-gradient(600px 320px at 80% 0%, rgba(7, 194, 255, .16), transparent 60%),
		var(--grad-dark);
	border-radius: var(--r-xl);
	padding: 28px;
	box-shadow: var(--sh);
	min-width: 0;
}

/* לוח סטטוסים מדומה */
.flow-board { display: grid; gap: 10px; }
.flow-step {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 14px;
	padding: 12px 14px;
	color: #dfe3ff;
	backdrop-filter: blur(4px);
}
.flow-step em {
	font-style: normal;
	width: 34px;
	height: 34px;
	border-radius: 11px;
	background: var(--grad);
	color: #fff;
	font-weight: 800;
	font-size: .88rem;
	display: grid;
	place-items: center;
}
.flow-step b { display: block; color: #fff; font-size: .98rem; font-weight: 700; }
.flow-step small { color: #a7aeda; font-size: .85rem; }
.flow-step u {
	text-decoration: none;
	font-size: .74rem;
	font-weight: 800;
	color: #7ee6ff;
	background: rgba(7, 194, 255, .14);
	border-radius: 99px;
	padding: 4px 10px;
	white-space: nowrap;
}

/* קופסת קוד/נתון בתוך visual */
.spec-box {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 18px 20px;
	color: #dfe3ff;
}
.spec-box h4 { color: #fff; font-size: .98rem; margin-bottom: 12px; }
.spec-row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: .92rem;
}
.spec-row:first-of-type { border-top: 0; }
.spec-row span { color: #a7aeda; }
.spec-row b { color: #fff; font-weight: 700; }
.spec-row b.ok { color: #6ee7b7; }
.spec-row b.warn { color: #fcd34d; }
.spec-box--stack { margin-top: 14px; }

/* ===== איך זה עובד ===== */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 18px;
	counter-reset: st;
}
.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 26px 24px;
	position: relative;
}
.step b {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: var(--grad);
	color: #fff;
	font-size: 1.05rem;
	font-weight: 800;
	margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--ink-mute); font-size: .95rem; }

/* ===== כרטיסי עמודי תווך ===== */
.sell-sec .sell-grid,
.sell-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
	gap: 18px;
}
.pillar-grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-content: start; }
.sell-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 30px 26px;
	transition: transform .18s ease, box-shadow .18s ease;
}
.sell-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.sell-num {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var(--grad);
	color: #fff;
	font-weight: 800;
	margin-bottom: 18px;
}
.sell-card p { color: var(--ink-mute); margin: 0; }

/* ===== אינטגרציות ===== */
.integ-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}
.integ {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 22px;
	display: grid;
	gap: 8px;
}
.integ b { font-size: 1.02rem; }
.integ span { color: var(--ink-mute); font-size: .93rem; }
.integ-mark {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--grad-soft);
	border: 1px solid rgba(51, 32, 255, .14);
	display: grid;
	place-items: center;
	font-weight: 800;
	color: var(--blue);
	font-size: 1rem;
}

/* ===== מסלולים ===== */
.plans-sec { scroll-margin-top: 90px; }
.plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(298px, 1fr));
	gap: 20px;
	align-items: start;
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 30px 28px;
	box-shadow: var(--sh-sm);
}

.plan { position: relative; display: flex; flex-direction: column; height: 100%; }
.plan.is-featured {
	border-color: transparent;
	box-shadow: var(--sh-lg);
	background:
		linear-gradient(#fff, #fff) padding-box,
		var(--grad) border-box;
	border: 2px solid transparent;
	transform: translateY(-6px);
}
.plan-badge {
	position: absolute;
	top: -14px;
	inset-inline-start: 28px;
	background: var(--grad);
	color: #fff;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .05em;
	padding: 6px 15px;
	border-radius: 99px;
	box-shadow: var(--sh-glow);
}
.plan h3 { font-size: 1.28rem; margin-bottom: 8px; }
.plan-desc { color: var(--ink-mute); font-size: .96rem; margin-bottom: 18px; }
.plan-price {
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -.02em;
	margin-bottom: 6px;
	color: var(--ink);
}
.plan-price span { font-size: .95rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.plan-year { color: var(--violet); font-weight: 700; font-size: .95rem; margin: 0 0 6px; }
.plan-save {
	display: none;
	align-self: center;
	background: var(--ok-bg);
	color: var(--ok);
	font-size: .8rem;
	font-weight: 800;
	border-radius: 99px;
	padding: 3px 11px;
	margin: 8px auto 0;
	text-align: center;
}
.plan.is-year .plan-save {
	display: inline-block;
}
.plan-trial {
	color: var(--blue);
	background: var(--bg-tint);
	border-radius: 10px;
	padding: 8px 12px;
	font-size: .9rem;
	font-weight: 700;
	margin: 0 0 16px;
}
.plan ul { list-style: none; margin: 18px 0 24px; padding: 0; flex: 1; }
.plan ul li {
	position: relative;
	padding-inline-start: 26px;
	margin-bottom: 9px;
	font-size: .95rem;
	color: var(--ink-3);
}
.plan ul li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: .34em;
	width: 17px;
	height: 17px;
	border-radius: 99px;
	background: var(--grad-soft);
	border: 1px solid rgba(51, 32, 255, .2);
}
.plan ul li::after {
	content: "";
	position: absolute;
	inset-inline-start: 5px;
	top: .62em;
	width: 7px;
	height: 4px;
	border-left: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	transform: rotate(-45deg);
}
.plan-actions { display: grid; gap: 9px; }
.plan-note {
	margin: 12px 0 0;
	text-align: center;
	color: var(--ink-mute);
	font-size: .88rem;
	font-weight: 600;
	line-height: 1.5;
}
.plans-bill {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto 32px;
	text-align: center;
}
.plans-bill .bill-switch { margin: 0; }

.bill-switch {
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px;
	gap: 4px;
	margin: 0 auto 18px;
	flex-wrap: nowrap;
	box-shadow: var(--sh-sm);
}
.bill-switch a,
.bill-switch button {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 148px;
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-size: .95rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--ink-mute);
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	background: transparent;
	cursor: pointer;
}
.bill-switch a:hover,
.bill-switch button:hover { color: var(--ink); text-decoration: none; }
.bill-switch a.is-on,
.bill-switch button.is-on { background: var(--grad); color: #fff; box-shadow: var(--sh-sm); }
.bill-save {
	display: block;
	margin-top: 3px;
	font-size: .78rem;
	font-weight: 800;
	color: var(--ok);
	letter-spacing: 0;
	text-align: center;
	line-height: 1.2;
}
.bill-switch a.is-on .bill-save,
.bill-switch button.is-on .bill-save { color: #fff; opacity: .95; }

/* ===== שאלות נפוצות ===== */
.faq { display: grid; gap: 12px; max-width: 90ch; margin-inline: auto; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	transition: box-shadow .18s ease, border-color .18s ease;
}
.faq-item[open] { box-shadow: var(--sh); border-color: rgba(51, 32, 255, .3); }
.faq-item summary {
	cursor: pointer;
	padding: 19px 24px;
	font-weight: 700;
	font-size: 1.04rem;
	color: var(--ink);
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "";
	width: 11px;
	height: 11px;
	border-right: 2.5px solid var(--blue);
	border-bottom: 2.5px solid var(--blue);
	transform: rotate(45deg);
	transition: transform .2s ease;
	flex: none;
	margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-body { padding: 0 24px 22px; color: var(--ink-mute); }
.faq-body p { margin-bottom: .8em; }

/* ===== רצועת סיום ===== */
.cta-band {
	background: var(--grad-dark);
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: clamp(58px, 7vw, 96px) 0;
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(620px 320px at 82% 12%, rgba(7, 194, 255, .3), transparent 62%),
		radial-gradient(560px 320px at 14% 88%, rgba(122, 2, 253, .34), transparent 62%);
}
.cta-band-inner {
	position: relative;
	width: min(880px, 100% - (var(--gut) * 2));
	margin-inline: auto;
	text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8cdf0; font-size: 1.1rem; max-width: 60ch; margin-inline: auto; margin-bottom: 28px; }
.cta-band .btn-ghost {
	background: rgba(255, 255, 255, .08);
	color: #fff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .3);
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== פוטר ===== */
.site-foot {
	margin-top: auto;
	background: var(--ink);
	color: #a8afd8;
	padding: clamp(44px, 5vw, 68px) 0 26px;
	font-size: .94rem;
}
.site-foot a { color: #cdd2f2; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }

.foot-top {
	width: min(var(--wrap), 100% - (var(--gut) * 2));
	margin: 0 auto 34px;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 32px;
}
.foot-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.foot-brand img { width: 40px; height: 40px; border-radius: 12px; }
.foot-brand strong { color: #fff; font-size: 1.14rem; font-weight: 800; }
.foot-about { color: #969ecb; max-width: 42ch; line-height: 1.8; }
.foot-col h4 {
	color: #fff;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 9px; }

.site-foot-inner {
	width: min(var(--wrap), 100% - (var(--gut) * 2));
	margin-inline: auto;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: .89rem;
	color: #838bba;
}
.site-foot-inner a { color: #a8afd8; }

/* ===== עמודי תוכן ===== */
.doc-page { background: var(--bg); }
.doc-hero {
	position: relative;
	overflow: hidden;
	background: var(--bg-soft);
	border-bottom: 1px solid var(--line);
	padding: clamp(40px, 5.5vw, 72px) 0 clamp(34px, 4.5vw, 56px);
}
.doc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(560px 240px at 92% -10%, rgba(7, 194, 255, .22), transparent 62%),
		radial-gradient(480px 220px at 4% 110%, rgba(122, 2, 253, .14), transparent 64%);
}
.doc-hero-inner,
.doc-inner {
	position: relative;
	width: min(780px, 100% - (var(--gut) * 2));
	margin-inline: auto;
}
.doc-trail {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	font-size: .9rem;
	color: var(--ink-soft);
	font-weight: 600;
}
.doc-trail a { color: var(--ink-mute); }
.doc-trail a:hover { color: var(--blue); }
.doc-hero h1 { margin: 0 0 12px; }
.doc-lead {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.8;
	color: var(--ink-mute);
	max-width: 62ch;
}
.doc-inner { padding: clamp(36px, 5vw, 64px) 0 clamp(56px, 7vw, 92px); }
.doc-inner--wide { width: min(var(--wrap), 100% - (var(--gut) * 2)); }

.doc-body { font-size: 1.02rem; }
.doc-body h2 {
	font-size: 1.28rem;
	margin-top: 2em;
	margin-bottom: .55em;
	padding-top: .85em;
	border-top: 1px solid var(--line-2);
}
.doc-body h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc-body h3 { font-size: 1.08rem; margin-top: 1.55em; }
.doc-body p,
.doc-body li { color: var(--ink-mute); }
.doc-body strong { color: var(--ink); }
.doc-body a { font-weight: 700; }
.doc-body blockquote {
	margin: 0 0 1.2em;
	padding: 4px 0 4px 0;
	padding-inline-start: 18px;
	border-inline-start: 3px solid var(--blue);
	color: var(--ink-3);
}
.doc-body hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 2em 0;
}
.doc-body ul,
.doc-body ol { padding-inline-start: 1.2em; }
.doc-body li::marker { color: var(--blue); }

.cms-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; }
.cms-body th,
.cms-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: start; }
.cms-body th { background: var(--bg-soft); color: var(--ink); font-weight: 800; }
.cms-body img { border-radius: var(--r); margin: .4em 0 1.2em; }

.doc-actions {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
	margin: 36px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--line-2);
}
.doc-hero .doc-actions {
	margin-top: 22px;
	padding-top: 0;
	border-top: 0;
}

/* ===== יצירת קשר ===== */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .72fr);
	gap: clamp(22px, 3.4vw, 40px);
	align-items: start;
}
.contact-grid > :only-child { grid-column: 1 / -1; max-width: 640px; }
.contact-aside {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 24px;
}
.contact-aside h2 {
	font-size: 1.15rem;
	margin: 0 0 8px;
}
.contact-aside > p {
	color: var(--ink-mute);
	font-size: .96rem;
	margin: 0 0 18px;
}
.contact-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid var(--line-2);
	color: inherit;
	text-decoration: none;
}
.contact-line:first-of-type { border-top: 1px solid var(--line); }
.contact-line span { color: var(--ink-soft); font-size: .88rem; font-weight: 700; }
.contact-line b { color: var(--ink); font-size: .98rem; }
.contact-line:hover { text-decoration: none; }
.contact-line:hover b { color: var(--blue); }
.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(22px, 3vw, 34px);
}

/* ===== טפסים ===== */
.field { margin-bottom: 17px; }
.field label {
	display: block;
	font-weight: 700;
	font-size: .92rem;
	margin-bottom: 7px;
	color: var(--ink-2);
}
.hint-inline { color: var(--ink-soft); font-weight: 500; font-size: .85rem; }
.field input,
.field textarea,
.field select {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 13px;
	padding: 13px 15px;
	font: inherit;
	font-size: 1rem;
	background: #fff;
	color: var(--ink);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: 0;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(51, 32, 255, .1);
}
.field textarea { min-height: 118px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #a8aecb; }

.err { display: block; margin-top: 6px; color: var(--bad); font-size: .87rem; font-weight: 600; }

.form-alert {
	border-radius: 14px;
	padding: 13px 16px;
	margin-bottom: 18px;
	font-weight: 600;
	font-size: .95rem;
}
.form-alert.is-bad { background: var(--bad-bg); color: var(--bad); }
.form-alert.is-warn { background: var(--warn-bg); color: var(--warn); }

.hp-field { position: absolute; inset-inline-start: -9999px; opacity: 0; height: 0; overflow: hidden; }

.doc-hero-inner--wide { width: min(var(--wrap), 100% - (var(--gut) * 2)); }

/* ===== קופה / הרשמה ===== */
.checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
	gap: clamp(22px, 3.4vw, 40px);
	align-items: start;
}
.signup-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(22px, 3vw, 36px);
	box-shadow: var(--sh-sm);
}
.signup-form { margin-top: 0; }
.signup-panel { animation: fadeUp .3s ease; }
.signup-panel-title {
	margin: 0 0 8px;
	font-size: 1.22rem;
}
.signup-panel-lead {
	margin: 0 0 20px;
	color: var(--ink-mute);
	font-size: .98rem;
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}
.signup-otp-lead { color: var(--ink-mute); margin: 0 0 18px; }
.signup-quiet {
	margin-top: 16px;
	text-align: center;
	color: var(--ink-mute);
	font-size: .92rem;
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
.signup-quiet .dot { color: var(--line); }

.signup-aside {
	position: sticky;
	top: 96px;
	background:
		linear-gradient(#fff, #fff) padding-box,
		var(--grad) border-box;
	border: 2px solid transparent;
	border-radius: var(--r-lg);
	padding: 26px 24px;
	box-shadow: var(--sh);
}
.signup-aside .eyebrow { margin-bottom: 8px; }
.signup-aside h2 { margin: 0 0 8px; font-size: 1.35rem; }
.signup-aside-desc {
	margin: 0 0 14px;
	color: var(--ink-mute);
	font-size: .95rem;
}
.signup-aside .plan-price { font-size: 2.1rem; margin-bottom: 4px; }
.signup-aside .plan-save.is-on { display: inline-block; margin: 0 0 14px; }
.signup-aside .bill-switch {
	width: 100%;
	margin: 4px 0 18px;
}
.signup-aside .bill-switch a { flex: 1; min-width: 0; }
.signup-aside-list {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}
.signup-aside-list li {
	position: relative;
	padding-inline-start: 26px;
	margin-bottom: 8px;
	font-size: .94rem;
	color: var(--ink-3);
}
.signup-aside-list li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: .38em;
	width: 16px;
	height: 16px;
	border-radius: 99px;
	background: var(--grad-soft);
	border: 1px solid rgba(51, 32, 255, .2);
}
.signup-aside-list li::after {
	content: "";
	position: absolute;
	inset-inline-start: 5px;
	top: .64em;
	width: 6px;
	height: 4px;
	border-left: 2px solid var(--blue);
	border-bottom: 2px solid var(--blue);
	transform: rotate(-45deg);
}
.signup-aside-note {
	margin: 0;
	padding-top: 14px;
	border-top: 1px solid var(--line-2);
	font-weight: 700;
	font-size: .92rem;
}

.otp-code {
	text-align: center;
	letter-spacing: .55em;
	font-size: 1.5rem !important;
	font-weight: 800;
	direction: ltr;
	padding-inline-start: .55em !important;
}
.otp-status {
	border-radius: 12px;
	padding: 11px 14px;
	margin-bottom: 16px;
	font-size: .93rem;
	font-weight: 600;
	background: var(--bg-tint);
	color: var(--ink-3);
}
.otp-status.is-ok { background: var(--ok-bg); color: var(--ok); }
.otp-status.is-bad { background: var(--bad-bg); color: var(--bad); }

.checkout-terms {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 0;
	color: var(--ink-3);
	font-size: .92rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: start;
	cursor: pointer;
}
.checkout-terms input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	flex: none;
	accent-color: var(--blue);
	cursor: pointer;
}
.checkout-terms a { font-weight: 800; }
.checkout-terms-err { display: block; margin-top: 6px; text-align: start; }
.checkout-terms-note {
	margin: 8px 0 0;
	color: var(--ink-soft);
	font-size: .86rem;
	line-height: 1.6;
	text-align: start;
}

.mail-note {
	background: var(--bg-tint);
	border-radius: 14px;
	padding: 14px 16px;
	color: var(--ink-3);
	font-size: .93rem;
}

/* ===== הצלחה / שחזור ===== */
.success-box,
.recover-box {
	width: min(660px, 100% - (var(--gut) * 2));
	margin: clamp(48px, 7vw, 90px) auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: clamp(30px, 4.5vw, 52px);
	box-shadow: var(--sh);
	text-align: center;
}
.success-box p,
.recover-box p { color: var(--ink-mute); }
.recover-form { margin-top: 20px; text-align: start; }

/* ===== אייקון inline ===== */
.ico { display: inline-flex; align-items: center; justify-content: center; }
.ico svg { width: 20px; height: 20px; }

/* ===== רספונסיב ===== */
@media (max-width: 1080px) {
	.hero-inner { grid-template-columns: 1fr; }
	.app-shell { transform: none; max-width: 620px; }
	.app-shot { margin-top: 12px; }
	.metric-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.metric:nth-child(odd) { border-inline-start: 0; }
	.metric:nth-child(n+3) { border-top: 1px solid var(--line-2); }
	.deep-row { grid-template-columns: 1fr; }
	.deep-row:nth-child(even) .deep-visual { order: 0; }
	.contact-grid,
	.checkout-grid { grid-template-columns: 1fr; }
	.foot-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
	body.site { font-size: 16.5px; }

	.nav-toggle { display: block; width: 38px; height: 38px; font-size: 1.05rem; border-radius: 11px; }
	.site-nav { flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
	.site-brand { gap: 7px; min-width: 0; }
	.site-brand img { width: 26px; height: 26px; border-radius: 7px; }
	.site-brand strong { font-size: .92rem; }
	.site-nav-cta { margin-inline-start: auto; order: 3; gap: 8px; }
	.site-nav-cta .btn { width: auto; padding: 8px 12px; font-size: .82rem; white-space: nowrap; }
	.site-links {
		display: none;
		width: 100%;
		order: 5;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		padding-top: 10px;
		border-top: 1px solid var(--line-2);
		margin-inline-end: 0;
	}
	.site-links a { padding: 12px 14px; border-radius: 12px; }
	body.nav-open .site-links { display: flex; }

	.plan.is-featured { transform: none; }
	.hero-proof { gap: 8px 16px; }
	.foot-top { grid-template-columns: 1fr; gap: 26px; }
	.site-foot-inner { flex-direction: column; }
	.plans-grid,
	.feat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
	.metric-strip { grid-template-columns: 1fr; margin-top: -40px; }
	.metric { border-inline-start: 0; border-top: 1px solid var(--line-2); }
	.metric:first-child { border-top: 0; }
	.btn { width: 100%; }
	.site-nav-cta .btn { width: auto; }
	.hero-actions,
	.cta-actions,
	.doc-actions { flex-direction: column; }
	.bill-switch { width: 100%; }
	.bill-switch a,
	.bill-switch button { flex: 1; text-align: center; }
	.app-shell { grid-template-columns: 1fr; }
	.app-side { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}

@media print {
	.site-nav,
	.site-foot,
	.cta-band,
	.cms-preview-bar,
	.nav-toggle { display: none !important; }
	body.site { font-size: 12pt; }
	.doc-hero { background: #fff; border: 0; padding: 0 0 24px; }
	.doc-hero::before { display: none; }
	.doc-inner { padding: 0; }
	.doc-actions { display: none; }
}
