:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #0c1730;
  --ink-2: #24324b;
  --muted: #66728a;
  --line: #dce3ef;
  --line-strong: #cbd5e4;
  --blue: #2368f3;
  --blue-strong: #0f56dd;
  --blue-soft: #eaf1ff;
  --cyan: #16b9bb;
  --cyan-soft: #dcf8f5;
  --danger: #c9465a;
  --danger-soft: #fff0f2;
  --success: #0b8f6d;
  --success-soft: #e7f8f2;
  --dark: #0a142a;
  --dark-2: #111e38;
  --dark-line: rgba(255, 255, 255, .11);
  --shadow-sm: 0 10px 32px rgba(17, 37, 78, .08);
  --shadow-md: 0 22px 65px rgba(16, 34, 72, .12);
  --shadow-lg: 0 34px 100px rgba(9, 24, 55, .2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-height: 82px;
  --transition: 220ms cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--blue); }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 112px 0; position: relative; }
.section-light { background: var(--surface); }

.section-heading { max-width: 820px; margin-bottom: 54px; }
.section-heading-compact { max-width: 720px; margin-bottom: 40px; }
.section-heading h2,
.example-copy h2,
.method-copy h2,
.trust-copy h2,
.about-copy h2,
.contact-copy h2,
.faq-heading h2,
.deliverables-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.06;
  letter-spacing: -.052em;
  font-weight: 780;
}
.section-heading p,
.example-copy > p,
.method-copy > p,
.trust-copy > p,
.about-copy > p,
.contact-copy > p,
.faq-heading > p,
.deliverables-copy > p {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.section-heading-light h2,
.section-heading-light p,
.eyebrow-light,
.method-copy h2,
.method-copy > p,
.trust-copy h2,
.trust-copy > p,
.contact-copy h2,
.contact-copy > p { color: #fff; }
.section-heading-light p,
.method-copy > p,
.trust-copy > p,
.contact-copy > p { color: rgba(255,255,255,.68); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.eyebrow-light { color: #77d9ff; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(35,104,243,.25); outline-offset: 3px; }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(35,104,243,.24); }
.button-primary:hover { background: var(--blue-strong); box-shadow: 0 16px 34px rgba(35,104,243,.33); }
.button-secondary { color: var(--ink); background: rgba(255,255,255,.76); border-color: var(--line-strong); }
.button-secondary:hover { background: #fff; border-color: #aebbd0; box-shadow: var(--shadow-sm); }
.button-light { color: var(--dark); background: #fff; }
.button-light:hover { background: #edf4ff; box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: 11px; font-size: 13px; }
.button-large { min-height: 58px; padding: 0 26px; border-radius: 15px; }
.button-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 780;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 15px; color: var(--blue-strong); }
.text-link span { font-size: 20px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(245,247,251,.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled { background: rgba(255,255,255,.92); border-color: rgba(203,213,228,.85); box-shadow: 0 10px 28px rgba(17,37,78,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0a1730, #174b9c);
  border-radius: 12px;
  box-shadow: 0 9px 22px rgba(10,23,48,.2);
}
.brand-wave { display: flex; align-items: center; gap: 2px; height: 20px; }
.brand-wave i { width: 2px; border-radius: 10px; background: currentColor; }
.brand-wave i:nth-child(1) { height: 7px; opacity: .7; }
.brand-wave i:nth-child(2) { height: 14px; }
.brand-wave i:nth-child(3) { height: 20px; }
.brand-wave i:nth-child(4) { height: 12px; }
.brand-wave i:nth-child(5) { height: 6px; opacity: .7; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 18px; line-height: 1.15; letter-spacing: -.03em; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.1; letter-spacing: .02em; }
.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a { position: relative; color: #40506b; font-size: 13px; font-weight: 650; transition: color var(--transition); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right var(--transition); }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--line); background: #fff; border-radius: 11px; cursor: pointer; }
.menu-button span { position: absolute; width: 19px; height: 2px; background: var(--ink); border-radius: 99px; transition: transform var(--transition), opacity var(--transition); }
.menu-button span:nth-child(1) { transform: translateY(-6px); }
.menu-button span:nth-child(3) { transform: translateY(6px); }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-height) 0 0; z-index: 99; padding: 24px 20px 32px; background: rgba(255,255,255,.98); overflow-y: auto; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 17px 2px; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 700; }
.mobile-menu .button { margin-top: 24px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 72px) 0 48px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8faff 0%, #f4f7fc 58%, #eef3fa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(20,63,130,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20,63,130,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 530px; height: 530px; top: -170px; right: 7%; background: radial-gradient(circle, rgba(41,115,255,.18), rgba(41,115,255,0) 68%); }
.hero-orb-two { width: 430px; height: 430px; left: -150px; bottom: 40px; background: radial-gradient(circle, rgba(22,185,187,.12), rgba(22,185,187,0) 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr); align-items: center; gap: 64px; }
.hero-copy { padding: 10px 0 30px; }
.hero h1 { margin: 0; max-width: 740px; font-size: clamp(48px, 6.1vw, 78px); line-height: .98; letter-spacing: -.066em; font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-lead { margin: 27px 0 0; max-width: 700px; color: #56647c; font-size: 19px; line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 26px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: #53617a; font-size: 12px; font-weight: 690; }
.hero-trust svg { width: 16px; height: 16px; fill: none; stroke: var(--cyan); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual { position: relative; padding: 34px 10px 38px 20px; }
.dashboard-shell {
  position: relative;
  z-index: 2;
  padding: 0 22px 22px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(184,198,220,.9);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(23,50,100,.18);
  backdrop-filter: blur(12px);
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}
.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}
.dashboard-topbar { height: 48px; margin: 0 -22px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); color: #8792a6; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #ced7e5; }
.dashboard-topbar > span { flex: 1; }
.demo-badge { padding: 4px 7px; color: var(--blue); background: var(--blue-soft); border-radius: 6px; }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0 15px; }
.dashboard-head > div:first-child { display: flex; flex-direction: column; }
.dashboard-head small { color: var(--muted); font-size: 10px; }
.dashboard-head strong { font-size: 15px; }
.analysis-status { display: inline-flex; align-items: center; gap: 7px; color: var(--success); font-size: 10px; font-weight: 750; }
.analysis-status i { width: 7px; height: 7px; background: #19b487; border-radius: 50%; box-shadow: 0 0 0 5px rgba(25,180,135,.1); }
.audio-panel { display: flex; align-items: center; gap: 12px; padding: 11px 12px; background: #0f1c35; border-radius: 12px; }
.play-button { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; padding: 0; color: #fff; background: var(--blue); border: 0; border-radius: 50%; cursor: default; }
.play-button svg { width: 17px; height: 17px; fill: currentColor; }
.waveform { flex: 1; height: 30px; display: flex; align-items: center; gap: 2px; overflow: hidden; }
.waveform i { flex: 1 1 auto; min-width: 2px; height: var(--h); background: linear-gradient(to top, #2f77ff, #69d7ff); border-radius: 99px; opacity: .94; }
.audio-time { color: rgba(255,255,255,.65); font-size: 9px; font-variant-numeric: tabular-nums; }
.transcript-card { margin-top: 13px; padding: 14px; background: #f8faff; border: 1px solid var(--line); border-radius: 14px; }
.speaker-row { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; }
.speaker { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-size: 10px; font-weight: 800; }
.speaker-row small { display: block; color: var(--muted); font-size: 9px; }
.speaker-row p { margin: 3px 0 0; color: #263650; font-size: 11px; line-height: 1.5; }
.insight-line { display: grid; grid-template-columns: 25px 1fr; gap: 9px; margin-top: 12px; padding: 10px; background: var(--danger-soft); border-radius: 10px; }
.insight-icon { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; background: var(--danger); border-radius: 50%; font-size: 11px; font-weight: 900; }
.insight-line strong { display: block; color: #8a2f40; font-size: 10px; }
.insight-line p { margin: 2px 0 0; color: #75505a; font-size: 9px; line-height: 1.45; }
.better-phrase { margin-top: 10px; padding: 10px; background: var(--success-soft); border-radius: 10px; }
.better-phrase small { display: block; color: var(--success); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.better-phrase p { margin: 4px 0 0; color: #225e4f; font-size: 9px; line-height: 1.5; }
.score-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.score-row > div { position: relative; padding: 10px 9px 9px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.score-row span { display: block; min-height: 22px; color: var(--muted); font-size: 7px; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }
.score-row strong { position: absolute; right: 8px; top: 7px; color: var(--ink); font-size: 10px; }
.score-row i { display: block; height: 3px; margin-top: 7px; background: #e6ebf3; border-radius: 99px; overflow: hidden; }
.score-row i b { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 99px; }
.floating-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 13px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-md); }
.floating-note small { display: block; color: var(--muted); font-size: 8px; }
.floating-note strong { display: block; color: var(--ink); font-size: 10px; white-space: nowrap; }
.floating-note-one { left: -12px; bottom: 4px; }
.floating-note-two { right: -16px; top: 13px; }
.floating-note-two svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.7; stroke-linecap: round; }
.note-dot { width: 10px; height: 10px; flex: 0 0 auto; background: var(--danger); border-radius: 50%; box-shadow: 0 0 0 6px rgba(201,70,90,.11); }

.proof-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 62px; padding: 28px 0 0; border-top: 1px solid rgba(170,185,207,.72); }
.proof-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding-right: 28px; }
.proof-item + .proof-item { padding-left: 28px; border-left: 1px solid rgba(170,185,207,.72); }
.proof-number { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .07em; }
.proof-item strong { display: block; font-size: 13px; }
.proof-item p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

/* Problems */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { min-height: 245px; padding: 28px; background: #f9fbff; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.problem-card:hover { transform: translateY(-5px); background: #fff; border-color: #bac8dd; box-shadow: var(--shadow-sm); }
.problem-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 13px; }
.problem-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { margin: 22px 0 10px; font-size: 19px; line-height: 1.3; letter-spacing: -.025em; }
.problem-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.66; }
.section-conclusion { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; margin-top: 26px; padding: 25px 28px; background: var(--blue-soft); border: 1px solid #d6e3ff; border-radius: 18px; }
.conclusion-mark { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 13px; font-size: 22px; }
.section-conclusion p { margin: 0; color: #364767; font-size: 15px; line-height: 1.65; }
.section-conclusion strong { color: var(--ink); }

/* Audience */
.audience-section { background: #f2f5fa; }
.audience-layout { display: grid; grid-template-columns: 390px 1fr; gap: 22px; align-items: stretch; }
.tab-list { display: grid; gap: 10px; }
.tab-list button { width: 100%; min-height: 104px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; padding: 18px 20px; text-align: left; color: var(--muted); background: rgba(255,255,255,.65); border: 1px solid var(--line); border-radius: 17px; cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition); }
.tab-list button > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 11px; font-size: 11px; font-weight: 850; }
.tab-list button div { display: flex; flex-direction: column; }
.tab-list button strong { color: var(--ink); font-size: 16px; }
.tab-list button small { margin-top: 3px; font-size: 11px; line-height: 1.35; }
.tab-list button[aria-selected="true"] { color: rgba(255,255,255,.68); background: var(--dark); border-color: var(--dark); box-shadow: var(--shadow-md); transform: translateX(6px); }
.tab-list button[aria-selected="true"] strong { color: #fff; }
.tab-list button[aria-selected="true"] > span { color: #fff; background: var(--blue); }
.tab-panels { min-height: 332px; }
.tab-panel { height: 100%; padding: 46px 50px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.panel-label { display: inline-flex; padding: 7px 10px; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.tab-panel h3 { margin: 20px 0 13px; max-width: 650px; font-size: clamp(26px, 3vw, 38px); line-height: 1.12; letter-spacing: -.04em; }
.tab-panel > p { margin: 0; max-width: 680px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px 18px; margin: 25px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 25px; color: #35445e; font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 17px; height: 17px; display: grid; place-items: center; color: #fff; background: var(--cyan); border-radius: 50%; font-size: 9px; font-weight: 900; }

/* Analysis dark */
.section-dark { overflow: hidden; background: linear-gradient(150deg, #081326 0%, #0c1c38 55%, #0a2342 100%); }
.section-dark::before { content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -250px; background: radial-gradient(circle, rgba(39,111,255,.2), rgba(39,111,255,0) 68%); }
.stage-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stage-card { position: relative; min-height: 230px; padding: 28px; overflow: hidden; color: #fff; background: rgba(255,255,255,.055); border: 1px solid var(--dark-line); border-radius: 20px; transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.stage-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.085); border-color: rgba(119,217,255,.28); }
.stage-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -30px; bottom: -35px; background: radial-gradient(circle, rgba(35,104,243,.23), transparent 68%); border-radius: 50%; }
.stage-index { display: inline-grid; place-items: center; width: 38px; height: 38px; color: #7edcff; background: rgba(119,217,255,.1); border: 1px solid rgba(119,217,255,.16); border-radius: 11px; font-size: 10px; font-weight: 850; }
.stage-card h3 { margin: 25px 0 10px; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.stage-card p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.66; }
.analysis-footer { position: relative; margin-top: 18px; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 26px; background: rgba(255,255,255,.065); border: 1px solid var(--dark-line); border-radius: 18px; }
.analysis-footer div { display: flex; flex-direction: column; }
.analysis-footer small { color: #77d9ff; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.analysis-footer strong { margin-top: 5px; color: #fff; font-size: 12px; font-weight: 650; }

/* Example */
.section-example { background: linear-gradient(180deg, #f8faff, #eef3fa); }
.example-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.logic-formula { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 28px 0 32px; }
.logic-formula span { padding: 9px 11px; color: #30415f; background: #fff; border: 1px solid var(--line); border-radius: 9px; font-size: 11px; font-weight: 750; box-shadow: 0 6px 20px rgba(17,37,78,.05); }
.logic-formula i { color: var(--blue); font-style: normal; font-weight: 800; }
.example-board { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-md); }
.board-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 19px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.board-header > div { display: flex; align-items: center; gap: 8px; color: var(--ink); }
.status-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 5px rgba(11,143,109,.1); }
.dialog-line { display: grid; grid-template-columns: 38px 1fr; gap: 12px; margin-top: 18px; padding: 15px; background: #f8faff; border: 1px solid var(--line); border-radius: 13px; }
.dialog-line.highlighted { background: var(--danger-soft); border-color: #f3cfd6; }
.avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; font-size: 11px; font-weight: 850; }
.avatar-client { color: #465672; background: #e9eef6; }
.avatar-manager { color: var(--blue); background: #dce8ff; }
.dialog-line small { display: block; color: var(--muted); font-size: 9px; font-weight: 800; }
.dialog-line p { margin: 4px 0 0; color: #30405b; font-size: 13px; line-height: 1.55; }
.review-stack { display: grid; gap: 9px; margin-top: 18px; }
.review-item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 14px; background: #f7f9fc; border-radius: 12px; }
.review-item > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 9px; font-size: 9px; font-weight: 850; }
.review-item small { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.review-item p { margin: 3px 0 0; color: #384760; font-size: 11px; line-height: 1.55; }
.review-risk { background: #fff4f5; }
.review-risk > span { color: var(--danger); border-color: #f3d0d6; }
.review-solution { background: var(--success-soft); }
.review-solution > span { color: var(--success); border-color: #c3eadf; }

/* Pricing */
.pricing-section { overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%); }
.pricing-container { position: relative; z-index: 2; }
.pricing-orb { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(2px); }
.pricing-orb-one { width: 520px; height: 520px; right: -240px; top: -240px; background: radial-gradient(circle, rgba(35,104,243,.11), rgba(35,104,243,0) 68%); }
.pricing-orb-two { width: 430px; height: 430px; left: -220px; bottom: -230px; background: radial-gradient(circle, rgba(22,185,187,.1), rgba(22,185,187,0) 68%); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 594px; padding: 31px; overflow: hidden; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 36px rgba(17,37,78,.055); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.pricing-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--blue), var(--cyan)); opacity: .22; }
.pricing-card:hover { transform: translateY(-6px); border-color: #b7c7de; box-shadow: 0 22px 56px rgba(17,37,78,.12); }
.pricing-card-featured { color: #fff; background: linear-gradient(145deg, #0a1731 0%, #123b74 64%, #0d5575 100%); border-color: rgba(104,178,255,.38); box-shadow: 0 26px 70px rgba(10,35,76,.27); }
.pricing-card-featured::before { height: 5px; opacity: 1; background: linear-gradient(90deg, #4e8dff, #63e3da); }
.pricing-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pricing-badge { display: inline-flex; align-items: center; min-height: 29px; padding: 0 11px; color: var(--blue); background: var(--blue-soft); border: 1px solid #d6e3ff; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-badge-light { color: #dff7ff; background: rgba(119,217,255,.1); border-color: rgba(119,217,255,.18); }
.pricing-audience { color: var(--muted); font-size: 10px; font-weight: 720; }
.pricing-audience-light { color: rgba(255,255,255,.58); }
.pricing-ribbon { position: absolute; right: 22px; top: 0; padding: 9px 13px 10px; color: #071a2a; background: #79e2dd; border-radius: 0 0 11px 11px; font-size: 8px; line-height: 1; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.pricing-card-featured .pricing-card-head { padding-top: 17px; }
.pricing-card h3 { margin: 25px 0 0; max-width: 470px; font-size: clamp(25px, 2.5vw, 34px); line-height: 1.12; letter-spacing: -.045em; }
.pricing-price { display: flex; align-items: flex-end; gap: 7px; margin-top: 24px; line-height: 1; }
.pricing-price small { margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 760; text-transform: uppercase; }
.pricing-price strong { font-size: clamp(42px, 4.5vw, 58px); font-weight: 820; letter-spacing: -.065em; }
.pricing-price span { margin-bottom: 7px; color: var(--blue); font-size: 23px; font-weight: 800; }
.pricing-card-featured .pricing-price small { color: rgba(255,255,255,.52); }
.pricing-card-featured .pricing-price span { color: #7ee5df; }
.pricing-summary { margin: 18px 0 0; min-height: 70px; color: var(--muted); font-size: 14px; line-height: 1.68; }
.pricing-card-featured .pricing-summary { color: rgba(255,255,255,.68); }
.pricing-divider { height: 1px; margin: 24px 0; background: var(--line); }
.pricing-card-featured .pricing-divider { background: rgba(255,255,255,.12); }
.pricing-list { display: grid; gap: 12px; margin: 0 0 30px; padding: 0; list-style: none; }
.pricing-list li { position: relative; padding-left: 27px; color: #34435d; font-size: 13px; line-height: 1.55; }
.pricing-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; display: grid; place-items: center; color: var(--success); background: var(--success-soft); border-radius: 50%; font-size: 10px; font-weight: 900; }
.pricing-card-featured .pricing-list li { color: rgba(255,255,255,.78); }
.pricing-card-featured .pricing-list li::before { color: #8ff2e9; background: rgba(99,227,218,.11); }
.pricing-button { margin-top: auto; }
.pricing-card:not(.pricing-card-featured) .pricing-button { color: var(--ink); background: #fff; }
.pricing-card:not(.pricing-card-featured) .pricing-button:hover { color: var(--blue-strong); border-color: #aebbd0; }
.pricing-disclaimer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; margin-top: 20px; padding: 24px 27px; background: #edf3ff; border: 1px solid #d5e1f5; border-radius: 18px; }
.pricing-disclaimer strong { display: block; font-size: 14px; letter-spacing: -.015em; }
.pricing-disclaimer p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Deliverables */
.deliverables-section { background: #eef3fa; }
.deliverables-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 72px; align-items: start; }
.deliverables-copy { position: sticky; top: 125px; }
.deliverables-list { display: grid; gap: 12px; }
.deliverable { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: 16px; transition: transform var(--transition), background var(--transition), border-color var(--transition); }
.deliverable:hover { transform: translateX(5px); background: #fff; border-color: #b8c7dd; }
.deliverable > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 15px; font-size: 11px; font-weight: 850; }
.deliverable strong { display: block; font-size: 16px; }
.deliverable p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Method */
.method-section { overflow: hidden; background: linear-gradient(150deg, #071225, #0b1d3d 58%, #0c2b4e); }
.method-section::before { content: ""; position: absolute; width: 550px; height: 550px; left: -180px; bottom: -220px; background: radial-gradient(circle, rgba(22,185,187,.15), transparent 68%); }
.method-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.method-card { padding: 24px; background: rgba(255,255,255,.07); border: 1px solid var(--dark-line); border-radius: 25px; box-shadow: 0 30px 90px rgba(0,0,0,.24); backdrop-filter: blur(10px); }
.method-card-head { display: flex; align-items: center; justify-content: space-between; }
.method-label { color: #fff; font-size: 12px; font-weight: 780; }
.method-status { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.65); font-size: 9px; }
.method-status i { width: 7px; height: 7px; background: #58d7d1; border-radius: 50%; box-shadow: 0 0 0 5px rgba(88,215,209,.1); }
.method-radar { position: relative; width: min(100%, 390px); aspect-ratio: 1; margin: 20px auto 10px; }
.radar-lines { position: absolute; inset: 12%; }
.radar-lines i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.radar-lines i:nth-child(2) { inset: 13%; }
.radar-lines i:nth-child(3) { inset: 26%; }
.radar-lines i:nth-child(4) { inset: 39%; }
.method-radar svg { position: absolute; inset: 10%; width: 80%; height: 80%; overflow: visible; }
.method-radar svg circle { fill: #79e0ff; }
.radar-label { position: absolute; color: rgba(255,255,255,.58); font-size: 8px; font-weight: 700; }
.label-one { left: 42%; top: 0; }
.label-two { right: 0; top: 24%; }
.label-three { right: 0; bottom: 27%; }
.label-four { left: 42%; bottom: 0; }
.label-five { left: 0; bottom: 27%; }
.label-six { left: 0; top: 24%; }
.method-mini-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.method-mini-cards div { padding: 13px; background: rgba(255,255,255,.06); border: 1px solid var(--dark-line); border-radius: 11px; }
.method-mini-cards small { display: block; color: rgba(255,255,255,.42); font-size: 8px; }
.method-mini-cards strong { display: block; margin-top: 3px; color: #fff; font-size: 10px; }
.method-steps { display: grid; gap: 14px; margin-top: 30px; }
.method-steps > div { display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-items: start; }
.method-steps span { width: 36px; height: 36px; display: grid; place-items: center; color: #7edcff; background: rgba(119,217,255,.09); border: 1px solid rgba(119,217,255,.15); border-radius: 10px; font-size: 9px; font-weight: 850; }
.method-steps p { margin: 5px 0 0; color: rgba(255,255,255,.61); font-size: 13px; line-height: 1.55; }
.method-steps strong { color: #fff; }
.method-quote { margin-top: 28px; padding: 18px 20px; color: #e5f5ff; background: rgba(35,104,243,.15); border: 1px solid rgba(74,139,255,.22); border-radius: 14px; font-size: 12px; font-weight: 700; line-height: 1.55; }

/* Process */
.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding var(--transition), background var(--transition); }
.process-item:hover { padding-left: 12px; padding-right: 12px; background: #f8faff; }
.process-number { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 14px; font-size: 11px; font-weight: 850; }
.process-item h3 { margin: 0; font-size: 19px; letter-spacing: -.025em; }
.process-item p { margin: 6px 0 0; max-width: 760px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.process-tag { padding: 7px 10px; color: var(--muted); background: #f2f5fa; border: 1px solid var(--line); border-radius: 8px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

/* Trust */
.trust-section { overflow: hidden; background: linear-gradient(140deg, #101e3a, #0b1730 58%, #102b4f); }
.trust-section::after { content: ""; position: absolute; width: 540px; height: 540px; right: -150px; bottom: -250px; background: radial-gradient(circle, rgba(35,104,243,.21), transparent 68%); }
.trust-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.trust-copy .button { margin-top: 30px; }
.trust-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.trust-points > div { min-height: 175px; padding: 22px; background: rgba(255,255,255,.06); border: 1px solid var(--dark-line); border-radius: 17px; }
.trust-points span { width: 42px; height: 42px; display: grid; place-items: center; color: #7edcff; background: rgba(119,217,255,.08); border-radius: 12px; }
.trust-points svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-points p { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }
.trust-points strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }

/* About */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 78px; align-items: center; }
.expert-visual { position: relative; }
.expert-photo-card { position: relative; margin: 0; overflow: hidden; background: #0b1730; border-radius: 29px; box-shadow: var(--shadow-lg); }
.expert-photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 47%, rgba(5,16,36,.92) 100%); pointer-events: none; }
.expert-photo-card img { display: block; width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover; object-position: center top; }
.expert-photo-card figcaption { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 25px; color: #fff; }
.expert-photo-card figcaption span { display: block; margin-bottom: 6px; color: #7edcff; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.expert-photo-card figcaption strong { display: block; max-width: 360px; font-size: 22px; line-height: 1.18; letter-spacing: -.035em; }
.expert-stats { position: relative; z-index: 2; width: calc(100% - 30px); margin: -15px 0 0 30px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.expert-stats > div { min-height: 112px; padding: 18px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-sm); }
.expert-stats strong { display: block; color: var(--blue); font-size: 20px; line-height: 1.1; letter-spacing: -.03em; }
.expert-stats span { display: block; margin-top: 8px; color: #5b6b84; font-size: 11px; line-height: 1.48; }
.about-lead { color: #293a57 !important; font-size: 19px !important; line-height: 1.65 !important; }
.expert-credentials { margin-top: 28px; border-top: 1px solid var(--line); }
.expert-credentials > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.expert-credentials > div > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 10px; font-size: 9px; font-weight: 850; }
.expert-credentials p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.58; }
.expert-credentials strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 13px; }
.principles-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.principles-row span { padding: 8px 10px; color: #3b4c68; background: #f2f5fa; border: 1px solid var(--line); border-radius: 9px; font-size: 10px; font-weight: 740; }


/* FAQ */
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading .text-link { margin-top: 25px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; min-height: 82px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; background: transparent; border: 0; cursor: pointer; font-size: 17px; font-weight: 760; }
.accordion-item button i { position: relative; flex: 0 0 auto; width: 34px; height: 34px; background: #f0f4fa; border: 1px solid var(--line); border-radius: 10px; }
.accordion-item button i::before,
.accordion-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink); border-radius: 99px; transform: translate(-50%,-50%); transition: transform var(--transition); }
.accordion-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item button[aria-expanded="true"] i { color: #fff; background: var(--blue); border-color: var(--blue); }
.accordion-item button[aria-expanded="true"] i::before,
.accordion-item button[aria-expanded="true"] i::after { background: #fff; }
.accordion-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0deg); }
.accordion-panel { padding: 0 56px 25px 0; }
.accordion-panel p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

/* Contact */
.contact-section { position: relative; overflow: hidden; padding: 112px 0; background: linear-gradient(145deg, #071327 0%, #0b1e3f 55%, #0d3159 100%); }
.contact-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 44px 44px; }
.contact-orb { position: absolute; width: 600px; height: 600px; left: -250px; bottom: -320px; background: radial-gradient(circle, rgba(22,185,187,.2), transparent 68%); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; gap: 84px; align-items: start; }
.contact-points { display: grid; gap: 15px; margin-top: 32px; }
.contact-points > div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.contact-points span { width: 36px; height: 36px; display: grid; place-items: center; color: #7edcff; background: rgba(119,217,255,.09); border: 1px solid rgba(119,217,255,.14); border-radius: 10px; font-size: 9px; font-weight: 850; }
.contact-points p { margin: 4px 0 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.contact-points strong { display: block; margin-bottom: 3px; color: #fff; font-size: 13px; }
.form-card { padding: 34px; background: #fff; border-radius: 26px; box-shadow: 0 32px 90px rgba(0,0,0,.25); }
.form-kicker { color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.form-head h3 { margin: 8px 0 8px; font-size: 34px; line-height: 1.1; letter-spacing: -.045em; }
.form-head p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
form { margin-top: 25px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.field { position: relative; display: block; margin-bottom: 14px; }
.field > span { display: block; margin-bottom: 7px; color: #34435e; font-size: 10px; font-weight: 750; }
.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field input,
.field select { height: 49px; padding: 0 13px; }
.field textarea { min-height: 112px; padding: 12px 13px; resize: vertical; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: #9aa5b8; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #bcc9dc; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(35,104,243,.09); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--danger); background: #fffafa; }
.field-error { display: block; min-height: 14px; margin-top: 4px; color: var(--danger); font-size: 9px; line-height: 1.35; }
.field-hint { position: absolute; right: 9px; bottom: 10px; color: #a0aaba; font-size: 8px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; margin: 2px 0 3px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 0; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.consent-error { min-height: 15px; margin-bottom: 7px; }
.submit-button { margin-top: 2px; }
.submit-button.is-loading { pointer-events: none; opacity: .75; }
.submit-button.is-loading::before { content: ""; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.submit-button.is-loading span,
.submit-button.is-loading svg { display: none; }
.form-status { margin-top: 14px; padding: 12px 13px; border-radius: 10px; font-size: 11px; line-height: 1.55; }
.form-status.success { color: #126d57; background: var(--success-soft); border: 1px solid #c4eadf; }
.form-status.error { color: #8c3142; background: var(--danger-soft); border: 1px solid #f0cbd2; }
.form-footnote { margin: 12px 0 0; color: #919bad; font-size: 9px; line-height: 1.5; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
.site-footer { padding: 44px 0 20px; background: #061021; color: #fff; }
.footer-top { display: grid; grid-template-columns: .7fr .9fr 1.1fr; gap: 50px; align-items: start; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.09); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.45); }
.footer-top > p { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 650; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center; padding-top: 20px; color: rgba(255,255,255,.36); font-size: 9px; }
.footer-bottom span:nth-child(2) { text-align: right; }
.mobile-cta { display: none; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card { min-height: 570px; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a:nth-last-child(1) { display: none; }
  .hero-grid { grid-template-columns: 1fr 470px; gap: 38px; }
  .hero h1 { font-size: clamp(48px, 5.5vw, 68px); }
  .floating-note-two { right: -4px; }
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }
  .section { padding: 88px 0; }
  .desktop-nav, .header-actions > .button { display: none; }
  .menu-button { position: relative; display: grid; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 54px); }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 620px); margin-inline: auto; }
  .proof-strip { grid-template-columns: 1fr; gap: 20px; }
  .proof-item { padding: 0; }
  .proof-item + .proof-item { padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(170,185,207,.65); }
  .problem-grid { grid-template-columns: repeat(2,1fr); }
  .audience-layout { grid-template-columns: 1fr; }
  .tab-list { grid-template-columns: repeat(3,1fr); }
  .tab-list button { min-height: 130px; grid-template-columns: 1fr; align-content: center; }
  .tab-list button[aria-selected="true"] { transform: translateY(-4px); }
  .stage-grid { grid-template-columns: repeat(2,1fr); }
  .example-grid,
  .deliverables-grid,
  .method-grid,
  .trust-grid,
  .about-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .deliverables-copy,
  .faq-heading { position: static; }
  .deliverables-copy { max-width: 760px; }
  .method-card { width: min(100%, 620px); margin-inline: auto; order: 2; }
  .method-copy { order: 1; }
  .trust-copy { max-width: 700px; }
  .expert-visual { width: min(100%, 620px); margin-inline: auto; }
  .about-copy { max-width: 760px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-start; grid-column: 1 / -1; }
}


@media (max-width: 980px) and (min-width: 761px) {
  .pricing-card { padding: 26px; }
  .pricing-card h3 { font-size: 28px; }
  .pricing-summary { min-height: 82px; }
  .pricing-price strong { font-size: 48px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .example-copy h2,
  .method-copy h2,
  .trust-copy h2,
  .about-copy h2,
  .contact-copy h2,
  .faq-heading h2,
  .deliverables-copy h2 { font-size: clamp(33px, 9vw, 48px); }
  .section-heading p,
  .example-copy > p,
  .method-copy > p,
  .trust-copy > p,
  .about-copy > p,
  .contact-copy > p,
  .faq-heading > p,
  .deliverables-copy > p { font-size: 16px; }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(43px, 12vw, 64px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 12px 18px; }
  .dashboard-shell { transform: none; padding-inline: 15px; }
  .dashboard-topbar { margin-inline: -15px; }
  .floating-note { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 0; }
  .tab-list { grid-template-columns: 1fr; }
  .tab-list button { min-height: 88px; grid-template-columns: 42px 1fr; }
  .tab-list button[aria-selected="true"] { transform: translateX(4px); }
  .tab-panel { padding: 30px 24px; }
  .check-list { grid-template-columns: 1fr; }
  .stage-grid { grid-template-columns: 1fr; }
  .stage-card { min-height: 0; }
  .analysis-footer { align-items: flex-start; flex-direction: column; }
  .analysis-footer .button { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .deliverable { grid-template-columns: 46px 1fr; padding: 19px; }
  .deliverable > span { width: 46px; height: 46px; }
  .process-item { grid-template-columns: 54px 1fr; gap: 17px; align-items: start; }
  .process-tag { display: none; }
  .trust-points { grid-template-columns: 1fr; }
  .trust-points > div { min-height: 0; }
  .expert-stats { width: calc(100% - 18px); margin-left: 18px; }
  .faq-grid { gap: 38px; }
  .accordion-item button { font-size: 15px; }
  .contact-section { padding: 76px 0; }
  .form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .footer-bottom span:nth-child(2) { text-align: left; }
  .mobile-cta { position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 95; min-height: 50px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--blue); border-radius: 13px; box-shadow: 0 14px 40px rgba(35,104,243,.35); font-size: 13px; font-weight: 800; transition: opacity var(--transition), transform var(--transition); }
  .mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
  .site-footer { padding-bottom: 88px; }
}

@media (max-width: 520px) {
  .header-inner { gap: 12px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 16px; }
  .hero { padding-top: calc(var(--header-height) + 42px); }
  .hero-copy { padding-top: 0; }
  .hero .eyebrow { max-width: 290px; line-height: 1.35; }
  .hero h1 { font-size: clamp(40px, 12.7vw, 54px); }
  .hero-lead { margin-top: 22px; }
  .dashboard-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .score-row { grid-template-columns: 1fr; }
  .score-row span { min-height: auto; padding-right: 35px; }
  .section-conclusion { grid-template-columns: 1fr; }
  .example-board { padding: 17px; }
  .board-header { align-items: flex-start; flex-direction: column; gap: 8px; }
  .dialog-line { grid-template-columns: 32px 1fr; padding: 12px; }
  .avatar { width: 32px; height: 32px; }
  .review-item { grid-template-columns: 30px 1fr; padding: 11px; }
  .review-item > span { width: 30px; height: 30px; }
  .logic-formula { gap: 7px; }
  .logic-formula span { font-size: 9px; }
  .pricing-card { padding: 25px 22px; }
  .pricing-card h3 { font-size: 27px; }
  .pricing-price strong { font-size: 44px; }
  .pricing-summary { min-height: 0; }
  .pricing-disclaimer { grid-template-columns: 1fr; align-items: start; }
  .expert-photo-card figcaption { left: 21px; right: 21px; bottom: 20px; }
  .expert-photo-card figcaption strong { font-size: 19px; }
  .expert-stats { width: 100%; margin: 12px 0 0; gap: 8px; }
  .expert-stats > div { min-height: 105px; padding: 15px; }
  .expert-stats strong { font-size: 18px; }
  .expert-stats span { font-size: 10px; }
  .form-card { padding: 21px 17px; border-radius: 20px; }
  .form-head h3 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Legal page */
.legal-page { background: #f4f7fb; }
.legal-header { position: sticky; top: 0; z-index: 20; padding: 14px 0; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.legal-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-main { padding: 76px 0 100px; }
.legal-container { max-width: 920px; }
.legal-intro { padding: 56px; color: #fff; background: linear-gradient(145deg, #09162f, #164f89); border-radius: 28px; box-shadow: var(--shadow-lg); }
.legal-intro .eyebrow { color: #7edcff; }
.legal-intro h1 { margin: 0; max-width: 700px; font-size: clamp(38px, 6vw, 66px); line-height: 1.02; letter-spacing: -.055em; }
.legal-intro p { margin: 20px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.legal-content { margin-top: 24px; padding: 54px 60px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.legal-content section + section { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 14px; font-size: 24px; line-height: 1.25; letter-spacing: -.03em; }
.legal-content p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-content ul { margin: 12px 0 15px; padding-left: 22px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-footer { padding: 24px 0; color: rgba(255,255,255,.48); background: #061021; font-size: 10px; }
.legal-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-footer a { color: #fff; }
.waveform.is-playing i { animation: wavePulse .9s ease-in-out infinite alternate; }
.waveform.is-playing i:nth-child(2n) { animation-delay: -.24s; }
.waveform.is-playing i:nth-child(3n) { animation-delay: -.48s; }
@keyframes wavePulse { from { transform: scaleY(.45); opacity: .6; } to { transform: scaleY(1.08); opacity: 1; } }

@media (max-width: 760px) {
  .legal-main { padding: 40px 0 74px; }
  .legal-intro { padding: 36px 24px; border-radius: 22px; }
  .legal-content { padding: 34px 24px; border-radius: 20px; }
  .legal-header .brand-copy small { display: none; }
}
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: radial-gradient(circle at 70% 20%, rgba(35,104,243,.12), transparent 36%), #f4f7fb; }
.not-found-card { width: min(100%, 620px); padding: 56px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-md); }
.not-found-card .brand-mark { margin: 0 auto 24px; }
.not-found-card > span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.not-found-card h1 { margin: 10px 0 12px; font-size: clamp(38px, 7vw, 64px); line-height: 1.04; letter-spacing: -.055em; }
.not-found-card p { margin: 0 0 28px; color: var(--muted); }
@media (max-width: 520px) { .not-found-card { padding: 38px 22px; border-radius: 22px; } }


/* Privacy modal */
body.privacy-open { overflow: hidden; }
.privacy-modal[hidden] { display: none; }
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 29, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.privacy-modal-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(203, 213, 228, .9);
  border-radius: 24px;
  box-shadow: 0 36px 120px rgba(4, 15, 40, .36);
  animation: privacy-modal-in 180ms ease-out;
}
.privacy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line);
}
.privacy-modal-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.privacy-modal-header h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.14;
  letter-spacing: -.035em;
}
.privacy-modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink-2);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.privacy-modal-close:hover { background: var(--blue-soft); transform: translateY(-1px); }
.privacy-modal-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.privacy-modal-body {
  overflow-y: auto;
  padding: 24px 28px 30px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.privacy-modal-meta {
  margin: 0 0 22px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--surface-soft);
  border-radius: 10px;
  font-size: 13px;
}
.privacy-modal-body section + section { margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.privacy-modal-body h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.35; letter-spacing: -.015em; }
.privacy-modal-body p { margin: 0; color: #4d5b73; font-size: 14px; line-height: 1.72; }
.privacy-modal-body p + p { margin-top: 10px; }
.privacy-modal-body ul { margin: 8px 0 10px; padding-left: 20px; color: #4d5b73; font-size: 14px; line-height: 1.72; }
.privacy-modal-body li + li { margin-top: 4px; }
.privacy-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}
@keyframes privacy-modal-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .privacy-modal { align-items: end; padding: 0; }
  .privacy-modal-dialog { width: 100%; max-height: 92vh; border-radius: 22px 22px 0 0; }
  .privacy-modal-header { padding: 22px 20px 18px; }
  .privacy-modal-body { padding: 20px 20px 26px; }
  .privacy-modal-footer { padding: 15px 20px calc(15px + env(safe-area-inset-bottom)); }
  .privacy-modal-footer .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .privacy-modal-dialog { animation: none; }
}
