/* ============================================================
   GET STARTUP — Wero-inspired bold scroll site (RTL / Hebrew)
   ============================================================ */

:root {
  /* Core palette — bright yellow on near-black (Wero signature) */
  --accent: #FFF48D;        /* bright yellow */
  --accent-deep: #F4E14A;   /* deeper yellow for fills */
  --cta: #A7DBEA;           /* pastel sky blue — call to action */
  --cta-ink: #10343F;       /* deep teal text on pastel */
  --ink: #1D1C1C;           /* near-black */
  --ink-2: #131212;         /* darker panel */
  --paper: #FBFAF5;         /* warm off-white */
  --line: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.62);

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 80px);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);

  --font-display: 'Heebo', system-ui, sans-serif;
  --font-body: 'Assistant', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--paper);
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h-xxl { font-size: clamp(44px, 9vw, 150px); }
.h-xl  { font-size: clamp(36px, 3.5vw, 104px); }
.h-lg  { font-size: clamp(30px, 4.6vw, 68px); }
.h-md  { font-size: clamp(24px, 3vw, 44px); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: clamp(18px, 1.7vw, 23px); color: var(--muted); max-width: 60ch; }
.hl { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  background: var(--cta);
  color: var(--cta-ink);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-back), box-shadow .35s var(--ease);
  box-shadow: 0 0 0 0 rgba(255,244,141,0);
  will-change: transform;
}
.btn .tri { width: 0; height: 0; border-block: 7px solid transparent; border-left: 11px solid currentColor; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -12px rgba(167,219,234,.6); }
.btn:hover .tri { transform: translateX(-4px); }
.btn:active { transform: translateY(0) scale(.99); }
.btn--ghost { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent); }
.btn--dark { background: var(--cta); color: var(--cta-ink); }
.btn--dark:hover { box-shadow: 0 18px 40px -12px rgba(167,219,234,.55); }

/* ---------- Section frame ---------- */
section { position: relative; padding-block: clamp(72px, 11vh, 160px); }
.sec-head { margin-bottom: clamp(40px, 6vh, 80px); }
.sec-head .lead { margin-top: 22px; }

/* invert section: yellow bg + black text */
.invert { background: var(--accent); color: var(--ink); }
.invert .eyebrow { color: var(--ink); }
.invert .eyebrow::before { background: var(--ink); }
.invert .lead { color: rgba(29,28,28,.72); }
.invert .hl { color: var(--ink); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.site-head.scrolled {
  background: rgba(19,18,18,.78);
  backdrop-filter: blur(14px);
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center; font-size: 20px; font-weight: 900;
  transform: rotate(-6deg);
}
.brand .mark span { transform: rotate(6deg); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav ul, .nav .menu, .nav .accessibility_menu { display: flex !important; flex-direction: row !important; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav ul li, .nav .menu li, .nav .accessibility_menu li { list-style: none; display: inline-flex !important; }
.nav a { font-family: var(--font-display); font-weight: 700; font-size: 16px; padding: 9px 16px; border-radius: var(--r-pill); transition: background .3s, color .3s; display: inline-block; white-space: nowrap; }
.nav a:hover, .nav .current-menu-item > a { background: rgba(255,255,255,.08); color: var(--accent); }
.head-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,244,141,.30), rgba(255,244,141,0) 70%);
  filter: blur(60px);
}
.hero-blob.b1 { width: 60vw; height: 60vw; top: -20vw; left: -10vw; }
.hero-blob.b2 { width: 40vw; height: 40vw; bottom: -15vw; right: -5vw; background: radial-gradient(circle at 30% 30%, rgba(255,244,141,.18), rgba(255,244,141,0) 70%); }
.hero .wrap { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 30px; }
.hero h1 .blk { display: block; overflow: hidden; }
.hero--split h1 .blk { overflow: visible; }
.hero h1 .ln { display: block; }
.hero-sub { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: end; margin-top: 12px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 8px; }

.sticker {
  position: absolute; z-index: 3;
  width: clamp(120px, 14vw, 190px); height: clamp(120px, 14vw, 190px);
  border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 900; line-height: 1.05;
  font-size: clamp(15px, 1.5vw, 21px);
  top: 18%; left: 6%;
  box-shadow: 0 24px 60px -18px rgba(255,244,141,.5);
  animation: floaty 5s var(--ease) infinite alternate;
}
.sticker span { display: block; transform: rotate(-8deg); padding: 12px; }
@keyframes floaty { from { transform: translateY(-8px) rotate(-4deg); } to { transform: translateY(10px) rotate(5deg); } }

.scroll-hint { position: absolute; bottom: 32px; right: var(--gut); z-index: 3; display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--muted); }
.scroll-hint .dot { width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 14px; position: relative; }
.scroll-hint .dot::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; background: var(--accent); border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* marquee strip under hero */
.ticker { background: var(--accent); color: var(--ink); overflow: hidden; padding-block: 14px; border-block: 3px solid var(--ink); }
.ticker-track { display: flex; gap: 40px; width: max-content; animation: marquee 28s linear infinite; }
.ticker-track span { font-family: var(--font-display); font-weight: 900; font-size: clamp(18px, 2vw, 30px); letter-spacing: -0.01em; white-space: nowrap; display: inline-flex; align-items: center; gap: 40px; }
.ticker-track span::after { content: "✦"; font-size: .7em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SITUATION CARDS GRID
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.s-card {
  position: relative; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px 34px;
  transition: transform .45s var(--ease), border-color .45s, background .45s;
}
.s-card::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .5s var(--ease); z-index: 0; }
.s-card > * { position: relative; z-index: 1; }
.s-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.s-card:hover::before { transform: translateY(0); }
.s-card:hover, .s-card:hover .s-card-desc { color: var(--ink); }
.s-card-ic { width: 58px; height: 58px; border-radius: 16px; background: var(--accent); color: var(--ink); display: grid; place-items: center; margin-bottom: 22px; transition: background .45s, color .45s; }
.s-card:hover .s-card-ic { background: var(--ink); color: var(--accent); }
.s-card-ic svg { width: 30px; height: 30px; }
.s-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 23px; margin-bottom: 10px; line-height: 1.15; transition: color .45s; }
.s-card-desc { color: var(--muted); font-size: 16.5px; transition: color .45s; }

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients { padding-block: clamp(56px, 8vh, 110px); overflow: hidden; }
.logo-rows { display: flex; flex-direction: column; gap: 22px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-row { display: flex; gap: 22px; width: max-content; }
.logo-row.r1 { animation: slideX 38s linear infinite; }
.logo-row.r2 { animation: slideXR 46s linear infinite; }
@keyframes slideX  { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@keyframes slideXR { from { transform: translateX(0); } to { transform: translateX(33.333%); } }
.logo-chip {
  flex: 0 0 auto; width: 168px; height: 90px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: var(--r-md);
  display: grid; place-items: center; padding: 16px;
  font-family: var(--font-display); font-weight: 800; color: var(--muted); font-size: 15px; text-align: center;
  transition: background .35s, color .35s, border-color .35s; line-height: 1.1;
}
.logo-chip:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* ============================================================
   STICKY PROCESS TIMELINE
   ============================================================ */
.process { background: var(--ink-2); }
.proc-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.proc-sticky { position: sticky; top: 120px; align-self: start; }
.proc-count { font-family: var(--font-display); font-weight: 900; font-size: clamp(90px, 14vw, 160px); line-height: 0.8; color: var(--accent); letter-spacing: -0.04em; }
.proc-count small { display: block; font-size: clamp(18px, 1.6vw, 24px); color: var(--muted); font-weight: 700; letter-spacing: 0; margin-top: 14px; }
.proc-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 4px; margin-top: 30px; overflow: hidden; }
.proc-bar i { display: block; height: 100%; width: 0; background: var(--accent); transition: width .4s var(--ease); }
.proc-steps { display: flex; flex-direction: column; gap: 16px; }
.proc-step {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 32px; background: rgba(255,255,255,.02);
  transition: border-color .5s, background .5s, transform .5s var(--ease), opacity .5s;
  display: flex; gap: 24px; align-items: flex-start;
}
.proc-step .num { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--accent); min-width: 44px; opacity: .55; transition: opacity .5s; }
.proc-step.active { border-color: var(--accent); background: rgba(255,244,141,.06); transform: scale(1.01); }
.proc-step.active .num { opacity: 1; }
.proc-step h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 2vw, 27px); margin-bottom: 8px; line-height: 1.15; }
.proc-step p { color: var(--muted); font-size: 16.5px; }

/* ============================================================
   INCLUDES GRID (מה כולל התהליך)
   ============================================================ */
.incl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.incl-card { position: relative; border-radius: var(--r-lg); padding: 36px 32px; background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; transition: transform .45s var(--ease), border-color .45s; }
.incl-card .ix { font-family: var(--font-display); font-weight: 900; font-size: 70px; line-height: .8; color: rgba(255,244,141,.16); position: absolute; top: 18px; left: 26px; }
.incl-card:hover { transform: translateY(-6px); border-color: rgba(255,244,141,.4); }
.incl-card:hover .ix { color: rgba(255,244,141,.32); }
.incl-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 12px; margin-top: 30px; }
.incl-card p { color: var(--muted); font-size: 16.5px; }

/* ============================================================
   BIG CTA BANNER
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { max-width: 52ch; font-size: clamp(18px,1.8vw,24px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-viewport { overflow: hidden; }
.tst-track { display: flex; gap: 22px; transition: transform .6s var(--ease); }
.tst-card { flex: 0 0 clamp(300px, 42%, 540px); background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px 36px; display: flex; flex-direction: column; gap: 22px; }
.tst-quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.45; }
.tst-quote::before { content: "“"; font-family: var(--font-display); color: var(--accent); font-size: 60px; line-height: 0; vertical-align: -18px; margin-left: 6px; }
.tst-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst-av { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 20px; }
.tst-who b { font-family: var(--font-display); font-weight: 800; font-size: 17px; display: block; }
.tst-who span { color: var(--muted); font-size: 15px; }
.tst-nav { display: flex; gap: 12px; margin-top: 36px; justify-content: flex-end; }
.tst-btn { width: 56px; height: 56px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--line); display: grid; place-items: center; transition: background .3s, color .3s, box-shadow .3s; }
.tst-btn:hover { background: var(--accent); color: var(--ink); box-shadow: none; }
.tst-btn svg { width: 22px; height: 22px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ink-2); }
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.about-portrait { position: relative; }
.about-stat {
  position: absolute; bottom: -24px; right: -16px;
  background: var(--accent); color: var(--ink); border-radius: var(--r-lg);
  padding: 22px 26px; box-shadow: 0 24px 50px -18px rgba(0,0,0,.6);
}
.about-stat b { font-family: var(--font-display); font-weight: 900; font-size: 46px; line-height: .9; display: block; }
.about-stat span { font-weight: 700; font-size: 15px; }
.about-body p { margin-bottom: 18px; color: rgba(251,250,245,.82); }
.about-body p strong { color: var(--paper); }
.about-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.about-vision .av { border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.about-vision .av h4 { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--accent); margin-bottom: 8px; }
.about-vision .av p { font-size: 15.5px; color: var(--muted); margin: 0; }

/* ---------- Image placeholders ---------- */
.ph {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background:
      repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.02) 14px 28px);
  border: 1px solid var(--line);
  display: grid; place-items: center; aspect-ratio: 4/5;
}
.ph::after { content: attr(data-label); font-family: ui-monospace, monospace; font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* ============================================================
   METHOD STEPS (שיטת Get Startup)
   ============================================================ */
.method-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.method-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; transition: transform .45s var(--ease), border-color .45s; }
.method-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.method-step { font-family: var(--font-display); font-weight: 900; font-size: 15px; color: var(--accent); letter-spacing: .1em; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.method-step .ring { width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--accent); display: grid; place-items: center; }
.method-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 21px; margin-bottom: 12px; line-height: 1.2; }
.method-card p { color: var(--muted); font-size: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; text-align: right; font-family: var(--font-display); font-weight: 800; font-size: clamp(18px, 1.9vw, 26px); transition: color .3s; }
.faq-q:hover { color: var(--accent); }
.faq-ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--line); display: grid; place-items: center; position: relative; transition: background .3s, box-shadow .3s; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-ic::before { width: 16px; height: 2.5px; }
.faq-ic::after { width: 2.5px; height: 16px; transition: transform .35s var(--ease); }
.faq-item.open .faq-ic { background: var(--accent); color: var(--ink); box-shadow: none; }
.faq-item.open .faq-ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; color: var(--muted); font-size: 17px; max-width: 75ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--accent); color: var(--ink); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.contact .eyebrow { color: var(--ink); }
.contact .eyebrow::before { background: var(--ink); }
.form-card { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 46px); box-shadow: 0 30px 70px -24px rgba(0,0,0,.5); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 14px 16px; color: var(--paper); font-family: inherit; font-size: 16px;
  transition: border-color .3s, background .3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,244,141,.06); }
.field.err input, .field.err textarea { border-color: #ff6b6b; }
.field .msg { color: #ff8a8a; font-size: 13px; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 8px; }
.form-ok { display: none; background: rgba(255,244,141,.1); border: 1.5px solid var(--accent); border-radius: var(--r-sm); padding: 16px; font-family: var(--font-display); font-weight: 700; color: var(--accent); margin-top: 8px; }
.form-ok.show { display: block; animation: pop .4s var(--ease-back); }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wa-btn { background: #25D366; color: #06351a; }
.wa-btn:hover { box-shadow: 0 18px 40px -12px rgba(37,211,102,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink-2); padding-block: 72px 36px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; }
.foot-brand-col .brand { margin-bottom: 20px; }
.foot-tagline { color: var(--muted); font-size: 16px; max-width: 42ch; margin-bottom: 26px; }
.foot-col h4 { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--paper); margin-bottom: 20px; letter-spacing: .02em; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.foot-col a { font-family: var(--font-body); font-weight: 600; color: var(--muted); transition: color .3s, transform .3s; }
.foot-col a:hover { color: var(--accent); transform: translateX(4px); }
.foot-col .foot-cta { margin-top: 10px; font-family: var(--font-display); font-size: 16px; padding: 13px 24px; }
.foot-col .foot-cta:hover { transform: translateY(-3px) scale(1.02); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a { width: 44px; height: 44px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); display: grid; place-items: center; transition: background .3s, color .3s, transform .3s; }
.foot-social a:hover { background: var(--accent); color: var(--ink); transform: translateY(-3px); }
.foot-social svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease); }
.reveal-clip.in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-clip { opacity: 1; transform: none; clip-path: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 980px) {
  .proc-layout { grid-template-columns: 1fr; }
  .proc-sticky { position: relative; top: 0; display: flex; align-items: flex-end; gap: 24px; margin-bottom: 30px; }
  .proc-count { font-size: 90px; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-portrait { max-width: 440px; margin-inline: auto; }
  .tst-card { flex-basis: 86%; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand-col { grid-column: 1 / -1; }
}

/* tablet / large phone */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .menu-btn { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; box-shadow: inset 0 0 0 2px var(--line); }
  .menu-btn span, .menu-btn span::before, .menu-btn span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--paper); position: relative; }
  .menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }
  .head-cta .btn:not(.menu-btn) { display: none; }
  .site-head { padding-block: 14px; }

  section { padding-block: clamp(56px, 9vh, 96px); }
  .sec-head { margin-bottom: 40px; }

  /* hero */
  .hero { min-height: auto; padding-top: 124px; padding-bottom: 60px; }
  .hero h1 { margin-bottom: 24px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .sticker { display: none; }
  .scroll-hint { display: none; }

  /* cards become single column with comfortable tap size */
  .cards-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }

  /* process */
  .proc-sticky { flex-direction: column; align-items: flex-start; gap: 8px; }
  .proc-count { font-size: 72px; }
  .proc-step { padding: 24px 22px; gap: 16px; }

  /* testimonials full-width card + centered controls */
  .tst-viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tst-viewport::-webkit-scrollbar { display: none; }
  .tst-track { transition: none; }
  .tst-card { flex-basis: 100%; padding: 32px 26px; scroll-snap-align: start; }
  .tst-nav { justify-content: center; }

  /* about */
  .about-vision { grid-template-columns: 1fr; }
  .about-stat { right: auto; left: 16px; bottom: -18px; padding: 18px 22px; }
  .about-stat b { font-size: 38px; }

  /* contact form */
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { justify-content: center; }

  /* footer */
  .foot { padding-block: 56px 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .foot-brand-col { grid-column: auto; }
  .foot-tagline { max-width: none; }
  .foot-col .foot-cta { align-self: stretch; justify-content: center; }
  .foot-bottom { flex-direction: column; gap: 8px; margin-top: 44px; }

  /* ticker a touch smaller */
  .ticker-track span { font-size: 20px; gap: 28px; }
  .ticker-track { gap: 28px; }
}

/* small phone */
@media (max-width: 460px) {
  :root { --gut: 18px; }
  .brand { font-size: 19px; }
  .brand .mark { width: 34px; height: 34px; font-size: 18px; }
  .hero { padding-top: 110px; }
  .btn { padding: 14px 24px; font-size: 16px; }
  .s-card, .incl-card, .method-card { padding: 26px 22px; }
  .tst-card { padding: 28px 22px; }
  .tst-quote::before { font-size: 46px; }
  .faq-q { padding: 20px 2px; }
  .foot-social a { width: 42px; height: 42px; }
  .about-stat { left: 8px; }
}

/* Mobile nav drawer */
.drawer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--ink); display: flex; flex-direction: column; gap: 8px; padding: 90px var(--gut) 40px; transform: translateX(-100%); transition: transform .45s var(--ease); overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer ul, .drawer .menu { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.drawer ul li, .drawer .menu li { list-style: none; }
.drawer a { font-family: var(--font-display); font-weight: 800; font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--line); display: block; }
.drawer .drawer-cta { color: var(--accent); }
.drawer .close { position: absolute; top: 24px; left: var(--gut); font-size: 34px; font-weight: 300; }

/* hamburger → X animation + scroll lock */
.menu-btn span { transition: background .2s var(--ease); }
.menu-btn span::before, .menu-btn span::after { transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open span::after { top: 0; transform: rotate(-45deg); }
body.drawer-open { overflow: hidden; }


/* ============================================================
   HERO SPLIT (home hero with lead form)
   ============================================================ */
.hero--split { align-items: center; }
.hero--split .sticker { display: none; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.hero--split h1 { margin-bottom: 26px; }
.hero--split .hero-copy .eyebrow { margin-bottom: 24px; }
.hero--split .lead { margin-bottom: 30px; }
.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.hero-point { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.hero-point .ck { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; }
.hero-point .ck svg { width: 13px; height: 13px; }

.hero-form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 42px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); position: relative; overflow: hidden; }
.hero-form-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent); }
.hffc-head { margin-bottom: 24px; text-align: center; }
.hffc-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(23px, 2.3vw, 32px); line-height: 1.1; }
.hffc-head .hl-line { color: var(--accent); }
.hero-form .field { margin-bottom: 16px; }
.hero-form label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.hero-form input { width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; color: var(--paper); font-family: inherit; font-size: 16px; transition: border-color .3s, background .3s; }
.hero-form input::placeholder { color: rgba(255,255,255,.32); }
.hero-form input:focus { outline: none; border-color: var(--accent); background: rgba(255,244,141,.06); }
.hero-form .field.err input { border-color: #ff6b6b; }
.hero-form .field .msg { color: #ff8a8a; font-size: 13px; margin-top: 6px; display: none; }
.hero-form .field.err .msg { display: block; }
.hero-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.hero-form-ok { display: none; background: rgba(255,244,141,.1); border: 1.5px solid var(--accent); border-radius: var(--r-sm); padding: 15px; font-family: var(--font-display); font-weight: 700; color: var(--accent); margin-top: 14px; text-align: center; }
.hero-form-ok.show { display: block; animation: pop .4s var(--ease-back); }
@media (max-width: 920px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero--split { padding-top: 130px; min-height: auto; }
  .hero--split .sticker { display: none; }
}
@media (max-width: 480px) { .hero-points { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero { min-height: 72vh; display: flex; align-items: center; padding-top: 150px; padding-bottom: 70px; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin: 26px 0 30px; }
.about-intro-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
.about-intro-stats { display: flex; flex-direction: column; gap: 16px; }
.ai-stat { border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px; background: rgba(255,255,255,.02); }
.ai-stat b { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 4vw, 52px); color: var(--accent); line-height: .9; display: block; }
.ai-stat span { color: var(--muted); font-weight: 600; font-size: 15.5px; }

.summary .wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.summary p { color: rgba(251,250,245,.82); margin-bottom: 18px; font-size: clamp(17px, 1.5vw, 20px); }
.summary p strong { color: var(--paper); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  position: relative; overflow: hidden; aspect-ratio: 1 / 1;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px; display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .45s var(--ease), border-color .45s, color .45s;
}
.why-card::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .5s var(--ease); z-index: 0; }
.why-card > * { position: relative; z-index: 1; }
.why-card:hover { transform: translateY(-6px); border-color: var(--accent); color: var(--ink); }
.why-card:hover::before { transform: translateY(0); }
.why-num { font-family: var(--font-display); font-weight: 900; font-size: 40px; line-height: .8; color: var(--accent); transition: color .45s; }
.why-card:hover .why-num { color: var(--ink); }
.why-card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 1.8vw, 25px); margin-bottom: 10px; line-height: 1.15; }
.why-card p { font-size: 15.5px; color: var(--muted); transition: color .45s; }
.why-card:hover p { color: rgba(29,28,28,.78); }

.partners { background: var(--ink-2); }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-chip {
  aspect-ratio: 16 / 9; border-radius: var(--r-md); border: 1px solid var(--line);
  background: rgba(255,255,255,.03); display: grid; place-items: center; padding: 22px;
  font-family: var(--font-display); font-weight: 800; color: var(--muted); font-size: 17px; text-align: center;
  transition: background .35s, color .35s, border-color .35s, transform .35s; line-height: 1.15;
}
.partner-chip img { max-height: 56px; width: auto; }
.partner-chip:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: translateY(-4px); }

@media (max-width: 980px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-intro-stats { flex-direction: row; flex-wrap: wrap; }
  .ai-stat { flex: 1 1 30%; }
  .summary .wrap { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { aspect-ratio: auto; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-stat { flex-basis: 46%; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page { padding-top: 20px; }
.faq-wrap { max-width: 980px; }
.faq-foot-cta { margin-top: 56px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; padding: 34px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--ink-2); }
.faq-foot-cta p { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2vw, 28px); margin: 0; flex: 1 1 320px; }
@media (max-width: 600px) {
  .faq-foot-cta { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; }
  .faq-foot-cta p { flex: none; font-size: 20px; }
  .faq-foot-cta .btn { justify-content: center; }
}