@charset "UTF-8";

/* src/styles.scss */
:root {
  --brand: #3838d8;
  --black: #0d0e1a;
  --white: #ffffff;
  --surface: #f4f4f9;
  --navy: #12127a;
  --accent: #2020a8;
  --red: #e84040;
  --green: #1cb87e;
  --amber: #f4a22a;
  --grey: #626262;
  --blue-50: #eaeafb;
  --blue-100: #c4c4f4;
  --blue-200: #9898ec;
  --blue-300: #5d5ddf;
  --blue-500: #3838d8;
  --blue-700: #2020a8;
  --blue-900: #12127a;
  --neutral-0: #ffffff;
  --neutral-50: #f4f4f9;
  --neutral-900: #0d0e1a;
  --green-500: #1cb87e;
  --amber-500: #f4a22a;
  --red-500: #e84040;
  --gradient:
    linear-gradient(
      to right,
      #3838d8,
      #5c52f5);
  --hero-start: #2626c8;
  --hero-end: #5c52f5;
  --shadow-brand: 0px 4px 32px 0px rgba(56,56,216,0.24);
  --shadow-card: 0px 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-nav: 0px 4px 16px 2px rgba(0,0,0,0.05);
  --radius-pill: 100px;
  --radius-card: 24px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-display: "Syne", sans-serif;
  --font-primary: "Inter", sans-serif;
  --font-decorative: "Syne", sans-serif;
  --container-max: 1200px;
  --max-width: 1200px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
}
h3,
.h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}
.label-caps {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  display: block;
  margin-bottom: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}
.page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  min-width: 120px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  padding: 10px 20px;
}
.btn-pill:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-filled-white {
  background: var(--white);
  color: var(--navy);
}
.btn-filled-white:hover {
  background: var(--blue-50);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  font-weight: 400;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}
.btn-filled-blue {
  background: var(--brand);
  color: var(--white);
}
.btn-filled-blue:hover {
  background: var(--blue-700);
}
.btn-outline-blue {
  background: var(--white);
  border-color: var(--blue-700);
  color: var(--blue-700);
}
.btn-outline-blue:hover {
  background: var(--blue-50);
}
.btn-anim-wrap {
  display: inline-block;
  position: relative;
  padding: 2.5px;
  overflow: hidden;
}
.btn-anim-wrap .btn-pill {
  border-radius: calc(var(--radius-pill) - 2px);
}
.btn-anim-wrap-blue::before {
  background:
    conic-gradient(
      from 0deg,
      rgba(56, 56, 216, 0) 0%,
      rgba(56, 56, 216, 0) 30%,
      rgba(92, 82, 245, 0.9) 50%,
      rgba(56, 56, 216, 0) 70%,
      rgba(56, 56, 216, 0) 100%);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: var(--container-max);
  z-index: 1000;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.navbar.nav-hidden {
  transform: translateX(-50%) translateY(-120%);
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 36px;
}
.navbar-logo {
  height: 32px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.navbar-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--black);
  white-space: nowrap;
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.navbar-links a:hover {
  color: var(--navy);
}
.navbar-links a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 36px;
}
.btn-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  height: 36px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-nav-cta:hover {
  color: #fff;
}
.navbar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.navbar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggle span:nth-child(1) {
  position: absolute;
  top: 10px;
}
.navbar-toggle span:nth-child(2) {
  position: absolute;
  top: 17px;
}
.navbar-toggle span:nth-child(3) {
  position: absolute;
  top: 24px;
}
.navbar-toggle.open span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}
.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.open span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: var(--blue-50);
}
.mobile-menu .mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--blue-50);
}
.mobile-menu .mobile-menu-ctas a {
  text-align: center;
  font-family: var(--font-primary);
  font-size: 14px;
}
.btn-mobile-cta {
  background: var(--brand) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  padding: 12px 16px !important;
  font-weight: 700 !important;
}
.btn-mobile-cta:hover {
  background: var(--blue-700) !important;
}
.hero {
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.18) 1.5px,
      transparent 1.5px) 0 0/22px 22px,
    var(--navy);
  padding: 0 40px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 60% at 80% 50%,
      rgba(18, 18, 122, 0.38) 0%,
      transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  align-items: center;
  padding: 120px 0 88px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: blink 2.2s infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  font: var(--text-body-lg);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-trust {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.65);
  font: var(--text-label);
}
.hero-right {
  display: flex;
  justify-content: flex-end;
}
.score-card {
  background: rgba(13, 14, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.score-card-head {
  padding: 18px 24px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score-head-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.score-head-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.score-transform {
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.score-circle-wrap {
  text-align: center;
}
.lo-rp__response-body h3 {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 5px;
}
.lo-rp__tabs-bar .lo-rp {
  padding-bottom: 0px !important;
}
.lo-rp__response-body h1,
.lo-rp__response-body h2 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.lo-rp__response-body hr {
  border-color: #ddd !important;
  margin: 15px 0px;
}
.score-circle-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.score-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-circle.before {
  border: 4px solid rgba(239, 68, 68, 0.4);
}
.score-circle.after {
  border: 4px solid #22c55e;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.2);
}
.score-circle strong {
  font-size: 28px;
  font-weight: 700;
}
.score-circle.before strong {
  color: #ef4444;
}
.score-circle.after strong {
  color: #22c55e;
}
.score-circle-status {
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
}
.score-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.score-arrow span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}
.score-platforms {
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.score-platform-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.score-platform-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.score-platform-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-before {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}
.badge-after {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.badge-after.green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.badge-after.amber {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}
.score-card-foot {
  padding: 12px 24px;
  background: rgba(34, 197, 94, 0.08);
  text-align: center;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
}
.score-foot-val {
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}
.score-foot-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.testimonials {
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--blue-50);
  border-bottom: 1px solid var(--blue-50);
  display: flex;
  justify-content: center;
}
.testimonials-inner {
  max-width: var(--container-max);
  width: 100%;
  border-left: 1px solid var(--blue-50);
  border-right: 1px solid var(--blue-50);
}
.t-slide {
  display: none;
  animation: tFade 0.45s ease;
}
.t-slide.active {
  display: block;
}
@keyframes tFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.t-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 52px 40px 28px;
  text-align: center;
}
.t-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.25;
  margin-bottom: 4px;
}
.t-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}
.t-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}
.t-role {
  font-size: 13px;
  color: var(--grey);
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px 0 28px;
}
.t-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: var(--blue-100);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.t-dot.active {
  background: var(--brand);
  transform: scale(1.5);
}
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--blue-50);
  border-bottom: 1px solid var(--blue-50);
  display: flex;
  justify-content: center;
}
.stats-section .page-inner {
  border-left: 1px solid var(--blue-50);
  border-right: 1px solid var(--blue-50);
  padding: 88px 40px;
  width: 100%;
}
.stats-header {
  margin-bottom: 48px;
}
.stats-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--neutral-900);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-card);
  background: rgba(13, 14, 26, 0.09);
  overflow: hidden;
  margin-bottom: 36px;
}
.stat-cell {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.stat-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-unit {
  font-size: 24px;
}
.stat-desc {
  font-size: 14px;
  color: rgba(13, 14, 26, 0.55);
  line-height: 1.65;
}
.proof-text {
  font-size: 16px;
  color: rgba(13, 14, 26, 0.55);
  line-height: 1.72;
  max-width: 640px;
}
.services-section {
  background: var(--white);
  border-top: 1px solid var(--blue-50);
  border-bottom: 1px solid var(--blue-50);
  display: flex;
  justify-content: center;
}
.page-inner {
  border-left: 1px solid var(--blue-50);
  border-right: 1px solid var(--blue-50);
  padding: 88px 40px;
  width: 100%;
}
.services-header {
  margin-bottom: 52px;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--neutral-900);
  margin-bottom: 16px;
}
.services-header p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(13, 14, 26, 0.52);
  max-width: 520px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid rgba(13, 14, 26, 0.09);
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  border-color: rgba(56, 56, 216, 0.2);
  box-shadow: 0 4px 32px rgba(56, 56, 216, 0.07);
}
.svc-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(
      140deg,
      var(--hero-start) 0%,
      var(--navy) 100%);
  border: none;
  color: var(--white);
  margin-top: 40px;
}
.svc-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.svc-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: #dcdbf1;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-card.featured .svc-icon {
  background: rgba(255, 255, 255, 0.15);
}
.svc-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-card.featured h3 {
  color: var(--white);
}
.svc-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(13, 14, 26, 0.55);
  margin-bottom: 24px;
}
.svc-card.featured .svc-desc {
  color: rgba(255, 255, 255, 0.72);
}
.svc-divider {
  height: 1px;
  background: rgba(13, 14, 26, 0.08);
  margin-bottom: 20px;
}
.svc-card.featured .svc-divider {
  background: rgba(255, 255, 255, 0.15);
}
.svc-includes {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(13, 14, 26, 0.38);
  margin-bottom: 14px;
  display: block;
}
.svc-card.featured .svc-includes {
  color: rgba(255, 255, 255, 0.45);
}
.svc-list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(13, 14, 26, 0.7);
  line-height: 1.55;
  margin-bottom: 10px;
}
.svc-card.featured .svc-list li {
  color: rgba(255, 255, 255, 0.78);
}
.svc-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-500);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-list.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 36px;
}
.svc-list.two-col li {
  margin-bottom: 0;
}
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.svc-timeline {
  font-size: 13px;
  color: rgba(13, 14, 26, 0.42);
}
.svc-timeline strong {
  color: rgba(13, 14, 26, 0.65);
  font-weight: 600;
}
.svc-card.featured .svc-timeline {
  color: rgba(255, 255, 255, 0.5);
}
.svc-card.featured .svc-timeline strong {
  color: rgba(255, 255, 255, 0.78);
}
.process-cta-wrap {
  margin-top: 28px;
}
.process-cta-banner {
  background: var(--surface);
  border: 1px solid rgba(13, 14, 26, 0.08);
  padding: 24px 32px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.process-cta-text {
  font-size: 16px;
  color: rgba(13, 14, 26, 0.62);
}
.process-cta-text strong {
  color: var(--neutral-900);
}
.value-section {
  background: var(--surface);
  border-top: 1px solid var(--blue-50);
  border-bottom: 1px solid var(--blue-50);
  display: flex;
  justify-content: center;
}
.value-section .page-inner {
  border-left: 1px solid var(--blue-50);
  border-right: 1px solid var(--blue-50);
  padding: 88px 40px;
  width: 100%;
}
.value-header {
  margin-bottom: 48px;
}
.value-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--neutral-900);
  margin-bottom: 12px;
}
.value-header p {
  font-size: 16px;
  color: rgba(13, 14, 26, 0.52);
  max-width: 460px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid rgba(13, 14, 26, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}
.value-card:hover {
  border-color: rgba(56, 56, 216, 0.18);
  transform: translateY(-2px);
}
.value-card-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: rgba(13, 14, 26, 0.52);
  line-height: 1.65;
}
.cta-section {
  background:
    linear-gradient(
      145deg,
      var(--hero-start) 0%,
      var(--hero-end) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .cta-inner-wrap {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 96px 40px;
  width: 100%;
  max-width: var(--max-width);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 50% 100%,
      rgba(18, 18, 122, 0.55) 0%,
      transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.cta-inner {
  max-width: 600px;
  width: 100%;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: var(--text-button);
  text-decoration: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
  padding: 10px 20px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-sm {
  height: var(--btn-height-sm);
  padding: 0 16px;
}
.btn-md {
  height: var(--btn-height-md);
  padding: 0 22px;
}
.btn-lg {
  height: var(--btn-height-lg);
}
.btn-primary {
  background: var(--blue-500);
  color: var(--neutral-0);
}
.btn-primary:hover {
  background: var(--blue-700);
}
.btn-outline {
  background: transparent;
  color: var(--blue-500);
  border: 1.5px solid var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-500);
  color: var(--neutral-0);
}
.btn-white {
  background: var(--neutral-0);
  color: var(--blue-500);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.btn-ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--neutral-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
}
.nav-logo img {
  height: 28px;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font: var(--text-button);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--neutral-0);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.screen {
  display: none;
}
.screen.active {
  display: block;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-size: clamp(40px, 5vw, 48px);
  color: var(--neutral-0);
  margin-bottom: 20px;
}
.hero-url-wrap {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 14, 26, 0.7);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
  margin-bottom: 16px;
}
.hero-url-wrap:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}
.hero-url-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  color: var(--neutral-0);
  background: transparent;
  min-width: 0;
}
.hero-url-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hero-url-input--error {
  color: #fca5a5;
  caret-color: #fca5a5;
}
.hero-url-input--error::placeholder {
  color: rgba(252, 165, 165, 0.5);
}
.hero-url-submit {
  padding: 16px 28px;
  background: var(--neutral-0);
  color: var(--blue-500);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.hero-url-submit:hover {
  background: var(--blue-50);
}
.hero-url-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.scanning-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 14, 26, 0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scanning-overlay.active {
  display: flex;
}
.scan-content {
  text-align: center;
  color: #fff;
}
.scan-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--blue-300);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 32px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.scan-steps {
  list-style: none;
}
.scan-step {
  font-size: 1.05rem;
  padding: 8px 0;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.scan-step.done {
  opacity: 1;
}
.scan-step.done::before {
  content: "\2713  ";
  color: var(--green-500);
  font-weight: 700;
}
.scan-step.current {
  opacity: 1;
}
.scan-step.current::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-300);
  margin-right: 10px;
  animation: pulse 1s ease infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.confirm-screen {
  background: var(--neutral-50);
}
.confirm-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.confirm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.confirm-header h2 {
  font: var(--text-h2);
  font-size: 1.75rem;
  color: var(--neutral-900);
}
.check-circle {
  width: 36px;
  height: 36px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.confirm-sub {
  color: rgba(13, 14, 26, 0.52);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.info-card {
  background: var(--neutral-0);
  border: 1px solid rgba(13, 14, 26, 0.09);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s;
}
.info-card:hover {
  border-color: rgba(56, 56, 216, 0.15);
}
.info-card-hint {
  margin-bottom: 20px;
}
.text-muted {
  color: rgba(13, 14, 26, 0.45);
}
.assumption-field label {
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 5px;
  display: block;
}
.assumption-hint {
  font-size: 0.78rem;
  color: rgba(13, 14, 26, 0.35);
  margin-left: 8px;
}
.param-source {
  font-size: 0.72rem;
  color: rgba(13, 14, 26, 0.4);
  margin-top: 6px;
  line-height: 1.4;
}
.param-source a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.assumption-input-wrap {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.assumption-field input {
  width: 80px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 14, 26, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: right;
  font-family: var(--font-primary);
}
.url-error {
  color: #f60a0a;
  font-size: 13px;
  position: relative;
  top: -6px;
}
.info-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-500);
  font-family: var(--font-primary);
  margin-bottom: 20px;
}
.info-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  font-size: 0.75rem;
  color: var(--blue-500);
  cursor: help;
  vertical-align: middle;
}
.info-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(13, 14, 26, 0.48);
  margin-bottom: 6px;
}
.info-field input,
.info-field select {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  border: 1px solid rgba(13, 14, 26, 0.12);
  border-radius: var(--radius-sm);
  background: var(--neutral-0);
  color: var(--neutral-900);
  transition: border-color 0.2s;
}
.info-field input:focus,
.info-field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(56, 56, 216, 0.1);
}
.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offering-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(13, 14, 26, 0.09);
  border-radius: var(--radius-md);
  background: var(--neutral-0);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.offering-card:hover {
  border-color: rgba(56, 56, 216, 0.15);
  box-shadow: 0 2px 12px rgba(56, 56, 216, 0.05);
}
.offering-card.offering-disabled {
  opacity: 0.55;
}
.offering-header {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.offering-header input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-500);
  cursor: pointer;
  flex-shrink: 0;
}
.offering-name {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-900);
}
.confidence-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.confidence-high {
  background: rgba(28, 184, 126, 0.12);
  color: #14855a;
}
.confidence-medium {
  background: rgba(244, 162, 42, 0.14);
  color: #b86d00;
}
.confidence-low {
  background: rgba(232, 64, 64, 0.1);
  color: #b83232;
}
.offering-description {
  font-size: 0.85rem;
  color: rgba(13, 14, 26, 0.58);
  line-height: 1.5;
  margin: 0;
}
.offering-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offering-meta-item {
  font-size: 0.8rem;
  color: rgba(13, 14, 26, 0.55);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.offering-meta-label {
  font-weight: 600;
  color: rgba(13, 14, 26, 0.38);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.4px;
  align-self: center;
}
.offering-fields-grid {
  display: grid;
  grid-template-columns: 180px 180px;
  gap: 12px;
  margin-top: 4px;
}
.offering-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.offering-field-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(13, 14, 26, 0.38);
}
.offering-aov,
.offering-searches,
.offering-cvr {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.88rem;
  font-family: var(--font-primary);
  border: 1px solid rgba(13, 14, 26, 0.1);
  border-radius: 6px;
  text-align: right;
  color: var(--neutral-900);
  background: var(--neutral-50);
  -moz-appearance: textfield;
}
.offering-aov::-webkit-inner-spin-button,
.offering-aov::-webkit-outer-spin-button,
.offering-cvr::-webkit-inner-spin-button,
.offering-cvr::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.offering-aov:focus,
.offering-searches:focus,
.offering-cvr:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--neutral-0);
}
.add-offering-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(13, 14, 26, 0.06);
}
.add-offering-row span {
  font-size: 0.85rem;
  color: rgba(13, 14, 26, 0.45);
  white-space: nowrap;
}
.add-input {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  border: 1px solid rgba(13, 14, 26, 0.1);
  border-radius: 6px;
}
.add-input:focus {
  outline: none;
  border-color: var(--blue-500);
}
.add-aov-input {
  width: 100px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  border: 1px solid rgba(13, 14, 26, 0.1);
  border-radius: 6px;
  text-align: right;
}
.add-aov-input:focus {
  outline: none;
  border-color: var(--blue-500);
}
.add-btn {
  padding: 8px 16px;
  background: var(--neutral-50);
  border: 1px solid rgba(13, 14, 26, 0.12);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.add-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-500);
}
.confirm-cta {
  text-align: center;
  margin-top: 40px;
}
.btn-calc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--blue-500);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-primary);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(56, 56, 216, 0.3);
}
.btn-calc:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}
.btn-calc:active {
  transform: translateY(0);
}
.results-screen {
  background: var(--neutral-50);
}
.results-hero {
  background:
    linear-gradient(
      145deg,
      var(--hero-start) 0%,
      var(--hero-end) 100%);
  padding: 150px 24px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.results-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 50% 100%,
      rgba(18, 18, 122, 0.5) 0%,
      transparent 65%);
  pointer-events: none;
}
.results-hero > div {
  position: relative;
  z-index: 1;
}
.results-hero .biz-name {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.results-hero .biz-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}
.results-hero .losing-label {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 500;
}
.money-big {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  text-shadow: 0 0 40px rgba(28, 184, 126, 0.3), 0 0 80px rgba(28, 184, 126, 0.15);
}
.money-big .green-text {
  color: var(--green-500);
}
.money-year {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber-500);
  margin-top: 4px;
  letter-spacing: -0.5px;
}
.results-hero .opportunity-why {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.unlock-card {
  max-width: 500px;
  margin: 48px auto 0;
  background: var(--neutral-0);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(56, 56, 216, 0.12);
  border: 1px solid rgba(56, 56, 216, 0.15);
  text-align: center;
}
.unlock-card .lock-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.unlock-card h2 {
  font-family: var(--font-decorative);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.unlock-card .subtext {
  font-size: 0.95rem;
  color: rgba(13, 14, 26, 0.52);
  line-height: 1.6;
  margin-bottom: 20px;
}
.unlock-bullets {
  text-align: left;
  margin: 0 auto 24px;
  max-width: 360px;
  list-style: none;
}
.unlock-bullets li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--neutral-900);
}
.unlock-bullets li::before {
  content: "\2713";
  color: var(--blue-500);
  font-weight: 700;
  margin-right: 10px;
}
.unlock-field {
  margin-bottom: 14px;
  text-align: left;
}
.unlock-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 14, 26, 0.48);
  margin-bottom: 4px;
}
.unlock-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 14, 26, 0.12);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--neutral-900);
}
.unlock-field input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(56, 56, 216, 0.1);
}
.unlock-btn {
  width: 100%;
  padding: 16px;
  background: var(--blue-500);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: background 0.2s;
}
.unlock-btn:hover {
  background: var(--blue-700);
}
.unlock-trust {
  font-size: 0.78rem;
  color: rgba(13, 14, 26, 0.38);
  margin-top: 12px;
}
.unlock-error {
  color: var(--red-500);
  font-size: 0.85rem;
  margin-top: 8px;
}
.otp-sent-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(13, 14, 26, 0.58);
  margin-bottom: 16px;
}
.otp-sent-notice strong {
  color: var(--neutral-900);
}
.otp-change-email {
  background: none;
  border: none;
  color: var(--blue-500);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 4px;
}
.otp-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-align: center;
  border: 2px solid rgba(13, 14, 26, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  color: var(--neutral-900);
  background: var(--neutral-0);
  transition: border-color 0.2s;
}
.otp-input:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(56, 56, 216, 0.1);
}
.otp-resend-btn {
  background: none;
  border: none;
  color: var(--blue-500);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.locked-preview {
  margin: 40px auto;
  max-width: 700px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
.locked-preview-content {
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.locked-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--neutral-50));
  pointer-events: none;
}
.locked-section {
  margin-bottom: 24px;
  padding: 0 24px;
}
.locked-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.locked-bar {
  height: 12px;
  background: rgba(13, 14, 26, 0.08);
  border-radius: 6px;
  margin-bottom: 6px;
}
.locked-bar.w80 {
  width: 80%;
}
.locked-bar.w60 {
  width: 60%;
}
.locked-bar.w70 {
  width: 70%;
}
.locked-bar.w50 {
  width: 50%;
}
.locked-bar.w90 {
  width: 90%;
}
.locked-bar.w40 {
  width: 40%;
}
.report-full {
  display: none;
}
.report-full.revealed {
  display: block;
  animation: revealReport 0.6s ease;
}
@keyframes revealReport {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.biz-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--neutral-0);
  padding: 16px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 14, 26, 0.06);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.biz-bar-item {
  font-size: 0.88rem;
  color: rgba(13, 14, 26, 0.48);
}
.biz-bar-item strong {
  color: var(--neutral-900);
}
.biz-bar-divider {
  width: 1px;
  height: 20px;
  background: rgba(13, 14, 26, 0.1);
}
.results-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.section {
  margin-bottom: 48px;
}
.section-title {
  font: var(--text-h3);
  font-size: 1.25rem;
  color: var(--neutral-900);
  margin-bottom: 20px;
}
.flow-section {
  background: var(--neutral-0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 14, 26, 0.06);
  padding: 32px;
  margin-bottom: 32px;
}
.flow-section-title {
  font: var(--text-h3);
  font-size: 1.15rem;
  color: var(--neutral-900);
  margin-bottom: 24px;
  text-align: center;
}
.flow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.flow-step-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 180px;
}
.flow-icon {
  font-size: 2rem;
  line-height: 1;
}
.flow-step-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--neutral-900);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--neutral-50);
  border: 1.5px solid rgba(13, 14, 26, 0.08);
  width: 100%;
}
.flow-step-label.problem {
  background: rgba(232, 64, 64, 0.06);
  border-color: rgba(232, 64, 64, 0.2);
  color: var(--red-500);
}
.flow-step-label.loss {
  background: rgba(232, 64, 64, 0.1);
  border-color: rgba(232, 64, 64, 0.25);
  color: var(--red-500);
  font-weight: 700;
}
.flow-arrow {
  font-size: 1.5rem;
  color: rgba(13, 14, 26, 0.2);
  flex-shrink: 0;
  padding: 0 4px;
  margin-top: 18px;
}
.chart-card {
  background: var(--neutral-0);
  border: 1px solid rgba(13, 14, 26, 0.06);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.chart-wrap {
  position: relative;
  height: 320px;
}
.breakdown-card {
  background: var(--neutral-0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 28px;
  margin-bottom: 20px;
  border-left: 2px solid rgba(13, 14, 26, 0.12);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.breakdown-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.breakdown-card.severity-high {
  border-left-color: var(--red-500);
}
.breakdown-card.severity-medium {
  border-left-color: var(--amber-500);
}
.breakdown-card.severity-low {
  border-left-color: #facc15;
}
.breakdown-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.breakdown-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-900);
}
.breakdown-card-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-500);
}
.math-table {
  width: 100%;
  border-collapse: collapse;
}
.math-table tr {
  border-bottom: 1px solid rgba(13, 14, 26, 0.05);
}
.math-table tr:last-child {
  border-bottom: none;
}
.math-table tr.total-row {
  border-top: 2px solid rgba(13, 14, 26, 0.1);
  border-bottom: none;
}
.math-table td {
  padding: 9px 0;
  font-size: 0.9rem;
}
.math-table td:first-child {
  color: rgba(13, 14, 26, 0.48);
}
.math-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--neutral-900);
}
.math-table tr.total-row td {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 14px;
}
.math-table tr.total-row td:first-child {
  color: var(--blue-500);
}
.math-table tr.total-row td:last-child {
  color: var(--blue-500);
}
.math-table .highlight-red {
  color: var(--red-500);
  font-weight: 700;
}
.competitors-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(13, 14, 26, 0.06);
}
.competitors-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(13, 14, 26, 0.38);
  margin-bottom: 8px;
}
.competitor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.competitor-tag {
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(232, 64, 64, 0.06);
  color: var(--red-500);
  font-weight: 600;
  border: 1px solid rgba(232, 64, 64, 0.2);
}
.prompts-section {
  background: var(--neutral-0);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 14, 26, 0.06);
  padding: 28px;
  margin-bottom: 32px;
}
.prompts-section-title {
  font: var(--text-h3);
  font-size: 1.15rem;
  color: var(--neutral-900);
  margin-bottom: 6px;
}
.prompts-section-sub {
  font-size: 0.85rem;
  color: rgba(13, 14, 26, 0.45);
  margin-bottom: 16px;
}
.prompt-list {
  list-style: none;
}
.prompt-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(13, 14, 26, 0.05);
  font-size: 0.88rem;
}
.prompt-item:last-child {
  border-bottom: none;
}
.prompt-text {
  color: var(--neutral-900);
  flex: 1;
}
.prompt-text::before {
  content: "\201c";
  color: rgba(13, 14, 26, 0.2);
}
.prompt-text::after {
  content: "\201d";
  color: rgba(13, 14, 26, 0.2);
}
.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-invisible {
  background: rgba(232, 64, 64, 0.08);
  color: var(--red-500);
}
.status-mentioned {
  background: rgba(244, 162, 42, 0.1);
  color: var(--amber-500);
}
.status-visible {
  background: rgba(28, 184, 126, 0.1);
  color: var(--green-500);
}
.steps-list {
  list-style: none;
  counter-reset: step;
}
.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--blue-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 2px;
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(13, 14, 26, 0.48);
}
.results-cta {
  background:
    linear-gradient(
      145deg,
      var(--hero-start) 0%,
      var(--hero-end) 100%);
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.results-cta > * {
  position: relative;
  z-index: 1;
}
.results-cta h3 {
  font-family: var(--font-decorative);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.results-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.how-section {
  background: var(--neutral-0);
}
.how-header {
  margin-bottom: 52px;
}
.how-header h2 {
  font-size: 45px;
  color: var(--neutral-900);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.bgdots {
  background:
    radial-gradient(
      circle,
      rgba(56, 56, 216, 0.08) 1.5px,
      transparent 1.5px) 0 0/22px 22px;
}
.how-step {
  background: var(--neutral-50);
  border: 1px solid rgba(13, 14, 26, 0.06);
  padding: 36px 28px;
  position: relative;
  border-radius: var(--radius-card);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.how-step:hover {
  border-color: rgba(56, 56, 216, 0.18);
  box-shadow: 0 4px 24px rgba(56, 56, 216, 0.06);
}
.how-num {
  position: absolute;
  top: -14px;
  left: 28px;
  width: 28px;
  height: 28px;
  background: var(--blue-500);
  color: var(--neutral-0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.how-icon {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 4px;
}
.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 8px;
}
.how-step p {
  font: var(--text-body);
  font-size: 14px;
  color: rgba(13, 14, 26, 0.52);
  line-height: 1.65;
}
.how-grid .how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--blue-200),
      var(--blue-500));
  z-index: 1;
}
.calc-stats-section {
  background: var(--neutral-50);
}
.calc-stats-header {
  margin-bottom: 44px;
}
.calc-stats-header h2 {
  font-size: 45px;
  color: var(--neutral-900);
}
.preview-section {
  background: var(--neutral-0);
}
.preview-header {
  margin-bottom: 40px;
}
.report-breakdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.report-block {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
}
.report-block__icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.report-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}
.report-block p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
}
.preview-header h2 {
  font-size: 45px;
  color: var(--neutral-900);
  margin-bottom: 12px;
}
.preview-header p {
  font: var(--text-body-lg);
  color: rgba(13, 14, 26, 0.52);
  max-width: 1000px;
}
.preview-card {
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13, 14, 26, 0.12);
  border: 1px solid rgba(13, 14, 26, 0.06);
  max-width: 700px;
  border-radius: var(--radius-card);
}
.preview-mock-hero {
  background:
    linear-gradient(
      145deg,
      var(--hero-start) 0%,
      var(--hero-end) 100%);
  background: var(--navy);
  padding: 28px 32px;
  text-align: center;
  position: relative;
}
.preview-mock-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.preview-mock-hero > * {
  position: relative;
  z-index: 1;
}
.preview-mock-body {
  background: var(--neutral-0);
  padding: 24px 32px;
}
.preview-mock-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 14, 26, 0.05);
}
.preview-mock-row:last-child {
  border-bottom: none;
}
.preview-mock-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-900);
  min-width: 140px;
  flex-shrink: 0;
}
.preview-mock-bar {
  height: 10px;
  background:
    linear-gradient(
      90deg,
      var(--blue-500),
      var(--hero-end));
  border-radius: 5px;
  flex: 1;
}
.preview-mock-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-500);
  white-space: nowrap;
  min-width: 90px;
  text-align: right;
}
.bottom-cta {
  background:
    linear-gradient(
      145deg,
      var(--hero-start) 0%,
      var(--hero-end) 100%);
  background: var(--navy);
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 50% 100%,
      rgba(18, 18, 122, 0.55) 0%,
      transparent 65%);
  pointer-events: none;
}
.bottom-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bottom-cta h2 {
  font-family: var(--font-decorative);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--neutral-0);
  margin-bottom: 14px;
}
.bottom-cta p {
  font: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
}
.bottom-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer {
  width: 100%;
  background: var(--blue-50);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--container-max);
  width: 100%;
  border-left: 1px solid var(--blue-100);
  border-right: 1px solid var(--blue-100);
  padding: 80px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 580px;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-right: auto;
}
.footer-desc {
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  padding-top: 8px;
}
.footer-socials a {
  width: 24px;
  height: 24px;
  display: flex;
}
.footer-socials img {
  width: 24px;
  height: 24px;
}
.footer-columns {
  display: flex;
  gap: 15px;
}
.footer-column {
  width: 165px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.footer-column h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.5;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0px;
  padding-left: 0px;
}
.footer-column li a {
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
}
.footer-column li a:hover {
  color: var(--brand);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    max-width: 100%;
  }
}
.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 15px;
  color: #000;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #000;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #3043d9;
  color: #fff;
}
.footer-social a svg {
  fill: currentColor;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #000;
  margin: 0 0 15px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.15s;
}
.footer-col ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 15px;
  color: #555b7a;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 15px;
  color: #555b7a;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover {
  color: #8a90b0;
}
.opacity-0 {
  opacity: 0;
}
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.print-footer {
  display: none;
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 0;
  }
  .hero-right {
    justify-content: flex-start;
  }
  .score-card {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .how-grid,
  .how-grid--4 {
    grid-template-columns: 1fr;
  }
  .report-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid .how-step::after {
    display: none;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero,
  .footer,
  .how-section,
  .calc-stats-section,
  .preview-section,
  .bottom-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .t-inner {
    padding: 28px 24px 18px;
  }
  .nav-inner {
    padding: 0 24px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .preview-mock-label {
    min-width: 100px;
    font-size: 12px;
  }
  .preview-mock-val {
    min-width: 70px;
    font-size: 12px;
  }
  .bottom-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .bottom-cta-btns .btn-anim-wrap,
  .bottom-cta-btns .btn-ghost-light {
    width: 100%;
  }
  .info-fields {
    grid-template-columns: 1fr;
  }
  .money-big {
    font-size: 2.5rem;
  }
  .money-year {
    font-size: 1.25rem;
  }
  .chart-wrap {
    height: 260px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .add-offering-row {
    flex-wrap: wrap;
  }
  .flow-visual {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .biz-bar {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .biz-bar-divider {
    display: none;
  }
  .prompt-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .breakdown-card {
    padding: 20px 16px;
  }
  .unlock-card {
    margin: 32px 16px 0;
    padding: 32px 24px;
  }
  .results-hero .biz-name {
    font-size: 40px;
  }
  .nav-right {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-right.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--neutral-900);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media print {
  body {
    background: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .nav {
    display: none !important;
  }
  .screen {
    display: block !important;
  }
  .screen:not(.results-screen) {
    display: none !important;
  }
  .results-hero {
    padding-top: 20px;
  }
  .results-screen {
    background: #fff;
  }
  .chart-card,
  .breakdown-card,
  .flow-section,
  .prompts-section {
    break-inside: avoid;
  }
  .results-cta {
    display: none !important;
  }
  .footer {
    display: none !important;
  }
  .unlock-card {
    display: none !important;
  }
  .locked-preview {
    display: none !important;
  }
  .report-full {
    display: block !important;
  }
  .print-footer {
    display: block !important;
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(13, 14, 26, 0.38);
    border-top: 1px solid rgba(13, 14, 26, 0.08);
    margin-top: 32px;
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 0 72px;
  }
  .hero-right {
    justify-content: flex-start;
  }
  .score-card {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-card.featured {
    grid-column: span 1;
  }
  .svc-list.two-col {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .navbar {
    width: calc(100% - 32px);
    padding: 10px 14px;
  }
  .navbar-links {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .stats-section .page-inner,
  .services-section .page-inner,
  .value-section .page-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cta-section .cta-inner-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .t-inner {
    padding: 28px 24px 18px;
  }
}
@media (max-width: 640px) {
  .hero-left h1 {
    font-size: 36px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-anim-wrap,
  .btn-pill {
    width: 100%;
    justify-content: center;
  }
  .process-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-btns .btn-anim-wrap,
  .cta-btns .btn-pill {
    width: 100%;
  }
  .svc-card {
    padding: 28px 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
.opportunity-range {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  margin-bottom: 8px;
}
.projections-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}
.projections-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.projections-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(13, 14, 26, 0.45);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(13, 14, 26, 0.08);
}
.projections-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(13, 14, 26, 0.05);
  color: var(--black);
}
.projections-table .loss-col {
  color: var(--red-500);
  font-weight: 600;
}
.projections-table .gain-col {
  color: var(--green-500);
  font-weight: 600;
}
.projection-footnote {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(13, 14, 26, 0.4);
  line-height: 1.5;
}
.formula-footnote {
  font-size: 0.78rem;
  color: rgba(13, 14, 26, 0.4);
  line-height: 1.7;
  padding: 16px;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.assumptions-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.assumption-field {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.wh {
  background:
    linear-gradient(
      145deg,
      var(--hero-start, #2626c8) 0%,
      var(--navy, #0d0e1a) 100%);
  padding: 110px 24px 40px;
  position: relative;
  overflow: hidden;
}
.wh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(92, 82, 245, 0.18) 0%,
      transparent 70%);
  pointer-events: none;
}
.wh__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.wh__biz {
  text-align: center;
  margin-top: 24px;
}
.wh__name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  font-family: var(--font-primary, "Syne", sans-serif);
}
.wh__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.wh__back {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  cursor: pointer;
  padding: 7px 16px;
  border-radius: 20px;
  display: block;
  margin: 20px auto 0;
  transition: all 0.15s;
}
.wh__back:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.mb-0 {
  margin-bottom: 0px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-DAJXCIFQ.css.map */
