/* ========== Fonts ========== */
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
::-moz-selection {
	background: var(--cyan);
	color: #fff;
	-webkit-text-fill-color: #fff;
}

::selection {
	background: var(--cyan);
	color: #fff;
	-webkit-text-fill-color: #fff;
}

/* ========== Tokens ========== */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --cyan: #00AEEF;
  --cyan-dim: #0089bd;
  --cyan-glow: rgba(0, 174, 239, 0.35);
  --cyan-wash: rgba(0, 174, 239, 0.08);
  --ink-60: rgba(0, 0, 0, 0.60);
  --ink-40: rgba(0, 0, 0, 0.40);
  --ink-10: rgba(0, 0, 0, 0.08);
  --snow-70: rgba(255, 255, 255, 0.70);
  --snow-40: rgba(255, 255, 255, 0.40);
  --snow-10: rgba(255, 255, 255, 0.10);
  --snow-06: rgba(255, 255, 255, 0.06);

  --font-hebrew: 'Heebo', 'Assistant', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-display: 'Heebo', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-hebrew);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ========== Typography helpers ========== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 174, 239, 0.05); }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 62ch;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 16px;
  inset-inline: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, 100%);
  padding: 10px 22px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--white);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 22px; width: auto; filter: invert(1) brightness(2); display: block; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--snow-70); }
.nav-links a { transition: color .15s ease; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 30px var(--cyan-glow); }
.nav-cta .arrow { transition: transform .2s ease; }
.nav-cta:hover .arrow { transform: translateX(-3px); }

/* Mobile-only contact button + phone icon shown <820px */
.nav-cta-mobile { display: none; align-items: center; gap: 8px; }
.nav-phone {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: background .15s ease, border-color .15s ease;
}
.nav-phone:hover, .nav-phone:active { background: rgba(0,174,239,0.2); border-color: var(--cyan); color: var(--cyan); }
.nav-cta-contact {
  padding: 10px 16px;
  font-size: 13px;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .nav-inner { padding: 8px 8px 8px 14px; }
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  position: fixed;
  inset-inline: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), opacity .25s ease;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-phone {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  transition: background .15s ease;
}
.sticky-phone:active { background: rgba(0,174,239,0.25); }
.sticky-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(0, 174, 239, 0.25), transparent 60%),
    radial-gradient(50% 60% at 20% 100%, rgba(0, 174, 239, 0.15), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 75%);
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.25 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow { color: var(--cyan); margin-bottom: 22px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  max-width: 14ch;
}
.hero h1 .accent {
  color: var(--cyan);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 6%;
  width: 100%;
  height: 10px;
  background: var(--cyan);
  opacity: 0.22;
  border-radius: 2px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--snow-70);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--cyan);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4);
  animation: ctaPulse 2.2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4),
                0 0 0 0 rgba(0, 174, 239, 0.55);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.6),
                0 0 0 14px rgba(0, 174, 239, 0);
    transform: translateY(-2px) scale(1.02);
  }
}
.btn-primary:hover {
  animation: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 174, 239, 0.55); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(-4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background .15s ease, border-color .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }

.hero-bonus {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--snow-70);
}
.hero-bonus::before {
  content: '';
  width: 16px; height: 1px; background: var(--snow-40);
}

/* Hero right — server rack / uptime card */
.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0,174,239,0.6), transparent 40%, transparent 60%, rgba(0,174,239,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.card-title { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.card-title .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
.card-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--snow-70);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.metric {
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--snow-40);
  margin-bottom: 6px;
}
.metric-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.metric-value .unit { font-size: 13px; color: var(--snow-40); margin-inline-start: 3px; }

/* Uptime bars */
.uptime-row {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  margin-bottom: 10px;
}
.uptime-row .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-dim));
  border-radius: 2px;
  height: 100%;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.uptime-row .bar.down { background: #ef4444; opacity: 0.9; }
.uptime-row .bar.warn { background: #f59e0b; }
.uptime-meta {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--snow-40);
}

/* Live log */
.log-strip {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow: hidden;
  height: 120px;
  position: relative;
  mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 85%, transparent 100%);
}
.log-stream {
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  animation: log-scroll 30s linear infinite;
}
@keyframes log-scroll {
  0%   { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}
.log-line {
  display: flex; gap: 10px;
  color: var(--snow-70);
  padding: 2px 0;
  direction: ltr;
  text-align: left;
}
.log-line .t { color: var(--snow-40); flex-shrink: 0; }
.log-line .lvl { flex-shrink: 0; font-weight: 600; }
.log-line.ok .lvl { color: #22c55e; }
.log-line.info .lvl { color: var(--cyan); }
.log-line.warn .lvl { color: #f59e0b; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  inset-inline-end: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--snow-40);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-arrow {
  width: 22px;
  height: 36px;
  position: relative;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
.hero-scroll-arrow svg {
  width: 100%;
  height: 100%;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0,174,239,0.5));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(8px); opacity: 1; }
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--snow-40), transparent);
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-scroll { display: none; }
}

/* ========== CLIENTS MARQUEE ========== */
.clients {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 72px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.clients-head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.clients-head .eyebrow { color: var(--cyan); }
.clients-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.clients-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--snow-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clients-meta strong { color: var(--white); font-weight: 600; }

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.client-chip {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  width: 220px; height: 110px;
  padding: 18px 26px;
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius-lg);
  transition: transform .2s ease;
}
.client-chip:hover { transform: translateY(-2px); }
.client-chip img { max-height: 64px; max-width: 100%; object-fit: contain; }

/* ========== PAIN & PROMISE ========== */
.pain {
  background: var(--white);
  color: var(--black);
  padding: 130px 0 120px;
  position: relative;
  overflow: hidden;
}
.pain-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 75%);
}

.pain-top {
  max-width: 1000px;
  margin-bottom: 64px;
  position: relative;
}
.pain-eyebrow { color: var(--cyan); margin-bottom: 24px; }
.pain-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
}
.pain-accent {
  color: var(--cyan);
  position: relative;
  white-space: nowrap;
}
.pain-accent::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 4%;
  width: 100%;
  height: 10px;
  background: var(--cyan);
  opacity: 0.22;
  border-radius: 2px;
  z-index: -1;
}

.pain-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
  margin-bottom: 72px;
  position: relative;
}
.pstat {
  padding: 32px 28px 32px 0;
  border-inline-start: 1px solid var(--ink-10);
  position: relative;
}
.pstat:first-child { border-inline-start: none; padding-inline-start: 0; }
.pstat:not(:first-child) { padding-inline-start: 28px; }
.pstat::before {
  content: '';
  position: absolute;
  top: -1px; inset-inline-start: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pain-stats.in .pstat::before { width: 100%; }
.pain-stats.in .pstat:nth-child(2)::before { transition-delay: .12s; }
.pain-stats.in .pstat:nth-child(3)::before { transition-delay: .24s; }
.pain-stats.in .pstat:nth-child(4)::before { transition-delay: .36s; }

.pstat-val {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 14px;
}
.pstat-val .unit { font-size: 0.45em; color: var(--cyan); margin-inline-start: 4px; font-weight: 600; }
.pstat-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-60);
  max-width: 26ch;
}

.pain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.pain-copy {
  position: sticky;
  top: 100px;
}
.pain-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.pain-promise {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--black);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-top: 28px;
  border-top: 1px solid var(--ink-10);
  margin-bottom: 28px;
}
.pain-cta-row { display: flex; gap: 14px; }
.pain-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--black);
  transition: color .2s ease, border-color .2s ease;
}
.pain-cta-link:hover { color: var(--cyan); border-color: var(--cyan); }
.pain-cta-link svg { transition: transform .2s ease; }
.pain-cta-link:hover svg { transform: translateX(-4px); }

.fail-stack {
  display: grid;
  gap: 12px;
}
.fail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.fail-card:hover {
  transform: translateX(-4px);
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.02);
  box-shadow: 0 8px 28px rgba(239,68,68,0.08);
}
.fail-card .mark {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--black);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}
.fail-card .fail-body { flex: 1; padding-inline-start: 90px; }
.fail-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; color: var(--black); }
.fail-card .fail-body p { font-size: 14.5px; color: var(--ink-60); margin: 0; line-height: 1.55; }
.fail-card .status {
  position: absolute;
  top: 22px; inset-inline-end: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #dc2626;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 4px;
  background: rgba(220,38,38,0.04);
}

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr; gap: 48px; }
  .pain-copy { position: static; }
  .pain-stats { grid-template-columns: repeat(2, 1fr); }
  .pstat:nth-child(2) { border-inline-start: 1px solid var(--ink-10); }
  .pstat:nth-child(3) { border-top: 1px solid var(--ink-10); border-inline-start: none; padding-inline-start: 0 !important; }
  .pstat:nth-child(4) { border-top: 1px solid var(--ink-10); }
}
@media (max-width: 560px) {
  .pain-stats { grid-template-columns: 1fr; }
  .pstat { border-inline-start: none !important; padding-inline-start: 0 !important; }
  .pstat + .pstat { border-top: 1px solid var(--ink-10); }
  .fail-card .fail-body { padding-inline-start: 0; }
  .fail-card .status { position: static; margin-top: 8px; display: inline-block; }
}

/* ========== SERVICES ========== */
.services {
  background: var(--black);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 0%, rgba(0,174,239,0.15), transparent 60%);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.services-head .eyebrow { margin-bottom: 16px; }
.services-head h2 { max-width: 18ch; }
.services-head h2 .accent { color: var(--cyan); }
.services-count {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--snow-40);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.service-card {
  position: relative;
  padding: 32px 28px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(0,174,239,0.5);
  background: rgba(0,174,239,0.04);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-num .badge {
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--snow-70);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--cyan);
  color: var(--black);
  margin-bottom: 22px;
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card h3 .en {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--snow-40);
  font-weight: 400;
  margin-inline-start: 8px;
  letter-spacing: 0.04em;
}
.service-card > p {
  font-size: 14px;
  color: var(--snow-70);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 8px;
  width: 16px; height: 1px;
  background: var(--cyan);
}

@media (max-width: 980px) {
  .services-head { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

/* ========== PROCESS ========== */
.process {
  background: var(--white);
  padding: 120px 0;
  position: relative;
}
.process-head { text-align: center; margin-bottom: 72px; }
.process-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.process-head h2 { margin-inline: auto; max-width: 20ch; margin-bottom: 18px; }
.process-head p { margin-inline: auto; text-align: center; }

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-rail::before {
  content: '';
  position: absolute;
  top: 44px;
  inset-inline: 12%;
  height: 1px;
  border-top: 1px dashed rgba(0,0,0,0.2);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--black); transform: translateY(-3px); }
.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-10);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(0,0,0,0.2);
}
.step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--ink-60); line-height: 1.6; }

@media (max-width: 900px) {
  .process-rail { grid-template-columns: 1fr; }
  .process-rail::before { display: none; }
}

/* ========== ABOUT / STATS ========== */
.about {
  background: var(--black);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 90% 50%, rgba(0,174,239,0.2), transparent 60%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.about-left h2 { margin-bottom: 22px; }
.about-left h2 .accent { color: var(--cyan); }
.about-left p { color: var(--snow-70); margin-bottom: 18px; font-size: 17px; line-height: 1.7; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 28px 24px;
  border-inline-start: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat:nth-child(-n+2) { border-top: none; }
.stat:nth-child(odd) { border-inline-start: none; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--snow-40);
  margin-bottom: 10px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .unit { font-size: 22px; color: var(--cyan); margin-inline-start: 6px; font-weight: 600; }
.stat-sub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--snow-70);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ========== STRENGTHS ========== */
.strengths {
  background: var(--white);
  padding: 120px 0;
}
.strengths-head { text-align: center; margin-bottom: 56px; }
.strengths-head .eyebrow { justify-content: center; margin-bottom: 20px; }
.strengths-head h2 { margin-inline: auto; max-width: 22ch; }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.strength {
  padding: 28px 24px;
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  transition: background .2s ease, border-color .2s ease;
  position: relative;
}
.strength:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.strength:hover .strength-num { color: var(--cyan); }
.strength:hover p { color: var(--snow-70); }

.strength-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.strength-icon svg { width: 20px; height: 20px; }
.strength-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-40);
  margin-bottom: 8px;
  transition: color .2s ease;
}
.strength h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.strength p { font-size: 13.5px; color: var(--ink-60); line-height: 1.55; transition: color .2s ease; }

@media (max-width: 900px) {
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .strengths-grid { grid-template-columns: 1fr; }
}

/* ========== FORM / FOOTER CTA ========== */
.cta-footer {
  background: var(--black);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.cta-footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 0% 0%, rgba(0,174,239,0.25), transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(0,174,239,0.15), transparent 60%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.cta-left .eyebrow { margin-bottom: 22px; }
.cta-left h2 { font-size: clamp(36px, 4.5vw, 62px); margin-bottom: 22px; letter-spacing: -0.025em; }
.cta-left h2 .accent { color: var(--cyan); }
.cta-left > p { color: var(--snow-70); font-size: 17px; line-height: 1.7; max-width: 44ch; margin-bottom: 32px; }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--snow-70);
}
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

/* Form */
.cta-form {
  padding: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}
.cta-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(0,174,239,0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-header h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.form-header .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-header .chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 0 3px rgba(0,174,239,0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-error { display: none; font-size: 12px; color: #ff6b6b; margin-top: -2px; }
.field-error.visible { display: block; }
.field.full { grid-column: 1/-1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--snow-70);
}
.field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-hebrew);
  font-size: 15px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input::placeholder { color: var(--snow-40); }
.field input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,174,239,0.05);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.15);
}
.field input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.checkbox {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0 22px;
  font-size: 13.5px;
  color: var(--snow-70);
  cursor: pointer;
  user-select: none;
}
.checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox .box {
  width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.checkbox .box svg { width: 12px; height: 12px; color: var(--black); opacity: 0; }
.checkbox input:checked + .box { background: var(--cyan); border-color: var(--cyan); }
.checkbox input:checked + .box svg { opacity: 1; }

.form-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--cyan);
  color: var(--black);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
  letter-spacing: -0.01em;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,174,239,0.45); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { cursor: not-allowed; }
.btn-spinner { display: none; align-items: center; gap: 8px; }
.form-submit.loading .btn-text { display: none; }
.form-submit.loading .btn-spinner { display: inline-flex; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-icon { animation: spin .8s linear infinite; }

.form-foot {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--snow-40);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
}
.form-foot svg { width: 12px; height: 12px; }
.form-recaptcha-note { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; line-height: 1.6; }
.form-recaptcha-note a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.form-recaptcha-note a:hover { color: rgba(255,255,255,0.7); }
.grecaptcha-badge { visibility: hidden !important; }


@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 24px; }
}

/* ========== FOOT ========== */
.foot {
  background: var(--black);
  color: var(--snow-40);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-inner .logo { height: 18px; filter: invert(1) brightness(2); opacity: 0.6; }

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }


/* ========== ISO BADGE ========== */
.iso-badge {
  margin-top: 32px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.iso-badge::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cyan);
}
.iso-mark {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--cyan);
  color: var(--black);
}
.iso-mark svg { width: 36px; height: 36px; }
.iso-body { flex: 1; min-width: 0; }
.iso-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.iso-body h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--white);
}
.iso-num {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cyan);
}
.iso-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--snow-70);
  margin-bottom: 14px;
  max-width: 50ch;
}
.iso-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 174, 239, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(0, 174, 239, 0.4);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.iso-cta:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
  transform: translateY(-1px);
}
.iso-cta svg { transition: transform .15s ease; }

@media (max-width: 560px) {
  .iso-badge { flex-direction: column; gap: 16px; padding: 20px; }
  .iso-mark { width: 52px; height: 52px; }
  .iso-mark svg { width: 28px; height: 28px; }
}

/* ========== ISO MODAL ========== */
.iso-modal[hidden] { display: none; }
.iso-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.iso-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.iso-modal-card {
  position: relative;
  width: min(960px, 100%);
  height: min(90vh, 1100px);
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.iso-modal.open .iso-modal-card { transform: translateY(0) scale(1); }

.iso-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.iso-modal-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 6px;
}
.iso-modal-head h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.iso-modal-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.iso-icon-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.iso-icon-btn:hover {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
}

.iso-modal-body {
  flex: 1;
  background: #f3f4f6;
  position: relative;
  overflow: hidden;
}
.iso-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: transparent;
}

@media (max-width: 600px) {
  .iso-modal { padding: 12px; }
  .iso-modal-card { height: 92vh; }
  .iso-modal-head { padding: 16px; }
  .iso-modal-head h3 { font-size: 16px; }
}


/* ========== ISO MODAL FALLBACK ========== */
.iso-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  color: var(--black);
  background: linear-gradient(180deg, #f8fafc, #e5e7eb);
  z-index: 1;
}
.iso-fallback-mark {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--cyan);
  color: var(--black);
  margin-bottom: 22px;
}
.iso-fallback-mark svg { width: 40px; height: 40px; }
.iso-fallback h4 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.iso-fallback p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  max-width: 44ch;
  margin-bottom: 24px;
}
.iso-fallback-actions {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.iso-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0,0,0,0.06);
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.1);
  transition: background .15s ease, transform .15s ease;
}
.iso-fallback-btn:hover { background: rgba(0,0,0,0.1); transform: translateY(-1px); }
.iso-fallback-btn.primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--black);
}
.iso-fallback-btn.primary:hover { background: var(--cyan-dim); border-color: var(--cyan-dim); color: var(--white); }

.iso-frame {
  position: relative;
  z-index: 2;
  background: transparent;
}
.iso-frame.hidden { display: none; }
.footer-links {
	display: flex;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: heebo;
	line-height: 1;
	font-size: 14px;
	justify-content: center;
}
.footer-links > li:not(:first-child) {
	border-right: 1px solid var(--snow-40);
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
}
footer.foot a {
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
footer.foot a:hover {
	color: #fff;
}
:root {
	--cookie-consent-decline-bg: #00AEEF;
	--cookie-consent-decline-color: var(--black);
}
@media (max-width: 900px) {
	.foot-inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}