/*
Theme Name: ISK
Theme URI: https://digitalin.co.il
Author: DevOps Team 
Author URI: https://digitalin.co.il
Description: Elegant, and modern theme for SaaS products
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digitalin
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

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

:root {
  --bg: #0f1a2e;
  --bg-elevated: #152338;
  --bg-card: #1a2d48;
  --surface: #203858;
  --accent: #00bfff;
  --accent-soft: #00bfff12;
  --accent-glow: #00bfff28;
  --accent-light: #60d5ff;
  --accent-dark: #a855f7;
  --cyan: #a855f7;
  --text: #e0eaf2;
  --text-dim: #6b8da6;
  --text-faint: #2e4a63;
  --line: #ffffff08;
  --accent-grad: linear-gradient(135deg, #00bfff, #7b5af5, #a855f7);
  --accent-grad-h: linear-gradient(90deg, #00bfff, #7b5af5, #a855f7);
  --accent-cyan-grad: linear-gradient(135deg, #00bfff, #5e8bfa, #a855f7);
  --accent-cyan-grad-h: linear-gradient(90deg, #00bfff, #5e8bfa, #a855f7);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
}

/* ── Animated Star Field ── */
.star-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star-field .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--peak, 0.6); transform: scale(1); }
}

/* Ambient glow orbs */
.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-orb.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #00bfff18, transparent 70%);
  top: -10%; right: -5%;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #a855f714, transparent 70%);
  bottom: 10%; left: -10%;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.ambient-orb.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7b5af510, transparent 70%);
  top: 50%; right: 30%;
  animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 35px) scale(1.05); }
}

/* ── Geometric Grid Overlay ── */
.geo-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.geo-pattern svg { width: 100%; height: 100%; }

/* ── Nav ── */
:root { --nav-h: 100px; }

nav:not(.isk-board-nav) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 40px);
  padding: 10px clamp(24px, 3vw, 60px);
  background: rgba(4, 16, 30, 0.85);
  backdrop-filter: blur(24px);
  border: none;
  border-bottom: 1px solid rgba(0,191,255,0.08);
  border-radius: 0;
  width: 100%;
  white-space: nowrap;
  height: var(--nav-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 1.1rem);
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo img {
  max-height: calc(var(--nav-h) - 20px);
  width: auto;
  object-fit: contain;
}

.nav-items {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.4vw, 28px);
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}
/* Flatten WP menu <ul> inside nav-items */
.nav-items > ul,
.nav-items .menu {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.4vw, 28px);
  align-items: center;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.nav-items li {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.nav-items a,
.nav-items li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-items a:hover,
.nav-items li a:hover { color: var(--text); }

/* ── Dropdown sub-menu ── */
.nav-items li { position: relative; }
.nav-items li .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--card-bg, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 9999;
  list-style: none;
  margin: 0;
}
.nav-items li:hover > .sub-menu { display: block; }
.nav-items li .sub-menu li { display: block; white-space: nowrap; }
.nav-items li .sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-radius: 0;
}
.nav-items li .sub-menu li a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
/* Arrow indicator on parent item */
.nav-items li:has(.sub-menu) > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.6;
}

.btn-glow {
  padding: 10px clamp(12px, 1.5vw, 24px);
  background: var(--accent-grad);
  color: var(--bg);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

/* ── Hamburger Button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}

/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* When mobile menu is open — hide nav CTA buttons, keep logo + hamburger */
nav:has(.nav-hamburger.open) .nav-cta,
nav:has(.nav-hamburger.open) .nav-dash-btn {
  opacity: 0;
  pointer-events: none;
}
nav:has(.nav-hamburger.open) {
  border-bottom-color: transparent;
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 4px;
  padding: calc(var(--nav-h) + 8px) 24px 32px;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-list li {
  list-style: none;
  width: 100%;
  text-align: center;
}

.mobile-nav-list a {
  display: block;
  padding: 12px 24px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 14px;
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}

.mobile-nav-list a:hover,
.mobile-nav-list .current-menu-item > a {
  color: var(--text);
  background: rgba(0,191,255,0.08);
}

.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 40px !important;
  font-size: 1rem !important;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

.btn-glow:hover {
  box-shadow: 0 0 16px rgba(0,191,255,0.2), 0 0 32px rgba(0,191,255,0.08), 0 4px 20px rgba(0,191,255,0.1);
  transform: scale(1.03);
}

.btn-glow.large { padding: 14px 36px; font-size: 0.95rem; }

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  border: 1px solid #ffffff18;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover { border-color: var(--accent-glow); color: var(--accent-light); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 20px) 80px 50px;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 580px; }

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent-glow);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: slideIn 0.6s ease-out both;
  text-shadow: 0 0 20px var(--accent-glow);
}

.hero-text h1 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: slideIn 0.6s ease-out 0.1s both;
}

.hero-text h1 em {
  font-style: normal;
  position: relative;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-text h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent-grad-h);
  border-radius: 2px;
  opacity: 0.4;
  box-shadow: 0 0 12px var(--accent-glow);
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 40px;
  animation: slideIn 0.6s ease-out 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  animation: slideIn 0.6s ease-out 0.3s both;
}

/* Mobile-only hero image (people without dashboard) */
.hero-mobile-img {
  display: none;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideIn 0.8s ease-out 0.3s both;
  overflow: visible;
}

/* ISK override — absolute composition, no flex constraints */
.isk-hero-visual-wrap.hero-visual {
  overflow: visible;
  display: block;
}

/* ISK hero: centered container, uniform on all screens */
.hero:has(.isk-hero-visual-wrap) {
  max-width: 1400px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  min-height: 100vh;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 60px 40px;
}

@media (min-width: 1600px) {
  .hero:has(.isk-hero-visual-wrap) {
    max-width: 1500px;
    padding: calc(var(--nav-h) + 60px) 80px 60px;
  }
}

@media (max-width: 1200px) {
  .hero:has(.isk-hero-visual-wrap) {
    padding: calc(var(--nav-h) + 30px) 32px 32px;
    gap: 24px;
  }
}

@media (max-width: 1000px) {
  .hero:has(.isk-hero-visual-wrap) {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: calc(var(--nav-h) + 40px) 24px 60px;
    overflow: hidden;
  }
}

.visual-card {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,191,255,0.05), inset 0 1px 0 rgba(0,191,255,0.06);
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 40px;
  left: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--accent), transparent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.viz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.viz-title { font-weight: 600; font-size: 0.95rem; }

.viz-badge {
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

.viz-bars { display: flex; flex-direction: column; gap: 16px; }

.viz-bar-item label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.viz-bar {
  height: 8px;
  background: var(--surface);
  border-radius: 100px;
  overflow: hidden;
}

.viz-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--accent-cyan-grad-h);
  animation: barGrow 1.5s ease-out both;
  box-shadow: 0 0 8px var(--accent-glow);
}

@keyframes barGrow {
  from { width: 0 !important; }
}

.viz-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.viz-score-num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.viz-score-label { font-size: 0.85rem; color: var(--text-dim); }

/* Floating accents */
.float-accent {
  position: absolute;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.08);
  padding: 12px 18px;
  font-size: 0.8rem;
  color: var(--text-dim);
  animation: floatBob 6s ease-in-out infinite;
  box-shadow: 0 4px 30px rgba(0,191,255,0.06);
}

.float-accent strong { color: var(--accent-light); }

.fa-1 { top: -20px; right: -40px; animation-delay: 0s; }
.fa-2 { bottom: 30px; left: -50px; animation-delay: -2s; }
.fa-3 { top: 40%; left: -30px; animation-delay: -4s; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Features (Editorial Grid) ── */
.features {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.feat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.feat-top .tag {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: block;
}

.feat-top h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  max-width: 500px;
}

.feat-top p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.9;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,191,255,0.04);
  border: 1px solid rgba(0,191,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

.feat-cell {
  background: var(--bg);
  padding: 44px 36px;
  transition: all 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feat-cell:hover {
  background: var(--surface);
  box-shadow: inset 0 0 60px rgba(0,191,255,0.03);
}

.feat-cell .num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff06;
  position: absolute;
  top: 16px;
  left: 24px;
}

.feat-cell .icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
}

.feat-cell h3 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  direction: ltr;
  text-align: center;
}

.feat-cell p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.85;
  direction: rtl;
  text-align: center;
  flex: 1;
}

/* ── Process (Dynamic) ── */
.process {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--accent-glow);
}

.process-header h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 600px;
}

.process-steps-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 48px;
}

.ps-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

.ps-nav-item:hover { background: #ffffff04; }

.ps-nav-item.active {
  background: var(--bg-card);
  border-color: rgba(0,191,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 40px rgba(0,191,255,0.04);
}

.ps-nav-num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-faint);
  line-height: 1;
  min-width: 48px;
  transition: all 0.4s;
}

.ps-nav-item.active .ps-nav-num {
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent-glow);
}

.ps-nav-text h3 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.ps-nav-item.active .ps-nav-text h3 { color: var(--text); }
.ps-nav-item:not(.active) .ps-nav-text h3 { color: var(--text-dim); }

.ps-nav-text p {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ps-nav-item.active .ps-nav-text p {
  max-height: 80px;
  opacity: 1;
  color: var(--text-dim);
}

.process-rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-rail-track {
  width: 2px;
  height: 100%;
  background: var(--line);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.process-rail-fill {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-light), var(--accent), var(--cyan));
  border-radius: 2px;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 16px var(--accent-glow);
}

.process-rail-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  right: 50%;
  transform: translateX(50%);
  top: 0%;
  transition: top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px var(--accent-glow), 0 0 40px var(--accent-soft);
  z-index: 2;
}

.process-rail-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent-glow);
  animation: pulse2 2.5s ease-in-out infinite;
}

@keyframes pulse2 {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

.process-preview {
  padding-right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.preview-card {
  width: 100%;
  max-width: 420px;
  min-height: 340px;
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.preview-card:hover { border-color: rgba(0,191,255,0.1); }

.preview-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 32px;
  left: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
  box-shadow: 0 0 16px var(--accent-glow);
}

.preview-panel {
  position: absolute;
  inset: 32px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.preview-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Panel 1 — Builder mock */
.mock-builder .mock-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 16px;
  background: #ffffff04;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.3s;
  animation: mockSlideIn 0.5s ease-out both;
}

.mock-builder .mock-row:nth-child(2) { animation-delay: 0.1s; }
.mock-builder .mock-row:nth-child(3) { animation-delay: 0.2s; }
.mock-builder .mock-row:nth-child(4) { animation-delay: 0.3s; }

.mock-row .mock-handle { color: var(--text-faint); font-size: 0.9rem; cursor: grab; }
.mock-row .mock-label { flex: 1; font-size: 0.82rem; color: var(--text-dim); }
.mock-row .mock-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
}

.mock-badge.dim { background: var(--accent-soft); color: var(--accent); }
.mock-badge.q { background: #a855f715; color: var(--cyan); }

.mock-builder .mock-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px dashed var(--text-faint);
  border-radius: 10px;
  color: var(--text-faint);
  font-size: 0.8rem;
  animation: mockSlideIn 0.5s ease-out 0.35s both;
}

@keyframes mockSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Panel 2 — Share mock */
.mock-share .share-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff04;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s;
  animation: mockSlideIn 0.5s ease-out both;
}

.mock-share .share-method:nth-child(2) { animation-delay: 0.12s; }
.mock-share .share-method:nth-child(3) { animation-delay: 0.24s; }

.share-method:hover { border-color: var(--accent-glow); background: #ffffff06; }

.share-method .share-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.share-method .share-info { flex: 1; }
.share-method .share-info strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.share-method .share-info span { font-size: 0.72rem; color: var(--text-faint); }
.share-method .share-arrow { color: var(--text-faint); font-size: 0.8rem; }

/* Panel 3 — Analytics mock */
.mock-analytics .analytics-top {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.analytics-mini {
  flex: 1;
  padding: 14px;
  background: #ffffff04;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  animation: mockSlideIn 0.4s ease-out both;
}

.analytics-mini:nth-child(2) { animation-delay: 0.08s; }
.analytics-mini:nth-child(3) { animation-delay: 0.16s; }

.analytics-mini .a-val {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--accent-cyan-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.analytics-mini .a-label { font-size: 0.65rem; color: var(--text-faint); margin-top: 2px; }

.mock-analytics .analytics-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: mockSlideIn 0.4s ease-out 0.24s both;
}

.a-bar-row { display: flex; align-items: center; gap: 10px; }
.a-bar-label { font-size: 0.72rem; color: var(--text-dim); min-width: 60px; text-align: left; }
.a-bar-track { flex: 1; height: 6px; background: var(--surface); border-radius: 100px; overflow: hidden; }
.a-bar-fill { height: 100%; border-radius: 100px; background: var(--accent-cyan-grad-h); transition: width 1s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 0 6px var(--accent-glow); }

/* Panel 4 — Improve mock */
.mock-improve .improve-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  padding: 0 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-light), var(--accent), var(--cyan));
  border-radius: 6px 6px 0 0;
  min-height: 8px;
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.7;
  position: relative;
  box-shadow: 0 0 8px var(--accent-glow);
}

.chart-bar:hover { opacity: 1; }

.chart-bar .bar-tip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}

.chart-bar:hover .bar-tip { opacity: 1; }

.mock-improve .improve-insight {
  padding: 14px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: mockSlideIn 0.5s ease-out 0.3s both;
}

.improve-insight .insight-icon { font-size: 1.2rem; }
.improve-insight .insight-text { font-size: 0.78rem; color: var(--accent); line-height: 1.6; }

/* Auto-play progress bar */
.ps-nav-item .ps-progress {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--line);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.ps-nav-item .ps-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-cyan-grad-h);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.ps-nav-item.active .ps-progress-fill {
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ── About ── */
.about {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 18px;
}

.about-image .about-accent {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: rgba(4, 16, 30, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,191,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-accent .accent-num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-accent .accent-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.about-content { order: 1; }

.about-content .tag {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: block;
}

.about-content h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-content .about-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 32px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-point .point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-point .point-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about-point .point-text span {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── About role subtitle ── */
.about-role {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ── About page extra sections ── */
.abp-experience,
.abp-background,
.abp-vision {
  padding: 28px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.abp-exp-inner,
.abp-bg-inner,
.abp-vision-inner {
  max-width: 800px;
  margin: 0 auto;
}

.abp-experience h2,
.abp-background h2,
.abp-vision h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abp-exp-desc,
.abp-exp-extra,
.abp-background p,
.abp-vision p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 20px;
}

.abp-exp-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abp-exp-list li {
  position: relative;
  padding-right: 28px;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.abp-exp-list li::before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 0.8rem;
  top: 4px;
}

.abp-vision-quote {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  padding: 28px 32px;
  margin: 24px 0 0;
  border-radius: 16px;
  background: rgba(0, 191, 255, 0.05);
  border-right: 4px solid var(--accent);
  border-left: none;
}

/* About page — unified tight spacing */
.page-template-page-about .page-hero { padding: calc(var(--nav-h) + 80px) 80px 40px; }
.page-template-page-about .about { padding: 40px 80px 32px; }
.page-template-page-about .about .about-content .about-desc { margin-bottom: 14px; }
.page-template-page-about .abp-experience,
.page-template-page-about .abp-background,
.page-template-page-about .abp-vision { padding-top: 24px; padding-bottom: 24px; }
.page-template-page-about .numbers { padding: 40px 80px; }
.page-template-page-about .abp-values { padding: 40px 80px 60px; }
.page-template-page-about .cta { padding: 60px 80px; }

/* About page — tablet (≤1000px) */
@media (max-width: 1000px) {
  .page-template-page-about .page-hero { padding: calc(var(--nav-h) + 80px) 40px 36px; }
  .page-template-page-about .about { padding: 36px 40px 28px; }
  .page-template-page-about .abp-experience,
  .page-template-page-about .abp-background,
  .page-template-page-about .abp-vision { padding: 20px 40px; }
  .page-template-page-about .numbers { padding: 36px 40px; }
  .page-template-page-about .abp-values { padding: 36px 40px 48px; }
  .page-template-page-about .cta { padding: 48px 40px; }
}

/* About page — mobile (≤768px) */
@media (max-width: 768px) {
  .abp-experience,
  .abp-background,
  .abp-vision { padding: 16px 24px; }
  .page-template-page-about .page-hero { padding: calc(var(--nav-h) + 80px) 20px 28px; }
  .page-template-page-about .page-hero h1 { font-size: 1.8rem; }
  .page-template-page-about .about { padding: 28px 20px 20px; }
  .page-template-page-about .about-layout { gap: 28px; }
  .page-template-page-about .about-image img { max-height: 260px; }
  .page-template-page-about .about-content h2 { font-size: 1.6rem; }
  .page-template-page-about .about-role { font-size: 0.95rem; }
  .page-template-page-about .about .about-content .about-desc { font-size: 0.95rem; margin-bottom: 10px; }
  .page-template-page-about .abp-experience,
  .page-template-page-about .abp-background,
  .page-template-page-about .abp-vision { padding: 16px 20px; }
  .page-template-page-about .abp-experience h2,
  .page-template-page-about .abp-background h2,
  .page-template-page-about .abp-vision h2 { font-size: 1.3rem; }
  .page-template-page-about .abp-vision-quote { font-size: 1rem; padding: 16px 20px; }
  .page-template-page-about .numbers { padding: 28px 20px; }
  .page-template-page-about .abp-values { padding: 28px 20px 40px; }
  .page-template-page-about .cta { padding: 40px 20px; }
}

/* About page — small mobile (≤480px) */
@media (max-width: 480px) {
  .page-template-page-about .page-hero { padding: calc(var(--nav-h) + 80px) 16px 24px; }
  .page-template-page-about .page-hero h1 { font-size: 1.5rem; }
  .page-template-page-about .about { padding: 24px 16px 16px; }
  .page-template-page-about .about-image img { max-height: 220px; }
  .page-template-page-about .about-content h2 { font-size: 1.4rem; }
  .page-template-page-about .about .about-content .about-desc { font-size: 0.9rem; }
  .page-template-page-about .abp-experience,
  .page-template-page-about .abp-background,
  .page-template-page-about .abp-vision { padding: 14px 16px; }
  .page-template-page-about .abp-vision-quote { font-size: 0.95rem; padding: 14px 16px; }
  .page-template-page-about .numbers { padding: 24px 16px; }
  .page-template-page-about .abp-values { padding: 24px 16px 36px; }
  .page-template-page-about .cta { padding: 36px 16px; }
}

/* ── Numbers strip ── */
.numbers {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
}

.numbers-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg);
  border: 1px solid rgba(0,191,255,0.06);
  border-radius: 24px;
  box-shadow: 0 0 80px rgba(0,191,255,0.03);
}

.num-block { text-align: center; }

.num-val {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--accent-cyan-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.num-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── CTA ── */
.cta {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.cta-container h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-container h2 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-container p {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.cta-form { width: 100%; }

.cta-input-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-input-group input {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: #fff;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
  text-align: right;
  direction: rtl;
}

.cta-input-group input::placeholder { color: rgba(255,255,255,0.7); }
.cta-input-group input:focus {
  border-color: rgba(0,191,255,0.5);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 20px rgba(0,191,255,0.1);
}

.cta-input-group .btn-glow { flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  padding: 32px 80px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-faint);
  position: relative;
  z-index: 1;
}

.foot-top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.foot-top .foot-links { flex: 1; justify-content: center; }
.foot-top .foot-social { margin-inline-start: auto; }
.foot-spacer { width: 108px; /* balance foot-social on opposite side */ }

.foot-bottom {
  width: 100%;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-faint);
}

.site-footer a { color: var(--text-dim); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

.foot-social { display: flex; gap: 12px; align-items: center; }
.foot-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.foot-social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,191,255,0.08);
}

.foot-links { display: flex; gap: 24px; align-items: center; }
/* Flatten WP menu <ul> inside footer */
.foot-links > ul,
.foot-links .menu {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.foot-links li { list-style: none; margin: 0; padding: 0; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Nav compact — 14" screens with many items ── */
@media (max-width: 1380px) {
  nav:not(.isk-board-nav) { gap: clamp(6px, 1vw, 16px); padding: 10px clamp(12px, 1.5vw, 28px); }
  .nav-items { gap: clamp(4px, 0.8vw, 14px); }
  .nav-items a, .nav-items li a { font-size: clamp(0.72rem, 0.85vw, 0.82rem); }
  .btn-glow { padding: 8px clamp(8px, 1vw, 16px); font-size: clamp(0.68rem, 0.82vw, 0.78rem); }
}

/* ── Hamburger breakpoint ── */
@media (max-width: 1024px) {
  nav:not(.isk-board-nav) { gap: 12px; padding: 10px 16px; }
  .nav-items { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-inline-start: auto; }
  .mobile-menu { display: block; }
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 40px) 24px 60px; gap: 32px; overflow: hidden; }
  .hero-visual { display: none !important; }
  .hero-mobile-img {
    display: none;
  }
  .hero-mobile-img img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
  }
  .features, .process, .about, .numbers, .cta { padding: 80px 24px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-top { flex-direction: column; }
  nav:not(.isk-board-nav) { gap: 12px; padding: 10px 16px; }
  .nav-items { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-inline-start: auto; }
  .mobile-menu { display: block; }
  .numbers-inner { flex-direction: column; gap: 32px; }
  .cta-input-group { flex-direction: column; }
  .foot-top { flex-direction: column; gap: 16px; }
  .foot-top .foot-social { margin-inline-start: 0; justify-content: center; }
  .foot-top .foot-links { justify-content: center; }
  .process-layout { grid-template-columns: 1fr; gap: 32px; }
  .process-rail { display: none; }
  .process-steps-nav { padding-left: 0; }
  .process-preview { padding-right: 0; }
  .preview-card { max-width: 100%; min-height: 280px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-left: 0; }
  .about-image img { max-height: 280px; }
}

/* ══════════════════════════════════════
   PAGE HERO (shared across sub-pages)
   ══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-inner h1 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.page-hero-inner h1 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-inner .hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto;
}

.page-hero-subtitle {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px auto 12px;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.page-hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 15%;
  left: 15%;
  height: 3px;
  background: var(--accent-grad-h);
  border-radius: 2px;
  opacity: 0.5;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Nav active state */
.nav-items a.nav-active { color: var(--accent); }

/* Nav dashboard button (logged-in only) */
.nav-dash-btn {
  padding: 10px 24px !important;
  font-size: clamp(0.68rem, 0.85vw, 0.82rem) !important;
  border-color: rgba(0,191,255,0.25) !important;
  color: var(--accent-light) !important;
}

/* Nav login button (logged-out) — match btn-glow nav-cta sizing */
.nav-login-btn {
  padding: 10px clamp(12px, 1.5vw, 24px) !important;
  font-size: clamp(0.68rem, 0.85vw, 0.82rem) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: var(--text-dim) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-login-btn:hover {
  border-color: rgba(0,191,255,0.35) !important;
  color: var(--accent-light) !important;
}
.nav-login-btn svg {
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════ */
.services-full {
  padding: 80px 80px 140px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.srv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}

.srv-header .tag {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.srv-header h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  max-width: 500px;
}

.srv-header p {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 380px;
  line-height: 1.9;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 32px;
  left: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.srv-card:hover {
  border-color: rgba(0,191,255,0.12);
  box-shadow: 0 8px 40px rgba(0,191,255,0.06), 0 0 80px rgba(0,191,255,0.03);
  transform: translateY(-4px);
}

.srv-card:hover::before { opacity: 0.6; }

.srv-card-icon { font-size: 2rem; display: block; }

.srv-card h3 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.srv-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.85;
  flex: 1;
}

.srv-learn-more {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  align-self: flex-start;
}

.srv-learn-more:hover { color: var(--accent-light); }

/* ══════════════════════════════════════
   ABOUT PAGE - values grid
   ══════════════════════════════════════ */
.abp-values {
  padding: 80px 80px 140px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abp-values-header {
  text-align: center;
  margin-bottom: 64px;
}

.abp-values-header h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.abp-values-header p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}

.abp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,191,255,0.04);
  border: 1px solid rgba(0,191,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.con-section {
  position: relative;
  z-index: 1;
}

.con-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 80px 100px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Sidebar ── */
.con-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.08);
  border-radius: 24px;
  padding: 8px;
  position: sticky;
  top: 100px;
}

.con-info-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 18px;
  transition: background 0.3s;
}

.con-info-block:hover {
  background: rgba(0,191,255,0.04);
}

.con-info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border: 1px solid rgba(0,191,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.con-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.con-info-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.con-info-text span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.con-sidebar-quote {
  margin-top: 8px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.con-sidebar-quote blockquote {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
  padding-right: 16px;
  border-right: 3px solid var(--accent);
}

/* ── Form panel ── */
.con-form-panel {
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.08);
  border-radius: 24px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}

.con-form-panel::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 40px;
  left: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--accent), transparent);
  opacity: 0.5;
  box-shadow: 0 0 16px var(--accent-glow);
}

.con-form-header {
  margin-bottom: 32px;
}

.con-form-header h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.con-form-header p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.con-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.con-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.con-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.con-field input,
.con-field textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--text);
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
  box-sizing: border-box;
}

.con-field input::placeholder,
.con-field textarea::placeholder { color: var(--text-faint); }

.con-field input:focus,
.con-field textarea:focus {
  border-color: rgba(0,191,255,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 20px rgba(0,191,255,0.08);
}

.con-submit {
  align-self: flex-start;
  margin-top: 4px;
}

/* ── Notice banners ── */
.cf-notice {
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.cf-success {
  background: rgba(0,191,255,0.08);
  border: 1px solid var(--accent-glow);
  color: var(--accent-light);
}

.cf-error {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.2);
  color: #ff8080;
}

/* ── Responsive — Contact ── */
@media (max-width: 1000px) {
  .con-inner {
    grid-template-columns: 1fr;
    padding: 20px 24px 80px;
    gap: 32px;
  }

  .con-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 8px;
  }

  .con-info-block {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }

  .con-sidebar-quote {
    flex: 1 1 100%;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 4px;
  }

  .con-form-panel {
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  .con-inner {
    padding: 16px 16px 60px;
  }

  .con-sidebar {
    flex-direction: column;
  }

  .con-info-block {
    flex: 1 1 100%;
    padding: 16px 20px;
  }

  .con-form-panel {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .con-form-panel::before {
    right: 20px;
    left: 20px;
  }

  .con-form-row {
    grid-template-columns: 1fr;
  }

  .con-form-header h2 {
    font-size: 1.4rem;
  }

  .con-submit {
    width: 100%;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — new pages
   ══════════════════════════════════════ */
@media (max-width: 1000px) {
  .page-hero { padding: calc(var(--nav-h) + 80px) 24px 60px; }
  .services-full, .abp-values, .contact-section { padding: 60px 24px 100px; }
  .srv-grid { grid-template-columns: 1fr; }
  .srv-header { flex-direction: column; }
  .abp-values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-col { margin-top: 32px; }
  .page-hero-subtitle { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .page-hero-subtitle { font-size: 1.3rem; padding-bottom: 10px; }
}

/* ══════════════════════════════════════
   ISK HOMEPAGE
   ══════════════════════════════════════ */

/* ── Shared section layout ── */
.isk-why-inner,
.isk-pillars-inner,
.isk-audience-inner,
.isk-test-inner,
.isk-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 80px;
}

.isk-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.isk-section-header .tag,
.isk-features-4 .feat-top .tag {
  display: inline-block;
  background: transparent;
  -webkit-text-fill-color: var(--accent-light);
  color: var(--accent-light);
  border: 1px solid rgba(0,191,255,0.35);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* ISK hero-tag: same bordered pill style */
.hero .hero-tag {
  border-radius: 100px;
  border-color: rgba(0,191,255,0.35);
  letter-spacing: 3px;
  padding: 6px 20px;
}

.isk-section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-top: 12px;
  line-height: 1.2;
}

.isk-section-header h2 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   ISK Hero Visual — people + dashboard
   Fixed height using vh, identical on all screens
   ═══════════════════════════════════════════ */
.isk-hero-visual-wrap {
  --hero-h: min(72vh, 680px);  /* single source of truth for height */
  position: relative;
  width: 100%;
  height: var(--hero-h);
  overflow: visible;
}

/* Ambient glow at overlap zone */
.isk-hero-visual-wrap::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 20%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0,191,255,0.12) 0%, rgba(123,90,245,0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

/* ── People: right side, full hero height ── */
.isk-people-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.isk-people-img {
  height: var(--hero-h);
  width: auto;
  display: block;
  filter: drop-shadow(-12px 4px 40px rgba(0,0,0,0.4));
}

/* ── Dashboard: overlaps BEHIND people at chest-height ── */
.isk-dash-card {
  position: absolute;
  left: 0;
  right: 40%;
  top: 38%;
  transform: translateY(-50%);
  background: rgba(26,45,72,0.92);
  border: 1px solid rgba(0,191,255,0.14);
  border-radius: 20px;
  padding: 24px;
  z-index: 2;                /* behind people (z:3) */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 60px rgba(0,191,255,0.06);
  backdrop-filter: blur(12px);
}

/* accent line top */
.isk-dash-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: 32px;
  left: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--accent), transparent);
  box-shadow: 0 0 16px var(--accent-glow);
}

/* NO ::after — removed dark overlay that was hiding bars */

/* Dashboard inner sizing */
.isk-dash-card .viz-header { margin-bottom: 14px; padding-bottom: 12px; }
.isk-dash-card .viz-title { font-size: 0.88rem; }
.isk-dash-card .viz-badge { font-size: 0.62rem; }
.isk-dash-card .viz-bars { gap: 10px; }
.isk-dash-card .viz-bar-item label { font-size: 0.7rem; }
.isk-dash-card .viz-bar { height: 6px; }
.isk-dash-card .viz-score { margin-top: 14px; padding-top: 12px; }
.isk-dash-card .viz-score-num { font-size: 2rem; }
.isk-dash-card .viz-score-label { font-size: 0.75rem; }

/* ── Large screens (1920px+) — wider card ── */
@media (min-width: 1920px) {
  .isk-dash-card { right: 60%; width: 70%; }
}

/* ── Responsive hero-h adjustments ── */
@media (max-width: 1200px) {
  .isk-hero-visual-wrap { --hero-h: min(68vh, 600px); }
  .isk-dash-card { right: 42%; padding: 20px; }
}

@media (max-width: 1000px) {
  .isk-hero-visual-wrap { --hero-h: min(60vh, 500px); }
  .isk-dash-card { right: 44%; padding: 16px; }
  .isk-dash-card .viz-score-num { font-size: 1.6rem; }
}

/* ── ISK Hero ── */
.isk-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: visible; /* allow 750px people to breathe */
}

.isk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, var(--accent-glow), transparent),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(168,85,247,0.12), transparent);
  pointer-events: none;
}

.isk-hero-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.isk-hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 20px 0 24px;
}

.isk-hero-text h1 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Orbit Visual ── */
.isk-hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.isk-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 160px;
  height: 160px;
  border-color: rgba(0,191,255,0.35);
  animation: orbit-spin 8s linear infinite;
}

.ring-2 {
  width: 270px;
  height: 270px;
  border-color: rgba(123,90,245,0.25);
  animation: orbit-spin 14s linear infinite reverse;
}

.ring-3 {
  width: 380px;
  height: 380px;
  border-color: rgba(168,85,247,0.15);
  animation: orbit-spin 22s linear infinite;
}

@keyframes orbit-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.isk-hero-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0,191,255,0.15);
  z-index: 2;
}

.isk-core-icon { font-size: 1.8rem; line-height: 1; }
.isk-core-label { font-size: 0.7rem; font-weight: 800; color: #fff; letter-spacing: 2px; margin-top: 4px; }

.isk-orbit-node {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(0,191,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  gap: 2px;
  top: 50%;
  left: 50%;
  z-index: 3;
  backdrop-filter: blur(8px);
}

.isk-orbit-node span {
  font-size: 0.55rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.node-1 { transform: translate(-50%, -50%) translate(0, -135px); }
.node-2 { transform: translate(-50%, -50%) translate(135px, 0); }
.node-3 { transform: translate(-50%, -50%) translate(0, 135px); }
.node-4 { transform: translate(-50%, -50%) translate(-135px, 0); }

/* ── Why ISK ── */
.isk-why { background: var(--bg); }

/* ── Why ISK — Trio layout: 3 cards | image | 3 cards ── */
.isk-why-trio {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.isk-why-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.isk-why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isk-why-img {
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(0,191,255,0.25));
}

.isk-why-img-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,191,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.isk-section-header--right {
  text-align: right;
  margin-bottom: 28px;
}

.isk-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 28px 20px;
  aspect-ratio: 1 / 0.5;
  justify-content: center;
  position: relative;
  overflow: visible;
  transition: transform 0.45s cubic-bezier(.22,.68,0,1.2), box-shadow 0.45s, border-color 0.3s;
  z-index: 0;
}

/* Luminous edge glow — accent line on the side facing center image */
.isk-why-card::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: auto;
  right: -1px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #00bfff, #7b5af5, #a855f7);
  opacity: 0;
  transition: opacity 0.4s, top 0.4s, bottom 0.4s, box-shadow 0.4s;
  z-index: 2;
}

/* On hover — line extends and glows */
.isk-why-card:hover::after {
  opacity: 1;
  top: 12%;
  bottom: 12%;
  box-shadow:
    0 0 8px rgba(0,191,255,0.5),
    0 0 20px rgba(0,191,255,0.2),
    4px 0 30px rgba(123,90,245,0.15);
}

/* Left-column cards — line on the left side */
.isk-why-col:last-child .isk-why-card::after {
  right: auto;
  left: -1px;
  border-radius: 3px 0 0 3px;
}

.isk-why-col:last-child .isk-why-card:hover::after {
  box-shadow:
    0 0 8px rgba(0,191,255,0.5),
    0 0 20px rgba(0,191,255,0.2),
    -4px 0 30px rgba(123,90,245,0.15);
}

.isk-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,191,255,0.12);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.3),
    inset -20px 0 40px -20px rgba(0,191,255,0.04);
}

/* Left-column cards — inset glow from left */
.isk-why-col:last-child .isk-why-card:hover {
  box-shadow:
    0 16px 48px rgba(0,0,0,0.3),
    inset 20px 0 40px -20px rgba(0,191,255,0.04);
}

@keyframes spin-border {
  to { --border-angle: 360deg; }
}

/* Register custom property for animation */
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.isk-why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
}

.isk-why-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.isk-why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* ── Pillars ── */
.isk-pillars { background: var(--bg); }

.isk-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.isk-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.isk-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad);
  opacity: 0;
  transition: opacity 0.3s;
}

.isk-pillar-card:hover {
  border-color: rgba(0,191,255,0.2);
  transform: translateY(-4px);
}

.isk-pillar-card:hover::before { opacity: 1; }

.isk-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.isk-pillar-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.isk-pillar-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 100px;
  padding: 4px 10px;
  text-align: center;
  direction: ltr;
}

.isk-pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.isk-pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.isk-pillar-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.isk-pillars-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Audience section bg override handled in premium block below ── */

/* ── Testimonials ── */
.isk-testimonials { background: var(--bg); }

/* ── Testimonials Carousel ── */
.isk-test-carousel {
  overflow: hidden;
  position: relative;
}

.isk-test-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* width = (total slides / visible) * 100% of carousel */
  width: calc(6 / 3 * 100%);
}

.isk-test-slide {
  flex: 1 0 0%;
  padding: 0 14px;
  box-sizing: border-box;
  display: flex;
}

.isk-test-slide .isk-test-card {
  flex: 1;
}

.isk-test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.isk-test-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isk-test-arrow:hover {
  border-color: rgba(0,191,255,0.4);
  background: rgba(0,191,255,0.06);
  transform: scale(1.08);
}

.isk-test-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.isk-test-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.isk-test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.isk-test-dot.active {
  background: var(--accent-grad);
  background: linear-gradient(135deg, #00bfff, #7b5af5);
  transform: scale(1.3);
}

.isk-test-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.isk-test-card:hover { border-color: rgba(0,191,255,0.15); }

.isk-test-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  position: relative;
  padding-top: 12px;
}

.isk-test-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 3rem;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
}

.isk-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.isk-test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.isk-test-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff;
}

.isk-test-author span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
}

/* ── Partners / Logos ── */
.isk-partners { background: var(--bg); }

.isk-logos-track {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.isk-logo-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 96px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.isk-logo-item:has(img) {
  padding: 0;
}

.isk-logo-item:hover {
  border-color: rgba(0,191,255,0.2);
  transform: translateY(-2px);
}

.isk-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.5);
  transition: filter 0.3s;
}

.isk-logo-item:hover img { filter: brightness(1) saturate(1); }

.isk-logo-placeholder {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   RESPONSIVE — ISK homepage
   ══════════════════════════════════════ */
/* ── Pillars 4-column override ── */
.isk-features-4 .feat-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Pillars header: right-aligned, desc below title ── */
.feat-top--right {
  display: block;
}

.feat-top--right h2 {
  margin-top: 8px;
}

/* ── Pillars header: centered ── */
.feat-top--center {
  display: block;
  text-align: center;
}

.feat-top--center h2 {
  max-width: 100%;
  margin-top: 8px;
}

.feat-top--center h2 em {
  font-style: normal;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feat-top-sub {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 12px;
}

.feat-top--center .feat-top-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── Pillars CTA ── */
.isk-pillars-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Audience CTA ── */
.isk-aud-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Audience (premium card grid) ── */
.isk-audience {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.isk-audience::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,191,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.isk-aud-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.isk-aud-card {
  position: relative;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: default;
  background: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
  overflow: hidden;
}

/* gradient top border via pseudo */
.isk-aud-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad-h);
  opacity: 0;
  transition: opacity 0.3s;
}

/* subtle tinted glow bg */
.isk-aud-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--aud-color, rgba(0,191,255,0.08));
  opacity: 0.4;
  border-radius: inherit;
  transition: opacity 0.3s;
  z-index: 0;
}

.isk-aud-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,191,255,0.15);
}

.isk-aud-card:hover::after { opacity: 1; }
.isk-aud-card:hover::before { opacity: 0.7; }

/* ── Image card (photo fills the box) ── */
.isk-aud-card-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.isk-aud-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, center center);
  display: block;
}

.isk-aud-card:hover .isk-aud-card-img {
  transform: scale(1.04);
}

.isk-aud-card-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
}

/* ══════════════════════════════════════
   RESPONSIVE — ISK homepage
   ══════════════════════════════════════ */
@media (max-width: 1200px) {
  .isk-aud-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
  .isk-features-4 .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .isk-aud-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .isk-aud-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Hero — center text on mobile */
  .hero { text-align: center; padding: calc(var(--nav-h) + 30px) 20px 48px; }
  .hero-text { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-mobile-img img { max-width: 280px; }

  /* All ISK inner sections — reduce padding */
  .isk-why-inner,
  .isk-pillars-inner,
  .isk-audience-inner,
  .isk-test-inner,
  .isk-partners-inner {
    padding: 80px 24px;
  }

  .isk-why-trio {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .isk-why-visual { order: -1; }
  .isk-why-img { max-width: 240px; margin: 0 auto; display: block; }
  .isk-why-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .isk-section-header--right { text-align: center; }
  .isk-test-track { width: calc(6 / 2 * 100%); }
  .isk-features-4 .feat-grid { grid-template-columns: 1fr; }
  .isk-pillars-grid { grid-template-columns: 1fr; }

  /* Section headers — smaller on mobile */
  .isk-section-header h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Why cards — compact on mobile */
  .isk-why-card { padding: 16px 12px; gap: 8px; aspect-ratio: auto; }
  .isk-why-icon { width: 44px; height: 44px; font-size: 1.4rem; }
  .isk-why-card h3 { font-size: 0.85rem; }

  /* Audience cards — 2 columns on mobile */
  .isk-aud-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .isk-aud-card { padding: 10px; gap: 10px; }
  .isk-aud-card-img { border-radius: 10px; }

  /* Testimonials — single column */
  .isk-test-card { padding: 28px 20px; }

  /* Partners logos — wrap nicely */
  .isk-logos-track { gap: 12px; }
  .isk-logo-item { min-width: 110px; padding: 16px 20px; }
  .isk-logo-item:has(img) { padding: 0; }

  /* Pillar cards */
  .isk-pillar-card { padding: 24px 20px; }

  /* Feat top center */
  .feat-top--center .feat-top-sub { font-size: 0.88rem; }
}

/* ══════════════════════════════════════
   MOBILE ≤768px — דף הבית מלא
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero ── */
  .hero {
    padding: calc(var(--nav-h) + 24px) 16px 40px;
    gap: 24px;
    min-height: auto;
  }
  .hero-text h1 { font-size: clamp(1.8rem, 6.5vw, 2.4rem); margin-bottom: 16px; }
  .hero-tag { font-size: 0.85rem; letter-spacing: 2px; padding: 5px 14px; margin-bottom: 20px; }
  .hero-desc { font-size: 0.92rem; line-height: 1.75; margin-bottom: 28px; }
  .hero-btns { gap: 10px; flex-wrap: wrap; }
  .btn-glow.large { padding: 12px 28px; font-size: 0.88rem; }
  .btn-outline { padding: 12px 24px; font-size: 0.88rem; }

  /* ── Section headers (all ISK sections) ── */
  .isk-section-header { margin-bottom: 36px; }
  .isk-section-header .tag,
  .isk-features-4 .feat-top .tag { font-size: 0.85rem; letter-spacing: 2px; padding: 5px 16px; }
  .isk-section-header h2 { font-size: 1.4rem; margin-top: 10px; }

  /* ── ISK inner padding (all sections) ── */
  .isk-why-inner,
  .isk-pillars-inner,
  .isk-audience-inner,
  .isk-test-inner,
  .isk-partners-inner {
    padding: 60px 16px;
  }

  /* ── Why ISK ── */
  .isk-why-trio { gap: 16px; }
  .isk-why-col { gap: 10px; }
  .isk-why-card {
    padding: 14px 10px;
    gap: 6px;
    border-radius: 14px;
  }
  .isk-why-icon { width: 40px; height: 40px; font-size: 1.2rem; border-radius: 12px; }
  .isk-why-card h3 { font-size: 0.8rem; }
  .isk-why-img { max-width: 180px; }

  /* ── Pillars ── */
  .features { padding: 60px 16px; }
  .feat-top--center h2 { font-size: 1.4rem; }
  .feat-top-sub { font-size: 0.85rem; }
  .feat-cell { padding: 28px 20px; }
  .feat-cell .icon { font-size: 1.4rem; margin-bottom: 14px; }
  .feat-cell h3 { font-size: 1rem; }
  .feat-cell p { font-size: 0.82rem; }
  .isk-pillars-cta { margin-top: 32px; }

  /* ── Audience ── */
  .isk-aud-cards { gap: 10px; }
  .isk-aud-card {
    padding: 8px;
    gap: 8px;
    border-radius: 14px;
  }
  .isk-aud-card-img { border-radius: 10px; aspect-ratio: 4 / 3; }
  .isk-aud-card-label { font-size: 0.85rem; }
  .isk-aud-cta { margin-top: 32px; }

  /* ── About ── */
  .about { padding: 60px 16px; }
  .about-layout { gap: 28px; }
  .about-image img { max-height: none; border-radius: 14px; object-fit: contain; object-position: top center; }
  .about-content h2 { font-size: 1.4rem; margin-bottom: 14px; }
  .about-role { font-size: 0.95rem; margin-bottom: 14px; }
  .about-content .about-desc { font-size: 0.92rem; line-height: 1.85; margin-bottom: 20px; }

  /* ── Numbers ── */
  .numbers { padding: 60px 16px; }
  .numbers-inner {
    padding: 32px 20px;
    gap: 24px;
    border-radius: 18px;
  }
  .num-val { font-size: 2.2rem; }
  .num-label { font-size: 0.78rem; }

  /* ── Testimonials ── */
  .isk-test-card { padding: 24px 18px; border-radius: 16px; }
  .isk-test-quote { font-size: 0.92rem; line-height: 1.7; }
  .isk-test-quote::before { font-size: 2.4rem; }
  .isk-test-author { padding-top: 16px; gap: 10px; }
  .isk-test-author span { font-size: 0.78rem; }
  .isk-test-avatar, .isk-test-avatar-placeholder { width: 36px; height: 36px; }
  .isk-test-nav { margin-top: 28px; gap: 12px; }
  .isk-test-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
  .isk-test-dot { width: 7px; height: 7px; }

  /* ── Partners ── */
  .isk-logos-track { gap: 10px; }
  .isk-logo-item {
    width: 120px;
    height: 72px;
    border-radius: 12px;
    padding: 14px 16px;
  }
  .isk-logo-item:has(img) { padding: 0; }
  .isk-logo-placeholder { font-size: 0.75rem; }

  /* ── CTA ── */
  .cta { padding: 60px 16px; }
  .cta-container h2 { font-size: 1.6rem; margin-bottom: 14px; }
  .cta-container p { font-size: 0.92rem; margin-bottom: 28px; }
  .cta-input-group { gap: 8px; }
  .cta-input-group input { padding: 12px 16px; font-size: 0.9rem; min-width: 0; }

  /* ── Footer ── */
  .site-footer { padding: 28px 16px; font-size: 0.75rem; }
  .foot-top { flex-direction: column; gap: 14px; }
  .foot-top .foot-social { margin-inline-start: 0; justify-content: center; }
  .foot-top .foot-links { justify-content: center; }
  .foot-links { flex-wrap: wrap; gap: 14px; }
  .foot-links > ul,
  .foot-links .menu { flex-wrap: wrap; gap: 14px; }
  .foot-spacer { display: none; }
  .foot-social-icon { width: 32px; height: 32px; }
}

@media (max-width: 600px) {
  .isk-test-track { width: calc(6 / 1 * 100%); }
}

@media (max-width: 480px) {
  /* ── Hero ── */
  .hero { padding: calc(var(--nav-h) + 16px) 12px 32px; }
  .hero-text h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .hero-tag { font-size: 0.85rem; letter-spacing: 2px; padding: 5px 14px; }
  .hero-desc { font-size: 0.88rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn-glow,
  .hero-btns .btn-outline { width: 100%; text-align: center; }

  /* ── Section headers ── */
  .isk-section-header h2 { font-size: 1.2rem; }
  .isk-section-header .tag,
  .isk-features-4 .feat-top .tag { font-size: 0.85rem; letter-spacing: 2px; padding: 5px 14px; }

  /* ── ISK inner padding ── */
  .isk-why-inner,
  .isk-pillars-inner,
  .isk-audience-inner,
  .isk-test-inner,
  .isk-partners-inner {
    padding: 48px 12px;
  }

  .features, .process, .about, .numbers, .cta { padding: 48px 12px; }

  /* ── Why ISK ── */
  .isk-why-col { grid-template-columns: 1fr; }
  .isk-why-card { padding: 14px 12px; }
  .isk-why-card h3 { font-size: 0.78rem; }
  .isk-why-img { max-width: 140px; }

  /* ── Pillars ── */
  .feat-top--center h2 { font-size: 1.2rem; }
  .feat-top-sub { font-size: 0.82rem; }
  .feat-cell { padding: 24px 16px; }
  .feat-cell h3 { font-size: 0.92rem; }
  .feat-cell p { font-size: 0.8rem; }

  /* ── Audience ── */
  .isk-aud-card-label { font-size: 0.78rem; }
  .isk-aud-card { padding: 6px; gap: 6px; }

  /* ── About ── */
  .about-content h2 { font-size: 1.25rem; }
  .about-role { font-size: 0.88rem; }
  .about-content .about-desc { font-size: 0.88rem; margin-bottom: 16px; }

  /* ── Numbers ── */
  .numbers-inner { padding: 24px 16px; gap: 20px; border-radius: 14px; }
  .num-val { font-size: 1.9rem; }
  .num-label { font-size: 0.72rem; }

  /* ── Testimonials ── */
  .isk-test-card { padding: 20px 14px; }
  .isk-test-quote { font-size: 0.85rem; }
  .isk-test-author span { font-size: 0.72rem; }
  .isk-test-avatar, .isk-test-avatar-placeholder { width: 32px; height: 32px; }

  /* ── Partners ── */
  .isk-logo-item { width: 100px; height: 60px; padding: 10px 12px; }
  .isk-logo-placeholder { font-size: 0.7rem; }

  /* ── CTA ── */
  .cta-container h2 { font-size: 1.4rem; }
  .cta-container p { font-size: 0.85rem; }
  .cta-input-group input { padding: 11px 14px; font-size: 0.85rem; }

  /* ── Footer ── */
  .site-footer { padding: 24px 12px; }
  .foot-links { gap: 10px; }
  .foot-links > ul,
  .foot-links .menu { gap: 10px; }
}

/* ── Board Dashboard: Hide background animations + header nav ── */
.page-template-page-board .star-field,
.page-template-page-board .ambient-orb,
.page-template-page-board .geo-pattern {
  display: none !important;
}
/* Header nav + footer are VISIBLE on the board page */

/* Board page — clear fixed nav */
.page-template-page-board .isk-board {
  padding-top: calc(var(--nav-h) + 16px);
}

/* ══════════════════════════════════════
   INTEREST PAGE — למי מיועד
   ══════════════════════════════════════ */

/* Hero override — wider desc */
.interest-hero .hero-desc {
  max-width: 680px;
}

/* Segments container */
.int-segments {
  position: relative;
  z-index: 1;
}

.int-segments-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Individual segment card */
.int-segment {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

/* Tinted background */
.int-segment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--seg-color, rgba(0,191,255,0.08));
  opacity: 0.35;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.4s;
}

.int-segment::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad-h);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.int-segment:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,191,255,0.15);
}

.int-segment:hover::after {
  opacity: 1;
}

.int-segment:hover::before {
  opacity: 0.5;
}

/* Segment header — icon + title */
.int-seg-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 40px 0;
}

.int-seg-icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,191,255,0.08);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 18px;
  flex-shrink: 0;
}
.int-seg-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.int-seg-header h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #fff;
}

.int-seg-num {
  margin-right: auto;
  margin-left: 0;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: -1px;
}

/* Segment body — 3-column grid */
.int-seg-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 28px 40px 36px;
}

/* Block inside body */
.int-seg-block {
  padding: 20px 24px;
  border-radius: 16px;
  position: relative;
}

.int-seg-block h3 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
}

/* Challenge block */
.int-challenge h3 {
  background: rgba(255,140,60,0.12);
  color: #ffaa60;
}

/* Offer block */
.int-offer h3 {
  background: rgba(0,191,255,0.12);
  color: var(--accent-light);
}

/* Result block */
.int-result h3 {
  background: rgba(60,220,120,0.12);
  color: #5edd90;
}

.int-lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 8px;
}

.int-seg-block p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* Bullet list */
.int-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.int-list li {
  position: relative;
  padding-right: 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.int-list li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-grad);
}

/* Results list — checkmark style */
.int-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.int-results-list li {
  position: relative;
  padding-right: 28px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
}

.int-results-list li::before {
  content: '\2713';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5edd90;
}

/* ── Divider lines between columns ── */
.int-seg-body .int-offer {
  border-right: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════
   RESPONSIVE — Interest page
   ══════════════════════════════════════ */
@media (max-width: 1000px) {
  .int-segments-inner {
    padding: 40px 24px 80px;
    gap: 36px;
  }

  .int-seg-header {
    padding: 24px 24px 0;
  }

  .int-seg-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 24px 28px;
  }

  .int-seg-body .int-offer {
    border-right: none;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin: 8px 0;
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .int-segments-inner {
    padding: 24px 16px 60px;
    gap: 28px;
  }

  .int-seg-header {
    padding: 20px 20px 0;
    gap: 12px;
  }

  .int-seg-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    border-radius: 14px;
  }
  .int-seg-icon img {
    width: 48px;
    height: 48px;
  }

  .int-seg-body {
    padding: 16px 20px 24px;
  }

  .int-seg-block {
    padding: 16px 0;
  }
}

/* ══════════════════════════════════════
   QUESTIONNAIRES PAGE — בנק השאלונים
   ══════════════════════════════════════ */
.qbank {
  position: relative;
  z-index: 1;
}

.qbank-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Category card ── */
.qbank-category {
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.qbank-category::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cat-color, rgba(0,191,255,0.08));
  opacity: 0.35;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.4s;
}

.qbank-category::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad-h);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.qbank-category:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,191,255,0.15);
}

.qbank-category:hover::after { opacity: 1; }
.qbank-category:hover::before { opacity: 0.5; }

/* ── Category header ── */
.qbank-cat-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.qbank-cat-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,191,255,0.08);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 18px;
  flex-shrink: 0;
}

.qbank-cat-title-wrap {
  flex: 1;
}

.qbank-cat-title-wrap h2 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.qbank-cat-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 4px;
}

.qbank-cat-num {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -1px;
  flex-shrink: 0;
}

/* ── Questionnaire items ── */
.qbank-items {
  position: relative;
  z-index: 1;
  padding: 8px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qbank-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}

.qbank-item:last-child {
  border-bottom: none;
}

.qbank-item-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qbank-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-grad);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}

.qbank-item h3 {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  margin: 0;
}

.qbank-item-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0,191,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
  flex-shrink: 0;
  direction: ltr;
}

.qbank-item-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 8px;
  padding-right: 24px;
}

/* ══════════════════════════════════════
   RESPONSIVE — Questionnaires page
   ══════════════════════════════════════ */
@media (max-width: 1000px) {
  .qbank-inner {
    padding: 20px 24px 80px;
    gap: 28px;
  }

  .qbank-cat-header {
    padding: 24px 24px;
  }

  .qbank-items {
    padding: 8px 24px 24px;
  }
}

@media (max-width: 768px) {
  .qbank-inner {
    padding: 16px 20px 60px;
    gap: 24px;
  }

  .qbank-cat-header {
    padding: 20px 20px;
    gap: 12px;
  }

  .qbank-cat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    border-radius: 14px;
  }

  .qbank-cat-title-wrap h2 {
    font-size: 1.2rem;
  }

  .qbank-cat-num {
    font-size: 2.2rem;
  }

  .qbank-items {
    padding: 4px 20px 20px;
  }

  .qbank-item {
    padding: 16px 0;
  }

  .qbank-item-top {
    flex-wrap: wrap;
    gap: 10px;
  }

  .qbank-item h3 {
    font-size: 1rem;
    flex: 1 1 calc(100% - 30px);
  }

  .qbank-item-badge {
    margin-right: 24px;
    font-size: 0.6rem;
  }

  .qbank-item-desc {
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  .qbank-inner {
    padding: 12px 16px 48px;
    gap: 20px;
  }

  .qbank-cat-header {
    padding: 16px 16px;
  }

  .qbank-cat-icon {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .qbank-cat-title-wrap h2 {
    font-size: 1.05rem;
  }

  .qbank-cat-num { display: none; }

  .qbank-items {
    padding: 4px 16px 16px;
  }

  .qbank-item h3 {
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════
   KNOWLEDGE PAGE — מאגר ידע
   ══════════════════════════════════════ */

.kb-sections {
  padding: 0 clamp(20px, 5vw, 80px) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.kb-inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Section Header */
.kb-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.kb-section-line {
  width: 4px;
  height: 28px;
  border-radius: 2px;
  background: var(--accent-grad);
  flex-shrink: 0;
}

.kb-section-header h2 {
  font-family: 'Noto Sans Hebrew', 'Heebo', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  flex: 1;
}

.kb-section-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, gap 0.3s;
  white-space: nowrap;
}

.kb-section-all:hover {
  color: #fff;
  gap: 10px;
}

/* Posts Grid */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.kb-card {
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.kb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  background: linear-gradient(160deg, rgba(0,191,255,0.06), transparent 60%);
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.kb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 24px rgba(0,191,255,0.06);
  border-color: rgba(0,191,255,0.15);
}

.kb-card:hover::before {
  opacity: 1;
}

.kb-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Thumbnail */
.kb-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.kb-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.kb-card:hover .kb-card-thumb img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.kb-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0,191,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(168,85,247,0.06) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.kb-card-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(255,255,255,0.02) 29px, rgba(255,255,255,0.02) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(255,255,255,0.02) 29px, rgba(255,255,255,0.02) 30px);
  pointer-events: none;
}

/* Category Badge */
.kb-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.kb-badge--cyan {
  background: rgba(0,191,255,0.2);
  color: #60d5ff;
  border: 1px solid rgba(0,191,255,0.25);
}

.kb-badge--purple {
  background: var(--bg-card, rgba(26,45,72,0.9));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.kb-badge--blue {
  background: rgba(94,139,250,0.2);
  color: #93b5fd;
  border: 1px solid rgba(94,139,250,0.25);
}

/* Card Body */
.kb-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kb-card-title {
  font-family: 'Noto Sans Hebrew', 'Heebo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.kb-card:hover .kb-card-title {
  color: var(--accent-light);
}

.kb-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap 0.3s, color 0.3s;
}

.kb-card:hover .kb-card-read {
  gap: 10px;
  color: var(--accent-light);
}

/* ── Knowledge Page Responsive ── */
@media (max-width: 900px) {
  .kb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .kb-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kb-section-header h2 {
    font-size: 1.25rem;
  }

  .kb-inner {
    gap: 48px;
  }

  .kb-card-body {
    padding: 18px 20px 20px;
  }

  .kb-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .kb-sections {
    padding: 0 16px 60px;
  }

  .kb-section-header {
    margin-bottom: 24px;
  }
}

/* ══════════════════════════════════════
   BLOG PAGE — Pagination
   ══════════════════════════════════════ */
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.blog-pagination .page-numbers li {
  list-style: none;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all 0.3s;
}

.blog-pagination .page-numbers a:hover {
  border-color: rgba(0,191,255,0.3);
  color: var(--accent-light);
  background: rgba(0,191,255,0.08);
}

.blog-pagination .page-numbers .current {
  background: var(--accent-grad);
  color: var(--bg);
  border-color: transparent;
  font-weight: 700;
}

.blog-pagination .page-numbers .prev,
.blog-pagination .page-numbers .next {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
}

.blog-pagination .page-numbers .prev:hover,
.blog-pagination .page-numbers .next:hover {
  border-color: rgba(0,191,255,0.3);
  background: rgba(0,191,255,0.06);
}

.kb-empty {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.1rem;
  padding: 80px 0;
}

@media (max-width: 600px) {
  .blog-pagination .page-numbers a,
  .blog-pagination .page-numbers span {
    min-width: 36px;
    height: 36px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  .blog-pagination .page-numbers {
    gap: 6px;
  }
}
