/* Base resets are in index.html inline style — wait, removed. Add here. */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0E1F33;
  background: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.serif { font-family: "Mona Sans", sans-serif; font-weight: 500; letter-spacing: -0.02em; }
::selection { background: rgba(120,180,255,0.45); color: #0E1F33; }

/* ─── SKY IMAGE BG ────────────────────────────────────── */
.sky-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  background: url(assets/hero-sky.png) center top / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
/* Long soft fade-out at the bottom so the sky meets the white page seamlessly,
   even with the dashboard overlapping into the hero. */
.sky-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.85) 75%,
    #ffffff 100%);
}

#root { position: relative; z-index: 2; }

/* ─── NAV (800px max pill) ────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(800px, calc(100% - 36px));
  transition: transform .35s cubic-bezier(.4,.0,.2,1), opacity .25s ease;
  will-change: transform;
}
.nav-wrap-hidden {
  transform: translateX(-50%) translateY(-140%);
  opacity: 0;
  pointer-events: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 18px;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid transparent;
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background-image:
    linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.45)),
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.4) 35%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.75) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 30px rgba(255,255,255,0.35),
    0 10px 30px rgba(20,60,120,0.18);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 26px;
  margin-right: 10px;
  text-decoration: none;
}
.nav-logo img { height: 26px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: #1A2B45;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.003em;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: rgba(255,255,255,0.55); color: #0E1F33; }

.nav-signup {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 22px;
  background: #0E1F33;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), background .15s ease, box-shadow .2s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 18px rgba(14,31,51,0.30);
}
.nav-signup:hover {
  background: #1A2B45;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 10px 24px rgba(14,31,51,0.36);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}

.hero-display {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(48px, 7.4vw, 112px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  max-width: 1400px;
  white-space: nowrap;
  margin: 0;
  padding-bottom: 0.15em;
  overflow: visible;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 38%, #DCEAF7 70%, #B6D2EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.5))
    drop-shadow(0 2px 0 rgba(15,45,90,0.35))
    drop-shadow(0 8px 14px rgba(15,45,90,0.45))
    drop-shadow(0 18px 28px rgba(15,45,90,0.30));
}
.hero-display em {
  font-style: italic;
  font-weight: 500;
  font-family: "Mona Sans", sans-serif;
  /* inherit the clipped gradient */
  color: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(218,238,255,0.80) 100%);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(218,238,255,0.80) 100%),
    linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.45) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.85) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #144A85;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.003em;
  font-family: inherit;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -10px 22px rgba(80,140,200,0.22) inset,
    0 18px 38px rgba(20,60,120,0.28),
    0 2px 6px rgba(20,60,120,0.14);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease;
}
.hero-cta-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.95) inset,
    0 -10px 22px rgba(80,140,200,0.26) inset,
    0 24px 48px rgba(20,60,120,0.32),
    0 2px 8px rgba(20,60,120,0.18);
}

/* ─── CHAT WINDOW (Apple glass) ───────────────────────── */
.chat-stage {
  margin-top: 28px;
  padding: 0 28px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.chat-window {
  width: min(1080px, 100%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  /* Apple-style gradient border: bright top-left, dim mid, soft bottom-right */
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(255,255,255,0.42), rgba(255,255,255,0.34)) padding-box,
    linear-gradient(135deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.55) 28%,
      rgba(255,255,255,0.15) 50%,
      rgba(255,255,255,0.35) 72%,
      rgba(255,255,255,0.85) 100%
    ) border-box;
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 40px rgba(255,255,255,0.3),
    0 30px 70px rgba(15,40,90,0.22),
    0 8px 24px rgba(15,40,90,0.12);
}

.chat-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 560px;
}

/* ─── SIDEBAR ─────────────────────────────────────────── */
.chat-sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(235,245,255,0.22) 100%);
  border-right: 1px solid rgba(255,255,255,0.4);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.chat-sidebar-head {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px;
}
.brand-mark { display: inline-flex; }
.brand-mark img { width: 32px; height: 32px; display: block; }
.chat-sidebar-title {
  font-size: 14px; font-weight: 500; color: #0E1F33; letter-spacing: -0.005em;
}
.chat-sidebar-sub {
  font-size: 11.5px; color: rgba(14,31,51,0.55); margin-top: 1px;
}

.chat-steps {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.chat-step {
  display: flex;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 12px;
  align-items: flex-start;
  transition: background .15s ease;
}
.chat-step-active {
  background: rgba(255,255,255,0.65);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 2px 8px rgba(15,40,90,0.06);
}
.chat-step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.chat-step-pending .chat-step-dot {
  background: rgba(15,40,90,0.06);
  color: rgba(15,40,90,0.4);
  font-size: 11px;
  font-weight: 500;
}
.chat-step-active .chat-step-dot {
  background: linear-gradient(180deg, #5BA8E8, #1F5EA0);
  color: white;
  box-shadow: 0 0 0 4px rgba(91,168,232,0.18);
}
.chat-step-done .chat-step-dot {
  background: #1F5EA0;
  color: white;
}
.chat-step-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.chat-step-text { flex: 1; }
.chat-step-label {
  font-size: 13px;
  font-weight: 500;
  color: #0E1F33;
  letter-spacing: -0.005em;
}
.chat-step-pending .chat-step-label { color: rgba(14,31,51,0.55); font-weight: 400; }
.chat-step-sub {
  font-size: 11.5px;
  color: rgba(14,31,51,0.5);
  margin-top: 1px;
}
.chat-step-progress {
  margin-top: 8px;
  height: 3px;
  background: rgba(15,40,90,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.chat-step-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #5BA8E8, #1F5EA0);
  border-radius: 2px;
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}

/* ─── MAIN CHAT PANEL ─────────────────────────────────── */
.chat-main {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.18);
  min-width: 0;
}
.chat-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
  max-height: 480px;
}
.chat-scroll::-webkit-scrollbar { width: 8px; }
.chat-scroll::-webkit-scrollbar-thumb { background: rgba(15,40,90,0.12); border-radius: 4px; }

.bubble-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: bubble-in 0.32s cubic-bezier(.2,.8,.3,1.1);
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.bubble-row-user { justify-content: flex-end; }
.bubble {
  max-width: 70%;
  padding: 11px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.45;
  letter-spacing: -0.003em;
}
.bubble-agent {
  background: white;
  color: #0E1F33;
  border: 1px solid rgba(15,40,90,0.07);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(15,40,90,0.05);
}
.bubble-user {
  background: linear-gradient(180deg, #5BA8E8 0%, #2E73B6 100%);
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(46,115,182,0.32);
}
.bubble.typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
}
.bubble.typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(14,31,51,0.3);
  animation: dot 1.2s ease-in-out infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ─── INPUT AREA ───────────────────────────────────── */
.chat-input-area {
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.28) 100%);
}
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid rgba(15,40,90,0.12);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 400;
  color: #0E1F33;
  cursor: pointer;
  transition: all .15s ease;
  letter-spacing: -0.003em;
}
.chip:hover:not(:disabled) {
  background: #F5FAFF;
  border-color: #5BA8E8;
  color: #1F5EA0;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(46,115,182,0.15);
}
.chip:disabled { opacity: 0.5; cursor: not-allowed; }
.chip-on {
  background: linear-gradient(180deg, #DCEEFF, #BDDDFF);
  border-color: #5BA8E8;
  color: #1F5EA0;
  font-weight: 500;
}
.chip-tick {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: white;
  border: 1px solid rgba(15,40,90,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1F5EA0;
}
.chip-tick.on { background: #1F5EA0; border-color: #1F5EA0; color: white; }
.chip-submit {
  background: #0E1F33;
  color: white;
  border-color: #0E1F33;
  font-weight: 500;
}
.chip-submit:hover:not(:disabled) {
  background: #1F5EA0;
  border-color: #1F5EA0;
  color: white;
}

.chat-input {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(15,40,90,0.12);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  transition: border-color .15s, box-shadow .15s;
}
.chat-input:focus-within {
  border-color: #5BA8E8;
  box-shadow: 0 0 0 4px rgba(91,168,232,0.18);
}
.chat-input input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  color: #0E1F33;
  padding: 10px 0;
}
.chat-input input::placeholder { color: rgba(14,31,51,0.4); }
.chat-send {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg, #5BA8E8, #1F5EA0);
  color: white;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  box-shadow: 0 4px 10px rgba(31,94,160,0.3);
}
.chat-send:disabled { opacity: 0.4; cursor: not-allowed; }
.chat-send:not(:disabled):hover { transform: translateY(-1px); }

.chat-done {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(220,238,255,0.9) 0%, rgba(200,225,250,0.7) 100%);
  border: 1px solid rgba(91,168,232,0.4);
  border-radius: 14px;
  padding: 14px 18px;
}
.chat-done-text {
  font-size: 14px;
  color: #1F5EA0;
  font-weight: 500;
}
.chat-done-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #0E1F33;
  color: white;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.chat-done-cta:hover { background: #1F5EA0; transform: translateY(-1px); }

/* ─── SHARED SECTION PRIMITIVES ────────────────────────── */
.section-eyebrow {
  text-align: center;
  color: rgba(14,31,51,0.55);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #0E1F33;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  font-family: "Mona Sans", sans-serif;
}
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(14,31,51,0.62);
  font-size: 16px;
  line-height: 1.5;
}

/* ─── MANIFESTO ────────────────────────────────────────── */
.manifesto {
  position: relative;
  padding: 0 28px 80px;
  background: transparent;
  color: #0E1F33;
  /* Pull the dashboard up so ~25% of it sits inside the hero. */
  margin-top: -25vh;
  z-index: 3;
}
.manifesto-inner {
  max-width: 1180px;
  margin: 0 auto;
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

/* ─── MANIFESTO DASHBOARD ──────────────────────────────── */
.dash-window {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 30px 80px rgba(15,40,90,0.18),
    0 8px 24px rgba(15,40,90,0.10);
}
.dash-window:hover {
  /* custom oversized cursor — 32px PNG, hotspot near tail of arrow */
  cursor: url(assets/cursor-32.png) 2 2, pointer;
}
.dash-window button,
.dash-window a {
  cursor: url(assets/cursor-32.png) 2 2, pointer;
}

.dash-chrome {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,40,90,0.07);
  background: linear-gradient(180deg, #FBFCFE 0%, #F4F6FA 100%);
}
.dash-chrome-dots { display: flex; gap: 6px; }
.dash-chrome-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.dash-chrome-dots span:nth-child(1) { background: #FF6259; }
.dash-chrome-dots span:nth-child(2) { background: #FFBD2E; }
.dash-chrome-dots span:nth-child(3) { background: #28C940; }
.dash-chrome-title {
  justify-self: center;
  font-size: 12px;
  color: rgba(15,40,90,0.55);
  letter-spacing: 0.005em;
}

.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 560px;
  background: #FFFFFF;
}

/* sidebar */
.dash-sidebar {
  background: #FAFBFD;
  border-right: 1px solid rgba(15,40,90,0.07);
  padding: 22px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dash-sidebar-brand {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 8px 12px;
}
.dash-sidebar-brand img { width: 28px; height: 28px; display: block; }
.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(14,31,51,0.7);
  text-align: left;
  transition: background .12s ease, color .12s ease;
  position: relative;
}
.dash-nav-item:hover { background: rgba(15,40,90,0.05); color: #0E1F33; }
.dash-nav-item-on {
  background: rgba(31,94,160,0.10);
  color: #1F5EA0;
}
.dash-nav-item-on:hover { background: rgba(31,94,160,0.12); color: #1F5EA0; }
.dash-nav-badge {
  margin-left: auto;
  background: #E04A4A;
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 999px;
}
.dash-nav-item-on .dash-nav-badge { background: #E04A4A; }

.dash-sidebar-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: white;
  border: 1px solid rgba(15,40,90,0.07);
  margin-top: 8px;
}
.dash-sidebar-foot-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5BA8E8, #1F5EA0);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}
.dash-sidebar-foot-name {
  font-size: 12.5px;
  font-weight: 600;
  color: #0E1F33;
  letter-spacing: -0.005em;
}
.dash-sidebar-foot-role {
  font-size: 11px;
  color: rgba(14,31,51,0.55);
  margin-top: 1px;
}

/* main */
.dash-main {
  display: flex;
  flex-direction: column;
  background: white;
}
.dash-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(15,40,90,0.06);
}
.dash-main-title {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0E1F33;
  margin: 0;
  font-weight: 600;
}
.dash-main-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(15,40,90,0.05);
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(14,31,51,0.55);
}

.dash-main-content {
  padding: 28px;
  flex: 1;
  overflow: hidden;
}

/* Home tab */
.dash-home {
  max-width: 640px;
  margin: 12px auto 0;
}
.dash-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(31,138,91,0.10);
  color: #1F8A5B;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.003em;
  margin-bottom: 18px;
}
.dash-home-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1F8A5B;
  box-shadow: 0 0 0 3px rgba(31,138,91,0.2);
}
.dash-home-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: #0E1F33;
}
.dash-home-title em {
  font-style: italic;
  font-family: "Mona Sans", sans-serif;
  color: #1F5EA0;
  font-weight: 500;
}
.dash-home-body {
  font-size: 16px;
  line-height: 1.55;
  color: #29405E;
  margin: 0 0 28px;
}
.dash-home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-home-card {
  background: #FAFBFD;
  border: 1px solid rgba(15,40,90,0.07);
  border-radius: 14px;
  padding: 14px 16px;
}
.dash-home-card-num {
  font-family: "Mona Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0E1F33;
  line-height: 1;
  margin-bottom: 6px;
}
.dash-home-card-label {
  font-size: 12px;
  color: rgba(14,31,51,0.55);
  line-height: 1.35;
}

/* Sub-tabs (Chats) */
.dash-subtabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(15,40,90,0.07);
  margin-bottom: 14px;
}
.dash-subtab {
  padding: 8px 14px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(14,31,51,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.dash-subtab-on { color: #1F5EA0; }
.dash-subtab-on::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: #1F5EA0;
  border-radius: 1px;
}

.dash-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dash-thread {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(15,40,90,0.06);
  border-radius: 0;
  transition: background .12s ease;
}
.dash-thread:hover { background: rgba(15,40,90,0.025); }
.dash-thread-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #5BA8E8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.dash-thread-avatar img { width: 28px; height: 28px; }
.dash-thread-body { flex: 1; min-width: 0; }
.dash-thread-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0E1F33;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.dash-thread-preview {
  font-size: 12.5px;
  color: rgba(14,31,51,0.55);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.dash-thread-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dash-thread-date {
  font-size: 11.5px;
  color: rgba(14,31,51,0.45);
}
.dash-thread-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E04A4A;
}

/* Files */
.dash-files { display: flex; flex-direction: column; gap: 14px; }
.dash-files-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-files-search {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 10px;
  padding: 9px 12px;
  color: rgba(14,31,51,0.55);
  font-size: 13px;
}
.dash-files-upload {
  background: #1F5EA0;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31,94,160,0.25);
}
.dash-files-header,
.dash-files .dash-file-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 110px 110px 130px 90px;
  gap: 14px;
  align-items: center;
}
.dash-files-header {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(14,31,51,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(15,40,90,0.07);
}
.dash-files-list { display: flex; flex-direction: column; }
.dash-files .dash-file-row {
  padding: 12px;
  border-bottom: 1px solid rgba(15,40,90,0.05);
  font-size: 13px;
  color: #0E1F33;
  transition: background .12s ease;
}
.dash-files .dash-file-row:hover { background: rgba(15,40,90,0.025); }
.dash-fcol-file {
  display: flex; align-items: center; gap: 10px; min-width: 0;
}
.dash-file-name-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.dash-file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 32px;
  border-radius: 4px;
  background: #E04A4A;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.dash-fcol-date,
.dash-fcol-cat,
.dash-fcol-type {
  font-size: 12.5px;
  color: rgba(14,31,51,0.65);
}
.dash-file-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.dash-file-status-uploaded { background: rgba(31,94,160,0.10); color: #1F5EA0; }
.dash-file-status-signed   { background: rgba(31,138,91,0.12); color: #1F8A5B; }

/* Compliance */
.dash-compliance {
  display: flex;
  flex-direction: column;
}
.dash-comp-row {
  display: flex;
  gap: 18px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(15,40,90,0.05);
  align-items: center;
  transition: background .12s ease;
}
.dash-comp-row:hover { background: rgba(15,40,90,0.025); }
.dash-comp-date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  padding: 6px 8px;
  background: #FAFBFD;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 10px;
}
.dash-comp-day {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #0E1F33;
}
.dash-comp-month {
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(14,31,51,0.55);
  margin-top: 2px;
}
.dash-comp-body { flex: 1; min-width: 0; }
.dash-comp-title {
  font-size: 14px;
  font-weight: 600;
  color: #0E1F33;
  margin-bottom: 2px;
}
.dash-comp-detail {
  font-size: 12.5px;
  color: rgba(14,31,51,0.55);
  line-height: 1.4;
}
.dash-comp-status {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.003em;
  flex-shrink: 0;
}
.dash-comp-status-on-track { background: rgba(31,138,91,0.12); color: #1F8A5B; }
.dash-comp-status-scheduled { background: rgba(31,94,160,0.12); color: #1F5EA0; }
.dash-comp-status-pending-data { background: rgba(229,182,90,0.18); color: #9A6F1A; }
.dash-comp-status-not-started { background: rgba(15,40,90,0.08); color: rgba(14,31,51,0.6); }

/* Placeholder */
.dash-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: rgba(14,31,51,0.5);
}
.dash-placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(15,40,90,0.05);
  color: rgba(14,31,51,0.4);
  margin-bottom: 14px;
}
.dash-placeholder-title {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0E1F33;
  margin-bottom: 6px;
}
.dash-placeholder-body {
  font-size: 14px;
  color: rgba(14,31,51,0.55);
}

@media (max-width: 760px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}

/* ─── PRICING (Malaysian Sdn. Bhd. incorporation) ──────── */
.pricing-inc {
  position: relative;
  padding: 120px 28px 120px;
  background: #FAFBFD;
  color: #0E1F33;
}
.pricing-inc-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.pricing-inc-head {
  margin-bottom: 56px;
}
.pricing-inc-title {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #0E1F33;
  margin: 0 0 28px;
}
.pricing-inc-title em {
  font-style: italic;
  font-weight: 500;
}
.pricing-inc-lead {
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(14,31,51,0.72);
  margin: 0;
}

.pricing-inc-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
  gap: 20px;
}
.pricing-inc-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(15,40,90,0.06);
  border-radius: 999px;
  padding: 5px;
}
.pricing-inc-toggle-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: #ffffff;
  border-radius: 999px;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 2px 8px rgba(15,40,90,0.10);
  z-index: 0;
}
.pricing-inc-toggle-locals     { transform: translateX(0); }
.pricing-inc-toggle-foreigners { transform: translateX(100%); }
.pricing-inc-toggle-opt {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(14,31,51,0.65);
  padding: 10px 28px;
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .2s ease;
}
.pricing-inc-toggle-opt.on { color: #0E1F33; font-weight: 600; }

.pricing-inc-currency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pricing-inc-currency-i {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(14,31,51,0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Mona Sans", sans-serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(14,31,51,0.65);
}
.pricing-inc-currency-sel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(14,31,51,0.20);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0E1F33;
  cursor: pointer;
  background: #fff;
}

/* ─── Comparison table ─────────────────────────────────── */
.cmp-table {
  display: flex;
  flex-direction: column;
}

/* Header row with the two plan cards. Sticky so it stays visible while scrolling.
   The wrapper itself is transparent so the comparison rows scroll BEHIND the plan
   cards — only the cards themselves remain opaque. */
.cmp-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 320px) minmax(280px, 320px);
  gap: 24px;
  position: sticky;
  top: 90px;
  padding-bottom: 16px;
  background: transparent;
  z-index: 4;
  pointer-events: none;
}
.cmp-header > * { pointer-events: auto; }
.cmp-header-spacer { /* empty left column */ }

.cmp-header-plan { display: flex; }

/* Plan card */
.inc-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(15,40,90,0.05);
}
.inc-card-featured {
  border-color: rgba(31,94,160,0.30);
  box-shadow: 0 18px 46px rgba(31,94,160,0.12);
}
.inc-card-name {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0E1F33;
}
.inc-card-desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(14,31,51,0.62);
}
.inc-card-price-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.inc-card-was {
  font-size: 14px;
  color: rgba(14,31,51,0.45);
}
.inc-card-was s { text-decoration-thickness: 1.2px; }
.inc-card-from {
  font-size: 13px;
  color: rgba(14,31,51,0.55);
}
.inc-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.inc-card-currency {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(14,31,51,0.65);
}
.inc-card-amount {
  font-family: "Mona Sans", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #0E1F33;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.inc-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0E1F33;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(14,31,51,0.22);
  transition: background .2s ease, transform .2s ease;
}
.inc-card-cta:hover { background: #1F5EA0; transform: translateY(-1px); }

/* Comparison sections */
.cmp-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 320px) minmax(280px, 320px);
  gap: 24px;
  padding: 36px 0 24px;
  border-top: 1px solid rgba(15,40,90,0.10);
}
.cmp-section:first-of-type { border-top: 0; }
.cmp-section-head { padding: 8px 0; }
.cmp-section-title {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0E1F33;
}
.cmp-section-sub {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(14,31,51,0.55);
  max-width: 320px;
}
.cmp-section-rows {
  grid-column: 1 / -1;
  display: contents;
}
.cmp-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 320px) minmax(280px, 320px);
  gap: 24px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed rgba(15,40,90,0.08);
  grid-column: 1 / -1;
}
.cmp-row-label {
  font-size: 14.5px;
  line-height: 1.45;
  color: #0E1F33;
  font-weight: 500;
}
.cmp-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0E1F33;
}

@media (max-width: 1000px) {
  .pricing-inc { padding: 80px 20px; }
  .cmp-header,
  .cmp-section,
  .cmp-row {
    grid-template-columns: 1fr 1fr;
  }
  .cmp-header { position: static; }
  .cmp-header-spacer { display: none; }
  .cmp-row-label {
    grid-column: 1 / -1;
    font-weight: 600;
    margin-bottom: -6px;
  }
  .cmp-section-head { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .cmp-header { grid-template-columns: 1fr; gap: 14px; }
  .cmp-section { grid-template-columns: 1fr; }
  .cmp-row { grid-template-columns: 1fr 1fr 1fr; }
  .cmp-row .cmp-cell { justify-content: flex-start; }
}

/* ─── Old pricing styles (no longer mounted — kept inert) */
  position: relative;
  padding: 80px 28px 140px;
  background: #ffffff;
  color: #0E1F33;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing .section-eyebrow,
.pricing .section-title,
.pricing .section-subtitle {
  width: 100%;
}

.billing-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 8px 0 56px;
  background: #F0F4F9;
  border: 1px solid rgba(15,40,90,0.07);
  border-radius: 999px;
  padding: 5px;
  gap: 0;
  min-width: 360px;
}

.billing-toggle-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: #0E1F33;
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
  box-shadow: 0 4px 14px rgba(14,31,51,0.25);
  z-index: 0;
}
.billing-toggle-monthly { transform: translateX(0); }
.billing-toggle-yearly { transform: translateX(100%); }

.billing-toggle-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(14,31,51,0.6);
  cursor: pointer;
  transition: color .25s ease;
  white-space: nowrap;
}
.billing-toggle-opt.on { color: white; }
.billing-save {
  font-size: 11.5px;
  background: rgba(255,255,255,0.15);
  color: inherit;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.billing-toggle-opt:not(.on) .billing-save {
  background: rgba(31,94,160,0.10);
  color: #1F5EA0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

.plan-card {
  background: #ffffff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
  box-shadow: 0 4px 16px rgba(15,40,90,0.04);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,40,90,0.10);
}
.plan-card-featured {
  border-color: rgba(31,94,160,0.4);
  box-shadow:
    0 4px 16px rgba(15,40,90,0.04),
    0 0 0 1px rgba(31,94,160,0.25),
    0 20px 50px rgba(31,94,160,0.12);
  align-self: stretch;
  margin: -28px 0;
}
.plan-card-featured .plan-card-photo {
  height: 300px;
}
.plan-card-featured .plan-card-body {
  padding-top: 34px;
  padding-bottom: 34px;
}
.plan-card-featured:hover {
  box-shadow:
    0 18px 50px rgba(15,40,90,0.10),
    0 0 0 1px rgba(31,94,160,0.35),
    0 24px 60px rgba(31,94,160,0.18);
}
.plan-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 5px 12px;
  background: rgba(14,31,51,0.92);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.plan-card-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #E9F0F8;
}
.plan-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.plan-card:hover .plan-card-photo img {
  transform: scale(1.04);
}

.plan-card-body {
  padding: 26px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-card-name {
  font-family: "Mona Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #0E1F33;
  margin-bottom: 4px;
}
.plan-card-tag {
  font-size: 14px;
  color: rgba(14,31,51,0.6);
  margin-bottom: 22px;
  line-height: 1.4;
}
.plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.plan-card-currency {
  font-size: 18px;
  color: rgba(14,31,51,0.6);
  font-weight: 500;
}
.plan-card-amount {
  font-family: "Mona Sans", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #0E1F33;
}
.plan-card-period {
  font-size: 13.5px;
  color: rgba(14,31,51,0.55);
  margin-left: 6px;
}
.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #29405E;
}
.plan-card-features svg {
  color: #1F8A5B;
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid rgba(15,40,90,0.15);
  color: #0E1F33;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.plan-card-cta:hover {
  background: #F5FAFF;
  border-color: #5BA8E8;
  color: #1F5EA0;
}
.plan-card-cta-primary {
  background: #0E1F33;
  color: white;
  border-color: #0E1F33;
  box-shadow: 0 6px 18px rgba(14,31,51,0.28);
}
.plan-card-cta-primary:hover {
  background: #1F5EA0;
  border-color: #1F5EA0;
  color: white;
  box-shadow: 0 10px 24px rgba(31,94,160,0.32);
}

/* ─── FOOTER (black bubble) ────────────────────────────── */
.footer-section {
  background: #ffffff;
  padding: 0 28px 32px;
}
.footer-bubble {
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 36px;
  padding: 68px 56px 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(91,168,232,0.18) 0%, rgba(91,168,232,0) 70%),
    linear-gradient(180deg, #0E0E0E 0%, #060606 100%);
}

.footer-bubble-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.footer-bubble-headline { max-width: 600px; }
.footer-eyebrow {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.footer-headline {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: white;
  margin: 0;
}
.footer-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .15s ease, box-shadow .15s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 28px rgba(37,211,102,0.35);
  white-space: nowrap;
}
.footer-wa-cta:hover {
  background: #1FB855;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 14px 34px rgba(37,211,102,0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bubble { padding: 48px 28px 36px; }
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col-brand .footer-brand {
  font-family: "Mona Sans", sans-serif;
  font-size: 28px;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.footer-col-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-col-title {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li, .footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.5;
  transition: color .15s ease;
}
.footer-col a:hover { color: white; }

.footer-fine {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .15s ease;
}
.footer-legal a:hover { color: white; }
.footer-legal span { color: rgba(255,255,255,0.4); }

/* ─── Reports tab ──────────────────────────────────────── */
.dash-reports { display: flex; flex-direction: column; gap: 18px; }
.dash-rep-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: rgba(15,40,90,0.05);
  border-radius: 999px;
  align-self: flex-start;
}
.dash-rep-tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: rgba(14,31,51,0.65);
  padding: 6px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.dash-rep-tab.on {
  background: #ffffff;
  color: #0E1F33;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(15,40,90,0.10);
}
.dash-rep-month {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0E1F33;
  cursor: pointer;
}
.dash-rep-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dash-rep-card {
  background: #ffffff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 12px;
  padding: 14px;
}
.dash-rep-card-l {
  font-size: 11px;
  font-weight: 600;
  color: rgba(14,31,51,0.55);
  margin-bottom: 8px;
}
.dash-rep-card-v {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #0E1F33;
  font-variant-numeric: tabular-nums;
}
.dash-rep-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-rep-chart {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 12px;
  padding: 14px;
}
.dash-rep-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.dash-rep-chart-head > div:first-child { flex: 1; min-width: 0; }
.dash-rep-chart-l { font-size: 11px; font-weight: 600; color: rgba(14,31,51,0.55); margin-bottom: 4px; white-space: nowrap; }
.dash-rep-chart-v {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #0E1F33;
}
.dash-rep-delta {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.dash-rep-delta-up { color: #1F8A5B; background: rgba(31,138,91,0.10); }
.dash-rep-svg { width: 100%; height: 80px; display: block; }

/* ─── Company tab ──────────────────────────────────────── */
.dash-company { display: flex; flex-direction: column; gap: 18px; }
.dash-co-tabs {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: rgba(15,40,90,0.05);
  border-radius: 999px;
  align-self: flex-start;
}
.dash-co-tab {
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(14,31,51,0.65);
  padding: 6px 16px;
  cursor: pointer;
}
.dash-co-tab.on {
  background: #ffffff;
  color: #0E1F33;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(15,40,90,0.10);
}
.dash-co-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(14,31,51,0.45);
  text-transform: uppercase;
}
.dash-co-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dash-co-doc {
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 12px;
  padding: 10px;
  align-items: center;
}
.dash-co-doc-thumb {
  width: 36px;
  height: 46px;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.15);
  border-radius: 3px;
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  align-items: flex-start;
}
.dash-co-doc-thumb-lines {
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(15,40,90,0.18) 0,
    rgba(15,40,90,0.18) 1px,
    transparent 1px,
    transparent 4px
  );
}
.dash-co-doc-body { min-width: 0; flex: 1; }
.dash-co-doc-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #0E1F33;
  margin-bottom: 4px;
}
.dash-co-doc-dl {
  font-size: 11.5px;
  color: #1F5EA0;
  font-weight: 600;
  cursor: pointer;
}
.dash-co-fields {
  display: flex;
  flex-direction: column;
}
.dash-co-field {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,40,90,0.06);
  align-items: center;
}
.dash-co-field-l {
  font-size: 12.5px;
  color: rgba(14,31,51,0.55);
}
.dash-co-field-v {
  font-size: 13px;
  font-weight: 500;
  color: #0E1F33;
}
.dash-co-field-link { color: #1F5EA0; }

/* ─── Invoices tab ─────────────────────────────────────── */
.dash-invoices { display: flex; flex-direction: column; gap: 14px; }
.dash-inv-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(31,94,160,0.06);
  border: 1px solid rgba(31,94,160,0.18);
  color: #1F5EA0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
}
.dash-inv-banner a { color: #1F5EA0; font-weight: 600; text-decoration: underline; cursor: pointer; }
.dash-inv-empty {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 14px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.dash-inv-illu svg { width: 110px; height: auto; }
.dash-inv-empty-body {
  font-size: 13px;
  color: rgba(14,31,51,0.75);
  max-width: 320px;
}
.dash-inv-cta {
  background: #1F5EA0;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(31,94,160,0.30);
}
.dash-inv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-inv-feat {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.dash-inv-feat-icon { color: #0E1F33; }
.dash-inv-feat-t {
  font-size: 12px;
  color: rgba(14,31,51,0.75);
  line-height: 1.4;
}

/* ─── Mailbox tab ──────────────────────────────────────── */
.dash-mailbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 0 0;
  text-align: center;
}
.dash-mb-illu svg { width: 130px; height: auto; }
.dash-mb-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #0E1F33;
}
.dash-mb-body {
  font-size: 13px;
  color: rgba(14,31,51,0.65);
  max-width: 360px;
}
.dash-mb-action {
  margin-top: 10px;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
}
.dash-mb-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(31,94,160,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dash-mb-action-body { flex: 1; min-width: 0; }
.dash-mb-action-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #0E1F33;
  margin-bottom: 2px;
}
.dash-mb-action-sub {
  font-size: 12px;
  color: rgba(14,31,51,0.55);
}
.dash-mb-action-cta {
  background: transparent;
  border: 1px solid rgba(15,40,90,0.20);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  color: #1F5EA0;
  cursor: pointer;
}

/* ─── BENTO: WHAT WE OFFER ─────────────────────────────── */
.bento-section {
  position: relative;
  padding: 110px 28px 110px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,168,232,0.12) 0%, rgba(91,168,232,0) 60%),
    linear-gradient(180deg, #0B1A2E 0%, #102A4B 45%, #0B1A2E 100%);
  overflow: hidden;
  isolation: isolate;
}
.bento-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(31,94,160,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(91,168,232,0.18) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.bento-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bento-head {
  text-align: center;
  margin-bottom: 56px;
}
.bento-head .section-eyebrow {
  margin-bottom: 16px;
  color: rgba(180,210,240,0.85);
}
.bento-head .section-title {
  color: #ffffff;
}
.bento-head .section-title em {
  color: #8FC4F0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 18px;
}
.bento-block {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 60px rgba(5,15,35,0.45),
    0 8px 20px rgba(5,15,35,0.30);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
}
.bento-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 32px 70px rgba(5,15,35,0.55),
    0 10px 24px rgba(5,15,35,0.35);
}
.bento-block-wide,
.bento-block-narrow { grid-column: span 1; }

/* Hover reveal */
.bento-block-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0B1A2E 0%, #14315A 100%);
  color: #ffffff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s cubic-bezier(.2,.7,.3,1), transform .25s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.bento-block:hover .bento-block-hover {
  opacity: 1;
  transform: translateY(0);
}
.bento-block-hover-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
}
.bento-block-hover-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(220,232,248,0.88);
  text-wrap: pretty;
}
.bento-block-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(91,168,232,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(31,94,160,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.bento-block-hover > * { position: relative; z-index: 1; }

.bento-block-mock {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFBFD 0%, #F2F5FA 100%);
  border-bottom: 1px solid rgba(15,40,90,0.06);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-block-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: #fff;
}
.bento-block-bullet {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(180deg, #5BA8E8, #1F5EA0);
  box-shadow: 0 0 0 3px rgba(91,168,232,0.18);
  flex-shrink: 0;
}
.bento-block-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: #0E1F33;
  letter-spacing: -0.02em;
}

.bento-mock {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}

/* — Bookkeeping ledger + bars — */
.bento-mock-books {
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.bento-mock-ledger {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 12px;
  padding: 8px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(15,40,90,0.04);
  font-size: 10.5px;
}
.bento-ledger-head {
  display: grid;
  grid-template-columns: 56px 1fr 64px 84px;
  gap: 8px;
  padding: 4px 4px 6px;
  border-bottom: 1px solid rgba(15,40,90,0.08);
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(14,31,51,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bento-ledger-row {
  display: grid;
  grid-template-columns: 56px 1fr 64px 84px;
  gap: 8px;
  padding: 4px;
  color: #0E1F33;
  font-size: 10.5px;
  align-items: center;
}
.bento-ledger-row + .bento-ledger-row { border-top: 1px dashed rgba(15,40,90,0.05); }
.bento-ledger-v { font-weight: 500; }
.bento-ledger-c { color: rgba(14,31,51,0.55); font-size: 10px; }
.bento-ledger-n { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.bento-ledger-in { color: #1F8A5B; }
.bento-ledger-out { color: rgba(14,31,51,0.7); }
.bento-mock-chart {
  height: 44px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 4px;
}
.bento-mock-chart span {
  flex: 1;
  background: linear-gradient(180deg, #5BA8E8, #1F5EA0);
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  opacity: 0.85;
}
.bento-mock-chart span:nth-child(odd) { opacity: 0.55; }

/* — Setup: certificate — */
.bento-mock-setup { align-items: center; justify-content: center; padding: 6px; }
.bento-cert {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1.35 / 1;
  background: #FFFDF8;
  border: 1px solid rgba(154,111,26,0.32);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
  box-shadow: 0 6px 18px rgba(15,40,90,0.08);
  color: #5A4A2A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-cert-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid #C9A24B;
}
.bento-cert-tl { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.bento-cert-tr { top: 6px; right: 6px; border-left: 0; border-bottom: 0; }
.bento-cert-bl { bottom: 6px; left: 6px; border-right: 0; border-top: 0; }
.bento-cert-br { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.bento-cert-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bento-cert-crest { color: #9A6F1A; }
.bento-cert-org {
  font-size: 8.5px;
  font-weight: 600;
  color: #9A6F1A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bento-cert-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #2F2412;
  margin-top: 2px;
}
.bento-cert-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.bento-cert-lines span {
  height: 4px;
  background: rgba(90,74,42,0.18);
  border-radius: 2px;
}
.bento-cert-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bento-cert-co {
  font-family: "Mona Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #2F2412;
}
.bento-cert-no {
  font-size: 9.5px;
  letter-spacing: 0.04em;
  color: rgba(90,74,42,0.7);
}
.bento-cert-seal {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: #C9A24B;
  opacity: 0.85;
  transform: rotate(-12deg);
}

/* — Tax form — */
.bento-mock-tax {
  align-items: center;
  justify-content: center;
}
.bento-form {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  box-shadow: 0 4px 12px rgba(15,40,90,0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15,40,90,0.07);
}
.bento-form-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1F5EA0;
}
.bento-form-yr {
  font-size: 9.5px;
  letter-spacing: 0.04em;
  color: rgba(14,31,51,0.55);
}
.bento-form-fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento-form-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(15,40,90,0.06);
  font-size: 11px;
  color: rgba(14,31,51,0.7);
}
.bento-form-field:last-child { border-bottom: 0; }
.bento-form-field b {
  color: #0E1F33;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
/* Add bottom space inside the form so the FILED stamp has its own row. */
.bento-form { padding-bottom: 36px; }
.bento-form-stamp {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-family: "Mona Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #1F8A5B;
  border: 2px solid #1F8A5B;
  padding: 2px 8px;
  border-radius: 4px;
  transform: rotate(-8deg);
  opacity: 0.9;
  background: #fff;
}

/* — Compliance: mini calendar — */
.bento-mock-cal { flex-direction: column; gap: 10px; }
.bento-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  color: #0E1F33;
  font-weight: 600;
  font-size: 12px;
}
.bento-cal-arrow { color: rgba(14,31,51,0.4); }
.bento-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  flex: 1;
}
.bento-cal-dow {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(14,31,51,0.4);
  padding-bottom: 2px;
}
.bento-cal-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(14,31,51,0.55);
  background: rgba(15,40,90,0.04);
}
.bento-cal-day-mark { color: #fff; font-weight: 600; }
.bento-cal-day-ar { background: #1F5EA0; }
.bento-cal-day-agm { background: #1F8A5B; }
.bento-cal-day-tax { background: #E5B65A; color: #5A4118; }

/* — Payroll — */
.bento-mock-payroll {
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.bento-pay-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(15,40,90,0.07);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(15,40,90,0.03);
}
.bento-pay-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.bento-pay-body { flex: 1; min-width: 0; }
.bento-pay-name { font-size: 11.5px; font-weight: 600; color: #0E1F33; }
.bento-pay-role { font-size: 10px; color: rgba(14,31,51,0.55); margin-top: 1px; }
.bento-pay-amt {
  font-size: 11px;
  font-weight: 700;
  color: #0E1F33;
  font-variant-numeric: tabular-nums;
}
.bento-pay-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.bento-pay-tags span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(31,94,160,0.08);
  color: #1F5EA0;
}

/* — Consulting: revenue line chart — */
.bento-mock-consult {
  flex-direction: column;
  gap: 8px;
  padding: 8px 4px;
}
.bento-consult-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 4px;
}
.bento-consult-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,31,51,0.5);
  font-weight: 600;
}
.bento-consult-value {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: #0E1F33;
  margin-top: 2px;
}
.bento-consult-delta {
  font-size: 11px;
  font-weight: 700;
  color: #1F8A5B;
  background: rgba(31,138,91,0.10);
  padding: 3px 8px;
  border-radius: 999px;
}
.bento-consult-chart {
  width: 100%;
  height: 110px;
  display: block;
}
.bento-consult-axis {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 9.5px;
  color: rgba(14,31,51,0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* — Financial planning: donut + legend — */
.bento-mock-fp {
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.bento-fp-donut {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}
.bento-fp-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.bento-fp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #0E1F33;
}
.bento-fp-swatch {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.bento-fp-label {
  flex: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bento-fp-pct {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(14,31,51,0.7);
}

/* — Banking card — (legacy, not currently used) */
.bento-mock-bank {
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.bento-card {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1.586 / 1;
  background:
    radial-gradient(circle at 0% 0%, rgba(91,168,232,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0E1F33 0%, #1F5EA0 100%);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 10px 24px rgba(15,40,90,0.28);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bento-card-chip {
  width: 26px; height: 19px;
  border-radius: 4px;
  background: linear-gradient(135deg, #E5C46A 0%, #C9A24B 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.bento-card-bank {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.bento-card-num {
  font-family: "Mona Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-top: auto;
}
.bento-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.bento-card-label {
  font-size: 7px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.bento-card-co {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 2px;
}
.bento-card-brand {
  font-family: "Mona Sans", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (max-width: 1000px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
  .bento-block-wide, .bento-block-narrow { grid-column: span 1; }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ─── TWEAKS PANEL OVERRIDES ──────────────────────────── */
[data-tweaks-panel] {
  font-family: "Mona Sans", sans-serif;
}

@media (max-width: 900px) {
  .chat-body { grid-template-columns: 1fr; }
  .chat-sidebar { display: none; }
  .hero-display { font-size: 52px; white-space: normal; }
  .nav-links { display: none; }
  .manifesto { padding: 0 24px 60px; margin-top: -18vh; }
  .pricing { padding: 60px 24px 100px; }
  .plan-card-featured { margin: 0; }
  .footer-bubble-top { flex-direction: column; align-items: flex-start; }
}



/* ─── SUB PAGES (services + legal) ───────────────────────── */
.subpage {
  background: #FAFBFD;
  color: #0E1F33;
  min-height: 100vh;
  font-family: "Mona Sans", sans-serif;
}
.subpage-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250,251,253,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,40,90,0.06);
}
.subpage-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
}
.subpage-nav-logo { display: inline-flex; align-items: center; }
.subpage-nav-logo img { height: 28px; width: auto; display: block; }
.subpage-nav-links {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
}
.subpage-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: #1A2B45;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease;
}
.subpage-nav-links a:hover { background: rgba(15,40,90,0.06); }
.subpage-nav-links a.active { background: #0E1F33; color: #fff; }
.subpage-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0E1F33;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease;
}
.subpage-nav-cta:hover { background: #1F5EA0; }

/* hero */
.subpage-hero {
  padding: 80px 28px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(91,168,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(31,94,160,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-hero > * { position: relative; }
.subpage-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1F5EA0;
  margin-bottom: 18px;
  padding: 5px 12px;
  background: rgba(31,94,160,0.10);
  border-radius: 999px;
}
.subpage-h1 {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 980px;
  margin: 0 auto 22px;
  color: #0E1F33;
  text-wrap: balance;
}
.subpage-h1 em { font-style: italic; font-weight: 500; }
.subpage-lead {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(14,31,51,0.72);
  text-wrap: pretty;
}
.subpage-hero-ctas {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.subpage-cta-primary,
.subpage-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.subpage-cta-primary {
  background: #0E1F33;
  color: #fff;
  box-shadow: 0 8px 24px rgba(14,31,51,0.22);
}
.subpage-cta-primary:hover { background: #1F5EA0; transform: translateY(-1px); }
.subpage-cta-secondary {
  background: rgba(15,40,90,0.06);
  color: #0E1F33;
}
.subpage-cta-secondary:hover { background: rgba(15,40,90,0.10); }

/* section base */
.subpage-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px;
}
.subpage-section-head { margin-bottom: 48px; max-width: 720px; }
.subpage-h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 16px;
  color: #0E1F33;
  text-wrap: balance;
}
.subpage-h2 em { font-style: italic; font-weight: 500; }
.subpage-section-lead {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(14,31,51,0.7);
  margin: 0;
}

/* feature grid */
.subpage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.subpage-feature {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.subpage-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,40,90,0.06);
}
.subpage-feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(31,94,160,0.10);
  color: #1F5EA0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.subpage-feature-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: #0E1F33;
}
.subpage-feature-body {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(14,31,51,0.65);
}

/* process steps */
.subpage-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.subpage-step {
  background: linear-gradient(180deg, #ffffff 0%, #F4F7FB 100%);
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.subpage-step-num {
  font-family: "Mona Sans", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.04em;
  color: #1F5EA0;
  line-height: 1;
}
.subpage-step-title {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #0E1F33;
}
.subpage-step-body {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(14,31,51,0.68);
}

/* pricing teaser card */
.subpage-pricing-teaser {
  background: linear-gradient(135deg, #0B1A2E 0%, #14315A 100%);
  border-radius: 26px;
  padding: 56px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.subpage-pricing-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(91,168,232,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-pricing-teaser > * { position: relative; }
.subpage-pricing-teaser .subpage-h2 { color: #fff; margin-bottom: 12px; }
.subpage-pricing-teaser p { color: rgba(220,232,248,0.85); margin: 0 0 24px; font-size: 16px; line-height: 1.5; }
.subpage-pricing-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subpage-pricing-card-from { font-size: 13px; color: rgba(220,232,248,0.7); }
.subpage-pricing-card-price {
  font-family: "Mona Sans", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.subpage-pricing-card-price .currency { font-size: 18px; color: rgba(220,232,248,0.85); margin-right: 4px; font-weight: 500; }
.subpage-pricing-card-note { font-size: 13px; color: rgba(220,232,248,0.7); margin: 6px 0 18px; }

/* FAQ */
.subpage-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
}
.subpage-faq-item {
  background: #fff;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.subpage-faq-item[open] { border-color: rgba(31,94,160,0.30); }
.subpage-faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #0E1F33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.subpage-faq-item summary::-webkit-details-marker { display: none; }
.subpage-faq-item summary::after {
  content: "+";
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(14,31,51,0.5);
  transition: transform .2s ease;
}
.subpage-faq-item[open] summary::after { content: "−"; }
.subpage-faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(14,31,51,0.72);
}

/* closing CTA */
.subpage-closing {
  text-align: center;
  padding: 80px 28px 120px;
}
.subpage-closing .subpage-h2 { margin: 0 auto 16px; max-width: 720px; }
.subpage-closing p { color: rgba(14,31,51,0.7); max-width: 540px; margin: 0 auto 28px; font-size: 16px; }

/* small footer for subpages */
.subpage-foot {
  background: #0B1A2E;
  color: rgba(220,232,248,0.7);
  padding: 60px 28px 40px;
}
.subpage-foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.subpage-foot-brand {
  font-family: "Mona Sans", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 14px;
}
.subpage-foot p { font-size: 13.5px; line-height: 1.5; margin: 0; }
.subpage-foot h4 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 14px; }
.subpage-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.subpage-foot ul a { color: rgba(220,232,248,0.7); text-decoration: none; transition: color .15s ease; }
.subpage-foot ul a:hover { color: #fff; }
.subpage-foot-fine {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(220,232,248,0.5);
}
.subpage-foot-fine a { color: rgba(220,232,248,0.5); text-decoration: none; margin-right: 18px; }
.subpage-foot-fine a:hover { color: #fff; }

/* legal-page (prose) */
.legal-page .subpage-h1 { font-size: clamp(36px, 5vw, 60px); }
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px 80px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(14,31,51,0.82);
}
.legal-prose h2 {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #0E1F33;
  margin: 40px 0 10px;
}
.legal-prose h3 { font-size: 16px; font-weight: 600; color: #0E1F33; margin: 24px 0 8px; }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { padding-left: 22px; margin: 0 0 16px; }
.legal-prose ul li { margin-bottom: 6px; }
.legal-prose strong { color: #0E1F33; }
.legal-prose a { color: #1F5EA0; }
.legal-meta {
  font-size: 13px;
  color: rgba(14,31,51,0.55);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .subpage-features,
  .subpage-process { grid-template-columns: 1fr; }
  .subpage-pricing-teaser { grid-template-columns: 1fr; padding: 36px 28px; }
  .subpage-foot-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .subpage-nav-links { display: none; }
  .subpage-foot-inner { grid-template-columns: 1fr; }
}


/* ─── NAV DROPDOWN ─────────────────────────────────────── */
.nav-dropdown,
.subpage-nav-dropdown {
  position: relative;
}
.nav-drop-trigger,
.subpage-nav-droptrigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}
.nav-drop-trigger svg,
.subpage-nav-droptrigger svg {
  width: 10px;
  height: 10px;
  transition: transform .2s ease;
  opacity: 0.55;
}
.nav-dropdown:hover .nav-drop-trigger svg,
.subpage-nav-dropdown:hover .subpage-nav-droptrigger svg,
.nav-dropdown:focus-within .nav-drop-trigger svg,
.subpage-nav-dropdown:focus-within .subpage-nav-droptrigger svg {
  transform: rotate(180deg);
}

.nav-drop-menu,
.subpage-nav-dropmenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -4px);
  min-width: 180px;
  background: #ffffff;
  border: 1px solid rgba(15,40,90,0.10);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15,40,90,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu,
.subpage-nav-dropdown:hover .subpage-nav-dropmenu,
.subpage-nav-dropdown:focus-within .subpage-nav-dropmenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
/* Bridge the gap so the menu doesn't close as the cursor crosses it. */
.nav-drop-menu::before,
.subpage-nav-dropmenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-drop-menu a,
.subpage-nav-dropmenu a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
  color: #1A2B45;
  text-decoration: none;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.nav-drop-menu a:hover,
.subpage-nav-dropmenu a:hover {
  background: rgba(15,40,90,0.06);
}
.nav-drop-menu a.active,
.subpage-nav-dropmenu a.active {
  background: #0E1F33;
  color: #fff;
}

/* ─── HOME FAQ ─────────────────────────────────────────── */
.home-faq {
  position: relative;
  padding: 100px 28px 80px;
  background: #ffffff;
}
.home-faq-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
}
.home-faq-head .section-eyebrow {
  margin-bottom: 16px;
}
.home-faq-head .section-title {
  text-align: left;
  font-size: clamp(32px, 4.6vw, 56px);
  margin: 0 0 16px;
}
.home-faq-head .section-title em {
  font-style: italic;
  color: #1F5EA0;
}
.home-faq-sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(14,31,51,0.7);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.home-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #0E1F33;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.home-faq-cta:hover { background: #1F5EA0; transform: translateY(-1px); }
.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-faq-item {
  background: #FAFBFD;
  border: 1px solid rgba(15,40,90,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.home-faq-item[open] { border-color: rgba(31,94,160,0.30); background: #fff; }
.home-faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #0E1F33;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item summary::after {
  content: "+";
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(14,31,51,0.5);
}
.home-faq-item[open] summary::after { content: "−"; }
.home-faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(14,31,51,0.72);
}

@media (max-width: 900px) {
  .home-faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── SERVICE PAGE PORTRAIT SECTION ─────────────── */
.subpage-portrait {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 28px 20px;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: center;
}
.subpage-portrait.reverse {
  grid-template-columns: 1fr minmax(280px, 420px);
}
.subpage-portrait.reverse .subpage-portrait-frame { grid-column: 2; grid-row: 1; }
.subpage-portrait.reverse .subpage-portrait-body  { grid-column: 1; grid-row: 1; }
.subpage-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #0E1F33;
  box-shadow: 0 24px 60px rgba(15,40,90,0.18);
}
.subpage-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,46,0) 55%, rgba(11,26,46,0.45) 100%);
  pointer-events: none;
}
.subpage-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.subpage-portrait-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0E1F33;
  letter-spacing: 0.02em;
}
.subpage-portrait-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1F8A5B;
  box-shadow: 0 0 0 3px rgba(31,138,91,0.20);
}
.subpage-portrait-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1F5EA0;
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(31,94,160,0.10);
  border-radius: 999px;
}
.subpage-portrait-h {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: #0E1F33;
  margin: 0 0 18px;
  text-wrap: balance;
}
.subpage-portrait-h em { font-style: italic; font-weight: 500; }
.subpage-portrait-body p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(14,31,51,0.72);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.subpage-portrait-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,40,90,0.10);
  margin-top: 20px;
}
.subpage-portrait-sig-name {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  color: #0E1F33;
  font-size: 15px;
}
.subpage-portrait-sig-role {
  font-size: 13px;
  color: rgba(14,31,51,0.6);
}
@media (max-width: 800px) {
  .subpage-portrait,
  .subpage-portrait.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .subpage-portrait.reverse .subpage-portrait-frame,
  .subpage-portrait.reverse .subpage-portrait-body { grid-column: 1; }
}
.subpage-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0B1A2E 0%, #14315A 100%);
  border-radius: 26px;
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.subpage-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 90% 20%, rgba(91,168,232,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.subpage-spotlight > * { position: relative; }
.subpage-spotlight .subpage-h2 { color: #fff; margin-bottom: 12px; }
.subpage-spotlight p { color: rgba(220,232,248,0.85); margin: 0 0 24px; font-size: 16px; line-height: 1.55; }
.subpage-spotlight-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.subpage-spotlight-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(220,232,248,0.7);
}
.subpage-spotlight-card-h {
  font-family: "Mona Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.subpage-spotlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(220,232,248,0.88);
}
.subpage-spotlight-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.subpage-spotlight-card li::before {
  content: "✓";
  color: #8FC4F0;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .subpage-spotlight { grid-template-columns: 1fr; padding: 36px 28px; }
}
