:root {
  --bg: #ffffff;
  --bg-soft: #f8f9fc;
  --bg-dark: #0b0e14;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-soft: #eef2ff;
  --green: #10b981;
  --green-soft: #ecfdf5;
  --purple-grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1120px;
  --nav-width: 1000px;
  --nav-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --page-glow: radial-gradient(ellipse 90% 50% at 50% -12%, rgba(0, 0, 0, 0.03), transparent 58%);
  --btn-dark: #1a1a1a;
  --btn-dark-hover: #2d2d2d;
  --btn-cta-py: 13px;
  --btn-cta-px: 24px;
  --btn-cta-size: 0.875rem;
  --btn-cta-gap: 6px;
  --cta-grad: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.nav-container {
  width: min(100% - 40px, var(--nav-width));
  margin: 0 auto;
}

.top-shell {
  background: #fff var(--page-glow) no-repeat center top / 100% 720px;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 0;
  background: transparent;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 5px 8px 5px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px);
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 30px;
  width: auto;
  min-width: 100px;
  max-width: 148px;
  object-fit: contain;
  object-position: left center;
}
.footer .logo-img { height: 32px; }
.footer-logo { margin-bottom: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  flex: 1;
  padding: 0 8px;
}
.nav-links a {
  color: #111827;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #374151; }
.nav-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #374151;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-login {
  color: #111827;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-login:hover { color: #374151; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f8fafc;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-cta-gap);
  width: auto;
  padding: var(--btn-cta-py) var(--btn-cta-px);
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--btn-cta-size);
  line-height: 1.2;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn span { font-size: var(--btn-cta-size); line-height: 1; }
.btn-ghost { background: transparent; color: #374151; }
.btn-dark {
  background: var(--btn-dark);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}
.btn-dark:hover {
  transform: translateY(-1px);
  background: var(--btn-dark-hover);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.btn-light {
  background: #fff;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.btn-light:hover {
  transform: translateY(-1px);
  background: #f9fafb;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}
/* legacy aliases */
.btn-primary { background: var(--btn-dark); color: #fff; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16); }
.btn-primary:hover { transform: translateY(-1px); background: var(--btn-dark-hover); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22); }
.btn-cta { background: var(--btn-dark); color: #fff; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16); }
.btn-cta:hover { transform: translateY(-1px); background: var(--btn-dark-hover); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22); }
.btn-white { background: #fff; color: var(--text); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12); }
.btn-white:hover { transform: translateY(-1px); background: #f9fafb; box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16); }
.btn-hero-cta { background: var(--btn-dark); color: #fff; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16); }
.btn-hero-cta:hover { transform: translateY(-1px); background: var(--btn-dark-hover); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22); }
.btn-lg { padding: var(--btn-cta-py) var(--btn-cta-px); font-size: var(--btn-cta-size); }

/* Hero — overrank-style */
.hero {
  position: relative;
  padding: 28px 0 64px;
  text-align: center;
  overflow: hidden;
  background: transparent;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-float {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 1.1s ease, transform 1.1s ease, visibility 1.1s ease;
}
.hero-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  text-align: left;
  backdrop-filter: blur(8px);
}
.float-card strong {
  display: block;
  font-size: 0.6875rem;
  color: #111827;
  font-weight: 600;
  line-height: 1.25;
}
.float-card strong.text-green,
.float-card strong.text-gold { color: #374151; }
.float-card span {
  font-size: 0.625rem;
  color: #9ca3af;
  line-height: 1.2;
}
.float-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.float-icon-purple,
.float-icon-gold,
.float-icon-green,
.float-icon-blue,
.float-icon-orange { background: #f3f4f6; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.2);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(1.875rem, 3.8vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 18px;
  color: #0a0a0a;
}
.hero h1 .grad {
  color: #1a1a1a;
  font-weight: 800;
}
.hero p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.hero p em {
  font-style: italic;
  color: #6b7280;
}
.hero-trust {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 36px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 11px;
  box-shadow: none;
}
.trust-shield {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #6b7280;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.trust-badge strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  color: #6b7280;
}
.trust-badge span {
  font-size: 0.7rem;
  color: #9ca3af;
}
.hero-preview {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.preview-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
}
.preview-label::before {
  content: "G";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #374151;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.preview-card {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.preview-site {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 6px;
}
.preview-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.35;
}
.preview-card p {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: none;
  text-align: left;
}
.preview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preview-stat {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  padding: 4px 10px;
  background: #f3f4f6;
  border-radius: 8px;
}
.preview-stat.green {
  background: #f3f4f6;
  color: #374151;
}

.logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 180px;
}

.hero-card {
  margin-top: 48px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden; background: #fff;
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border); background: #fafafa;
}
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }
.hero-card-body { padding: 24px; background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.mock-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; text-align: left;
}
.mock-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px;
}
.mock-panel h4 { font-size: .85rem; color: var(--text-muted); margin-bottom: 12px; }
.score-ring {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(#6b7280 0 88%, #e5e7eb 88% 100%);
  display: grid; place-items: center; margin: 0 auto 12px;
}
.score-ring span {
  width: 88px; height: 88px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.4rem;
}
.mock-list { display: grid; gap: 10px; }
.mock-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px; background: var(--bg-soft); font-size: .9rem;
}
.pill { padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.pill-green { background: #f3f4f6; color: #6b7280; }

.trusted {
  padding: 32px 0 16px;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: #fff;
}
.trusted p { color: #9ca3af; font-size: 0.8125rem; margin-bottom: 14px; }
.logo-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  color: #d1d5db; font-weight: 600; font-size: 0.875rem; letter-spacing: -.01em;
}

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 32px 0 48px;
}
.stat {
  text-align: center; padding: 22px 16px; border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06); background: #fff;
}
.stat strong {
  display: block; font-size: 1.75rem; letter-spacing: -.03em; margin-bottom: 4px;
}
.stat span { color: var(--text-muted); font-size: 0.875rem; }

.section { padding: 64px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--bg-dark); color: #fff; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
  color: #6b7280; font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.section-head .eyebrow--red,
.section-head .eyebrow--green {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  margin-bottom: 20px;
}
.section.dark .section-head .eyebrow { color: #9ca3af; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 14px;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }
.section.dark .section-head p { color: #9ca3af; }

/* Problem section (overrank-style) */
.section-problem {
  background: #fafafa;
  padding: 88px 0;
}
.eyebrow--red {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.text-accent-red { color: #1a1a1a; }
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.problem-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 44px 28px 32px;
  text-align: center;
}
.problem-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  background: #374151;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Solution section (overrank-style tabs + tour panel) */
.section-solution {
  padding: 88px 0;
  background: #fff;
}
.eyebrow--green {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.grad-inline {
  color: #1a1a1a;
  font-weight: 800;
}
.tour-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tab-arrow {
  color: #d1d5db;
  font-size: 0.85rem;
  user-select: none;
  padding: 0 2px;
}
.tour-tab {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tour-tab:hover:not(.is-active) {
  background: #e5e7eb;
  color: #374151;
}
.tour-tab.is-done {
  background: #e5e7eb;
  color: #374151;
}
.tour-tab.is-active {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.tour-panel {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}
.tour-panel__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e7eb;
}
.chrome-dot:first-child,
.chrome-dot:nth-child(2),
.chrome-dot:nth-child(3) { background: #d1d5db; }
.chrome-url {
  margin-left: 8px;
  font-size: 0.78rem;
  color: #9ca3af;
}
.tour-panel__body {
  padding: 24px;
  min-height: 320px;
}
.tour-pane { display: none; }
.tour-pane.is-active { display: block; }
.tour-pane__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tour-pane__head h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.tour-pane__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
}
.tour-grid {
  display: grid;
  gap: 12px;
}
.tour-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.tour-item--featured {
  border-color: #d1d5db;
  background: #f9fafb;
}
.tour-item__thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb) !important;
}
.tour-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tour-item__info strong {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tour-item__info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.tour-item__status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #6b7280;
  white-space: nowrap;
}

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.feature-list { display: grid; gap: 16px; }
.feature-card {
  padding: 20px; border-radius: 14px; border: 1px solid var(--border); background: #fff;
}
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { color: var(--text-muted); font-size: .95rem; }

.quote {
  text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 0;
}
.quote blockquote {
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.35;
  letter-spacing: -.02em; font-weight: 600; margin-bottom: 24px;
}
.quote-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #374151;
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.quote-author small { display: block; color: var(--text-muted); }

.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 8px 24px rgba(17,24,39,.04);
}
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { color: var(--text-muted); font-size: .92rem; }
.icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: #f3f4f6; color: #374151; margin-bottom: 14px; font-size: 1.1rem;
}
.section.dark .card {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08);
}
.section.dark .card p { color: #9ca3af; }
.section.dark .icon { background: rgba(255,255,255,.08); color: #d1d5db; }

.result-card {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #fff;
}
.result-card .top { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text-muted); }
.result-card .body { padding: 16px; }
.growth { color: #1a1a1a; font-weight: 800; font-size: 1.4rem; }
.chart {
  height: 80px; border-radius: 10px; margin-top: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,0));
  position: relative; overflow: hidden;
}
.chart::after {
  content: ""; position: absolute; inset: 20px 8px 8px;
  border-top: 3px solid #6b7280; border-radius: 999px;
  transform: skewY(-8deg);
}

.pricing-wrap { max-width: 520px; margin: 0 auto; }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; background: #fff; box-shadow: var(--shadow); text-align: center;
}
.price {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -.04em; line-height: 1;
  margin: 16px 0 8px;
}
.price small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.checklist { text-align: left; margin: 24px 0; display: grid; gap: 12px; }
.checklist li {
  list-style: none; padding-left: 28px; position: relative; color: #374151;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: #6b7280; font-weight: 800;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; background: #fff;
}
.faq-item strong { display: block; margin-bottom: 6px; }
.faq-item p { color: var(--text-muted); font-size: .95rem; }

.cta {
  padding: 80px 0; text-align: center;
  background: #0b0e14;
  color: #fff;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; margin-bottom: 16px;
}
.cta p { color: #9ca3af; margin-bottom: 28px; font-size: 1.05rem; }

.footer {
  background: #06080d; color: #9ca3af; padding: 64px 0 28px; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px; margin-bottom: 40px;
}
.footer h4 { color: #fff; font-size: .9rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: grid; gap: 10px; font-size: .9rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem;
}
.tools-box {
  margin-top: 28px; padding: 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
}
.tools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 18px;
}
.tools-grid h5 { color: #fff; font-size: .8rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.tools-grid a { display: block; font-size: .85rem; margin-bottom: 8px; }

@media (min-width: 1100px) {
  .hero-float { display: block; }
  .hero-float-1 { top: 18%; left: 7%; }
  .hero-float-2 { top: 24%; right: 6%; }
  .hero-float-3 { top: 44%; left: 5%; }
  .hero-float-4 { top: 50%; right: 5%; }
  .hero-float-5 { top: 70%; left: 8%; }
}

@media (min-width: 1280px) {
  .hero-float-1 { left: 11%; }
  .hero-float-2 { right: 10%; }
  .hero-float-3 { left: 9%; }
  .hero-float-4 { right: 9%; }
  .hero-float-5 { left: 11%; }
}

@media (max-width: 1099px) {
  .hero-float { display: none !important; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-pill { padding-right: 14px; }
}

@media (max-width: 960px) {
  .mock-grid, .split, .stats, .cards-3, .cards-4, .footer-grid, .tools-grid, .problem-cards { grid-template-columns: 1fr; }
  .tour-tabs { gap: 6px; }
  .tab-arrow { display: none; }
  .tour-tab { font-size: 0.75rem; padding: 8px 14px; }
  .tour-item { grid-template-columns: 60px 1fr; }
  .tour-item__status { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 640px) {
  .nav-wrap { padding-top: 10px; }
  .nav-pill { min-height: 50px; padding-left: 14px; }
  .nav-logo-img { height: 22px; }
  .btn-cta span { display: inline; }
  .hero { padding-bottom: 40px; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.875rem; }
  .preview-card { padding: 16px; }
}
