/* Base */
html, body { height: 100%; }
body {
	font-family: 'Open Sans Hebrew', 'Heebo', 'Rubik', Arial, sans-serif;
	color: #0f172a;
	background-color: #ffffff;
	scroll-behavior: smooth;
}

:root {
	--brand: #111827;
	--brand-contrast: #ffffff;
	--primary: #0ea5e9;
	--primary-600: #0284c7;
	--muted: #6b7280;
	--card: #ffffff;
	--soft: #f8fafc;
}

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* Navbar */
.navbar .brand-logo { width: 36px; height: 36px; object-fit: contain; }
.navbar .brand-logo.small { width: 28px; height: 28px; }
.navbar .nav-link { color: #334155; }
.navbar .nav-link.active, .navbar .nav-link:hover { color: var(--brand); }
.navbar.navbar-shrink { box-shadow: 0 6px 20px rgba(2,8,23,.06); }

/* Hero */
.hero-section { padding-top: 8rem; padding-bottom: 4rem; background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%); }
.hero-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 180px;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8fafc 92%);
	z-index: 1;
	pointer-events: none;
}

/* Section merges (top-only to avoid stacking artifacts) */
#features, #about, #contact { position: relative; overflow: hidden; }
#about::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 140px; background: linear-gradient(180deg, #f8fafc 0%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 100%); pointer-events: none; z-index: 0; }
#contact::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 140px; background: linear-gradient(180deg, #ffffff 0%, rgba(248,250,252,1) 60%, rgba(248,250,252,1) 100%); pointer-events: none; z-index: 0; }
.hero-mockup {
	position: relative;
	width: min(540px, 100%);
	height: 360px;
	margin-inline: auto;
	border-radius: 24px;
	background: var(--card);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(2,6,23,.06);
	overflow: hidden;
}
.mockup-frame { position: absolute; inset: 16px; border-radius: 16px; border: 2px dashed #e2e8f0; }
.mockup-image { position: absolute; inset: 32px; border-radius: 12px; background: url('../images/main.png') no-repeat center center, radial-gradient(1200px 200px at 20% 0%, #e0f2fe, transparent),
	linear-gradient(135deg, #fafafa, #eef2ff);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Subtle hero decorations */
.hero-bling { position: absolute; filter: blur(32px); opacity: .6; pointer-events: none; will-change: transform, opacity; animation: blingDrift 18s ease-in-out infinite alternate, blingPulse 9s ease-in-out infinite; }
.hero-bling.bling-1 { width: 260px; height: 260px; right: -60px; top: -40px; background: radial-gradient(circle, #bae6fd 0, transparent 60%); animation-duration: 18s, 10s; animation-delay: 0s, 0.3s; }
.hero-bling.bling-2 { width: 220px; height: 220px; left: -40px; bottom: 20px; background: radial-gradient(circle, #e9d5ff 0, transparent 60%); animation-duration: 22s, 12s; animation-delay: .4s, .8s; }
.hero-bling.bling-3 { width: 280px; height: 280px; right: 0; bottom: 0; background: radial-gradient(circle, #fde68a 0, transparent 60%); animation-duration: 26s, 11s; animation-delay: .8s, .2s; }

@keyframes blingDrift {
	0% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
	25% { transform: translate3d(10px, -8px, 0) scale(1.02) rotate(1deg); }
	50% { transform: translate3d(-6px, 6px, 0) scale(1.015) rotate(-0.6deg); }
	75% { transform: translate3d(8px, 4px, 0) scale(1.025) rotate(0.8deg); }
	100% { transform: translate3d(-10px, -6px, 0) scale(1.01) rotate(-1deg); }
}

@keyframes blingPulse {
	0%, 100% { opacity: .55; }
	50% { opacity: .7; }
}

/* Section blings */
.section-bling { position: absolute; filter: blur(32px); opacity: .55; pointer-events: none; border-radius: 999px; }
.section-bling.small { transform: scale(.8); opacity: .5; }
.section-bling.tiny { transform: scale(.6); opacity: .45; }
.sbling-top-left { top: -40px; left: -40px; width: 220px; height: 220px; }
.sbling-top-right { top: -50px; right: -50px; width: 240px; height: 240px; }
.sbling-bottom-left { bottom: -60px; left: -60px; width: 260px; height: 260px; }
.sbling-bottom-right { bottom: -60px; right: -60px; width: 260px; height: 260px; }
.sbling-cyan { background: radial-gradient(circle, #bae6fd 0, transparent 60%); }
.sbling-purple { background: radial-gradient(circle, #e9d5ff 0, transparent 60%); }
.sbling-amber { background: radial-gradient(circle, #fde68a 0, transparent 60%); }
.sbling-teal { background: radial-gradient(circle, #99f6e4 0, transparent 60%); }

/* Features */
.feature-card { background: var(--card); border-radius: 18px; border: 1px solid rgba(2,6,23,.06); transition: transform .35s ease, box-shadow .35s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 45px rgba(2,8,23,.10); }
.features-grid .feature-card p { margin-top: .35rem; }
.icon-ring { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; position: relative; background: radial-gradient(circle at 50% 30%, #ffffff, #fff);
    box-shadow: inset 0 0 0 6px #ffffff, 0 6px 16px rgba(2, 8, 23, .06); animation: ringFloat 6s ease-in-out infinite; }
.icon-ring::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; background: conic-gradient(from 0deg, rgba(14,165,233,.35), rgba(99,102,241,.25), rgba(16,185,129,.25), rgba(14,165,233,.35)); filter: blur(10px); opacity: .65; z-index: -1; animation: ringSpin 12s linear infinite; }
.icon-emoji { font-size: 28px; }
.icon-ring.delay-1 { animation-delay: .2s; }
.icon-ring.delay-2 { animation-delay: .4s; }
.icon-ring.delay-3 { animation-delay: .6s; }
.icon-ring.delay-4 { animation-delay: .8s; }
.icon-ring.delay-5 { animation-delay: 1s; }
@keyframes ringFloat { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-6px) } }
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* About */
.about-card { border-radius: 20px; background: var(--card); border: 1px solid rgba(2,6,23,.06); }
.section-badge { display: inline-block; padding: .35rem .7rem; border-radius: 999px; background: #e0f2fe; color: #075985; font-weight: 700; font-size: .8rem; margin-bottom: .5rem; }
.about-intro { font-size: 1.05rem; }
.pill { display: inline-block; padding: .4rem .75rem; border-radius: 999px; background: #f1f5f9; color: #0f172a; font-weight: 600; font-size: .85rem; border: 1px solid rgba(2,6,23,.06); }
.mini-stat { background: var(--card); border: 1px solid rgba(2,6,23,.06); border-radius: 14px; padding: .9rem .95rem; text-align: center; box-shadow: 0 6px 20px rgba(2,8,23,.05); }
.mini-stat .num { font-weight: 800; font-size: 1.25rem; color: #0f172a; }
.mini-stat .label { font-size: .8rem; color: #64748b; }
.about-card .carousel img { aspect-ratio: 16 / 9; object-fit: cover;border-radius: 12px; }
.about-card .carousel-indicators [data-bs-target] {
	width: 8px; height: 8px; border-radius: 50%;
	background-color: rgba(2,6,23,.25);
	margin: 0 .2rem; transition: background-color .2s ease, transform .2s ease;
}
.about-card .carousel-indicators .active { background-color: var(--primary); transform: scale(1.1); }

/* Buttons */
.btn-primary { background-color: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background-color: var(--primary-600); border-color: var(--primary-600); }

/* Footer */
footer { position: relative; z-index: 2; }

/* Utilities */
.bg-light-subtle { background: #f8fafc; }

/* Contact card + inputs */
.contact-card { border-radius: 20px; background: var(--card); border: 1px solid rgba(2,6,23,.06); box-shadow: 0 16px 40px rgba(2,8,23,.06); }
.contact-card { position: relative; }
.contact-card::before { content: ""; position: absolute; inset: -1px; border-radius: 20px; background: linear-gradient(135deg, rgba(14,165,233,.35), rgba(99,102,241,.25), rgba(16,185,129,.25)); z-index: -1; }
.form-soft { border-radius: 14px; background: #fff; border: 1px solid rgba(2,6,23,.12); box-shadow: 0 1px 0 rgba(2,6,23,.02) inset; }
.form-soft:focus { border-color: var(--primary); box-shadow: 0 0 0 .25rem rgba(14,165,233,.15); }
.form-label { color: #475569; font-weight: 600; }
.card .btn.btn-primary { box-shadow: 0 12px 24px rgba(2, 132, 199, .20); }
.card .btn.btn-primary:hover { box-shadow: 0 16px 28px rgba(2, 132, 199, .28); }

/* Submit loading states */
#contact form.is-loading, #contact .is-loading { cursor: progress; }
button[disabled] { cursor: not-allowed !important; }

/* Contact: floating labels and layout */
.contact-header-icon { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, #e0f2fe, #fff); box-shadow: inset 0 0 0 6px #f0f9ff, 0 6px 16px rgba(2,8,23,.06); font-size: 26px; margin-bottom: .75rem; }
.form-floating > label { color: #64748b; }
.form-floating > .form-control, .form-floating > textarea.form-control { border-radius: 14px; border: 1px solid rgba(2,6,23,.12); }
.form-floating > .form-control:focus, .form-floating > textarea.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 .25rem rgba(14,165,233,.15); }
.form-floating textarea { height: 160px; }

/* Checkmark list */
.check-list li { position: relative; padding-right: 34px; line-height: 1.7; color: #1f2937; margin-bottom: 1rem; }
.check-list li::before {
	content: '\2713'; /* ✓ */
	position: absolute; right: 0; top: 0.15rem;
	width: 22px; height: 22px; border-radius: 50%;
	background: linear-gradient(180deg, var(--primary), var(--primary-600));
	color: #fff; font-size: 14px; display: grid; place-items: center;
	box-shadow: 0 4px 10px rgba(2, 132, 199, .35);
}

@media (max-width: 991.98px) {
	.hero-section { padding-top: 7rem; }
}


