:root {
  --ink: #0b1220;
  --ink-2: #141f33;
  --blue: #2274f0;
  --blue-2: #5fa0ff;
  --sky: #eaf2ff;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #627086;
  --line: #dbe2ec;
  --success: #168b5b;
  --warning: #b87503;
  --shadow: 0 22px 70px rgba(9, 24, 50, 0.14);
  --radius: 20px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; background: white; padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 286px; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; color: #dce5f2; font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: white; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 0; border-radius: 12px;
  background: var(--blue); color: white; font-weight: 800; text-decoration: none;
  cursor: pointer; box-shadow: 0 10px 24px rgba(34,116,240,.24); transition: .2s ease;
}
.button:hover { transform: translateY(-2px); background: #1767dc; }
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button.secondary:hover { background: var(--paper); }
.button.small { min-height: 42px; padding: 0 17px; font-size: 14px; }
.hero {
  position: relative; overflow: hidden; color: white; background:
    radial-gradient(circle at 78% 22%, rgba(34,116,240,.28), transparent 28%),
    linear-gradient(135deg, #0b1220 0%, #101b30 62%, #0b1220 100%);
  padding: 108px 0 86px;
}
.hero:after {
  content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: linear-gradient(to left, black, transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 62px; align-items: center; }
.eyebrow { color: var(--blue-2); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; }
h1 { max-width: 800px; margin: 14px 0 22px; font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; }
.hero-copy { max-width: 700px; color: #cad5e6; font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero .button.secondary { color: white; border-color: rgba(255,255,255,.28); }
.hero .button.secondary:hover { background: rgba(255,255,255,.08); }
.hero-note { margin-top: 18px; color: #91a3bb; font-size: 14px; }
.offer-card {
  position: relative; padding: 30px; border-radius: 22px; background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16); box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.offer-card .label { font-size: 12px; color: #98baf1; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price { display: flex; align-items: end; gap: 8px; margin: 14px 0 10px; }
.price strong { font-size: 54px; line-height: 1; }
.price span { color: #a9b7ca; padding-bottom: 7px; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: #dbe4f2; }
.check-list li:before { content: "✓"; color: #72aaff; font-weight: 900; }
.trust-strip { background: #f3f7fd; border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 84px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; text-align: center; gap: 20px; font-size: 14px; font-weight: 750; color: #31405a; }
section { padding: 92px 0; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head h2 { margin: 8px 0 13px; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 28px rgba(14,34,68,.06); }
.card .number { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--sky); color: var(--blue); font-weight: 900; }
.card h3 { margin: 18px 0 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.dark-section { background: var(--ink); color: white; }
.dark-section .section-head p { color: #aab9cc; }
.deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.deliverable { display: flex; gap: 16px; padding: 22px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); }
.deliverable b { display: block; margin-bottom: 4px; }
.deliverable span { color: #aebed1; font-size: 15px; }
.icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: #8bb7ff; background: rgba(34,116,240,.16); font-weight: 900; }
.sample-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.report-preview { position: relative; min-height: 520px; }
.sheet { position: absolute; width: 70%; aspect-ratio: .77; border: 1px solid #dce3ed; border-radius: 8px; background: white; box-shadow: var(--shadow); padding: 28px; }
.sheet.back { top: 20px; left: 15%; transform: rotate(7deg); background: #f5f8fc; }
.sheet.front { top: 0; left: 3%; transform: rotate(-2deg); }
.sheet .mini-logo { width: 90px; height: 28px; border: 2px solid var(--blue); color: var(--ink); font-size: 13px; font-weight: 900; display: grid; place-items: center; }
.sheet h4 { margin: 34px 0 8px; font-size: 28px; line-height: 1.03; }
.sheet .line { height: 8px; background: #e7edf5; margin: 12px 0; border-radius: 4px; }
.sheet .line.blue { background: #cfe0ff; width: 70%; }
.sheet .chart { height: 118px; margin-top: 30px; border-left: 2px solid #d7e0eb; border-bottom: 2px solid #d7e0eb; position: relative; }
.sheet .chart:after { content: ""; position: absolute; inset: 20px 12px 10px 10px; background: linear-gradient(150deg, transparent 45%, #2274f0 46% 49%, transparent 50%), linear-gradient(25deg, transparent 45%, #2274f0 46% 49%, transparent 50%); opacity: .85; }
.findings { display: grid; gap: 14px; margin: 28px 0; }
.finding { padding: 16px 18px; border-left: 4px solid var(--blue); border-radius: 8px; background: var(--paper); }
.finding b { display: block; }
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: steps; }
.process-step { position: relative; padding: 26px 22px; border-radius: 16px; background: white; border: 1px solid var(--line); }
.process-step:before { counter-increment: steps; content: counter(steps); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: white; background: var(--blue); font-weight: 900; margin-bottom: 16px; }
.process-step h3 { margin: 0 0 8px; font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 15px; }
.pricing { background: linear-gradient(180deg,#f5f8fd,#fff); }
.pricing-card { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr .9fr; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.pricing-copy { padding: 42px; }
.pricing-side { padding: 42px; color: white; background: var(--ink); }
.pricing-card h2 { margin: 8px 0 14px; font-size: 40px; line-height: 1.04; }
.price-large { font-size: 64px; font-weight: 900; letter-spacing: -.04em; }
.price-large small { font-size: 18px; color: #aebbd0; }
.faq { max-width: 900px; }
details { border-top: 1px solid var(--line); padding: 20px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 800; font-size: 18px; }
details p { color: var(--muted); max-width: 760px; }
.form-section { background: var(--ink); color: white; }
.form-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.form-grid h2 { font-size: 44px; line-height: 1.04; margin: 8px 0 18px; }
.form-grid p { color: #adbbce; }
.form-card { padding: 32px; border-radius: 22px; background: white; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 800; }
.field { margin-bottom: 17px; }
input, textarea, select { width: 100%; border: 1px solid #cfd8e6; border-radius: 10px; background: white; padding: 13px 14px; color: var(--ink); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(34,116,240,.18); border-color: var(--blue); }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; font-size: 13px; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; }
.form-card .button { width: 100%; margin-top: 18px; }
.form-status { min-height: 26px; margin: 14px 0 0; font-size: 14px; }
.form-status.success { color: var(--success); }
.form-status.error { color: #b32d2d; }
.honeypot { position: absolute !important; left: -9999px !important; }
.site-footer { background: #070c15; color: #9eacc0; padding: 42px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-brand img { width: 245px; opacity: .92; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; }
.footer-links a { text-decoration: none; }
.legal { max-width: 900px; padding: 74px 0 110px; }
.legal h1 { color: var(--ink); font-size: 48px; }
.legal h2 { margin-top: 34px; }
.legal p, .legal li { color: #4f5e73; }
.notice { padding: 15px 18px; border-radius: 10px; background: var(--sky); color: #284266; font-size: 14px; }
@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .brand img { width: 230px; }
  .hero { padding: 78px 0 66px; }
  .hero-grid, .sample-grid, .pricing-card, .form-grid { grid-template-columns: 1fr; }
  .offer-card { max-width: 620px; }
  .cards { grid-template-columns: 1fr; }
  .deliverables { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .report-preview { min-height: 450px; }
  .sheet { width: 58%; left: 16%; }
  .sheet.back { left: 28%; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 66px; }
  .brand img { width: 196px; }
  .nav-links { gap: 8px; }
  .nav-links .button { min-height: 38px; padding: 0 13px; font-size: 12px; }
  h1 { font-size: 46px; }
  section { padding: 70px 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 22px 0; }
  .process { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pricing-copy, .pricing-side, .form-card { padding: 26px; }
  .report-preview { min-height: 390px; }
  .sheet { width: 74%; left: 6%; }
  .sheet.back { left: 20%; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

.founder-section {
  color: white;
  background-color: #0b1220;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(34,116,240,.22), transparent 30%),
    linear-gradient(135deg, #0b1220 0%, #101b30 100%);
}
.founder-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.founder-grid h2 { margin: 8px 0 18px; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.founder-grid p { color: #bcc9da; font-size: 17px; }
.founder-note { padding-left: 16px; border-left: 3px solid var(--blue-2); font-size: 14px !important; color: #94a8c3 !important; }
.consult-card { padding: 32px; border-radius: 22px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.consult-card .label { color: #8bb7ff; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.consult-card h3 { margin: 10px 0 8px; font-size: 30px; line-height: 1.08; }
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
}


.language-switch { display: inline-flex; align-items: center; gap: 7px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.78); color: #64728a; font-size: 12px; font-weight: 850; letter-spacing: .04em; }
.language-switch a { color: #64728a; text-decoration: none; }
.language-switch a.active { color: var(--blue); }
.dark-section .language-switch, .founder-section .language-switch { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
@media (max-width: 900px) {
  .nav-links .language-switch { display: inline-flex; }
}
@media (max-width: 600px) {
  .language-switch { gap: 5px; padding: 4px 7px; }
}
