/**
 * ADHD Flowo landing — extends Flowo marketing design system (homepage tokens).
 * Scope: .page-adhd-flowo
 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.page-adhd-flowo {
  --accent: #5b50f5;
  --accent2: #7c6af7;
  --accent3: #06b6d4;
  --bg: #ffffff;
  --bg-alt: #f7f8fc;
  --border-l: #e6e8ef;
  --text: #0b0f1a;
  --muted: #2b3245;
  --muted2: #6b7280;
  --grad: linear-gradient(135deg, #5b50f5 0%, #7c6af7 50%, #06b6d4 100%);
  --shadow-sm: 0 1px 4px rgba(11, 15, 26, 0.06), 0 2px 12px rgba(11, 15, 26, 0.04);
  --shadow-md: 0 4px 24px rgba(11, 15, 26, 0.08), 0 1px 4px rgba(11, 15, 26, 0.04);
  --shadow-xl: 0 20px 60px rgba(11, 15, 26, 0.12), 0 4px 16px rgba(11, 15, 26, 0.06);
}
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
.page-adhd-flowo {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
.page-adhd-flowo a { text-decoration: none; color: inherit; }
.page-adhd-flowo img { max-width: 100%; display: block; }

/* ─── NAVBAR (homepage parity) ─── */
.page-adhd-flowo .navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  width: 100%; max-width: 100vw;
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-l);
  transition: box-shadow 0.3s;
}
.page-adhd-flowo .navbar.scrolled { box-shadow: var(--shadow-sm); }
.page-adhd-flowo .nav-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.page-adhd-flowo .nav-logo img { height: 64px; width: auto; max-width: 319px; object-fit: contain; border-radius: 0; }
.page-adhd-flowo .nav-logo span { display: none; }
.page-adhd-flowo .nav-links { display: flex; align-items: center; gap: 28px; }
.page-adhd-flowo .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted2); transition: color 0.2s; }
.page-adhd-flowo .nav-links a:hover { color: var(--accent); }
.page-adhd-flowo .nav-cta { display: flex; align-items: center; gap: 12px; }
.page-adhd-flowo .btn-outline {
  font-size: 14px; font-weight: 600; color: var(--muted); transition: color 0.2s;
  background: none; border: none; cursor: pointer;
}
.page-adhd-flowo .btn-outline:hover { color: var(--accent); }
.page-adhd-flowo .btn-primary-nav {
  padding: 7px 18px;
  background: var(--grad); background-size: 140% 140%; background-position: 30% 50%;
  border-radius: 10px; font-size: 14px; font-weight: 700; color: white;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s, background-position 0.35s ease;
  cursor: pointer; border: none;
  box-shadow: 0 8px 28px rgba(91, 80, 245, 0.35), 0 2px 8px rgba(6, 182, 212, 0.12);
}
.page-adhd-flowo .btn-primary-nav:hover {
  transform: translateY(-1px);
  filter: brightness(1.06) saturate(1.05);
  background-position: 70% 50%;
  box-shadow: 0 14px 40px rgba(91, 80, 245, 0.42), 0 4px 14px rgba(6, 182, 212, 0.18);
}

/* ─── HERO ─── */
.page-adhd-flowo .hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 104px clamp(20px, 4vw, 40px) 32px;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--bg);
}
.page-adhd-flowo .orb {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
  animation: adhd-float 8s ease-in-out infinite;
}
@keyframes adhd-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}
.page-adhd-flowo .orb-1 { width: 700px; height: 700px; background: rgba(91, 80, 245, 0.09); top: -280px; left: -200px; }
.page-adhd-flowo .orb-2 { width: 500px; height: 500px; background: rgba(124, 106, 247, 0.07); top: 80px; right: -180px; animation-delay: -3s; }
.page-adhd-flowo .orb-3 { width: 400px; height: 400px; background: rgba(6, 182, 212, 0.06); bottom: -80px; left: 30%; animation-delay: -5s; }
.page-adhd-flowo .hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(91, 80, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 80, 245, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.page-adhd-flowo .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 16px;
}
.page-adhd-flowo .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91, 80, 245, 0.08); border: 1px solid rgba(91, 80, 245, 0.2);
  border-radius: 40px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.page-adhd-flowo .hero-badge span {
  width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
  animation: adhd-pulse 2s ease-in-out infinite;
}
@keyframes adhd-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.page-adhd-flowo .hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.04em;
  margin-bottom: 14px; color: var(--text);
}
.page-adhd-flowo .hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-adhd-flowo .hero-sub {
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 22px;
  font-weight: 400;
  line-height: 1.7;
}
.page-adhd-flowo .hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 12px;
}
.page-adhd-flowo .hero-cta-micro {
  font-size: 14px; font-weight: 500; color: var(--muted2);
  text-align: center; margin: 0 auto 22px; max-width: 520px; line-height: 1.5;
}
.page-adhd-flowo .btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px; min-height: 44px;
  background: var(--grad); background-size: 140% 140%; background-position: 30% 50%;
  border-radius: 12px; font-size: 15px; font-weight: 700; color: white;
  border: none; cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s, background-position 0.35s ease;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(91, 80, 245, 0.35), 0 2px 8px rgba(6, 182, 212, 0.12);
}
.page-adhd-flowo .btn-hero-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06) saturate(1.05);
  background-position: 70% 50%;
  box-shadow: 0 14px 40px rgba(91, 80, 245, 0.42), 0 4px 14px rgba(6, 182, 212, 0.18);
}
.page-adhd-flowo .btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  background: white; border: 1.5px solid var(--border-l); border-radius: 12px;
  font-size: 15px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow-sm);
}
.page-adhd-flowo .btn-hero-secondary:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.page-adhd-flowo .hero-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 20px 24px; font-size: 14px; color: var(--muted2);
  flex-wrap: wrap; margin-bottom: 14px;
}
.page-adhd-flowo .proof-item { display: flex; align-items: center; gap: 8px; }
.page-adhd-flowo .proof-check {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.page-adhd-flowo .proof-check svg { width: 17px; height: 17px; display: block; }
.page-adhd-flowo .hero-sync-icons {
  display: inline-flex; align-items: center; gap: 6px;
}
.page-adhd-flowo .hero-sync-ico {
  width: 24px; height: 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35); background: #fff;
}
.page-adhd-flowo .hero-sync-ico img { width: 16px; height: 16px; object-fit: contain; display: block; }

.page-adhd-flowo .adhd-hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 20px;
}
.page-adhd-flowo .adhd-hero-chips span {
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(91, 80, 245, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

/* ─── HERO: animation iframe (centered below copy, 1200×680 art, no border) ─── */
.page-adhd-flowo .hero-visual-bleed {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: min(1200px, calc(100vw - clamp(16px, 4vw, 48px)));
  max-width: 100%;
  margin: 24px auto 0;
  padding: 0 clamp(12px, 3vw, 24px);
  box-sizing: border-box;
}
.page-adhd-flowo .adhd-hero-animation-host {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  line-height: 0;
  /* Same aspect as bundled hero (FRAME_W / FRAME_H) */
  aspect-ratio: 1200 / 680;
  max-height: min(78vh, 900px);
}
.page-adhd-flowo .adhd-hero-animation-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  background: transparent;
  vertical-align: top;
  overflow: hidden;
  color-scheme: light;
}
.page-adhd-flowo .hero-sync-strip.adhd-hero-sync-below {
  margin-top: 16px;
}
@media (max-width: 600px) {
  .page-adhd-flowo .hero-visual-bleed {
    width: 100%;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
  }
  .page-adhd-flowo .adhd-hero-animation-host {
    max-height: min(62vh, 560px);
  }
}
.page-adhd-flowo .hero-scroll-stage {
  position: relative; width: 100%; max-width: 1040px;
  margin: 36px auto 0; min-height: 0; z-index: 1;
}
.page-adhd-flowo .hero-scroll-sticky { position: relative; top: auto; z-index: 2; padding-bottom: 8px; }
.page-adhd-flowo .hero-scroll-perspective { perspective: none; perspective-origin: 50% 0%; }
.page-adhd-flowo .hero-scroll-card-3d {
  transform-origin: center top; transform-style: preserve-3d;
  will-change: auto; backface-visibility: hidden;
}
@media (min-width: 601px) {
  .page-adhd-flowo .hero-scroll-stage { min-height: clamp(320px, 70vh, 820px); }
  .page-adhd-flowo .hero-scroll-sticky {
    position: sticky;
    top: max(72px, 10vh);
    padding-bottom: 20px;
  }
  .page-adhd-flowo .hero-scroll-perspective { perspective: 1200px; }
  .page-adhd-flowo .hero-scroll-card-3d { will-change: transform; }
}
@media (prefers-reduced-motion: reduce) {
  .page-adhd-flowo .orb { animation: none; }
  .page-adhd-flowo .hero-scroll-stage { min-height: 0; }
  .page-adhd-flowo .hero-scroll-sticky { position: relative; top: auto; padding-bottom: 40px; }
  .page-adhd-flowo .hero-scroll-perspective { perspective: none; }
  .page-adhd-flowo .hero-scroll-card-3d { transform: none !important; will-change: auto; }
}
.page-adhd-flowo .hero-visual { position: relative; max-width: 1040px; margin: 0 auto; z-index: 1; overflow: visible; }
.page-adhd-flowo .hero-visual-card-wrap {
  position: relative; border-radius: 22px; padding: 2px;
  background: linear-gradient(120deg, rgba(91, 80, 245, 0.35), rgba(124, 106, 247, 0.2), rgba(6, 182, 212, 0.35), rgba(91, 80, 245, 0.35));
  background-size: 280% 280%;
  animation: adhd-border-shine 6s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(91, 80, 245, 0.12);
}
@keyframes adhd-border-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.page-adhd-flowo .hero-visual-card {
  background: white; border-radius: 18px; padding: 12px; border: none;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(91, 80, 245, 0.05);
}
.page-adhd-flowo .hero-visual-card--dashboard {
  padding: clamp(10px, 2vw, 16px);
  background: linear-gradient(
    180deg,
    rgba(168, 85, 247, 0.16) 0%,
    rgba(37, 99, 235, 0.08) 32%,
    rgba(248, 250, 252, 0.98) 70%,
    #ffffff 100%
  );
}
.page-adhd-flowo .test5-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-wrap {
  width: 100%; max-width: 100%; margin: 0; padding: 0; text-align: center;
}
.page-adhd-flowo .hero-compare-shell { position: relative; padding-right: 0; }
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-labels {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; max-width: 100%; margin: 0 auto 8px; padding: 0 2px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted2);
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff {
  position: relative; width: 100%; max-width: 100%; margin: 0 auto;
  border-radius: 14px; overflow: hidden; border: none;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  background: #f8fafc; touch-action: none; outline: none; cursor: ew-resize;
  max-height: min(88vh, 960px);
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff.aspect-16-9 { aspect-ratio: 16 / 9; }
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff:focus-visible {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08), 0 0 0 3px rgba(99, 102, 241, 0.35);
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-item { position: absolute; inset: 0; pointer-events: none; }
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-item img {
  position: absolute; left: 0; top: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center; display: block; user-select: none;
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-item--after { z-index: 1; }
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-item--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--test5-diff-pos, 50%)) 0 0);
  border-right: 3px solid #6d5cef;
  box-shadow: 4px 0 24px rgba(91, 76, 219, 0.18);
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-resizer { display: none; }
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-handle {
  position: absolute; left: var(--test5-diff-pos, 50%); top: 0; bottom: 0;
  width: 56px; margin-left: -28px; z-index: 4; padding: 0; border: 0; background: transparent;
  cursor: ew-resize; display: flex; align-items: center; justify-content: center;
  touch-action: none;
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-handle__rail {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 8px; margin-left: -4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #9b8cff 0%, #6d5cef 45%, #5b4ddb 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 4px 20px rgba(91, 76, 219, 0.5);
  z-index: 1; pointer-events: none;
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-handle__bubble {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 1px;
  width: 46px; height: 46px; border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #f6f4ff 100%);
  border: 2px solid #6d5cef;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 6px 18px rgba(91, 76, 219, 0.35);
  color: #5b4ddb; pointer-events: none;
}
.page-adhd-flowo .hero-visual-card--dashboard .test5-diff-handle__arr { flex-shrink: 0; opacity: 0.95; }
.page-adhd-flowo .hero-sync-strip {
  margin-top: 18px; display: flex; justify-content: center; align-items: center;
  gap: 8px; font-size: 13px; font-weight: 600; color: #475467;
}
@media (max-width: 520px) {
  .page-adhd-flowo .hero-visual-card--dashboard .test5-diff-labels span:first-child { max-width: 42%; text-align: left; }
  .page-adhd-flowo .hero-visual-card--dashboard .test5-diff-labels span:last-child { max-width: 52%; text-align: right; }
}

/* ─── HOW STRIP ─── */
.page-adhd-flowo .how-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
  padding: 56px 40px;
}
.page-adhd-flowo .how-strip-inner { max-width: 920px; margin: 0 auto; }
.page-adhd-flowo .how-strip-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 36px; position: relative;
}
.page-adhd-flowo .how-strip-steps::before {
  content: ''; position: absolute; top: 28px;
  left: calc(16.66% + 16px); right: calc(16.66% + 16px); height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent3)); opacity: 0.25;
}
.page-adhd-flowo .how-strip-step { text-align: center; }
.page-adhd-flowo .how-strip-num {
  width: 56px; height: 56px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; position: relative; z-index: 1;
}
.page-adhd-flowo .how-strip-num--ring1 { box-shadow: 0 0 0 2px #5b50f5, 0 6px 20px rgba(91, 80, 245, 0.18); }
.page-adhd-flowo .how-strip-num--ring2 { box-shadow: 0 0 0 2px #7c6af7, 0 6px 20px rgba(124, 106, 247, 0.2); }
.page-adhd-flowo .how-strip-num--ring3 { box-shadow: 0 0 0 2px #06b6d4, 0 6px 20px rgba(6, 182, 212, 0.2); }
.page-adhd-flowo .how-strip-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.page-adhd-flowo .how-strip-step p { font-size: 13px; color: var(--muted2); line-height: 1.6; }
.page-adhd-flowo .how-strip-note {
  margin-top: 28px; text-align: center; font-size: 14px; color: var(--muted2);
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.55;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(91, 80, 245, 0.06); border: 1px dashed rgba(91, 80, 245, 0.22);
}

/* ─── SECTIONS ─── */
.page-adhd-flowo .section { padding: 88px 40px; position: relative; background: var(--bg); }
.page-adhd-flowo .section.section--alt { background: var(--bg-alt); }
.page-adhd-flowo .section-inner { max-width: 1080px; margin: 0 auto; }
.page-adhd-flowo .section-head-center { text-align: center; }
.page-adhd-flowo .section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91, 80, 245, 0.07); border: 1px solid rgba(91, 80, 245, 0.18);
  border-radius: 40px; padding: 6px 14px; font-size: 12px; font-weight: 700;
  color: var(--accent); margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase;
}
.page-adhd-flowo .section-tag .landing-ico { width: 16px; height: 16px; object-fit: contain; }
.page-adhd-flowo .section-title {
  font-size: clamp(26px, 3.8vw, 44px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.12; margin-bottom: 14px; color: var(--text);
}
.page-adhd-flowo .section-title .grad {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-adhd-flowo .section-sub {
  font-size: 17px; color: var(--muted2); max-width: 640px;
  line-height: 1.7; margin-bottom: 40px;
}
.page-adhd-flowo .section-head-center .section-sub { margin-left: auto; margin-right: auto; }

.page-adhd-flowo .adhd-pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 8px;
}
.page-adhd-flowo .adhd-pain-illu {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-l);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(91, 80, 245, 0.06), #fff);
  padding: 14px;
}
.page-adhd-flowo .adhd-pain-illu img { width: 100%; height: auto; border-radius: 12px; }
.page-adhd-flowo .adhd-pain-cards { display: flex; flex-direction: column; gap: 14px; }
.page-adhd-flowo .adhd-mini-pill {
  display: inline-block; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 6px;
  background: rgba(91, 80, 245, 0.1); color: var(--accent); margin-bottom: 6px;
}
.page-adhd-flowo .adhd-card {
  padding: 20px 22px; background: #fff; border: 1px solid var(--border-l);
  border-radius: 16px; box-shadow: var(--shadow-sm); transition: border-color 0.2s, box-shadow 0.2s;
}
.page-adhd-flowo .adhd-card:hover { border-color: rgba(6, 182, 212, 0.35); box-shadow: var(--shadow-md); }
.page-adhd-flowo .adhd-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.page-adhd-flowo .adhd-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; margin: 0; }

.page-adhd-flowo .science-section { background: var(--bg-alt); }
.page-adhd-flowo .adhd-proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
}
.page-adhd-flowo .adhd-proof-box {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: #fff; border-radius: 16px;
  border: 1px solid var(--border-l); box-shadow: var(--shadow-sm);
}
.page-adhd-flowo .adhd-proof-box img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.page-adhd-flowo .adhd-proof-box b { display: block; font-size: 15px; margin-bottom: 4px; font-weight: 800; }
.page-adhd-flowo .adhd-proof-box p { font-size: 14px; color: var(--muted2); line-height: 1.55; margin: 0; }

.page-adhd-flowo .science-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.page-adhd-flowo .science-card {
  padding: 24px; background: white; border: 1px solid var(--border-l); border-radius: 20px;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.page-adhd-flowo .science-card:hover {
  border-color: rgba(6, 182, 212, 0.35); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.page-adhd-flowo .science-ico-img { width: 40px; height: 40px; object-fit: contain; display: block; margin-bottom: 12px; }
.page-adhd-flowo .science-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.page-adhd-flowo .science-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; margin: 0; }

.page-adhd-flowo .adhd-week-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; align-items: stretch;
}
.page-adhd-flowo .adhd-week-card {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border-l);
  background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.page-adhd-flowo .adhd-week-card .adhd-week-cap {
  padding: 10px 14px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted2);
  border-bottom: 1px solid var(--border-l); background: var(--bg-alt);
}
.page-adhd-flowo .adhd-week-card img { width: 100%; height: auto; display: block; }
.page-adhd-flowo .adhd-week-body { padding: 18px 20px 22px; flex: 1; }
.page-adhd-flowo .adhd-week-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.page-adhd-flowo .adhd-week-body ul { margin: 0; padding-left: 1.15em; color: var(--muted2); font-size: 14px; line-height: 1.65; }

.page-adhd-flowo .adhd-trial-band {
  border-radius: 24px; padding: 36px 32px;
  border: 1px solid rgba(91, 80, 245, 0.22);
  background: linear-gradient(135deg, rgba(91, 80, 245, 0.09) 0%, rgba(6, 182, 212, 0.08) 100%);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.page-adhd-flowo .adhd-trial-band h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.page-adhd-flowo .adhd-trial-band p { color: var(--muted2); font-size: 16px; max-width: 560px; margin: 0 auto 20px; line-height: 1.6; }
.page-adhd-flowo .adhd-trial-meta {
  font-size: 13px; color: var(--muted2); margin-top: 14px; line-height: 1.5;
}

.page-adhd-flowo .faq-list { max-width: 680px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.page-adhd-flowo .faq-item { background: white; border: 1px solid var(--border-l); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.page-adhd-flowo .faq-q {
  padding: 18px 22px; font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color 0.2s; color: var(--text); width: 100%; text-align: left; background: none; border: none; font-family: inherit;
}
.page-adhd-flowo .faq-q:hover { color: var(--accent); }
.page-adhd-flowo .faq-toggle-ico { flex-shrink: 0; width: 12px; height: 12px; opacity: 0.55; transition: transform 0.2s; }
.page-adhd-flowo .faq-item.open .faq-q .faq-toggle-ico { transform: rotate(45deg); }
.page-adhd-flowo .faq-a { padding: 0 22px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--muted2); line-height: 1.7; transition: all 0.3s; }
.page-adhd-flowo .faq-item.open .faq-a { padding: 0 22px 18px; max-height: 400px; }
.page-adhd-flowo .faq-item.open .faq-q { color: var(--accent); }

.page-adhd-flowo .cta-final {
  padding: 96px 40px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f7f5ff 0%, #eef6ff 100%);
}
.page-adhd-flowo .cta-final::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 80, 245, 0.1) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.page-adhd-flowo .cta-final-inner { position: relative; z-index: 1; }
.page-adhd-flowo .cta-final h2 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.04em;
  margin-bottom: 14px; line-height: 1.1; color: var(--text);
}
.page-adhd-flowo .cta-final h2 .grad {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.page-adhd-flowo .privacy-disclosure {
  max-width: 720px; margin: 48px auto 0; padding: 16px 18px;
  font-size: 13px; color: var(--muted2); line-height: 1.55;
  border-radius: 14px; border: 1px solid var(--border-l); background: var(--bg-alt);
}
.page-adhd-flowo .privacy-disclosure strong { color: var(--text); }

.page-adhd-flowo .adhd-split-ai {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.page-adhd-flowo .adhd-split-ai-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-l);
  box-shadow: var(--shadow-md);
}
.page-adhd-flowo .btn-ico-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* ─── UTIL ─── */
.page-adhd-flowo .landing-ico { width: 18px; height: 18px; object-fit: contain; display: inline-block; }
.page-adhd-flowo .fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.page-adhd-flowo .fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .page-adhd-flowo .how-strip-steps::before { display: none; }
  .page-adhd-flowo .how-strip-steps { grid-template-columns: 1fr; gap: 22px; }
  .page-adhd-flowo .adhd-pain-grid { grid-template-columns: 1fr; }
  .page-adhd-flowo .science-grid { grid-template-columns: 1fr; }
  .page-adhd-flowo .adhd-proof-grid { grid-template-columns: 1fr; }
  .page-adhd-flowo .adhd-week-split { grid-template-columns: 1fr; }
  .page-adhd-flowo .adhd-split-ai { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .page-adhd-flowo .navbar { padding: 0 16px; }
  .page-adhd-flowo .section { padding: 56px 16px; }
  .page-adhd-flowo .how-strip { padding: 44px 16px; }
  .page-adhd-flowo .cta-final { padding: 72px 16px; }
}
@media (max-width: 400px) {
  .page-adhd-flowo .btn-primary-nav { display: none; }
}
