/* =========================================================
   HK Money Partners — Landing Page
   Brand tokens (from Figma + brief):
   - Main:        #0C4068
   - Blue:        #39ABE2
   - BabyBlue3:   #E1F6FF
   - White:       #FFFFFF
   - Bg:          #FFFEFE
   - CTA Warm:    #E48375
   - Grey text:   #7E7E7E
   - Divider:     #E3E3E3
   - Light grey2: #F0F0F0
   - Dark green:  #273736
   - Green:       #52C41A
   - Shadow Card: -74px 56px 57.8px rgba(12,64,104,0.16)
   - Shadow Soft: 0 1px 18px rgba(0,0,0,0.10)
   - Font:        Rubik
========================================================= */

:root {
  --c-main: #0C4068;
  --c-blue: #39ABE2;
  --c-baby-blue: #E1F6FF;
  --c-white: #FFFFFF;
  --c-bg: #FFFEFE;
  --c-bg-soft: #F7FAFC;
  --c-cta: #E48375;
  --c-cta-hover: #D86F60;
  --c-grey: #7E7E7E;
  --c-grey-light: #B6B6B6;
  --c-divider: #E3E3E3;
  --c-light-grey: #F0F0F0;
  --c-dark-green: #273736;
  --c-green: #52C41A;

  --shadow-card: -32px 28px 50px 0 rgba(12, 64, 104, 0.10);
  --shadow-card-strong: -74px 56px 57.8px 0 rgba(12, 64, 104, 0.16);
  --shadow-soft: 0 1px 18px 0 rgba(0, 0, 0, 0.10);
  --shadow-gentle: 0 0 6.7px 0 rgba(12, 64, 104, 0.15);
  --shadow-premium:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 4px 10px -4px rgba(12, 64, 104, 0.08),
    0 24px 48px -16px rgba(12, 64, 104, 0.18),
    0 48px 80px -28px rgba(12, 64, 104, 0.22);
  --shadow-premium-hero:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 20px -8px rgba(12, 64, 104, 0.10),
    0 36px 72px -24px rgba(12, 64, 104, 0.24),
    0 72px 120px -40px rgba(12, 64, 104, 0.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1200px;
  --container-narrow: 820px;

  --font: 'Rubik', system-ui, -apple-system, 'Segoe UI', Tahoma, Arial, sans-serif;
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .9s cubic-bezier(0.16, 1, 0.3, 1),
    transform .9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  color: var(--c-main);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ---------- TYPE ---------- */
h1, h2, h3 { color: var(--c-main); line-height: 1.15; }
h1 {
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 .accent { color: var(--c-blue); }
h1 .accent-ai {
  color: var(--c-cta);
  font-style: italic;
}
h2.section-title {
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 47px);
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 16px;
}
.section-sub {
  text-align: center;
  color: var(--c-grey);
  font-size: clamp(16px, 1.6vw, 20px);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
h3 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
}
p { color: var(--c-main); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-blue);
  background: var(--c-baby-blue);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 18px 36px; font-size: 18px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--c-cta);
  color: var(--c-white);
  box-shadow: 0 6px 20px rgba(228, 131, 117, 0.35);
}
.btn-primary:hover { background: var(--c-cta-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 254, 254, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-divider);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo img { height: 30px; width: auto; }
.logo-suffix {
  font-size: 14px; font-weight: 500; color: var(--c-main);
  border-inline-start: 1px solid var(--c-divider);
  padding-inline-start: 10px;
}
.header-nav {
  display: flex; gap: 28px;
  font-size: 15px; font-weight: 400;
}
.header-nav a { color: var(--c-main); opacity: 0.8; transition: opacity .15s ease; }
.header-nav a:hover { opacity: 1; }

@media (max-width: 880px) {
  .header-nav { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-block: 110px 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(57, 171, 226, 0.10), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(228, 131, 117, 0.08), transparent 60%),
    linear-gradient(180deg, #f5faff 0%, #ffffff 50%, #fff8f5 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57, 171, 226, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 171, 226, 0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 30%, transparent 90%);
          mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 30%, transparent 90%);
}
.hero-grid-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49.7%, rgba(57, 171, 226, 0.12) 49.85%, rgba(57, 171, 226, 0.12) 50.15%, transparent 50.3%);
  background-size: 220px 220px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 65%);
          mask-image: radial-gradient(circle at 50% 50%, #000 20%, transparent 65%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-glow-1 {
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(57, 171, 226, 0.60), transparent 65%);
  top: -25%; inset-inline-end: -12%;
  animation: heroOrb1 14s ease-in-out infinite;
}
.hero-glow-2 {
  width: 660px; height: 660px;
  background: radial-gradient(circle, rgba(228, 131, 117, 0.45), transparent 65%);
  bottom: -22%; inset-inline-start: -8%;
  animation: heroOrb2 16s ease-in-out infinite;
}
.hero-glow-3 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(105, 178, 255, 0.40), transparent 65%);
  top: 28%; inset-inline-start: 28%;
  animation: heroOrb3 18s ease-in-out infinite;
}
@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%      { transform: translate(-40px, 40px) scale(1.08); opacity: 0.9; }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%      { transform: translate(40px, -30px) scale(1.10); opacity: 0.8; }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%      { transform: translate(20px, -25px) scale(1.06); opacity: 0.6; }
}
.hero .container { position: relative; z-index: 1; }
.hero-centered .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.hero-centered .hero-copy h1,
.hero-centered .hero-copy .lead {
  max-width: 880px;
}
.hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(40px, 6.4vw, 76px);
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.7);
}
.hero-copy .lead {
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--c-main);
  font-weight: 500;
  max-width: 720px;
  margin-bottom: 40px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.85);
}
.hero-copy .lead strong { font-weight: 700; color: var(--c-main); }

/* hero h1 lines for renovated layout */
.h1-line { display: block; }
.h1-line.accent { color: var(--c-blue); }

/* live-status eyebrow */
.eyebrow-live {
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-cta);
  box-shadow: 0 0 0 4px rgba(228, 131, 117, 0.18);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(228, 131, 117, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(228, 131, 117, 0.06); }
}

/* 3 capability pillars under the lead */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-block: 1px solid var(--c-divider);
  width: 100%;
  max-width: 1000px;
}
.pillar {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--c-main);
  line-height: 1.3;
  cursor: pointer;
  text-align: start;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  padding: 18px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-divider);
  background: var(--c-white);
  box-shadow: 0 2px 8px rgba(12, 64, 104, 0.04);
  position: relative;
}
a.pillar { text-decoration: none; }
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue);
  box-shadow: 0 12px 24px rgba(57, 171, 226, 0.18);
}
.pillar:hover .pillar-icon { background: var(--c-blue); color: var(--c-white); }
.pillar:hover .pillar-arrow { color: var(--c-cta); transform: translateY(2px); }
.pillar-num-badge {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-cta);
  background: rgba(228, 131, 117, 0.14);
  padding: 4px 9px;
  border-radius: 99px;
}
.pillar-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--c-baby-blue);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.pillar-icon svg { width: 18px; height: 18px; }
.pillar-content { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; min-width: 0; flex: 1; }
.pillar-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-main);
  line-height: 1.25;
}
.pillar-sub {
  font-size: 13px;
  color: var(--c-main);
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.75;
}
.pillar-arrow {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 14px; height: 14px;
  color: var(--c-blue);
  opacity: 0.45;
  transition: opacity .2s ease, color .2s ease, transform .2s ease;
}
.pillar:hover .pillar-arrow { opacity: 1; transform: translateY(2px); }
.pillar-num-badge {
  /* keep at start */
}

.hero-cta { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.cta-note { font-size: 14px; color: var(--c-grey); }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 520px;
}
.hero-desktop {
  position: relative;
  width: 100%; max-width: 580px;
  z-index: 1;
}
.hero-desktop .browser-frame {
  transform: perspective(1500px) rotateX(3deg) rotateY(-2deg);
  transform-origin: 60% 50%;
}
.browser-frame-sm .browser-bar { padding: 8px 12px; }
.browser-frame-sm .browser-dots span { width: 10px; height: 10px; }
.browser-frame-sm .browser-url { font-size: 11px; padding: 4px 10px; }

.hero-phone {
  position: absolute;
  inset-inline-end: -3%;
  bottom: -8%;
  z-index: 3;
}
.phone-frame {
  position: relative;
  width: 290px;
  border-radius: 38px;
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-card-strong);
  border: 8px solid #1a1a1a;
}
.phone-frame img { width: 100%; height: auto; display: block; }
.phone-hero-overlay {
  width: 200px;
  border-width: 6px;
  border-radius: 30px;
  transform: rotate(-6deg);
  box-shadow: 0 30px 60px rgba(12, 64, 104, 0.30);
}
.hero-visual-badge {
  position: absolute;
  inset-inline-end: -8px;
  top: -10px;
  background: var(--c-white);
  color: var(--c-main);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  z-index: 4;
  transform: rotate(-3deg);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(82, 196, 26, 0.18);
  animation: pulse-dot-green 1.6s infinite;
}
@keyframes pulse-dot-green {
  0%, 100% { box-shadow: 0 0 0 4px rgba(82, 196, 26, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(82, 196, 26, 0.04); }
}

@media (max-width: 980px) {
  .hero-pillars { grid-template-columns: 1fr; gap: 10px; }
  .hero-glow-1 { width: 420px; height: 420px; }
  .hero-glow-2 { width: 360px; height: 360px; }
}
@media (max-width: 560px) {
  .hero { padding-block: 56px 80px; }
  .hero-pillars { grid-template-columns: 1fr; gap: 10px; padding: 14px 0; }
  .pillar { font-size: 13.5px; justify-content: center; }
  .hero-grid-pattern { background-size: 40px 40px; }
}

/* ---------- PROBLEM ---------- */
.problem { padding-block: 100px; background: var(--c-bg-soft); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--c-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}
.pain-num {
  font-weight: 700; font-size: 14px;
  color: var(--c-blue);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pain-card h3 { margin-bottom: 12px; }
.pain-card p { color: var(--c-grey); font-size: 16px; line-height: 1.6; }

@media (max-width: 880px) {
  .pain-grid { grid-template-columns: 1fr; }
  .problem { padding-block: 72px; }
}

/* ---------- SOLUTION ---------- */
.solution { padding-block: 110px; }
.solution-stack { display: flex; flex-direction: column; gap: 32px; }
.solution-card {
  display: grid;
  grid-template-columns: auto 1fr 320px;
  gap: 40px; align-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-strong);
}
.solution-card-accent {
  background: linear-gradient(135deg, #0C4068 0%, #163d63 100%);
  border: none;
}
.solution-card-accent h3,
.solution-card-accent p,
.solution-card-accent .solution-num,
.solution-card-accent .solution-bullets li { color: var(--c-white); }
.solution-card-accent .solution-bullets li::before { background: var(--c-blue); }
.solution-card-accent strong { color: var(--c-blue); font-weight: 500; }

.solution-num {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-blue);
  border-inline-end: 2px solid var(--c-blue);
  padding-block: 12px;
  padding-inline-end: 4px;
  white-space: nowrap;
}
.solution-body h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  margin-bottom: 14px;
}
.solution-body > p { color: var(--c-main); opacity: 0.85; margin-bottom: 18px; }
.solution-bullets {
  display: flex; flex-direction: column; gap: 10px;
}
.solution-bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 15px;
  color: var(--c-main);
}
.solution-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--c-blue);
  border-radius: 50%;
}
.solution-visual {
  display: flex; justify-content: center;
}
.solution-visual-text {
  flex-direction: column; gap: 14px; align-items: stretch;
}
.metric-card {
  background: var(--c-baby-blue);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.metric-num {
  display: block;
  font-size: 38px; font-weight: 700;
  color: var(--c-main);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-label { font-size: 13px; color: var(--c-grey); }

.phone-frame-sm { width: 220px; border-width: 7px; border-radius: 32px; }
.phone-frame-md { width: 260px; border-width: 8px; border-radius: 36px; }
.phone-frame-mini { width: 130px; border-width: 5px; border-radius: 22px; }

/* Mini browser frame — used in solution layer 02 */
.browser-frame-mini {
  width: 100%; max-width: 320px;
  border-radius: 10px;
  transform: rotate(-1deg);
}
.browser-frame-mini .browser-bar { padding: 6px 10px; gap: 8px; }
.browser-frame-mini .browser-dots span { width: 8px; height: 8px; }
.browser-frame-mini .browser-dots { gap: 5px; }
.browser-frame-mini .browser-url {
  font-size: 9px; padding: 3px 8px;
  max-width: none;
}
.browser-frame-mini .browser-url svg { width: 9px; height: 9px; }

@media (max-width: 980px) {
  .solution-card {
    grid-template-columns: 1fr;
    gap: 24px; padding: 32px 24px;
    text-align: start;
  }
  .solution-num {
    writing-mode: horizontal-tb;
    transform: none;
    border-inline-end: none;
    border-bottom: 2px solid var(--c-blue);
    padding-block: 0 8px;
    padding-inline-end: 0;
    align-self: flex-start;
  }
  .solution { padding-block: 72px; }
}

/* ---------- MATH (COMPARISON TABLE) ---------- */
.math {
  padding-block: 110px;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-baby-blue) 100%);
}
.compare-table {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 8px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow-card-strong);
  overflow: hidden;
}
.compare-head, .compare-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 20px 28px;
}
.compare-head {
  font-weight: 500; font-size: 14px; letter-spacing: 0.02em;
  color: var(--c-grey);
  border-bottom: 1px solid var(--c-divider);
}
.compare-col-hk {
  color: var(--c-main);
  font-weight: 700;
}
.compare-row {
  border-bottom: 1px solid var(--c-light-grey);
  font-size: 17px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row [role="rowheader"] { color: var(--c-grey); font-size: 15px; }
.compare-row [role="cell"] { color: var(--c-main); }
.hk-cell {
  position: relative;
  color: var(--c-main);
}
.hk-cell::before {
  content: '';
  position: absolute;
  inset-block: -10px;
  inset-inline: -16px;
  background: var(--c-baby-blue);
  border-radius: var(--radius-sm);
  z-index: 0;
}
.hk-cell strong { position: relative; z-index: 1; font-weight: 700; color: var(--c-main); }

@media (max-width: 680px) {
  .compare-head, .compare-row { padding: 16px 18px; gap: 8px; font-size: 15px; }
  .compare-row [role="rowheader"] { font-size: 13px; }
  .math { padding-block: 72px; }
}

/* ---------- HOW IT WORKS ---------- */
.howitworks { padding-block: 110px; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-divider) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  background: var(--c-white);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-white);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--c-grey); font-size: 14px; line-height: 1.55; }

@media (max-width: 980px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .howitworks { padding-block: 72px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- BRIDGE (Meet HK Studio) ---------- */
.bridge {
  padding-block: 100px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(57, 171, 226, 0.07), transparent 70%),
    var(--c-bg);
  position: relative;
  overflow: hidden;
}
.bridge::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-divider), transparent);
}
.bridge .container { position: relative; }
.bridge-eyebrow {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-blue);
  background: var(--c-baby-blue);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.bridge-title {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--c-main);
}
.bridge-accent {
  display: block;
  color: var(--c-cta);
  font-weight: 700;
  font-style: italic;
}
.bridge-sub {
  max-width: 660px;
  margin: 0 auto;
  color: var(--c-grey);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}
@media (max-width: 880px) {
  .bridge { padding-block: 72px; }
}

/* ---------- SECTION HEAD (shared across 01/02/03) ---------- */
.section-head {
  text-align: center;
  margin: 0 auto 56px;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.section-head .section-title { margin-bottom: 16px; }
.section-head .section-sub { margin-bottom: 0; }
.section-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  color: var(--c-blue);
  margin-bottom: 28px;
  width: 100%;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1 1 auto;
  height: 1px;
  background: rgba(57, 171, 226, 0.45);
}
.section-eyebrow-num {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-cta);
  background: rgba(228, 131, 117, 0.14);
  padding: 5px 12px;
  border-radius: 99px;
  margin-inline-end: 14px;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .section-eyebrow {
    gap: 14px;
    font-size: 18px;
  }
  .section-eyebrow-num { padding: 4px 10px; margin-inline-end: 10px; }
}
.section-title-xl {
  font-size: clamp(34px, 5.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 960px;
}
.section-accent {
  display: block;
  color: var(--c-cta);
  font-weight: 700;
  font-style: italic;
  margin-top: 6px;
}

/* ---------- SYSTEM ---------- */
.system { padding-block: 110px; }

/* -- Dashboard hero (browser frame) -- */
.dashboard-hero {
  position: relative;
  margin-bottom: 96px;
  isolation: isolate;
}
.dashboard-hero::before {
  content: '';
  position: absolute;
  inset: -40px -8% auto -8%;
  height: 70%;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(57, 171, 226, 0.16), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(228, 131, 117, 0.08), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.browser-frame {
  background: var(--c-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-premium-hero);
  transform: perspective(1500px) rotateX(2deg);
  transform-origin: center top;
  border: 1px solid rgba(12, 64, 104, 0.06);
}
.browser-bar {
  display: flex; align-items: center;
  background: linear-gradient(180deg, #f3f5f7, #e8ebee);
  padding: 10px 14px;
  gap: 14px;
  border-bottom: 1px solid #d8dde2;
}
.browser-dots {
  display: flex; gap: 7px;
}
.browser-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-divider);
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; max-width: 460px; margin: 0 auto;
  background: var(--c-white);
  border: 1px solid #d8dde2;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--c-grey);
  font-family: var(--font);
  direction: ltr;
}
.browser-url svg { color: var(--c-green); flex-shrink: 0; }
.browser-screen { background: var(--c-white); }
.browser-screen img {
  width: 100%; height: auto; display: block;
}

.dashboard-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding: 0 8px;
}
.callout {
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-soft);
}
.callout-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-baby-blue);
  color: var(--c-blue);
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.callout-text { color: var(--c-main); font-weight: 500; font-size: 15px; line-height: 1.4; }

/* -- Feature deep-dives -- */
.system-grid {
  display: flex; flex-direction: column; gap: 96px;
}
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-card-rev .feature-text { order: 2; }
.feature-card-rev .feature-visual { order: 1; }
.feature-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-blue);
  background: var(--c-baby-blue);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.feature-text h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  margin-bottom: 16px;
}
.feature-text p { color: var(--c-grey); font-size: 17px; line-height: 1.65; max-width: 480px; margin-bottom: 18px; }
.feature-bullets {
  display: flex; flex-direction: column; gap: 8px;
}
.feature-bullets li {
  position: relative;
  padding-inline-start: 24px;
  font-size: 15px; color: var(--c-main);
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 4px;
  width: 16px; height: 16px;
  background: var(--c-baby-blue);
  border-radius: 50%;
}
.feature-bullets li::after {
  content: '';
  position: absolute;
  inset-inline-start: 4px; top: 7px;
  width: 8px; height: 4px;
  border-inline-end: 2px solid var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
  transform: rotate(-45deg);
}
.feature-bullets li { padding-inline-start: 28px; }
.feature-visual {
  display: flex; justify-content: center;
}
.feature-visual { position: relative; isolation: isolate; }
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 8% 4%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(57, 171, 226, 0.12), transparent 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.panel-frame {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(12, 64, 104, 0.06);
  max-width: 100%;
  width: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.panel-frame img { width: 100%; height: auto; display: block; }
.panel-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium-hero);
}
.panel-frame-tall { max-width: 360px; }

/* -- Task system mockup (CSS-only) -- */
.mockup-tasks {
  padding: 24px 24px 20px;
  text-align: start;
  font-size: 14px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.mock-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-divider);
}
.mock-eyebrow {
  font-size: 11px; color: var(--c-grey);
  margin-bottom: 4px;
}
.mock-head h4 {
  font-size: 17px; font-weight: 500; color: var(--c-main);
  line-height: 1.2;
}
.mock-btn-add {
  background: var(--c-baby-blue);
  color: var(--c-blue);
  border: none;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  cursor: default;
  white-space: nowrap;
  font-family: var(--font);
}

.mock-task-list { display: flex; flex-direction: column; gap: 10px; }
.mock-task {
  display: flex; align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: 12px;
  transition: border-color .15s ease;
}
.mock-task:hover { border-color: var(--c-blue); }
.mock-task-done { opacity: .65; background: #fbfcfd; }

.mock-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 2px solid var(--c-divider);
  border-radius: 5px;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  background: var(--c-white);
}
.mock-check-done {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-white);
}

.mock-task-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.mock-task-title {
  font-size: 14px; font-weight: 500; color: var(--c-main);
  line-height: 1.3;
}
.mock-task-title-done {
  text-decoration: line-through;
  color: var(--c-grey);
}
.mock-task-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.mock-chip {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-grey);
  background: var(--c-light-grey);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.mock-chip-recur {
  background: var(--c-baby-blue);
  color: var(--c-blue);
}
.mock-chip-success {
  background: #e6f7e0;
  color: #389e0d;
}

.mock-task-send {
  flex-shrink: 0;
  background: transparent;
  color: var(--c-cta);
  border: 1px solid var(--c-cta);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  cursor: default;
  white-space: nowrap;
  font-family: var(--font);
  margin-top: 2px;
}

.mock-add-form {
  background: linear-gradient(180deg, #f7fafd 0%, #f0f6fb 100%);
  border-radius: 12px;
  padding: 12px;
}
.mock-form-row {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
}
.mock-field {
  display: inline-flex; align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--c-main);
  background: var(--c-white);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-divider);
  white-space: nowrap;
}
.mock-form-send {
  margin-inline-start: auto;
  background: var(--c-cta);
  color: var(--c-white);
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  cursor: default;
  white-space: nowrap;
  font-family: var(--font);
}

/* ---------- CLIENT EXPERIENCE (App + WhatsApp) ---------- */
.client-exp {
  margin-top: 80px;
  padding: 56px 48px 48px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-xl);
}
.client-exp-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.client-exp-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  color: var(--c-blue);
  background: var(--c-baby-blue);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.client-exp-head h3 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.2;
}
.client-exp-head p {
  color: var(--c-grey);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
}
.client-exp-head em { font-style: italic; color: var(--c-cta); font-weight: 500; }

.client-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.exp-card {
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; inset-inline-end: 0; top: 0;
  height: 4px;
  background: var(--c-blue);
}
.exp-wa::before { background: #25D366; }

.exp-card-head {
  display: flex; align-items: center; gap: 14px;
}
.exp-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-baby-blue);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
}
.exp-icon-wa { background: rgba(37, 211, 102, 0.12); color: #1faa54; }
.exp-icon svg { width: 24px; height: 24px; }
.exp-card-titles { display: flex; flex-direction: column; gap: 2px; }
.exp-channel {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  color: var(--c-grey);
}
.exp-card-titles h4 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--c-main);
  line-height: 1.2;
}
.exp-desc {
  color: var(--c-main); opacity: 0.82;
  font-size: 15px; line-height: 1.6;
}
.exp-bullets {
  display: flex; flex-direction: column; gap: 8px;
  margin: 0;
}
.exp-bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 14.5px;
  color: var(--c-main);
}
.exp-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--c-baby-blue);
  border-radius: 50%;
}
.exp-bullets li::after {
  content: '';
  position: absolute;
  inset-inline-start: 4px; top: 11px;
  width: 6px; height: 4px;
  border-inline-start: 1.5px solid var(--c-blue);
  border-bottom: 1.5px solid var(--c-blue);
  transform: rotate(-45deg);
}
.exp-wa .exp-bullets li::before { background: rgba(37, 211, 102, 0.15); }
.exp-wa .exp-bullets li::after { border-color: #1faa54; }

.exp-visual {
  display: flex; gap: 12px;
  justify-content: center; align-items: flex-end;
  padding-top: 16px;
  margin-top: auto;
}
.exp-visual .phone-frame { width: 130px; }
.exp-visual .phone-frame:nth-child(1) { transform: translateY(-6px) rotate(-3deg); }
.exp-visual .phone-frame:nth-child(2) { transform: translateY(2px); z-index: 1; }
.exp-visual .phone-frame:nth-child(3) { transform: translateY(-6px) rotate(3deg); }

/* WhatsApp mockup */
.exp-visual-chat {
  padding-top: 8px;
  justify-content: center;
}
.wa-mock {
  width: 100%;
  max-width: 320px;
  background: #ECE5DD;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(12, 64, 104, 0.12);
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--font);
}
.wa-mock-head {
  background: #075E54;
  color: var(--c-white);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.wa-mock-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.wa-mock-name { font-size: 13px; font-weight: 500; }
.wa-mock-status { font-size: 11px; opacity: 0.8; display: flex; align-items: center; gap: 5px; }
.wa-mock-dot { width: 6px; height: 6px; border-radius: 50%; background: #25D366; }
.wa-mock-body {
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 280px;
}
.wa-mock .wa-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #111;
  background: transparent;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.wa-mock .wa-in {
  background: var(--c-white);
  align-self: flex-start;
  border-bottom-inline-start-radius: 4px;
}
.wa-mock .wa-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-inline-end-radius: 4px;
}
.wa-mock .wa-bubble strong { color: #075E54; font-weight: 700; }
.wa-mock .wa-bubble-file {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
}
.wa-mock .wa-file-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(7, 94, 84, 0.12);
  color: #075E54;
  display: inline-flex; align-items: center; justify-content: center;
}
.wa-mock .wa-file-size { color: var(--c-grey); font-size: 11px; }

.client-exp-foot {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--c-baby-blue);
  border-radius: var(--radius-md);
  text-align: center;
}
.exp-foot-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--c-white);
  color: var(--c-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.exp-foot-icon svg { width: 18px; height: 18px; }
.client-exp-foot p { color: var(--c-main); font-size: 14.5px; line-height: 1.5; }
.client-exp-foot strong { color: var(--c-main); font-weight: 700; }

@media (max-width: 880px) {
  .feature-card { grid-template-columns: 1fr; gap: 32px; }
  .feature-card-rev .feature-text { order: 0; }
  .feature-card-rev .feature-visual { order: 0; }
  .feature-text { text-align: center; }
  .feature-text p, .feature-bullets { margin-inline: auto; max-width: 460px; text-align: start; }
  .system-grid { gap: 64px; margin-bottom: 56px; }
  .system { padding-block: 72px; }
  .dashboard-hero { margin-bottom: 56px; }
  .browser-frame { transform: none; }
  .browser-url { font-size: 11px; padding: 5px 10px; }
  .browser-url span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dashboard-callouts { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .panel-frame-tall { max-width: 100%; }
  .browser-frame-mini { max-width: 100%; transform: none; }
  .client-exp { padding: 40px 24px 32px; margin-top: 56px; }
  .client-exp-grid { grid-template-columns: 1fr; gap: 20px; }
  .exp-card { padding: 24px; }
  .exp-visual .phone-frame { width: 110px; }
}
@media (max-width: 520px) {
  .exp-visual { flex-wrap: wrap; gap: 8px; }
  .exp-visual .phone-frame { width: 95px; }
  .exp-visual .phone-frame:nth-child(1),
  .exp-visual .phone-frame:nth-child(2),
  .exp-visual .phone-frame:nth-child(3) { transform: none; }
  .client-exp-foot { flex-direction: column; gap: 10px; padding: 16px; }
}

/* ---------- FOUNDERS ---------- */
.founders {
  position: relative;
  padding-block: 120px;
  background: linear-gradient(135deg, var(--c-main) 0%, #0a3658 60%, #0f4a76 100%);
  color: var(--c-white);
  overflow: hidden;
}
.founders::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(57, 171, 226, 0.18), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(228, 131, 117, 0.10), transparent 50%);
  pointer-events: none;
}
.founders-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.founders-intro {
  display: flex; flex-direction: column;
  gap: 24px;
}
.founders-intro h2 {
  color: var(--c-white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.founders-intro h2 .brand { color: var(--c-blue); }
.founders-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 480px;
}
.founders-lead strong { color: var(--c-white); font-weight: 500; }
.founders-tagline {
  color: var(--c-white);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  margin-top: 8px;
}
.founders-intro .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.founders-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
}
.founder-card {
  background: var(--c-white);
  color: var(--c-main);
  border-radius: 32px;
  padding: 36px 32px 32px;
  box-shadow: 0 0 45px rgba(12, 64, 104, 0.35);
  display: flex; flex-direction: column;
  position: relative;
}
.founder-photo-wrap {
  position: relative;
  margin: -60px auto 20px;
  width: 180px; height: 200px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(12, 64, 104, 0.25);
}
.founder-photo-wrap-lower { margin-top: -40px; }
.founder-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 24px;
  position: relative; z-index: 1;
  background: var(--c-light-grey);
  display: block;
}
.founder-photo-eyal {
  object-position: 50% 12%;
  transform: scale(1.55);
  transform-origin: 50% 12%;
}
.founder-bar {
  position: absolute;
  inset-inline: -10px;
  bottom: -8px;
  height: 12px;
  background: var(--c-cta);
  border-radius: 4px;
  z-index: 0;
}
.founder-card h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-align: start;
}
.founder-role {
  display: block;
  color: var(--c-blue);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: start;
}
.founder-card-body p {
  color: var(--c-main);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
  opacity: 0.85;
}
.founder-card-body p:last-child { margin-bottom: 0; }
.founder-quote {
  font-style: italic;
  color: var(--c-blue) !important;
  font-weight: 500;
  border-inline-start: 3px solid var(--c-blue);
  padding-inline-start: 14px;
  margin-top: 8px !important;
  opacity: 1 !important;
}

@media (max-width: 980px) {
  .founders { padding-block: 80px; }
  .founders-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .founders-intro { align-items: center; }
  .founders-intro .btn { align-self: center; }
  .founders-lead { margin-inline: auto; }
}
@media (max-width: 720px) {
  .founders-cards { grid-template-columns: 1fr; gap: 80px; }
  .founder-card { padding: 32px 24px 28px; }
  .founder-photo-wrap { width: 150px; height: 150px; margin-top: -68px; }
}

/* ---------- FINAL CTA ---------- */
.cta-final {
  padding-block: 100px;
  background: linear-gradient(135deg, var(--c-main) 0%, #0a3658 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 171, 226, 0.20), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(228, 131, 117, 0.15), transparent 50%);
  pointer-events: none;
}
.cta-final .container { position: relative; }
.cta-final h2 { color: var(--c-white); }
.cta-final .section-sub { color: rgba(255, 255, 255, 0.78); }
.cta-final-actions { display: flex; justify-content: center; }

@media (max-width: 680px) { .cta-final { padding-block: 72px; } }

/* ---------- FOOTER ---------- */
.site-footer {
  padding-block: 32px;
  border-top: 1px solid var(--c-divider);
  background: var(--c-white);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.footer-brand img { height: 24px; }
.footer-meta { color: var(--c-grey); font-size: 14px; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 64, 104, 0.55);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 40px 36px 36px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card-strong);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 14px; inset-inline-end: 16px;
  width: 36px; height: 36px;
  font-size: 24px; line-height: 1;
  color: var(--c-grey);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.modal-close:hover { background: var(--c-light-grey); }
.modal-dialog h3 {
  font-size: 26px; font-weight: 500; margin-bottom: 8px;
}
.modal-sub { color: var(--c-grey); font-size: 15px; margin-bottom: 24px; }

/* ---------- FORM ---------- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 14px; font-weight: 500; color: var(--c-main); }
.field input, .field select {
  font-family: var(--font);
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-md);
  background: var(--c-white);
  color: var(--c-main);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(57, 171, 226, 0.18);
}
.contact-form .btn { margin-top: 8px; }
.hp { position: absolute; left: -9999px; top: -9999px; }
.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success h4 {
  font-size: 24px; color: var(--c-main); margin-bottom: 8px;
}
.form-success p { color: var(--c-grey); }
/* -- WhatsApp group mockup -- */
.mockup-whatsapp {
  background: #ece5dd;
  padding: 0;
  text-align: start;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.wa-head {
  background: #075e54;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.wa-head-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wa-title { font-size: 14px; font-weight: 500; }
.wa-sub { font-size: 11px; opacity: 0.75; }
.wa-thread {
  flex: 1;
  padding: 16px 14px;
  display: flex; flex-direction: column;
  gap: 10px;
}
.wa-msg { display: flex; flex-direction: column; max-width: 78%; gap: 2px; }
.wa-msg-them { align-self: flex-start; }
.wa-msg-ai { align-self: flex-end; }
.wa-name {
  font-size: 11px;
  font-weight: 500;
  color: #1f7a8c;
  display: flex; align-items: center; gap: 6px;
  padding-inline: 12px;
}
.wa-msg-ai .wa-name { color: var(--c-cta); justify-content: flex-end; }
.wa-badge {
  background: var(--c-cta);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
}
.wa-bubble {
  background: #fff;
  color: var(--c-main);
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 12px;
  border-top-inline-start-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-msg-ai .wa-bubble {
  background: #dcf8c6;
  border-top-inline-start-radius: 12px;
  border-top-inline-end-radius: 2px;
}
.wa-time {
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  padding-inline: 12px;
}
.wa-msg-ai .wa-time { align-self: flex-end; }

/* -- Monthly report mockup (Figma-aligned) -- */
.mockup-report {
  padding: 24px 26px 22px;
  text-align: start;
  display: flex; flex-direction: column;
  gap: 20px;
}
.rep-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.rep-eyebrow {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-blue);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.rep-head h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-main);
  margin: 0;
  letter-spacing: -0.02em;
}
.rep-pill {
  background: rgba(46, 168, 87, 0.12);
  color: #2ea857;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.rep-totals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-block: 1px solid var(--c-divider);
}
.rep-total {
  display: flex; flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.rep-total-label {
  font-size: 12px;
  color: var(--c-grey);
  font-weight: 500;
}
.rep-total-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-main);
}
.rep-total-positive .rep-total-num { color: #2ea857; }
.rep-cats {
  display: flex; flex-direction: column;
  gap: 14px;
}
.rep-cat {
  display: grid;
  grid-template-columns: 88px 1fr 72px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
}
.rep-cat-name {
  color: var(--c-main);
  font-weight: 500;
}
.rep-cat-bar {
  height: 8px;
  background: var(--c-baby-blue);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.rep-cat-bar > span {
  display: block;
  height: 100%;
  background: var(--c-blue);
  border-radius: var(--radius-pill);
}
.rep-cat-bar-warn > span { background: var(--c-cta); }
.rep-cat-amt {
  color: var(--c-blue);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-align: end;
}
.rep-insight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF8E1;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--c-main);
  line-height: 1.5;
}
.rep-insight-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #FFE082;
  display: grid; place-items: center;
  font-size: 14px;
  line-height: 1;
}

/* -- AI consultant chat mockup -- */
.mockup-ai-chat {
  padding: 0;
  display: flex; flex-direction: column;
  text-align: start;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 60%);
}
.ai-thread {
  flex: 1;
  padding: 24px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.ai-msg-user { align-self: flex-start; max-width: 78%; }
.ai-msg-bot { align-self: flex-end; max-width: 92%; }
.ai-msg-user .ai-bubble {
  background: var(--c-baby-blue);
  color: var(--c-main);
  padding: 10px 14px;
  border-radius: 14px;
  border-top-inline-start-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.ai-msg-bot .ai-bubble {
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  padding: 14px 16px;
  border-radius: 14px;
  border-top-inline-end-radius: 4px;
  font-size: 13px;
  line-height: 1.55;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 12px rgba(12, 64, 104, 0.06);
}
.ai-msg-bot .ai-bubble p {
  margin: 0;
  color: var(--c-main);
  font-size: 13px;
}
.ai-msg-bot .ai-bubble strong { color: var(--c-main); font-weight: 700; }
.ai-list {
  display: flex; flex-direction: column;
  gap: 5px;
  margin: 0;
}
.ai-list li {
  position: relative;
  padding-inline-start: 16px;
  font-size: 12.5px;
  color: var(--c-main);
  line-height: 1.5;
}
.ai-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--c-cta);
  border-radius: 50%;
}
.ai-rec {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--c-baby-blue);
  border-inline-start: 3px solid var(--c-blue);
  padding: 10px 12px;
  border-radius: 8px;
}
.ai-rec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-blue);
}
.ai-rec-text {
  font-size: 12.5px;
  color: var(--c-main);
  line-height: 1.5;
}

/* =========================================================
   OPERATIONS — behind-the-scenes workflow
========================================================= */
.operations {
  padding-block: 110px;
  background: var(--c-bg-soft);
}
.ops-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-bottom: 64px;
}
.ops-flow::before {
  content: '';
  position: absolute;
  top: 60px;
  inset-inline: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-blue) 0 6px, transparent 6px 12px);
  opacity: 0.35;
  z-index: 0;
}
.ops-step {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ops-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.ops-num {
  font-size: 12px; font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 0.14em;
}
.ops-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-baby-blue);
  color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
}
.ops-icon-ai { background: rgba(228, 131, 117, 0.14); color: var(--c-cta); }
.ops-icon-human { background: rgba(57, 171, 226, 0.18); color: var(--c-main); }
.ops-icon-done { background: rgba(82, 196, 26, 0.14); color: #2ea857; }
.ops-icon svg { width: 22px; height: 22px; }
.ops-step h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  color: var(--c-main);
  line-height: 1.25;
}
.ops-step p {
  color: var(--c-grey);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.ops-tasks {
  margin-bottom: 64px;
}
.ops-tasks-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--c-main);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.ops-tasks-sub {
  text-align: center;
  color: var(--c-grey);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.ops-tasks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ops-tasks-col {
  background: var(--c-white);
  border: 1px solid var(--c-divider);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ops-tasks-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.ops-tasks-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-main);
  letter-spacing: -0.01em;
  line-height: 1.3;
  border-bottom: 1px solid var(--c-divider);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.ops-tasks-text {
  font-size: 14.5px;
  color: var(--c-grey);
  line-height: 1.65;
  margin: 0;
}

.ops-outcome {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--c-main) 0%, #163d63 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}
.ops-outcome-stat {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  text-align: center;
}
.ops-outcome-num {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ops-outcome-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.ops-outcome-divider {
  width: 1px; height: 36px;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 880px) {
  .operations { padding-block: 72px; }
  .ops-flow { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .ops-flow::before { display: none; }
  .ops-tasks { margin-bottom: 40px; }
  .ops-tasks-grid { grid-template-columns: 1fr; gap: 16px; }
  .ops-outcome {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }
  .ops-outcome-divider {
    width: 36px; height: 1px;
  }
}

/* =========================================================
   CLIENT (3 channels: App + WhatsApp + Monthly Report)
========================================================= */
.client { padding-block: 110px; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.client .exp-card {
  padding: 28px 26px;
  gap: 16px;
}
.client .exp-card-titles h4 {
  font-size: clamp(18px, 1.8vw, 22px);
}
.client .exp-bullets li { font-size: 14px; }
.client .exp-desc { font-size: 14.5px; }
.client .exp-visual { padding-top: 14px; }
.client .exp-visual .phone-frame { width: 120px; }
.client .exp-visual .phone-frame:nth-child(1) { transform: translateY(-4px) rotate(-3deg); }
.client .exp-visual .phone-frame:nth-child(2) { transform: translateY(2px) rotate(3deg); }
.client .wa-mock { max-width: 280px; font-size: 12px; }
.client .wa-mock-body { padding: 10px; gap: 6px; max-height: 240px; }
.client .wa-mock .wa-bubble { font-size: 12px; padding: 7px 10px; }
.exp-chat-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  margin-inline: auto;
}
.client .mockup-report {
  padding: 18px 18px 16px;
  gap: 14px;
}
.client .rep-head h4 { font-size: 17px; }
.client .rep-eyebrow { font-size: 11px; margin-bottom: 4px; }
.client .rep-pill { font-size: 10.5px; padding: 4px 10px; }
.client .rep-totals { padding: 12px 0; gap: 8px; }
.client .rep-total-num { font-size: 14px; }
.client .rep-total-label { font-size: 10.5px; }
.client .rep-cat { grid-template-columns: 60px 1fr 56px; gap: 10px; font-size: 11.5px; }
.client .rep-cat-bar { height: 6px; }
.client .rep-cat-amt { font-size: 12px; }
.client .rep-insight { font-size: 11.5px; padding: 9px 12px; }
.client .rep-insight-icon { width: 22px; height: 22px; font-size: 12px; }

/* Report card accent */
.exp-report::before { background: var(--c-cta); }
.exp-icon-report { background: rgba(228, 131, 117, 0.14); color: var(--c-cta); }
.exp-report .exp-bullets li::before { background: rgba(228, 131, 117, 0.16); }
.exp-report .exp-bullets li::after { border-color: var(--c-cta); }

.exp-visual-report { padding-top: 14px; }

.client-foot {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  background: var(--c-baby-blue);
  border-radius: var(--radius-md);
  text-align: center;
}
.client-foot p {
  color: var(--c-main);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}
.client-foot strong { color: var(--c-main); font-weight: 700; }

@media (max-width: 980px) {
  .client-grid { grid-template-columns: 1fr; gap: 20px; }
  .client .exp-card { padding: 28px 24px; }
  .client .wa-mock, .client .mockup-report { max-width: 360px; margin-inline: auto; }
}
@media (max-width: 880px) {
  .client { padding-block: 72px; }
  .client-foot { flex-direction: column; gap: 10px; padding: 18px; }
}

