/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg:       #EFEDE8;
  --surface:  #fff;
  --ink:      #15122B;
  --purple:   #9D8DF4;
  --lime:     #A6E635;
  --blue:     #3B30E0;
  --cream:    #FFF1DE;
  --line:     rgba(21,18,43,.10);
  --line-2:   rgba(21,18,43,.18);
  --maxw:     1180px;
  --display:  "Bricolage Grotesque";
  --body:     "Hanken Grotesk";
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body), sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: 1.05;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero-wrap { max-width: 1380px; padding: 0 20px; }
section { padding: 70px 0 26px; position: relative; }
#automate { overflow: hidden; }
.section-no-pb { padding-bottom: 0; }

/* ─── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.eyebrow--blue .dot  { background: var(--blue); }
.eyebrow--purple .dot { background: var(--purple); }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.sec-head {
  max-width: 660px;
  margin: 18px 0 42px;
  position: relative;
  z-index: 1;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.02;
  color: var(--blue);
  margin-top: 22px;
}
.sec-head p {
  margin-top: 14px;
  font-size: 18px;
  max-width: 520px;
  opacity: .78;
}

/* ─── AURORA BACKGROUND ──────────────────────────────────── */
.section-aurora { overflow: hidden; }
.aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .9;
}
.aurora b {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  display: block;
  will-change: transform;
}
.aurora b:nth-child(1) {
  background: radial-gradient(circle, rgba(166,230,53,.95) 0%, transparent 65%);
  left: -100px;
  top: -80px;
  animation: au1 7s ease-in-out infinite;
}
.aurora b:nth-child(2) {
  background: radial-gradient(circle, rgba(157,141,244,.85) 0%, transparent 65%);
  right: -80px;
  top: 20px;
  animation: au2 9s ease-in-out infinite;
}
.aurora b:nth-child(3) {
  background: radial-gradient(circle, rgba(170,255,0,.8) 0%, transparent 65%);
  left: 38%;
  bottom: -180px;
  opacity: .8;
  animation: au3 8s ease-in-out infinite;
}
.aurora--dim { opacity: .18; }
@keyframes au1 { 50% { transform: translate(180px, 100px) scale(1.28); } }
@keyframes au2 { 50% { transform: translate(-140px, 110px) scale(1.22); } }
@keyframes au3 { 50% { transform: translate(100px, -100px) scale(1.3); } }

/* ─── DOT BACKGROUND ─────────────────────────────────────── */
.section-dots { overflow: hidden; }
.dots-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}
.dots-bg::before {
  content: '';
  position: absolute;
  inset: -28px;
  background-image: radial-gradient(rgba(59,48,224,.45) 2px, transparent 2px);
  background-size: 28px 28px;
  animation: bgpan 8s linear infinite;
  will-change: transform;
}
@keyframes bgpan { from { transform: translate(0,0); } to { transform: translate(28px,28px); } }

/* ─── GLOW ACCENTS ───────────────────────────────────────── */
.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.g3 {
  background: radial-gradient(circle, rgba(59,48,224,.7) 0%, transparent 68%);
  top: 30px;
  left: -150px;
  opacity: .16;
  animation: drift 24s ease-in-out infinite;
}
@media (max-width: 1120px) {
  .g3 { width: 260px; height: 260px; left: -40px; will-change: auto; animation: none; }
}
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(26px,-18px); } }

/* ─── SPOTLIGHT ──────────────────────────────────────────── */
.bg-spot {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.18), rgba(255,255,255,.06) 42%, transparent 64%);
}

/* ─── NOTCHED CARDS ──────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }

.card-wrap { position: relative; }

.ncard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 30px;
  border-radius: 30px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.ncard--purple { background: var(--purple); color: #181235; }
.ncard--lime   { background: var(--lime);   color: #1C2A06; }
.ncard--blue   { background: var(--blue);   color: #EEEBFF; }
.ncard--cream  { background: var(--cream);  color: #3A2A18; }
.ncard--tall   { min-height: 380px; }

.ncard[data-notch="br"], .ncard[data-notch="bl"] { padding-bottom: calc(var(--notch-h, 92px) + 8px); border-radius: 30px; overflow: hidden; }
.ncard[data-notch="tr"], .ncard[data-notch="tl"] { padding-top:    calc(var(--notch-h, 92px) + 8px); border-radius: 30px; overflow: hidden; }
.ncard[data-notch="top2"]                         { padding-top:    calc(var(--notch-h, 92px) + 18px); border-radius: 30px; overflow: hidden; }

.ncard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ncard-head i { font-size: 30px; }
.kicker {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .7;
}
.ncard-body { margin-top: auto; }
.ncard-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.1;
}
.ncard-body p { margin-top: 10px; font-size: 15px; line-height: 1.5; opacity: .82; }

.tag {
  display: inline-block;
  background: rgba(255,255,255,.55);
  border-radius: 100px;
  padding: 5px 13px;
  font-weight: 600;
  font-size: 12px;
}
.ncard--blue .tag { background: rgba(255,255,255,.16); }

/* ─── FAB BUTTON ─────────────────────────────────────────── */
.fab {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--lime);
  color: var(--blue);
  z-index: 2;
  overflow: hidden;
  transition: transform .25s;
}
.fab i { font-size: 26px; }
.fab:hover { transform: scale(1.05); }
.on-lime .fab { background: var(--blue); color: var(--lime); }

.fab.slide-arrow { background: var(--lime); color: var(--blue); }
.slider-panel.is-lime ~ .fab.slide-arrow { background: var(--blue); color: var(--lime); }

.ncard[data-notch="br"] ~ .fab { right: 25px; bottom: 17px; }
.ncard[data-notch="bl"] ~ .fab { left:  25px; bottom: 17px; }
.ncard[data-notch="tr"] ~ .fab { right: 25px; top:    17px; }
.ncard[data-notch="tl"] ~ .fab { left:  25px; top:    17px; }
.ncard[data-notch="top2"] ~ .fab-tl { left:  33px; top: 21px; }
.ncard[data-notch="top2"] ~ .fab-tr { right: 33px; top: 21px; }

/* Arrow fly-through animation */
@keyframes arrowIn  { from { transform: translate(-150%,150%); opacity:0; } to { transform: none; opacity:1; } }
@keyframes arrowOut { from { transform: none; opacity:1; } to { transform: translate(150%,-150%); opacity:0; } }
.fab:has(.ti-arrow-up-right):hover i { animation: arrowIn .4s cubic-bezier(.2,.7,.2,1); }
.fab i.is-out { animation: arrowOut .36s cubic-bezier(.5,0,.7,.3) forwards !important; }
.fab i.is-in  { animation: arrowIn  .42s cubic-bezier(.2,.7,.2,1) !important; }

/* ─── CARD HOVER ─────────────────────────────────────────── */
.grid .card-wrap:hover .ncard,
.split .card-wrap:hover .ncard { transform: translateY(-5px); }

.grid .card-wrap:hover .fab,
.split .card-wrap:hover .fab { transform: scale(1.05); }

.grid .card-wrap:hover .fab:has(.ti-arrow-up-right) i,
.split .card-wrap:hover .fab:has(.ti-arrow-up-right) i { animation: arrowIn .4s cubic-bezier(.2,.7,.2,1); }

/* ─── CARD REVEAL (one-shot scroll animation) ────────────── */
.ncard.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform .4s cubic-bezier(.2,.7,.2,1) var(--card-delay, 0ms),
    opacity   .6s ease                     var(--card-delay, 0ms);
}
.ncard.will-reveal.in { opacity: 1; transform: none; }

/* ─── HERO ENTRANCE ──────────────────────────────────────── */
.hero-inner > *.will-animate {
  transition:
    opacity   .7s ease                    var(--hero-delay, 0ms),
    transform .7s cubic-bezier(.2,.7,.2,1) var(--hero-delay, 0ms);
}
.hero-inner > *.will-animate.hero-hidden { opacity: 0; transform: translateY(16px); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero { padding: 48px 0 26px; }
.hero-panel {
  background: var(--blue);
  color: #fff;
  min-height: 620px;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 36px;
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.hero-inner .eyebrow {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7.6vw, 92px);
  line-height: .97;
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #AAFF00 0%, #e6ffaa 38%, #fff 52%, #e6ffaa 66%, #AAFF00 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2.6s linear infinite;
}
@keyframes textShine { from { background-position: 150% center; } to { background-position: -150% center; } }
.hero p { font-size: 19px; opacity: .86; max-width: 560px; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.btn-primary,
.btn-ghost {
  border: 0;
  border-radius: 100px;
  padding: 15px 28px;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.btn-primary { background: var(--lime); color: var(--blue); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.58);
  margin-top: 16px;
}
.hero-proof span {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-proof span:last-child { border-right: 0; }

/* Hero overlay controls */
.hero-logo {
  position: absolute;
  left: 24px;
  top: 15px;
  z-index: 3;
  line-height: 0;
}
.hero-logo img { height: 36px; width: auto; }
.logo-img { height: 28px; width: auto; }

.hero-menu {
  position: absolute;
  right: 18px;
  top: 13px;
  border: 0;
  cursor: pointer;
  background: var(--lime);
  color: var(--blue);
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  border-radius: 100px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  z-index: 3;
  transition: transform .2s, filter .2s;
}
.hero-menu:hover { transform: scale(1.04); filter: brightness(.97); }

.ncard-fab {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--lime);
  color: var(--blue);
  z-index: 3;
  transition: transform .25s;
}
.ncard-fab i { font-size: 22px; }
.ncard-fab:hover { transform: scale(1.05); }

.lang-toggle {
  position: absolute;
  right: 130px;
  top: 13px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(59,48,224,.18);
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(21,18,43,.1);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: rgba(21,18,43,.5);
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 13px;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
.lang-toggle button.active { background: var(--blue); color: #fff; }

.lang-toggle--drawer {
  position: static;
  right: auto;
  top: auto;
  z-index: auto;
  display: none;
  margin-bottom: 20px;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-line {
  font-size: 15px;
  opacity: .65;
  font-weight: 500;
  max-width: 360px;
  flex-shrink: 0;
}
.stats { display: flex; gap: 40px; flex-wrap: wrap; flex: 1; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  color: var(--blue);
  line-height: 1;
}
.stat span {
  font-size: 13px;
  opacity: .6;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
@media (max-width: 720px) {
  .trust-inner { flex-direction: column; gap: 24px; }
  .stats { gap: 24px; }
}

/* ─── SPLIT LAYOUTS ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }

.split-3 {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 1120px) {
  .split-3 { grid-template-columns: 1fr; gap: 28px; }
  .split-3 .slider-panel { height: 460px; }
  .split-3 .card-wrap { overflow: hidden; }
  .split-3 .bg-particles { will-change: auto; }
  .split-3 .slider-viewport { contain: strict; }
}

.split-3 .card-wrap { width: 100%; }

.col-text h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  color: var(--blue);
  margin: 22px 0 0;
}
.col-text p { margin-top: 16px; opacity: .8; max-width: 48ch; }

.ticks { list-style: none; margin: 24px 0 0; display: grid; gap: 12px; }
.ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 15px;
}
.ticks li i { color: var(--blue); font-size: 21px; flex: none; margin-top: 1px; }

.outcome {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}

.auto-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}
.aside-text { font-size: 15px; opacity: .78; line-height: 1.6; }
.fab--inline { position: relative; right: auto; bottom: auto; align-self: flex-start; }

/* ─── SLIDER ─────────────────────────────────────────────── */
.slider-panel {
  background: var(--blue);
  color: #fff;
  justify-content: flex-start;
  min-height: 440px;
  transition: background .45s cubic-bezier(.2,.7,.2,1);
}
.slider-panel.is-lime { background: #AAFF00; color: #1C2A06; }

.bg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.slider-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 2;
}
.slider-track {
  display: flex;
  width: 100%;
  direction: ltr;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.slide {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 6px 16px;
  box-sizing: border-box;
}
.slide-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .45s;
}
.slider-panel.is-lime .slide-icon { background: rgba(28,42,6,.12); }
.slide-icon i { font-size: 34px; }
.slide h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.05;
}
.slide p { font-size: 17px; line-height: 1.5; opacity: .82; max-width: 440px; }

.slider-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}
.slider-count { font-weight: 600; font-size: 14px; color: rgba(255,255,255,.6); }
.slider-panel.is-lime .slider-count { color: rgba(28,42,6,.5); }
.slider-count b { opacity: 1; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width .25s, background .25s;
}
.slider-dots .dot.active { background: #AAFF00; width: 24px; border-radius: 5px; }
.slider-panel.is-lime .slider-dots .dot { background: rgba(28,42,6,.2); }
.slider-panel.is-lime .slider-dots .dot.active { background: var(--blue); }
.slide-arrow:hover { transform: scale(1.08); }

/* Slider panel overrides for split-3 */
.split-3 .slider-panel { height: 396px; min-height: unset; }
.split-3 .slider-viewport { align-items: center; }
.split-3 .slider-track { align-items: stretch; }
.split-3 .slide { padding: 6px 14px; align-items: center; justify-content: center; }
.split-3 .slide h3 { font-size: 24px; }
.split-3 .slide p { font-size: 15px; max-width: 260px; }
.split-3 .slide-icon { width: 62px; height: 62px; border-radius: 16px; }
.split-3 .slide-icon i { font-size: 28px; }
.split-3 .ncard[data-notch="top2"] ~ .fab-tl { left: 18px; top: 13px; }
.split-3 .ncard[data-notch="top2"] ~ .fab-tr { right: 18px; top: 13px; }

/* ─── PHILOSOPHY ─────────────────────────────────────────── */
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) { .phil-grid { grid-template-columns: 1fr; } }

.phil-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phil-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  color: var(--lime);
  line-height: 1;
}
.phil-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--blue); }
.phil-card p  { font-size: 15px; opacity: .78; line-height: 1.6; }

/* ─── PROCESS ────────────────────────────────────────────── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: var(--line-2);
  z-index: 0;
}
@keyframes procDotPulse {
  0%, 65%, 100% { opacity: .35; transform: translate(-50%, -50%) scale(1); }
  32%           { opacity: 1;   transform: translate(-50%, -50%) scale(1.8); box-shadow: 0 0 0 4px rgba(59,48,224,.15); }
}
.proc-card:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 38px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  animation: procDotPulse 2s ease-in-out infinite;
  pointer-events: none;
}
.proc-card:nth-child(2)::before { animation-delay: 0s; }
.proc-card:nth-child(3)::before { animation-delay: .6s; }
.proc-card:nth-child(4)::before { animation-delay: 1.2s; }
@media (max-width: 860px) {
  .process-row::before { display: none; }
  .process-row { grid-template-columns: 1fr 1fr; }
  /* hide horizontal dots */
  .proc-card:not(:first-child)::before { display: none; }
  /* vertical line above cards 3 & 4 (connecting row 1 → row 2) */
  .proc-card:nth-child(3)::before,
  .proc-card:nth-child(4)::before {
    display: block;
    left: 50%;
    right: auto;
    top: -20px;
    width: 1px;
    height: 20px;
    border-radius: 0;
    background: var(--line-2);
    transform: translateX(-50%);
    animation: none;
    box-shadow: none;
    opacity: 1;
  }
  /* dot below cards 1 & 2 (in the gap between rows) */
  .proc-card:nth-child(1)::after,
  .proc-card:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    transform: translateX(-50%);
    animation: procDotPulse 2s ease-in-out infinite;
    pointer-events: none;
  }
  .proc-card:nth-child(2)::after { animation-delay: .6s; }
}
@media (max-width: 520px) {
  .process-row { grid-template-columns: 1fr; }
  /* vertical line above cards 2, 3, 4 */
  .proc-card:nth-child(2)::before,
  .proc-card:nth-child(3)::before,
  .proc-card:nth-child(4)::before {
    display: block;
    left: 50%;
    right: auto;
    top: -20px;
    width: 1px;
    height: 20px;
    border-radius: 0;
    background: var(--line-2);
    transform: translateX(-50%);
    animation: none;
    box-shadow: none;
    opacity: 1;
  }
  /* dot below cards 1, 2, 3 */
  .proc-card:nth-child(1)::after,
  .proc-card:nth-child(2)::after,
  .proc-card:nth-child(3)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    transform: translateX(-50%);
    animation: procDotPulse 2s ease-in-out infinite;
    pointer-events: none;
  }
  .proc-card:nth-child(2)::after { animation-delay: .6s; }
  .proc-card:nth-child(3)::after { animation-delay: 1.2s; }
}

.proc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
  z-index: 1;
}
.proc-step {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--blue);
  opacity: .5;
  margin-bottom: 14px;
}
.proc-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.proc-card p  { font-size: 14px; opacity: .72; line-height: 1.6; }

/* ─── STACK ──────────────────────────────────────────────── */
.stack-wrap { display: flex; flex-direction: column; position: relative; z-index: 1; }
.stack-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.stack-row:last-child { border-bottom: 1px solid var(--line); }
.stack-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .5;
  width: 160px;
  flex-shrink: 0;
  padding-top: 3px;
}
.stack-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.pill:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}
@media (max-width: 620px) {
  .stack-row { flex-direction: column; gap: 12px; }
  .stack-label { width: auto; }
}

/* ─── TL;DR / QUICK ANSWER ───────────────────────────────── */
.tldr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  z-index: 1;
}
.tldr-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.tldr-card p { font-size: 16px; line-height: 1.65; opacity: .85; }
.tldr-card p strong { color: var(--ink); opacity: 1; }
.tldr-sources { margin-top: 12px; font-size: 13px; opacity: .55; }
.tldr-sources a { text-decoration: underline; text-underline-offset: 3px; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 26px;
}
.faq-item h3 { font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.faq-item p { font-size: 15px; line-height: 1.65; opacity: .78; }
.faq-item .tldr-sources { margin-top: 10px; }

/* ─── VERTICALS ──────────────────────────────────────────── */
.vert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) { .vert-grid { grid-template-columns: 1fr; } }

.vert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vert-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EEEDFE;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vert-icon i { font-size: 24px; }
.vert-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); }
.vert-card p  { font-size: 15px; opacity: .75; line-height: 1.6; }
.vert-see     { font-size: 13px; font-weight: 600; color: var(--blue); opacity: .8; margin-top: 4px; }

/* ─── WHY HADIATI ────────────────────────────────────────── */
.why-panel {
  background: var(--blue);
  color: #EEEBFF;
  border-radius: 30px;
  padding: 52px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.why-panel h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  color: #fff;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) { .why-list { grid-template-columns: 1fr; } }
.why-item { display: flex; gap: 14px; }
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}
.why-item strong { display: block; font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 4px; }
.why-item p { font-size: 15px; opacity: .75; line-height: 1.55; }

/* ─── PRODUCTS ───────────────────────────────────────────── */
.prod-cta { margin-top: 36px; display: flex; justify-content: center; }
.btn-accent {
  background: var(--lime);
  color: #1c2a06;
  border: 0;
  border-radius: 100px;
  padding: 15px 30px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter .15s;
}
.btn-accent:hover { filter: brightness(.96); }
.btn-accent--full { justify-content: center; width: 100%; }

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 32px;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,141,244,.45) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,230,53,.28) 0%, transparent 70%);
  bottom: -180px;
  right: -80px;
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.cta-band p {
  font-size: 18px;
  opacity: .75;
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.btn-lime {
  background: var(--lime);
  color: var(--blue);
  border: 0;
  border-radius: 100px;
  padding: 17px 36px;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  transition: filter .15s;
}
.btn-lime:hover { filter: brightness(.96); }

/* ─── INNER PAGE NAV ─────────────────────────────────────── */
.page-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.page-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.page-nav-logo img { height: 28px; width: auto; }
.page-nav-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .8;
  transition: opacity .18s;
}
.page-nav-back:hover { opacity: 1; }
.page-nav-cta {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 10px 22px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: filter .15s;
}
.page-nav-cta:hover { filter: brightness(1.15); }
.page-nav-actions { display: flex; align-items: center; gap: 16px; }

/* ─── INNER PAGE HERO ────────────────────────────────────── */
.page-hero {
  background: var(--blue);
  color: #fff;
  padding: 84px 28px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,141,244,.28) 0%, transparent 65%);
  top: -250px;
  left: -100px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: .97;
  letter-spacing: -.03em;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #AAFF00 0%, #e6ffaa 38%, #fff 52%, #e6ffaa 66%, #AAFF00 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2.6s linear infinite;
}
.page-hero p {
  font-size: 19px;
  opacity: .82;
  max-width: 560px;
  line-height: 1.55;
}
.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.52);
  border-radius: 100px;
  padding: 15px 28px;
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: border-color .18s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.85); }

@media (max-width: 480px) {
  .page-hero { padding: 64px 22px 72px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .page-nav-inner { padding: 0 16px; }
  .page-nav-back span { display: none; }
}

/* ─── CARD DRAWER (bottom sheet) ────────────────────────── */
.drawer.card-drawer {
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 80vh;
  transform: translateY(100%);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -16px 60px rgba(21,18,43,.18);
  background: #fff;
  color: var(--ink);
  padding: 32px 40px 40px;
  overflow-y: auto;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s .32s;
}
.drawer.card-drawer.show { transform: translateY(0); transition: transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s 0s; }
.card-drawer .drawer-head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 24px; }
.card-drawer .drawer-head h3 { color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 700; }
.card-drawer .btn-icon { color: var(--ink); opacity: .5; }
.card-drawer .btn-icon:hover { background: rgba(0,0,0,.06); opacity: .9; }
.card-drawer p { font-size: 16px; line-height: 1.65; opacity: .78; margin-bottom: 22px; }
.cd-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.cd-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.45; }
.cd-list li i { color: var(--blue); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
html[dir="rtl"] .drawer.card-drawer { right: 0; left: 0; transform: translateY(100%); }
html[dir="rtl"] .drawer.card-drawer.show { transform: translateY(0); }
@media (max-width: 480px) {
  .drawer.card-drawer { padding: 24px 22px 32px; border-radius: 22px 22px 0 0; max-height: 88vh; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 52px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo { display: block; margin-bottom: 10px; }
.footer-brand p {
  font-size: 14px;
  opacity: .62;
  line-height: 1.6;
  max-width: 260px;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .45;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--ink);
  font-size: 14px;
  opacity: .7;
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-col a:hover { opacity: 1; }
.footer-address { opacity: .45; font-size: 12px; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: .5; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: .6;
  font-size: 18px;
  transition: opacity .15s;
}
.social-links a:hover { opacity: 1; }

/* ─── OVERLAY & DRAWER ───────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,18,43,.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  z-index: 80;
  contain: layout style;
}
.overlay.show { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 360px;
  max-width: 88vw;
  background: var(--blue);
  box-shadow: -24px 0 70px rgba(21,18,43,.32);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s .32s;
  z-index: 90;
  padding: 28px;
  overflow-y: auto;
  contain: layout style;
}
.drawer.show { transform: none; visibility: visible; transition: transform .32s cubic-bezier(.2,.7,.2,1), visibility 0s 0s; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.drawer-head h3 {
  font-size: 21px;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
}
.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  opacity: .7;
}
.btn-icon:hover { background: rgba(255,255,255,.12); opacity: 1; }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.drawer-nav a:hover { background: rgba(255,255,255,.1); }
.drawer-nav a i { font-size: 20px; opacity: .6; }

/* ─── CHAT WIDGET ────────────────────────────────────────── */
@keyframes botBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  94%            { transform: scaleY(0.07); }
}
.fab-bot {
  position: absolute;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: opacity .18s, transform .18s;
}
.bot-eye {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.bot-eye:nth-child(1) { animation: botBlink 3.8s ease-in-out infinite; }
.bot-eye:nth-child(2) { animation: botBlink 3.8s ease-in-out .1s infinite; }

.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(59,48,224,.45);
  transition: transform .2s, box-shadow .2s;
  contain: layout style;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(59,48,224,.55); }
.chat-fab .ico-open  { opacity: 1; transform: scale(1); }
.chat-fab .ico-close {
  opacity: 0;
  transform: scale(.5) rotate(90deg);
  position: absolute;
  font-size: 22px;
  transition: opacity .18s, transform .18s;
}
.chat-fab.active .fab-bot  { opacity: 0; transform: scale(.5); }
.chat-fab.active .ico-close { opacity: 1; transform: scale(1) rotate(0deg); }

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 299;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #f6f5ff;
  border: 2px solid rgba(59,48,224,.18);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(21,18,43,.22), 0 0 0 1px rgba(59,48,224,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s;
  max-height: calc(100vh - 120px);
  contain: layout style;
}
.chat-panel.open { transform: none; opacity: 1; pointer-events: auto; }

@media (max-width: 480px) {
  .chat-fab { bottom: 16px; right: 16px; }
  .chat-fab.active { display: none; }
  .chat-panel {
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: 0;
    transform: translateY(100%);
    contain: none;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .chat-panel.open { transform: none; }
}

.chat-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(21,18,43,.07);
  border: 0;
  color: var(--ink);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: .5;
  transition: opacity .15s, background .15s;
  flex-shrink: 0;
}
.chat-close:hover { opacity: 1; background: rgba(21,18,43,.12); }

/* ── chat welcome screen ── */
@keyframes hadiFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  48%       { transform: translateY(-11px) scale(1.03); }
  52%       { transform: translateY(-11px) scale(1.03); }
}

.chat-welcome {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 56px 20px 8px;
  text-align: center;
  transition: opacity .22s, transform .22s cubic-bezier(.2,.7,.2,1);
}
.chat-welcome.gone { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.chat-panel.has-messages .chat-welcome { display: none; }
.chat-panel:not(.has-messages) .chat-messages { display: none; }

.chat-welcome-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
  box-shadow: 0 12px 36px rgba(59,48,224,.38), 0 0 0 6px rgba(59,48,224,.1);
  animation: hadiFloat 2.8s ease-in-out infinite;
}
.chat-welcome-avatar .bot-eye {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}
.chat-welcome-avatar .bot-eye:nth-child(1) { animation: botBlink 3.8s ease-in-out infinite; }
.chat-welcome-avatar .bot-eye:nth-child(2) { animation: botBlink 3.8s ease-in-out .1s infinite; }
.chat-welcome-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--blue);
  letter-spacing: -.3px;
}
.chat-welcome-sub { font-size: 13px; opacity: .5; letter-spacing: .01em; }
.chat-welcome-msg {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .7;
  max-width: 270px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 44px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
  min-height: 260px;
  background: #f6f5ff;
}
@keyframes riseIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

.msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  align-self: flex-start;
  animation: riseIn .22s both;
  max-width: 92%;
}
.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.msg-avatar .bot-eye {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}
.msg-avatar .bot-eye:nth-child(1) { animation: botBlink 3.8s ease-in-out infinite; }
.msg-avatar .bot-eye:nth-child(2) { animation: botBlink 3.8s ease-in-out .1s infinite; }

.msg {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 16px;
}
.msg-row .msg.ai {
  background: #fff;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(21,18,43,.07);
}
.msg.user {
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 86%;
  animation: riseIn .22s both;
}
.chat-cta {
  background: var(--lime);
  color: var(--blue);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 11px 15px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  transition: filter .15s;
  display: inline-block;
  animation: riseIn .22s both;
}
.chat-cta:hover { filter: brightness(.95); }

.typing-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  align-self: flex-start;
  animation: riseIn .22s both;
}
.typing-bubble {
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 12px 15px;
  box-shadow: 0 1px 4px rgba(21,18,43,.07);
  display: flex;
  gap: 5px;
  align-items: center;
}
.typing-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(21,18,43,.25);
  animation: typeDot 1.1s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: .18s; }
.typing-bubble span:nth-child(3) { animation-delay: .36s; }
@keyframes typeDot {
  0%,70%,100% { transform: translateY(0); opacity: .4; }
  35%          { transform: translateY(-5px); opacity: 1; }
}

.chat-quick { padding: 0 14px 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.chat-quick button {
  border: 1.5px solid rgba(59,48,224,.2);
  background: rgba(59,48,224,.04);
  color: var(--blue);
  font: 600 13px/1.2 var(--body), sans-serif;
  padding: 10px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.chat-quick button:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 14px rgba(59,48,224,.3); }

.chat-input-row {
  padding: 12px 14px;
  border-top: 1px solid rgba(21,18,43,.06);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(21,18,43,.05);
}
.chat-input-row input {
  flex: 1;
  border: 1.5px solid rgba(21,18,43,.12);
  border-radius: 100px;
  padding: 13px 20px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  color: var(--ink);
  background: rgba(21,18,43,.025);
}
.chat-input-row input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(59,48,224,.08); }
.chat-send {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 100px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59,48,224,.35);
}
.chat-send i { font-size: 20px; }
.chat-send:hover { opacity: .9; transform: scale(1.06); box-shadow: 0 6px 20px rgba(59,48,224,.45); }
.chat-send.is-busy { opacity: .5; transform: none; }

/* Booking card */
.booking-card {
  background: var(--blue);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 14px;
  align-self: flex-start;
  width: 100%;
  animation: riseIn .22s both;
  box-shadow: 0 8px 28px rgba(59,48,224,.32), 0 0 0 8px rgba(59,48,224,.18);
}
.booking-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6); margin: 0 0 10px; text-transform: uppercase; letter-spacing: .04em; }
.booking-days {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.booking-days::-webkit-scrollbar { display: none; }
.booking-day {
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 7px 11px;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s, box-shadow .15s;
  font: inherit;
  box-shadow: 0 0 0 8px rgba(255,255,255,.06);
}
.booking-day strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.booking-day span   { display: block; font-size: 11px; color: rgba(255,255,255,.5); margin-top: 1px; }
.booking-day:hover  { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.14); box-shadow: 0 0 0 8px rgba(255,255,255,.1); }
.booking-day.selected { background: var(--lime); border-color: var(--lime); box-shadow: 0 0 0 8px rgba(166,230,53,.2); }
.booking-day.selected strong,
.booking-day.selected span { color: #1C2A06; }
.booking-day.past { opacity: .3; }

.booking-slots { margin-top: 10px; display: none; flex-direction: column; gap: 6px; }
.booking-slots.visible { display: flex; }
.slots-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 4px 0 2px;
}
.slots-row { display: flex; flex-wrap: wrap; gap: 6px; }
.booking-slot {
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 6px 11px;
  font: 600 12px/1 var(--body), sans-serif;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.booking-slot:hover    { border-color: var(--lime); color: var(--lime); background: rgba(166,230,53,.1); }
.booking-slot.selected { background: var(--lime); border-color: var(--lime); color: #1C2A06; }
.booking-slot.is-booked { opacity: .3; cursor: not-allowed; }

/* OR divider */
.chat-or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  animation: riseIn .22s both;
}
.chat-or-divider::before,
.chat-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(21,18,43,.1);
}
.chat-or-divider span {
  font: 700 11px/1 var(--body), sans-serif;
  color: rgba(21,18,43,.3);
  letter-spacing: .08em;
}

/* Callback button */
.chat-callback-btn {
  align-self: stretch;
  background: #fff;
  border: 1.5px solid rgba(59,48,224,.22);
  border-radius: 14px;
  padding: 14px 20px;
  font: 600 14px/1.2 var(--body), sans-serif;
  color: var(--blue);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
  animation: riseIn .22s both;
  text-align: center;
  box-shadow: 0 4px 16px rgba(59,48,224,.12), 0 0 0 8px rgba(59,48,224,.1);
}
.chat-callback-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 6px 20px rgba(59,48,224,.32), 0 0 0 8px rgba(59,48,224,.18); }

/* Entry options (Schedule scoping call / Request callback) */
.chat-entry-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-self: stretch;
}
.chat-entry-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  background: #fff;
  border: 1.5px solid rgba(59,48,224,.22);
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(59,48,224,.08);
  animation: riseIn .24s both;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s,
              opacity .24s, transform .24s, max-height .26s, padding .26s, margin .26s;
  overflow: hidden;
}
.chat-entry-option:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 6px 22px rgba(59,48,224,.32);
}
.chat-entry-option .chat-entry-title {
  font: 700 14px/1.25 var(--body), sans-serif;
}
.chat-entry-option .chat-entry-sub {
  font: 500 12px/1.3 var(--body), sans-serif;
  opacity: .7;
}
.chat-entry-option:hover .chat-entry-sub { opacity: .9; }
.chat-entry-option.is-selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.chat-entry-option.is-hidden {
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-width: 0;
  pointer-events: none;
}
html[dir="rtl"] .chat-entry-option { align-items: flex-end; text-align: right; }

/* Turnstile widget container inside chat forms */
.chat-turnstile {
  display: flex;
  justify-content: center;
  margin: 8px 0 2px;
  min-height: 65px;
}

/* Callback form card */
.callback-card {
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 14px;
  align-self: flex-start;
  width: 100%;
  box-shadow: 0 1px 4px rgba(21,18,43,.07);
  animation: riseIn .22s both;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* Contact card */
.contact-card {
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  padding: 14px;
  align-self: flex-start;
  width: 100%;
  box-shadow: 0 1px 4px rgba(21,18,43,.07);
  animation: riseIn .22s both;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-field { display: flex; flex-direction: column; gap: 4px; }
.contact-field label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(21,18,43,.45);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.contact-field input {
  border: 1.5px solid rgba(21,18,43,.12);
  border-radius: 10px;
  padding: 9px 12px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color .18s;
  background: transparent;
}
.contact-field input:focus { border-color: var(--blue); }
.contact-field input.has-error { border-color: #e04040; }
.contact-submit {
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px;
  font: 700 13px/1 var(--body), sans-serif;
  cursor: pointer;
  transition: opacity .15s;
  margin-top: 2px;
}
.contact-submit:hover    { opacity: .85; }
.contact-submit:disabled { opacity: .4; cursor: default; }
.contact-submit.is-submitted { display: none; }
.contact-done {
  background: var(--lime);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: none;
  flex-direction: column;
  gap: 8px;
}
.contact-done.visible { display: flex; }
.booking-done-msg { margin: 0 0 8px; font-size: 13px; font-weight: 600; color: var(--blue); }

/* ─── RTL / ARABIC ───────────────────────────────────────── */
html[dir="rtl"] {
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
}
html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
  letter-spacing: 0;
}
html[dir="rtl"] .hero-cta          { flex-direction: row-reverse; }
html[dir="rtl"] .hero-proof        { flex-direction: row-reverse; }
html[dir="rtl"] .trust-inner       { flex-direction: row-reverse; }
html[dir="rtl"] .stats             { flex-direction: row-reverse; }
html[dir="rtl"] .footer-grid       { direction: rtl; }
html[dir="rtl"] .footer-bottom     { flex-direction: row-reverse; }
html[dir="rtl"] .sec-head          { text-align: right; }
html[dir="rtl"] .sec-head .eyebrow { margin-bottom: 14px; display: inline-flex; }
html[dir="rtl"] .col-text          { text-align: right; }
html[dir="rtl"] .col-text p        { max-width: none; }
html[dir="rtl"] .ticks li          { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .why-item          { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .why-list          { direction: rtl; }
html[dir="rtl"] .ncard-head        { flex-direction: row-reverse; }
html[dir="rtl"] .ncard-body        { text-align: right; }
html[dir="rtl"] .split             { direction: rtl; }
html[dir="rtl"] .split-3           { direction: rtl; }
html[dir="rtl"] .split-3 .col-text { text-align: right; }
html[dir="rtl"] .auto-aside        { text-align: right; }
html[dir="rtl"] .outcome           { text-align: right; }
html[dir="rtl"] .phil-card         { text-align: right; }
html[dir="rtl"] .proc-card         { text-align: right; }
html[dir="rtl"] .vert-card         { text-align: right; }
html[dir="rtl"] .tldr-card         { border-left: 0; border-right: 4px solid var(--blue); text-align: right; }
html[dir="rtl"] .faq-item          { text-align: right; }
html[dir="rtl"] .stack-row         { flex-direction: row-reverse; }
html[dir="rtl"] .stack-pills       { flex-direction: row-reverse; }
html[dir="rtl"] .cta-band          { direction: rtl; }
html[dir="rtl"] .eyebrow           { flex-direction: row-reverse; }
html[dir="rtl"] .trust-line        { text-align: right; }
html[dir="rtl"] .hero-inner        { direction: rtl; }
html[dir="rtl"] .hero-proof span   { border-right: 0; border-left: 1px solid rgba(255,255,255,.18); }
html[dir="rtl"] .hero-proof span:last-child { border-left: 0; }
html[dir="rtl"] .slide             { direction: rtl; }
html[dir="rtl"] .slider-foot       { flex-direction: row-reverse; }
html[dir="rtl"] .footer-brand p    { text-align: right; }
html[dir="rtl"] .footer-col a      { text-align: right; }
html[dir="rtl"] .footer-bottom p   { text-align: right; }
html[dir="rtl"] .lang-toggle       { right: auto; left: 130px; }
html[dir="rtl"] .hero-logo         { left: auto; right: 24px; }
html[dir="rtl"] .hero-menu         { right: auto; left: 18px; }
html[dir="rtl"] .hero-panel ~ .ncard-fab { right: auto; left: 33px; }
html[dir="rtl"] .chat-fab          { right: auto; left: 24px; }
html[dir="rtl"] .chat-panel        { right: auto; left: 24px; direction: rtl; }
html[dir="rtl"] .chat-close        { right: auto; left: 10px; }
html[dir="rtl"] .msg-row           { flex-direction: row-reverse; align-self: flex-end; }
html[dir="rtl"] .typing-row        { flex-direction: row-reverse; align-self: flex-end; }
html[dir="rtl"] .msg-row .msg.ai   { border-bottom-left-radius: 16px; border-bottom-right-radius: 4px; }
html[dir="rtl"] .msg.user          { border-bottom-right-radius: 16px; border-bottom-left-radius: 4px; align-self: flex-start; }
html[dir="rtl"] .chat-quick        { flex-direction: row-reverse; }
html[dir="rtl"] .chat-input-row    { flex-direction: row-reverse; }
html[dir="rtl"] .drawer            { right: auto; left: 0; transform: translateX(-100%); }
html[dir="rtl"] .drawer.show       { transform: none; }
html[dir="rtl"] .drawer-nav        { direction: rtl; }
html[dir="rtl"] .booking-card      { direction: rtl; text-align: right; }
html[dir="rtl"] .booking-days      { flex-direction: row-reverse; }
html[dir="rtl"] .slots-row         { flex-direction: row-reverse; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) and (min-width: 481px) {
  .lang-toggle { right: 120px; }
  html[dir="rtl"] .lang-toggle { right: auto; left: 120px; }
  .why-panel  { padding: 36px; }
  .cta-band   { padding: 52px 28px; }
}
@media (max-width: 480px) {
  .hero-logo             { left: 14px; top: 22px; }
  .hero-logo img         { height: 28px; }
  .lang-toggle:not(.lang-toggle--drawer) { display: none; }
  .lang-toggle--drawer   { display: inline-flex; }
  .hero-menu             { display: none; }
  .hero-panel ~ .ncard-fab.fab-tr { display: flex; right: 14px; top: 4px; }
  .hero h1               { font-size: clamp(34px, 9vw, 44px); }
  .btn-primary,
  .btn-ghost             { padding: 13px 20px; font-size: 15px; }
  .trust-inner           { gap: 20px; }
  .stats                 { gap: 16px; }
  .why-panel             { padding: 28px 22px; }
  .cta-band              { padding: 48px 22px; }
  .footer-bottom         { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-proof            { gap: 6px 0; }
  .hero-proof span       { padding: 0 10px; }
  .proc-card             { padding: 22px 18px; }
  .phil-card             { padding: 22px; }
  html[dir="rtl"] .chat-panel   { right: 0; left: 0; }
  html[dir="rtl"] .chat-fab     { right: auto; left: 16px; }
  html[dir="rtl"] .chat-close   { right: auto; left: 10px; }
  html[dir="rtl"] .hero-panel ~ .ncard-fab.fab-tr { right: auto; left: 14px; }
  html[dir="rtl"] .hero-logo    { left: auto; right: 14px; top: 16px; }
  html[dir="rtl"] .trust-inner  { flex-direction: column; }
  html[dir="rtl"] .stats        { flex-direction: row-reverse; flex-wrap: wrap; }
  html[dir="rtl"] .footer-bottom { flex-direction: column; align-items: flex-end; }
  html[dir="rtl"] .stack-row    { flex-direction: column; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .aurora b, .dots-bg::before, .glow { animation: none !important; }
  * { transition: none !important; animation: none !important; }
  .ncard { opacity: 1; transform: none; }
}

/* === AI Proposal Wizard ============================== */
.prp-body { margin: 0; background: #EFEDE8; font-family: 'Hanken Grotesk', sans-serif; color: #15122B; min-height: 100vh; }
.prp-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 36px; position: sticky; top: 0;
  background: rgba(239,237,232,.85); backdrop-filter: blur(10px); z-index: 10;
}
.prp-logo { display: inline-flex; align-items: center; text-decoration: none; }
.prp-logo-img { height: 28px; width: auto; display: block; }
.prp-lang {
  background: transparent; border: 1.5px solid rgba(21,18,43,.18); border-radius: 100px;
  padding: 8px 16px; font-family: inherit; font-weight: 600; font-size: 13px;
  color: #15122B; cursor: pointer;
}
.prp-lang:hover { background: rgba(21,18,43,.04); }
.prp-main {
  max-width: 720px; margin: 0 auto; padding: 48px 24px 80px;
  min-height: calc(100vh - 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.prp-stage { animation: prpFadeIn .35s both; }
@keyframes prpFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .prp-stage { animation: none; } }

.prp-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; color: #3B30E0; text-transform: uppercase; text-align: center; }
.prp-display { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: clamp(36px, 6vw, 56px); line-height: 1.05; margin: 18px 0 22px; text-align: center; }
.prp-accent { color: #3B30E0; }
.prp-lead { font-size: 17px; line-height: 1.5; color: rgba(21,18,43,.7); max-width: 480px; margin: 0 auto 32px; text-align: center; }
.prp-cta-primary {
  display: block; margin: 0 auto; padding: 18px 36px;
  background: #15122B; color: #fff; border: none; border-radius: 16px;
  font-weight: 700; font-size: 16px; font-family: inherit; cursor: pointer;
  box-shadow: 0 6px 20px rgba(21,18,43,.22);
  transition: transform .15s, box-shadow .15s;
}
.prp-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(21,18,43,.3); }
.prp-cta-primary:disabled { opacity: .4; cursor: not-allowed; }
.prp-footnote { margin-top: 18px; text-align: center; font-size: 13px; color: rgba(21,18,43,.5); }

html[dir="rtl"] .prp-topbar { direction: rtl; }

.prp-progress { height: 4px; background: rgba(21,18,43,.06); border-radius: 100px; max-width: 480px; margin: 0 auto 14px; overflow: hidden; }
.prp-progress > div { height: 100%; background: linear-gradient(90deg, #3B30E0, #9D8DF4); border-radius: 100px; transition: width .35s; }
.prp-counter { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: #3B30E0; text-transform: uppercase; margin-bottom: 16px; }
.prp-loading { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.prp-loading-dot { width: 10px; height: 10px; border-radius: 50%; background: #3B30E0; animation: prpDot 1.2s infinite ease-in-out; }
.prp-loading-dot:nth-child(2) { animation-delay: .2s; }
.prp-loading-dot:nth-child(3) { animation-delay: .4s; }
@keyframes prpDot { 0%,80%,100% { transform: scale(.6); opacity: .5; } 40% { transform: scale(1); opacity: 1; } }

.prp-hadi-stage { display: flex; justify-content: center; margin-top: 40px; }
.prp-hadi-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, #3B30E0 0%, #9D8DF4 100%);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(59,48,224,.32), 0 0 0 10px rgba(59,48,224,.08);
  animation: prpHadiBob 2.4s ease-in-out infinite;
}
.prp-hadi-avatar .bot-eye { width: 8px; height: 12px; background: #fff; border-radius: 50%; display: block; }
.prp-hadi-avatar .bot-eye:nth-child(1) { animation: botBlink 3.8s ease-in-out infinite; }
.prp-hadi-avatar .bot-eye:nth-child(2) { animation: botBlink 3.8s ease-in-out .1s infinite; }
@keyframes prpHadiBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.prp-think-row { display: flex; justify-content: center; gap: 6px; margin-top: 4px; }
.prp-think-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(59,48,224,.55);
  animation: prpThinkPulse 1.4s ease-in-out infinite;
}
.prp-think-dot:nth-child(2) { animation-delay: .15s; }
.prp-think-dot:nth-child(3) { animation-delay: .3s; }
@keyframes prpThinkPulse { 0%, 100% { opacity: .3; transform: scale(.7); } 40% { opacity: 1; transform: scale(1); } }

.prp-chips { display: flex; flex-direction: column; gap: 10px; max-width: 460px; margin: 30px auto 20px; }
.prp-chip {
  background: #fff; border: 1.5px solid rgba(21,18,43,.12); border-radius: 16px;
  padding: 16px 20px; font-family: inherit; font-weight: 600; font-size: 15px;
  color: #15122B; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: transform .15s, background .15s, border-color .15s, box-shadow .15s;
}
.prp-chip:hover { border-color: rgba(59,48,224,.4); box-shadow: 0 4px 14px rgba(59,48,224,.12); }
.prp-chip.is-selected { background: #15122B; color: #fff; border-color: #15122B; box-shadow: 0 6px 20px rgba(21,18,43,.22); }
.prp-chip-kbd { opacity: .35; font-size: 12px; font-weight: 700; padding: 3px 7px; border: 1px solid currentColor; border-radius: 6px; }
.prp-actions { text-align: center; margin-top: 22px; }
.prp-help { text-align: center; font-size: 12px; color: rgba(21,18,43,.4); margin-top: 18px; }

.prp-textarea {
  display: block; width: 100%; max-width: 560px; margin: 26px auto 0;
  padding: 16px 18px; border: 1.5px solid rgba(59,48,224,.25); border-radius: 16px;
  font-family: inherit; font-size: 15px; line-height: 1.5;
  color: #15122B; background: #fff; resize: vertical; box-sizing: border-box;
  box-shadow: 0 0 0 6px rgba(59,48,224,.08);
}
.prp-textarea:focus { outline: none; border-color: #3B30E0; box-shadow: 0 0 0 6px rgba(59,48,224,.15); }
.prp-text-hint { text-align: center; font-size: 14px; color: rgba(21,18,43,.6); max-width: 560px; margin: 0 auto 6px; line-height: 1.5; }

html[dir="rtl"] .prp-chip { text-align: right; }

.prp-gen-checks { max-width: 380px; margin: 24px auto 0; text-align: left; font-size: 14px; font-family: 'SF Mono', Menlo, monospace; line-height: 2; }
.prp-gen-row.done    { color: rgba(21,18,43,.85); }
.prp-gen-row.pending { color: rgba(21,18,43,.35); }

.prp-proposal { background: #FFF1DE; border-radius: 24px; padding: 40px 44px; box-shadow: 0 8px 40px rgba(21,18,43,.08); }
@media (max-width: 640px) { .prp-proposal { padding: 28px 22px; } }

/* Editorial proposal masthead */
.prp-proposal-head {
  padding-bottom: 32px;
  border-bottom: 3px solid #15122B;
  margin-bottom: 40px;
  position: relative;
}
.prp-proposal-head::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 120px; height: 3px;
  background: #A6E635;
}

.prp-masthead {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(21,18,43,.1);
}
.prp-masthead-logo { height: 32px; width: auto; display: block; }
.prp-masthead-id {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 11px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(21,18,43,.55);
}
.prp-masthead-kicker { color: rgba(21,18,43,.45); }
.prp-masthead-dot    { color: rgba(21,18,43,.25); }
.prp-masthead-code   { color: #15122B; font-weight: 800; letter-spacing: .12em; }

.prp-proposal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -.025em;
  font-size: clamp(36px, 5.2vw, 52px);
  line-height: 1.04;
  margin: 28px 0 32px;
  color: #15122B;
  text-align: left;
}

.prp-proposal-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(21,18,43,.04);
  border-radius: 14px;
  padding: 16px 20px;
}
@media (max-width: 640px) {
  .prp-proposal-meta-row { grid-template-columns: 1fr; gap: 12px; padding: 14px 16px; }
}
.prp-meta-col + .prp-meta-col { border-left: 1px solid rgba(21,18,43,.08); padding-left: 14px; }
@media (max-width: 640px) {
  .prp-meta-col + .prp-meta-col { border-left: 0; border-top: 1px solid rgba(21,18,43,.08); padding-left: 0; padding-top: 12px; }
}
.prp-meta-label {
  font: 700 10px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(21,18,43,.5);
  margin-bottom: 6px;
}
.prp-meta-value {
  font: 800 15px/1.3 'Bricolage Grotesque', sans-serif;
  color: #15122B;
  letter-spacing: -.01em;
}
html[dir="rtl"] .prp-proposal-head::after { left: auto; right: 0; }
html[dir="rtl"] .prp-meta-col + .prp-meta-col { border-left: 0; border-right: 1px solid rgba(21,18,43,.08); padding-left: 0; padding-right: 14px; }
@media (max-width: 640px) {
  html[dir="rtl"] .prp-meta-col + .prp-meta-col { border-right: 0; }
}

/* Section rhythm: generous breathing room + thin divider between major sections */
.prp-proposal-section { margin-top: 36px; padding-top: 4px; }
.prp-proposal-section + .prp-proposal-section { border-top: 1px solid rgba(21,18,43,.06); padding-top: 32px; }
.prp-proposal-section.is-flush { border-top: 0; padding-top: 0; }

/* Proper section heading — replaces tiny eyebrow-as-heading pattern */
.prp-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #15122B;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  text-align: left;
}

/* Body paragraphs — left-aligned (justify looks awful in narrow columns) */
.prp-proposal-summary {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(21,18,43,.82);
  margin: 0;
  text-align: left;
}

/* Services grid */
.prp-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .prp-services-grid { grid-template-columns: 1fr; } }
.prp-service-card { border-radius: 18px; padding: 22px; box-shadow: 0 4px 18px rgba(21,18,43,.08); display: flex; flex-direction: column; }
.prp-service-card .prp-eyebrow { text-align: left; font-size: 10px; letter-spacing: .12em; }
.prp-service-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-top: 10px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.prp-service-why { font-size: 14px; line-height: 1.55; opacity: .88; margin: 10px 0 0; }
.prp-service-do { margin: 14px 0 0; padding-left: 18px; font-size: 13px; line-height: 1.7; opacity: .92; }
.prp-service-do li { margin-bottom: 4px; }

/* Scope list */
.prp-scope {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(21,18,43,.85);
}
.prp-scope li { margin-bottom: 6px; }

/* Investment + Timeline figure cards — two distinct, weighted columns */
.prp-figures { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .prp-figures { grid-template-columns: 1fr; } }
.prp-figure-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 4px 18px rgba(21,18,43,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}
.prp-figure-card .prp-eyebrow { text-align: left; font-size: 10px; letter-spacing: .12em; color: rgba(21,18,43,.5); }
.prp-figure-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 32px;
  margin-top: 6px;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.prp-figure-note { font-size: 12px; color: rgba(21,18,43,.55); margin-top: 6px; line-height: 1.5; }
.prp-next-card {
  position: relative;
  background: linear-gradient(135deg, #15122B 0%, #1f1947 60%, #3B30E0 140%);
  color: #fff;
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(21,18,43,.22);
}
.prp-next-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(166,230,53,.28) 0%, transparent 70%);
  pointer-events: none;
}
.prp-next-inner { flex: 1; min-width: 0; position: relative; }
.prp-next-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  color: #A6E635; text-transform: uppercase;
}
.prp-next-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 26px; line-height: 1.15; margin-top: 8px;
  letter-spacing: -.01em;
}
.prp-next-sub { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.7); margin: 10px 0 0; max-width: 520px; }
.prp-next-cta {
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  padding: 16px 26px;
  background: #A6E635; color: #15122B;
  border-radius: 100px;
  text-decoration: none; font-weight: 800; font-size: 15px;
  box-shadow: 0 10px 30px rgba(166,230,53,.45);
  transition: transform .15s, box-shadow .15s;
}
.prp-next-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(166,230,53,.55); }
.prp-next-cta-arrow { font-size: 18px; transition: transform .15s; }
.prp-next-cta:hover .prp-next-cta-arrow { transform: translateX(3px); }
@media (max-width: 640px) {
  .prp-next-card { flex-direction: column; align-items: flex-start; }
  .prp-next-cta { width: 100%; justify-content: center; }
}

.prp-proposal-actions { display: flex; justify-content: center; margin-top: 24px; }
.prp-email-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: #fff;
  border: 1.5px solid rgba(59,48,224,.2);
  color: #3B30E0;
  border-radius: 100px;
  font-family: inherit; font-weight: 700; font-size: 14px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(59,48,224,.12);
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.prp-email-cta:hover {
  background: #3B30E0; color: #fff; border-color: #3B30E0;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(59,48,224,.3);
}
.prp-email-icon { font-size: 16px; }

.prp-service-do { margin: 10px 0 0; padding-left: 18px; font-size: 12px; line-height: 1.6; opacity: .9; }
.prp-service-do li { margin-bottom: 2px; }

.prp-edge-card {
  background: linear-gradient(135deg, #15122B 0%, #1a1638 100%);
  color: #fff;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 8px 32px rgba(21,18,43,.15);
  margin-top: 8px;
}
.prp-edge-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin-top: 8px;
  letter-spacing: -.01em;
}
.prp-edge-compare {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
}
.prp-edge-col { flex: 1; text-align: center; }
.prp-edge-col-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-bottom: 4px; }
.prp-edge-col-value { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.01em; }
.prp-edge-typical { color: rgba(255,255,255,.45); text-decoration: line-through; }
.prp-edge-ours    { color: #A6E635; }
.prp-edge-arrow   { font-size: 22px; color: rgba(255,255,255,.4); }
.prp-edge-why-label { font-size: 12px; font-weight: 700; letter-spacing: .05em; color: rgba(255,255,255,.55); text-transform: uppercase; margin: 18px 0 8px; }
.prp-edge-why { margin: 0; padding-left: 22px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.88); }
.prp-edge-why li { margin-bottom: 4px; }

.prp-phases { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.prp-phase-card { display: flex; gap: 14px; background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: 0 2px 14px rgba(21,18,43,.06); }
.prp-phase-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #3B30E0; color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 14px; }
.prp-phase-body { flex: 1; }
.prp-phase-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.prp-phase-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px; color: #15122B; }
.prp-phase-weeks { font-size: 12px; font-weight: 700; color: #3B30E0; letter-spacing: .05em; text-transform: uppercase; }
.prp-phase-deliverables { margin: 8px 0 0; padding-left: 18px; font-size: 13px; line-height: 1.6; color: rgba(21,18,43,.75); }

.prp-assumptions { margin: 8px 0 0; padding-left: 18px; font-size: 13px; line-height: 1.6; color: rgba(21,18,43,.6); font-style: italic; }
.prp-assumptions li { margin-bottom: 4px; }

@media print {
  .prp-topbar, .prp-progress, .prp-counter, .prp-proposal-actions, .prp-cta-primary, .prp-cta-lime { display: none !important; }
  body { background: #fff; }
  .prp-proposal { box-shadow: none; padding: 0; background: #fff; }
}

.prp-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.prp-modal-backdrop { position: absolute; inset: 0; background: rgba(21,18,43,.5); backdrop-filter: blur(4px); }
.prp-modal-card { position: relative; background: #fff; border-radius: 22px; padding: 28px; width: 100%; max-width: 380px; box-shadow: 0 12px 40px rgba(21,18,43,.25); }
.prp-modal-x { position: absolute; top: 12px; right: 12px; background: transparent; border: none; font-size: 26px; color: rgba(21,18,43,.45); cursor: pointer; line-height: 1; padding: 4px 8px; }
.prp-modal-field { display: block; margin-bottom: 12px; }
.prp-modal-field > span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(21,18,43,.5); margin-bottom: 4px; }
.prp-modal-field input { width: 100%; padding: 12px 14px; border: 1.5px solid rgba(21,18,43,.15); border-radius: 12px; font-family: inherit; font-size: 14px; box-sizing: border-box; }
.prp-modal-field input:focus { outline: none; border-color: #3B30E0; }
.prp-modal-note { font-size: 12px; color: rgba(21,18,43,.4); margin: 10px 0 0; text-align: center; }
.prp-modal-error { color: #C20A0A; font-size: 13px; margin-top: 10px; }

/* === Static info section (TL;DR + FAQ) — sits below the interactive tool,
   outside #prpMain so it survives proposal.js's DOM rewrites. =========== */
.prp-info { max-width: 640px; margin: 0 auto; padding: 8px 24px 72px; }
.prp-tldr {
  background: #fff;
  border: 1px solid rgba(21,18,43,.10);
  border-left: 4px solid #3B30E0;
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 40px;
}
.prp-tldr-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #3B30E0; margin-bottom: 10px;
}
.prp-tldr p { font-size: 16px; line-height: 1.65; color: rgba(21,18,43,.85); text-align: left; margin: 0; }
.prp-info-p { font-size: 15px; line-height: 1.65; color: rgba(21,18,43,.75); margin: 0 0 8px; }
.prp-info-h2 {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -.01em; color: #15122B;
  margin: 8px 0 20px;
}
.prp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.prp-faq-item {
  background: #fff;
  border: 1px solid rgba(21,18,43,.10);
  border-radius: 16px;
  padding: 18px 22px;
}
.prp-faq-item h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16px; color: #15122B; margin-bottom: 6px; }
.prp-faq-item p { font-size: 14px; line-height: 1.6; color: rgba(21,18,43,.72); margin: 0; }
html[dir="rtl"] .prp-tldr    { border-left: 0; border-right: 4px solid #3B30E0; }
html[dir="rtl"] .prp-tldr p  { text-align: right; }
html[dir="rtl"] .prp-info-p, html[dir="rtl"] .prp-info-h2, html[dir="rtl"] .prp-faq-item { text-align: right; }

/* === Booking page (/book) =============================================== */
.bk-body { margin: 0; background: #EFEDE8; font-family: 'Hanken Grotesk', sans-serif; color: #15122B; min-height: 100vh; }
.bk-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 36px; position: sticky; top: 0;
  background: rgba(239,237,232,.85); backdrop-filter: blur(10px); z-index: 10;
}
.bk-logo { display: inline-flex; align-items: center; text-decoration: none; }
.bk-logo-img { height: 28px; width: auto; display: block; }
.bk-lang { background: transparent; border: 1.5px solid rgba(21,18,43,.18); border-radius: 100px; padding: 8px 16px; font-family: inherit; font-weight: 600; font-size: 13px; color: #15122B; cursor: pointer; }
.bk-lang:hover { background: rgba(21,18,43,.04); }

.bk-main { max-width: 920px; margin: 0 auto; padding: 48px 24px 80px; }
.bk-shell { animation: bkFadeIn .35s both; }
@keyframes bkFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .bk-shell { animation: none; } }

.bk-hero { text-align: center; margin-bottom: 40px; }
.bk-eyebrow { font: 700 11px/1.2 'Hanken Grotesk', sans-serif; letter-spacing: .14em; color: #3B30E0; text-transform: uppercase; }
.bk-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.04;
  margin: 16px 0 18px;
  color: #15122B;
}
.bk-h1 em { font-style: normal; color: #3B30E0; }
.bk-lead { font-size: 17px; line-height: 1.55; color: rgba(21,18,43,.7); max-width: 580px; margin: 0 auto 24px; }
.bk-perks { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: rgba(21,18,43,.6); }
.bk-perks span { display: inline-flex; align-items: center; gap: 6px; }
.bk-dot { width: 6px; height: 6px; background: #A6E635; border-radius: 50%; display: inline-block; }

.bk-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px; }
@media (max-width: 820px) { .bk-grid { grid-template-columns: 1fr; } }

.bk-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 4px 24px rgba(21,18,43,.06);
}
.bk-card-title, .bk-form-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -.01em; margin: 0 0 4px; color: #15122B; }
.bk-card-sub, .bk-form-sub { font-size: 13px; color: rgba(21,18,43,.55); margin: 0 0 18px; }

.bk-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 18px; }
.bk-day {
  background: #fff; border: 1.5px solid rgba(21,18,43,.1); border-radius: 14px;
  padding: 12px 6px; cursor: pointer; text-align: center;
  font-family: inherit; color: inherit;
  transition: border-color .15s, background .15s, box-shadow .15s, color .15s;
}
.bk-day:hover { border-color: rgba(59,48,224,.4); box-shadow: 0 4px 14px rgba(59,48,224,.1); }
.bk-day strong { display: block; font: 800 13px/1 'Bricolage Grotesque', sans-serif; }
.bk-day span   { display: block; font-size: 11px; color: rgba(21,18,43,.55); margin-top: 4px; }
.bk-day.is-selected { background: #15122B; color: #fff; border-color: #15122B; box-shadow: 0 8px 22px rgba(21,18,43,.22); }
.bk-day.is-selected span { color: rgba(255,255,255,.7); }
.bk-day.is-past, .bk-day:disabled { opacity: .35; cursor: not-allowed; }

.bk-slots-wrap { margin-top: 6px; }
.bk-slots-label {
  font: 700 11px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(21,18,43,.5);
  margin: 14px 0 8px;
}
.bk-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
@media (max-width: 540px) { .bk-slots { grid-template-columns: repeat(3, 1fr); } }
.bk-slot {
  padding: 11px 4px;
  border: 1.5px solid rgba(21,18,43,.12);
  border-radius: 12px;
  background: #fff;
  font: 700 13px/1 inherit;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
  color: #15122B;
}
.bk-slot:hover:not(:disabled) { border-color: #3B30E0; color: #3B30E0; }
.bk-slot.is-taken, .bk-slot:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.bk-slot.is-selected { background: #A6E635; border-color: #A6E635; color: #15122B; box-shadow: 0 8px 20px rgba(166,230,53,.4); }

.bk-field { display: block; margin-bottom: 12px; }
.bk-field span {
  display: block; font: 700 11px/1 'Hanken Grotesk', sans-serif;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(21,18,43,.5); margin-bottom: 4px;
}
.bk-field input, .bk-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(21,18,43,.12);
  border-radius: 12px;
  font-family: inherit; font-size: 14px;
  box-sizing: border-box; resize: vertical;
  background: #fff; color: #15122B;
}
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: #3B30E0; }

.bk-submit {
  width: 100%; padding: 16px; margin-top: 8px;
  background: #15122B; color: #fff;
  border: none; border-radius: 14px;
  font: 800 15px/1 'Hanken Grotesk', sans-serif; cursor: pointer;
  box-shadow: 0 8px 26px rgba(21,18,43,.25);
  transition: transform .15s, box-shadow .15s, opacity .15s;
}
.bk-submit:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(21,18,43,.32); }
.bk-submit:disabled { opacity: .4; cursor: not-allowed; }
.bk-form-err { color: #C20A0A; font-size: 13px; margin: 10px 0 0; }
.bk-from-note { font-size: 12px; color: rgba(21,18,43,.5); text-align: center; margin: 14px 0 0; }
.bk-from-note a { color: #3B30E0; font-weight: 700; text-decoration: none; }
.bk-from-note a:hover { text-decoration: underline; }

/* Confirmation */
.bk-confirm {
  background: linear-gradient(135deg, #15122B 0%, #1f1947 60%, #3B30E0 140%);
  color: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(21,18,43,.22);
}
.bk-confirm::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(166,230,53,.28) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 540px) { .bk-confirm { padding: 28px 24px; } }
.bk-confirm-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: #A6E635; color: #15122B;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.bk-confirm-h {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4.5vw, 36px); letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 10px; position: relative;
}
.bk-confirm-sub {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.78);
  margin: 0; max-width: 560px; position: relative;
}
.bk-slot-card {
  background: rgba(255,255,255,.08);
  border-radius: 16px; padding: 18px 22px;
  margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  position: relative;
}
@media (max-width: 540px) { .bk-slot-card { flex-direction: column; align-items: flex-start; } }
.bk-slot-lbl { font: 700 11px/1 'Hanken Grotesk', sans-serif; letter-spacing: .12em; color: rgba(255,255,255,.55); text-transform: uppercase; }
.bk-slot-val { font: 800 18px/1.2 'Bricolage Grotesque', sans-serif; margin-top: 6px; }
.bk-slot-meet {
  background: #A6E635; color: #15122B;
  padding: 13px 22px; border-radius: 100px;
  font: 800 14px/1 'Hanken Grotesk', sans-serif;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(166,230,53,.4);
}
.bk-slot-meet:hover { transform: translateY(-1px); }
.bk-confirm-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 22px; position: relative;
}
.bk-pill {
  padding: 11px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  font: 700 13px/1 'Hanken Grotesk', sans-serif;
  color: #fff; text-decoration: none;
  transition: background .15s;
}
.bk-pill:hover { background: rgba(255,255,255,.15); }
.bk-confirm-footer {
  background: #fff; border-radius: 18px;
  padding: 20px 26px;
  text-align: center;
  color: rgba(21,18,43,.65);
  font-size: 14px; line-height: 1.6;
  margin-top: 18px;
}
.bk-confirm-footer a { color: #3B30E0; font-weight: 700; text-decoration: none; }

html[dir="rtl"] .bk-topbar { direction: rtl; }

/* Blog tables (rendered from article markdown) */
.blog-table-wrap { overflow-x: auto; margin: 1.4rem 0; }
.blog-table { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
.blog-table th, .blog-table td { border: 1px solid rgba(20, 20, 60, 0.14); padding: 0.55rem 0.9rem; text-align: start; vertical-align: top; }
.blog-table th { background: rgba(59, 46, 236, 0.06); font-weight: 600; }
