/* ============================================================
   ULTRAISE — Brand Stylesheet (Hebrew / RTL)
   Palette: navy #16202D · orange #FFC107 · white text
   ============================================================ */

:root {
  --navy-900: #0E1620;
  --navy-800: #131D29;
  --navy-700: #16202D;
  --navy-600: #1C2937;
  --navy-500: #243140;
  --navy-card: #1A2633;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --orange: #FFC107;
  --orange-bright: #FFCE3A;
  --orange-deep: #F0A800;

  --white: #FFFFFF;
  --text: #E7ECF2;
  --muted: #9AA7B5;
  --muted-soft: #B7C2CE;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --maxw: 1180px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-orange: 0 16px 40px -12px rgba(255, 193, 7, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;           /* no sideways scroll, doesn't break sticky header */
  max-width: 100%;
}

body {
  font-family: 'Heebo', system-ui, 'Segoe UI', Arial, sans-serif;
  background: var(--navy-700);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.text-accent { color: var(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-900);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--white); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 22px 48px -12px rgba(255,255,255,.28); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-linkedin {
  background: rgba(255,255,255,.06);
  border-color: var(--line-strong);
  color: var(--white);
}
.btn-linkedin:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 22, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { height: 34px; width: auto; display: block; }
.brand-icon { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; }
.brand-name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
  direction: ltr;
}
.brand-accent { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--muted-soft);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.main-nav .nav-cta {
  background: var(--orange);
  color: var(--navy-900);
  font-weight: 700;
  margin-inline-start: 8px;
}
.main-nav .nav-cta:hover { background: var(--white); color: var(--navy-900); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(255,193,7,.10), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(255,193,7,.06), transparent 55%),
    linear-gradient(180deg, var(--navy-800), var(--navy-700));
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .px {
  position: absolute;
  background: var(--orange);
  border-radius: 4px;
  opacity: .9;
  animation: floaty 7s ease-in-out infinite;
}
.px1 { width: 26px; height: 26px; top: 16%; left: 8%; opacity:.25; animation-delay: 0s; }
.px2 { width: 14px; height: 14px; top: 70%; left: 14%; opacity:.5; animation-delay: 1.2s; }
.px3 { width: 20px; height: 20px; top: 30%; left: 46%; opacity:.18; animation-delay: .6s; }
.px4 { width: 12px; height: 12px; top: 80%; left: 60%; opacity:.4; animation-delay: 2s; }
.px5 { width: 30px; height: 30px; top: 12%; left: 78%; opacity:.16; animation-delay: 1.6s; }
.px6 { width: 16px; height: 16px; top: 58%; left: 90%; opacity:.45; animation-delay: .9s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--orange);
  background: rgba(255,193,7,.10);
  border: 1px solid rgba(255,193,7,.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 600px;
}
.hero-sub { color: var(--muted); max-width: 600px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero mini-report card */
.hero-card { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-card-note { margin-top: 12px; font-size: 12.5px; color: var(--muted); text-align: center; }
.mini-report {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(180deg, var(--navy-600), var(--navy-card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
  transition: transform .4s var(--ease);
}
.mini-report:hover { transform: rotate(0deg) translateY(-4px); }
.mini-report-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mini-report-head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mini-report-head .dot:first-child { background: var(--orange); }
.mini-report-title { margin-inline-start: auto; font-size: 13px; color: var(--muted); font-weight: 600; }
.mini-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0;
  font-size: 15px;
  color: var(--muted-soft);
  border-bottom: 1px dashed var(--line);
}
.mini-row b { color: var(--white); font-variant-numeric: tabular-nums; direction: ltr; }
.mini-row.total { border-bottom: none; margin-top: 6px; font-weight: 700; }
.mini-row.total span { color: var(--white); }
.mini-row.total b { color: var(--orange); font-size: 18px; }
.mini-foot {
  margin-top: 14px;
  background: rgba(255,193,7,.10);
  border: 1px solid rgba(255,193,7,.22);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 9px;
  border-radius: 10px;
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--navy-800), var(--navy-700)); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  color: var(--orange);
  text-transform: none;
  margin-bottom: 14px;
  position: relative;
  padding-inline-start: 26px;
}
.kicker::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 16px; height: 8px;
  transform: translateY(-50%);
  background: var(--orange);
  border-radius: 2px;
}
.section h2 {
  font-size: clamp(27px, 3.6vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.section-intro { margin-top: 18px; color: var(--muted); font-size: 18px; }

/* ---------- Problem ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.pain-item {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-inline-start: 46px;
  transition: border-color .3s, transform .3s;
}
.pain-item::before {
  content: "+";
  position: absolute;
  inset-inline-start: 18px;
  top: 19px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: rgba(255,193,7,.14);
  color: var(--orange);
  border-radius: 6px;
  font-weight: 800;
}
.pain-item:hover { border-color: rgba(255,193,7,.4); transform: translateY(-3px); }
.pain-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}
.pain-punch {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.pain-punch::after { content: ""; display: block; width: 60px; height: 4px; background: var(--orange); border-radius: 3px; margin: 18px auto 0; }

/* ---------- Value prop ---------- */
.value-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.value-wrap .section-head { text-align: start; margin: 0; }
.value-body p { margin-bottom: 16px; color: var(--muted-soft); }
.value-body p:last-child { margin-bottom: 0; }
.value-body strong { color: var(--white); font-weight: 700; }

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.principle {
  background: var(--navy-card);
  border: 1.5px solid rgba(255,193,7,.28);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.principle:hover { border-color: rgba(255,193,7,.6); transform: translateY(-5px); }
.principle-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--orange);
  background: rgba(255,193,7,.12);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
}
.principle h3 { font-size: 21px; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.principle p { color: var(--muted); font-size: 16px; }

/* ---------- Vision ---------- */
.section-vision {
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(255,193,7,.08), transparent 65%),
    var(--navy-800);
}
.vision-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.vision-emoji {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.4));
  animation: floaty 5s ease-in-out infinite;
}
.vision-inner p { color: var(--muted-soft); font-size: 18px; margin: 20px 0; }
.vision-inner .btn { margin-top: 16px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 20px;
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color .3s, transform .3s;
}
.step:hover { border-color: rgba(255,193,7,.3); transform: translateY(-4px); }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 22px; font-weight: 900;
  color: var(--navy-900);
  background: var(--orange);
  border-radius: 14px;
  box-shadow: var(--shadow-orange);
}
.step-body h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.step-body p { color: var(--muted); font-size: 16px; }

/* ---------- Cards grid (benefits / services) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.card:hover { border-color: rgba(255,193,7,.35); transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.22);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 20px;
}
.card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--muted); font-size: 16px; }
.card.service { padding-top: 30px; }
.card.service::before {
  content: "";
  display: block;
  width: 34px; height: 6px;
  background: var(--orange);
  border-radius: 3px;
  margin-bottom: 18px;
}

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

/* ---------- Fit ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.fit-head { text-align: start; margin: 0; max-width: none; }
.check-list { display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding: 18px 22px;
  padding-inline-start: 56px;     /* room for the ✓ on the start side — flips with LTR/RTL */
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
  transition: border-color .3s, transform .25s;
}
.check-list li:hover { border-color: rgba(255,193,7,.35); transform: translateX(-4px); }
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--orange);
  color: var(--navy-900);
  font-weight: 900;
  border-radius: 8px;
  font-size: 15px;
}

/* ---------- Why not hire ---------- */
.why-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  position: relative;
  overflow: hidden;
}
.why-inner::before {
  content: "";
  position: absolute;
  top: -40px; inset-inline-start: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,193,7,.18), transparent 70%);
}
.why-inner p { color: var(--muted-soft); font-size: 17px; margin: 16px 0; position: relative; }
.why-punch { font-size: 20px !important; font-weight: 800; color: var(--white) !important; margin-top: 24px !important; }
.why-inner .btn { margin-top: 26px; }

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.founder-frame {
  position: relative;
  border: 3px solid var(--orange);
  border-radius: 24px;
  padding: 10px;
  max-width: 360px;
  margin-inline: auto;
  background: var(--navy-card);
}
.founder-frame::after {
  content: "";
  position: absolute;
  inset-inline-end: -14px; top: -14px;
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  z-index: -1;
}
.founder-frame img { border-radius: 16px; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.founder-fallback {
  border-radius: 16px;
  aspect-ratio: 1;
  place-items: center;
  font-size: 84px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--orange);
  background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
  direction: ltr;
}
.founder-body .kicker { padding-inline-start: 26px; }
.founder-body h2 { margin-top: 6px; }
.founder-role { color: var(--orange); font-weight: 700; font-size: 18px; margin: 6px 0 18px; }
.founder-body p { color: var(--muted-soft); margin-bottom: 14px; }
.founder-body .btn { margin-top: 12px; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    radial-gradient(800px 400px at 85% 100%, rgba(255,193,7,.10), transparent 60%),
    linear-gradient(180deg, var(--navy-700), var(--navy-800));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.contact-copy h2 { margin: 8px 0 18px; }
.contact-copy p { color: var(--muted-soft); margin-bottom: 14px; }
.contact-points { margin-top: 22px; display: grid; gap: 12px; }
.contact-points li {
  position: relative;
  padding-inline-start: 30px;
  color: var(--text);
  font-weight: 500;
}
.contact-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0; top: 11px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 3px;
}

.contact-form-wrap {
  background: var(--navy-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 22px; color: var(--white); margin-bottom: 22px; font-weight: 700; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-soft);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-700);
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  direction: rtl;
  text-align: right;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { text-align: right; }
.field input::placeholder { color: #5e6b78; }
.field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,193,7,.15);
}
.field input.invalid { border-color: #ff6b6b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  min-height: 22px;
}
.form-status.success { color: #4ade80; }
.form-status.error { color: #ff6b6b; }
.form-disclaimer { margin-top: 10px; font-size: 13px; color: var(--muted); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { color: var(--muted); max-width: 320px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-contact a { color: var(--muted-soft); transition: color .2s; width: fit-content; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom span { color: var(--muted); font-size: 14px; }

/* ---------- Floating CTA (mobile) ---------- */
.floating-cta {
  position: fixed;
  bottom: 18px;
  inset-inline: 18px;
  z-index: 90;
  display: none;
  text-align: center;
  background: var(--orange);
  color: var(--navy-900);
  font-weight: 800;
  padding: 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-orange);
  transition: background .25s, color .25s;
}
.floating-cta:hover { background: var(--white); color: var(--navy-900); }

/* ============================================================
   TIMELINE (how it works)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-inline-start: 8px;
}
.timeline-line {
  position: absolute;
  inset-inline-start: 35px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: var(--line-strong);
  border-radius: 3px;
  overflow: hidden;
}
.timeline-progress {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--orange), var(--orange-deep));
  border-radius: 3px;
  transition: height .15s linear;
}
.tl-step {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 0 0 38px 0;
  align-items: flex-start;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--navy-card);
  border: 2px solid var(--line-strong);
  color: var(--muted);
  transition: border-color .4s var(--ease), color .4s var(--ease), background .4s, box-shadow .4s, transform .4s var(--ease);
}
.tl-marker svg { width: 32px; height: 32px; }
.tl-step.active .tl-marker {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy-900);
  box-shadow: var(--shadow-orange);
  transform: scale(1.04);
}
.tl-content {
  background: var(--navy-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  flex: 1;
  transition: border-color .4s, transform .4s var(--ease);
}
.tl-step.active .tl-content { border-color: rgba(255,193,7,.32); }
.tl-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 6px;
}
.tl-content h3 { font-size: 21px; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.tl-content p { color: var(--muted); font-size: 16px; }

/* ============================================================
   SERVICES — faded platform logos in background
   ============================================================ */
#services { position: relative; overflow: hidden; }
#services .container { position: relative; z-index: 1; }
.services-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.plat { position: absolute; height: auto; }
.plat-meta { width: 150px; top: 12%; inset-inline-start: 4%; opacity: .07; transform: rotate(-10deg); }
.plat-gads { width: 92px;  bottom: 12%; inset-inline-start: 8%; opacity: .12; transform: rotate(8deg); }
.plat-tt   { width: 88px;  top: 20%; inset-inline-end: 5%; opacity: .06; transform: rotate(9deg); }
@media (max-width: 760px) {
  .plat-meta { width: 100px; opacity: .05; }
  .plat-gads { width: 62px; opacity: .09; }
  .plat-tt { width: 60px; opacity: .05; }
}

/* ============================================================
   SERVICE LIST (distinct from benefit cards)
   ============================================================ */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 980px;
  margin: 0 auto;
}
.srv {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform .3s var(--ease);
}
.srv:hover { transform: translateX(-6px); }
.srv:hover .srv-ico { color: var(--navy-900); background: var(--orange); border-color: var(--orange); }
.srv-ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: rgba(255,193,7,.08);
  border: 1px solid rgba(255,193,7,.22);
  transition: color .3s, background .3s, border-color .3s;
}
.srv-ico svg { width: 28px; height: 28px; }
.srv-body h3 { font-size: 19px; color: var(--white); margin-bottom: 6px; font-weight: 700; }
.srv-body p { color: var(--muted); font-size: 15.5px; }
/* remove bottom borders on the last row of each column */
.service-list .srv:nth-last-child(1),
.service-list .srv:nth-last-child(2) { border-bottom: none; }

/* ============================================================
   WHY NOT HIRE — emphasis
   ============================================================ */
.why-emoji {
  position: relative;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.4));
  animation: tilt 4s ease-in-out infinite;
}
@keyframes tilt { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
.kicker-center { padding-inline-start: 0; }
.kicker-center::before { display: none; }
.why-title {
  font-size: clamp(32px, 5vw, 52px) !important;
  line-height: 1.12;
  margin-top: 6px;
}

/* ============================================================
   FOUNDER — emphasis
   ============================================================ */
.founder-body .kicker { font-size: 16px; }
.founder-name {
  font-size: clamp(34px, 4.4vw, 50px) !important;
  margin-top: 8px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
/* Hide for the reveal animation ONLY when JS is running. If the script fails
   to load, the page stays fully visible instead of blank. */
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg .px { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { order: 2; }
  .value-wrap, .fit-grid, .contact-grid, .founder-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-grid .founder-photo { order: -1; }
  .cards-grid, .principles { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(14,22,32,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 13px 16px; font-size: 17px; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  .steps, .cards-grid, .principles, .pain-grid { grid-template-columns: 1fr; }
  .pain-grid { max-width: 440px; }

  .service-list { grid-template-columns: 1fr; gap: 0; max-width: 480px; }
  .service-list .srv:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .service-list .srv:last-child { border-bottom: none; }
  .srv:hover { transform: none; }

  .tl-marker { width: 58px; height: 58px; border-radius: 16px; }
  .tl-marker svg { width: 26px; height: 26px; }
  .timeline-line { inset-inline-start: 28px; }
  .tl-step { gap: 18px; padding-bottom: 28px; }
  .tl-content { padding: 20px 20px; }
  .why-inner { padding: 40px 24px; }
  .contact-form-wrap { padding: 30px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .floating-cta { display: block; }
  .hero-actions .btn, .center-cta .btn { flex: 1; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .brand-name { font-size: 22px; }
}

/* ============================================================
   HERO FLOATING ICONS (Ultraise app icon)
   ============================================================ */
.hero-mark {
  position: absolute;
  width: 64px; height: 64px;
  animation: floaty 7s ease-in-out infinite;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}
.hero-mark svg { width: 100%; height: 100%; border-radius: 13px; border: 1px solid rgba(255,255,255,.08); }
.hm1 { top: 14%; left: 6%; opacity: .9; animation-delay: .2s; }
.hm1 svg { transform: rotate(-8deg); }
.hm2 { top: 36%; left: 85%; width: 50px; height: 50px; opacity: .8; animation-delay: 1.5s; }
.hm2 svg { transform: rotate(10deg); }
@media (max-width: 760px) {
  /* On mobile the text fills the width, so the floating icons would sit on top
     of it. Hide them here for readability (kept on tablet/desktop). */
  .hero-mark { display: none; }

  .brand-logo { height: 26px; }

  /* Center the founder + final CTA blocks on mobile only (desktop stays right-aligned) */
  .founder-body,
  .contact-copy { text-align: center; }

  /* Founder kicker: drop the side bar so the centered label looks clean */
  .founder-body .kicker { padding-inline-start: 0; }
  .founder-body .kicker::before { display: none; }

  /* Contact bullet points: move the square marker inline so it centers with the text */
  .contact-points li { padding-inline-start: 0; }
  .contact-points li::before {
    position: static;
    display: inline-block;
    vertical-align: middle;
    top: auto;
    margin-inline-end: 8px;
  }
}

/* ============================================================
   GROWTH GRAPH (problem section)
   ============================================================ */
.growth-graph {
  width: 210px;
  margin: 0 auto 26px;
  animation: floaty 6s ease-in-out infinite;
}
.growth-graph svg { width: 100%; height: auto; overflow: visible; }
.gg-line {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
}
.reveal.in .gg-line { animation: ggDraw 1.6s var(--ease) forwards .15s; }
@keyframes ggDraw { to { stroke-dashoffset: 0; } }
.gg-area, .gg-arrow { opacity: 0; }
.reveal.in .gg-area { animation: ggFade .7s ease forwards 1.2s; }
.reveal.in .gg-arrow { animation: ggFade .5s ease forwards 1.4s; }
@keyframes ggFade { to { opacity: 1; } }

/* ============================================================
   ABOUT WATERMARK (Ultraise icon in background)
   ============================================================ */
#about { overflow: hidden; }
.about-watermark {
  position: absolute;
  inset-inline-end: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 48vw;
  color: var(--orange);
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.about-watermark svg { width: 100%; height: auto; }
#about .container { position: relative; z-index: 1; }

/* ============================================================
   LINKEDIN ICON BUTTON (founder)
   ============================================================ */
.linkedin-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-top: 14px;
  margin-inline: auto;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  color: var(--white);
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.linkedin-icon svg { width: 26px; height: 26px; }
.linkedin-icon:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ============================================================
   MINIMAL FOOTER
   ============================================================ */
.site-footer { padding-top: 0; padding-bottom: 88px; }
.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0 26px;
}
@media (max-width: 760px) { .site-footer { padding-bottom: 140px; } }
.footer-copy { color: var(--muted); font-size: 14px; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: var(--muted-soft); font-size: 14px; transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }

.footer-social { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 12px; }
.footer-follow {
  position: relative;
  color: var(--muted-soft); font-size: 14px; font-weight: 700; letter-spacing: .5px;
}
.footer-follow::before,
.footer-follow::after {
  content: ""; position: absolute; top: 50%; width: 28px; height: 1px;
  background: var(--line-strong);
}
.footer-follow::before { inset-inline-end: calc(100% + 12px); }
.footer-follow::after { inset-inline-start: calc(100% + 12px); }
.social-icons { display: flex; gap: 12px; }
.social-link {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-strong);
  color: var(--muted-soft);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.social-link svg { width: 19px; height: 19px; }
.social-link:hover { transform: translateY(-3px); color: #fff; }
.social-link.s-fb:hover { background: #1877F2; border-color: #1877F2; }
.social-link.s-ig:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); border-color: transparent; }
.social-link.s-li:hover { background: #0A66C2; border-color: #0A66C2; }
.social-link.s-tt:hover { background: #000; border-color: #fff; }

/* ============================================================
   ACCESSIBILITY WIDGET
   ============================================================ */
.a11y { position: fixed; bottom: 18px; left: 18px; z-index: 130; }
.a11y-toggle {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-900);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-orange);
  transition: transform .2s var(--ease), background .2s;
}
.a11y-toggle svg { width: 30px; height: 30px; }
.a11y-toggle:hover { transform: scale(1.08); }
.a11y-toggle:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

.a11y-panel {
  position: absolute;
  bottom: 66px;
  left: 0;
  width: 300px;
  max-width: calc(100vw - 36px);
  background: var(--navy-600);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  direction: rtl;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom left;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.a11y.open .a11y-panel { opacity: 1; transform: none; pointer-events: auto; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.a11y-head span { font-weight: 800; color: var(--white); font-size: 18px; }
.a11y-close {
  background: none; border: none; color: var(--muted);
  font-size: 17px; cursor: pointer; line-height: 1; padding: 4px;
  transition: color .2s;
}
.a11y-close:hover { color: var(--white); }

.a11y-fontrow {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 14px;
}
.a11y-fontlabel { font-size: 14px; color: var(--muted-soft); font-weight: 600; }
.a11y-step {
  width: 42px; height: 36px;
  border-radius: 9px;
  border: 1px solid var(--line-strong);
  background: var(--navy-600);
  color: var(--white);
  font-weight: 800; font-size: 15px;
  cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s;
}
.a11y-step:hover { border-color: var(--orange); color: var(--orange); }

.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opt {
  padding: 11px 8px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: var(--navy-700);
  color: var(--muted-soft);
  font-size: 13.5px; font-weight: 600;
  cursor: pointer; font-family: inherit; text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.a11y-opt:hover { border-color: var(--orange); color: var(--white); }
.a11y-opt.active { background: var(--orange); color: var(--navy-900); border-color: var(--orange); }

.a11y-reset {
  margin-top: 12px; width: 100%;
  padding: 11px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted-soft);
  font-weight: 700; cursor: pointer; font-family: inherit;
  transition: border-color .2s, color .2s;
}
.a11y-reset:hover { border-color: #ff6b6b; color: #ff6b6b; }

@media (max-width: 760px) {
  .a11y { bottom: 86px; }
}

/* ============================================================
   ACCESSIBILITY — applied modes (toggle classes on <html>)
   ============================================================ */
/* Grayscale */
html.a11y-grayscale .site-header,
html.a11y-grayscale main,
html.a11y-grayscale .site-footer { filter: grayscale(100%); }

/* Highlight links */
html.a11y-links a:not(.btn):not(.nav-cta):not(.brand):not(.linkedin-icon):not(.floating-cta):not(.a11y-toggle) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  background: #ffe14d !important;
  color: #111 !important;
  border-radius: 3px;
  padding: 0 3px;
}

/* Readable font */
html.a11y-readable,
html.a11y-readable body,
html.a11y-readable h1,
html.a11y-readable h2,
html.a11y-readable h3,
html.a11y-readable p,
html.a11y-readable span,
html.a11y-readable a,
html.a11y-readable li,
html.a11y-readable label,
html.a11y-readable input,
html.a11y-readable button { font-family: Arial, Helvetica, "Segoe UI", sans-serif !important; }

/* Letter spacing */
html.a11y-spacing p,
html.a11y-spacing li,
html.a11y-spacing h1,
html.a11y-spacing h2,
html.a11y-spacing h3,
html.a11y-spacing a,
html.a11y-spacing span { letter-spacing: .05em !important; word-spacing: .12em !important; }

/* Line height */
html.a11y-lineheight p,
html.a11y-lineheight li { line-height: 2.1 !important; }

/* Stop motion */
html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
  animation-duration: .001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: .001s !important;
  scroll-behavior: auto !important;
}

/* Big cursor */
html.a11y-cursor,
html.a11y-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 46 46"><path d="M9 4 L9 39 L18 30 L24 43 L30 40 L24 27 L37 27 Z" fill="white" stroke="black" stroke-width="2.5" stroke-linejoin="round"/></svg>') 6 4, auto !important;
}

/* High contrast */
html.a11y-contrast body,
html.a11y-contrast .site-header,
html.a11y-contrast main,
html.a11y-contrast .site-footer,
html.a11y-contrast .hero,
html.a11y-contrast .section,
html.a11y-contrast .section-alt,
html.a11y-contrast .section-vision,
html.a11y-contrast .section-contact { background: #000 !important; }
html.a11y-contrast .card,
html.a11y-contrast .srv,
html.a11y-contrast .tl-content,
html.a11y-contrast .tl-marker,
html.a11y-contrast .principle,
html.a11y-contrast .pain-item,
html.a11y-contrast .check-list li,
html.a11y-contrast .mini-report,
html.a11y-contrast .why-inner,
html.a11y-contrast .contact-form-wrap,
html.a11y-contrast .field input { background: #000 !important; border-color: #fff !important; }
html.a11y-contrast h1,
html.a11y-contrast h2,
html.a11y-contrast h3,
html.a11y-contrast h4,
html.a11y-contrast p,
html.a11y-contrast li,
html.a11y-contrast label,
html.a11y-contrast .footer-copy,
html.a11y-contrast .main-nav a,
html.a11y-contrast .mini-row,
html.a11y-contrast .mini-row b { color: #fff !important; }
html.a11y-contrast .text-accent,
html.a11y-contrast .tl-num,
html.a11y-contrast .founder-role,
html.a11y-contrast a:not(.btn):not(.nav-cta):not(.brand):not(.linkedin-icon):not(.a11y-toggle):not(.a11y-opt):not(.a11y-reset) { color: #ff0 !important; }

/* ============================================================
   BRAND ORANGE SECTIONS (benefits + contact)
   Solid logo-orange background with geometric "tilt" shape
   dividers (navy diagonals) into the neighbouring sections —
   matches the angular/geometric Ultraise brand.
   ============================================================ */
#benefits, #contact {
  position: relative;
  background: var(--orange);
}
#benefits > .container,
#contact > .container { position: relative; z-index: 2; }

/* Tilt shape dividers — navy diagonal at top, navy diagonal at bottom */
#benefits::before, #contact::before,
#benefits::after, #contact::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  z-index: 1;
  pointer-events: none;
}
#benefits::before, #contact::before {
  top: -1px;            /* bleed 1px past the edge to avoid a sub-pixel seam */
  background: #16202D;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
#benefits::after, #contact::after {
  bottom: -1px;         /* bleed 1px into the next section to avoid a seam */
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
#benefits::after { background: #16202D; }
#contact::after { background: #0E1620; }   /* matches the footer below it */

/* Section heading sitting directly on the orange -> dark navy for contrast */
#benefits .section-head h2,
#contact .contact-copy h2 { color: #16202D; }

/* Contact copy text + list on the orange */
#contact .contact-copy p { color: #2A3645; }
#contact .contact-points li { color: #16202D; font-weight: 600; }
#contact .contact-points li::before { background: #16202D; }  /* black bullets instead of yellow */
