:root {
  --black: #0a0a0a;
  --surface: #101010;
  --card: #161616;
  --line: #2a2a2a;
  --muted: #9ca3af;
  --white: #ffffff;
  --red: #ee0000;
  --red-light: #ff3030;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --red-shadow: 0 0 34px rgba(238, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(238, 0, 0, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.06), transparent 26rem),
    var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-large {
  padding: 120px 0 96px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand img {
  width: auto;
  height: 36px;
  border-radius: 12px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--white);
}

.menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  flex: 0 0 44px;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-button:active {
  transform: none;
}

.menu-button.is-open {
  border-color: rgba(238, 0, 0, 0.62);
  background: rgba(238, 0, 0, 0.1);
  box-shadow: 0 0 24px rgba(238, 0, 0, 0.18);
}

.menu-button span {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: top 240ms ease, transform 240ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) {
  top: 15px;
}

.menu-button span:nth-child(2) {
  top: 21px;
}

.menu-button span:nth-child(3) {
  top: 27px;
}

.menu-button.is-open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
}

.menu-button.is-open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 42px rgba(238, 0, 0, 0.24);
}

.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
}

.btn-small {
  min-height: 42px;
  padding-inline: 22px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}

.noise-layer,
.grid-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.noise-layer {
  opacity: 0.22;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
}

.grid-layer {
  display: none;
}

.home-page,
.form-page {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.home-page::before,
.form-page::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(920px, 72vh);
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(rgba(41, 37, 36, 0.12), rgba(41, 37, 36, 0.12)),
    linear-gradient(rgba(41, 37, 36, 0.1), rgba(41, 37, 36, 0.1)),
    linear-gradient(rgba(41, 37, 36, 0.1), rgba(41, 37, 36, 0.1));
  background-repeat: repeat, repeat, no-repeat, no-repeat, no-repeat;
  background-size: 200px 200px, 200px 200px, 201px 201px, 201px 201px, 201px 201px;
  background-position: 50% -1px, 50% -1px, calc(50% - 600px) -1px, calc(50% + 600px) -1px, calc(50% + 200px) 799px;
  -webkit-mask-image: radial-gradient(100% 100% at top right, rgba(0, 0, 0, 1), transparent 74%);
  mask-image: radial-gradient(100% 100% at top right, rgba(0, 0, 0, 1), transparent 74%);
}

.home-page::after,
.form-page::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(880px, 66vh);
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(41, 37, 36, 0.1), rgba(41, 37, 36, 0.1)),
    linear-gradient(rgba(41, 37, 36, 0.1), rgba(41, 37, 36, 0.1));
  background-repeat: repeat, repeat, no-repeat, no-repeat;
  background-size: 200px 200px, 200px 200px, 201px 201px, 201px 201px;
  background-position: 50% 0, 50% 0, calc(50% - 400px) 400px, calc(50% + 200px) 600px;
  -webkit-mask-image: radial-gradient(100% 100% at bottom right, rgba(0, 0, 0, 1), transparent 74%);
  mask-image: radial-gradient(100% 100% at bottom right, rgba(0, 0, 0, 1), transparent 74%);
}

.home-page > *,
.form-page > * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
  align-items: center;
  gap: 44px;
  text-align: left;
}

.hero-copy {
  max-width: 520px;
  margin: 0;
}

.eyebrow,
.label {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(238, 0, 0, 0.52);
  border-radius: 999px;
  background: rgba(238, 0, 0, 0.08);
  text-transform: none;
}

.icon-dot {
  font-size: 14px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3.3vw, 2.55rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.ig-profile-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 22px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ig-profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 0, 0, 0.5);
  background: rgba(238, 0, 0, 0.08);
}

.ig-profile-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  object-fit: cover;
}

.ig-profile-card span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ig-profile-card strong {
  font-size: 13px;
  line-height: 1.1;
}

.ig-profile-card small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.red-glow {
  position: absolute;
  inset: -32px;
  border-radius: 999px;
  background: rgba(238, 0, 0, 0.18);
  filter: blur(48px);
  animation: pulse-red 3.4s ease-in-out infinite;
}

.results-snapshot {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 0 0 auto;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(238, 0, 0, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(238, 0, 0, 0.12), transparent 42%),
    rgba(17, 17, 17, 0.94);
  box-shadow: var(--shadow), 0 0 42px rgba(238, 0, 0, 0.16);
  animation: float-snapshot 7s ease-in-out infinite;
}

.results-snapshot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--white);
}

.results-snapshot::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  content: "";
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.12);
}

.hero-visual .dashboard,
.hero-visual .metric-badge {
  display: none;
}

.dashboard {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.95);
  box-shadow: var(--shadow);
}

.dashboard::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
}

.animated-border {
  isolation: isolate;
}

.animated-border::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.75;
  background: linear-gradient(120deg, transparent, rgba(238, 0, 0, 0.8), transparent);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-flow 5.5s linear infinite;
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(238, 0, 0, 0.14), transparent);
  animation: scanline 4.5s ease-in-out infinite;
}

.dashboard-head,
.dashboard-grid {
  position: relative;
  z-index: 1;
}

.dashboard-head {
  display: grid;
  gap: 9px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(238, 0, 0, 0.12), transparent 48%),
    rgba(0, 0, 0, 0.22);
}

.panel-title span {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.room-meta,
.dashboard-title-row,
.room-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.room-label,
.room-status,
.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-label {
  padding: 5px 9px;
  border: 1px solid rgba(238, 0, 0, 0.34);
  border-radius: 999px;
  background: rgba(238, 0, 0, 0.08);
}

.room-status {
  color: rgba(255, 255, 255, 0.58);
}

.room-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(238, 0, 0, 0.72);
  animation: live-dot 1.8s ease-in-out infinite;
}

.dashboard-title-row {
  align-items: center;
}

.dashboard-head h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.dashboard-title-row p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.5;
}

.live-chip {
  flex: 0 0 auto;
  padding: 6px 11px;
  border: 1px solid rgba(238, 0, 0, 0.42);
  border-radius: 999px;
  background: rgba(238, 0, 0, 0.08);
}

.room-stats {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 6px;
}

.room-stats span {
  min-width: 0;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.room-stats strong,
.room-stats small {
  display: inline;
}

.room-stats strong {
  color: var(--white);
  font-size: 13px;
  line-height: 1;
}

.room-stats small {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 20px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  padding: 16px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-panel {
  grid-row: span 2;
}

.chart-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 32px;
}

.chart {
  width: 100%;
  height: 250px;
  margin-top: 26px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
}

.chart-line {
  fill: none;
  stroke: url(#chart-gradient);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw-line 2.6s ease-out forwards;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 156px;
  margin-top: 28px;
}

.bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--red), var(--white));
  transform-origin: bottom;
  animation: bar-rise 1.1s ease-out both;
}

.bars span:nth-child(2) { animation-delay: 90ms; }
.bars span:nth-child(3) { animation-delay: 180ms; }
.bars span:nth-child(4) { animation-delay: 270ms; }
.bars span:nth-child(5) { animation-delay: 360ms; }
.bars span:nth-child(6) { animation-delay: 450ms; }
.bars span:nth-child(7) { animation-delay: 540ms; }

.mini-panel strong {
  display: block;
  margin-top: 20px;
  font-size: 28px;
}

.mini-panel p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-icon {
  color: var(--red);
  font-size: 20px;
}

.metric-badge {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  border: 1px solid rgba(238, 0, 0, 0.5);
  border-radius: 8px;
  background: rgba(22, 22, 22, 0.92);
  box-shadow: var(--red-shadow);
  backdrop-filter: blur(12px);
}

.metric-badge strong {
  display: block;
  color: var(--red);
  font-size: 24px;
}

.metric-badge span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-top {
  top: -54px;
  left: 24px;
  animation: float-slow 6s ease-in-out infinite;
}

.metric-bottom {
  right: 0;
  bottom: -24px;
  animation: float-slow 7s ease-in-out 1.4s infinite;
}

.stats {
  border-block: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.75);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 26px 18px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stats-grid div:first-child {
  border-left: 0;
}

.stats-grid strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  font-weight: 900;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head {
  max-width: 780px;
}

.service-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.service-head > p:not(.label) {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.section h2,
.final-cta h2,
.form-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.process-step,
.check-grid p,
.faq-item,
.intake-form,
.success-message {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.card,
.process-step {
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card:hover,
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 0, 0, 0.68);
  box-shadow: var(--red-shadow);
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(238, 0, 0, 0.36);
  border-radius: 8px;
  color: var(--red);
  background: rgba(238, 0, 0, 0.08);
  font-size: 18px;
}

.service-card {
  text-align: center;
}

.service-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 34px rgba(238, 0, 0, 0.24);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  margin-top: 0;
}

.card h3,
.process-step h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.card p,
.process-step p,
.split-head > p,
.form-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.muted-section {
  border-block: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.68);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: var(--black);
  font-size: 11px;
  font-weight: 900;
}

.split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.split-head > p {
  max-width: 390px;
}

.case-card > span,
.testimonial > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-card h3 {
  color: var(--red);
  font-size: 28px;
  line-height: 1.05;
}

.ideal-grid,
.faq-grid,
.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.check-grid p {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.check-grid span {
  display: grid;
  flex: 0 0 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.stars {
  margin-bottom: 18px;
  color: var(--red);
  letter-spacing: 0.08em;
}

.testimonial strong {
  display: block;
  margin-top: 20px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.faq-item.is-open {
  border-color: rgba(238, 0, 0, 0.58);
  box-shadow: var(--red-shadow);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--red);
  transition: transform 260ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 460ms ease, opacity 360ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(-8px);
  transition: transform 460ms ease;
}

.faq-item.is-open .faq-answer p {
  transform: translateY(0);
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 999px;
  background: rgba(238, 0, 0, 0.12);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.final-cta .shell {
  position: relative;
}

.final-cta p:not(.label) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.form-page[hidden],
.home-page[hidden],
.success-message[hidden] {
  display: none;
}

.form-section {
  min-height: 100vh;
}

.form-copy {
  position: sticky;
  top: 112px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intake-form,
.success-message {
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.intake-form {
  display: grid;
  gap: 20px;
}

.intake-form label {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  color: var(--white);
  background: var(--black);
  padding: 0 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.intake-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(238, 0, 0, 0.14);
}

.success-message {
  display: grid;
  min-height: 420px;
  align-content: center;
  text-align: center;
}

.success-message h2 {
  margin: 16px 0;
  font-size: 32px;
}

.success-message p:not(.label) {
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  border-top: 1px solid rgba(238, 0, 0, 0.3);
  background: #070707;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
}

.footer-brand img {
  height: 36px;
}

.footer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 180ms ease, color 180ms ease;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes border-flow {
  from { background-position: 0% 50%; }
  to { background-position: 220% 50%; }
}

@keyframes scanline {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  35%, 65% { opacity: 1; }
  100% { transform: translateX(100%); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-snapshot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-red {
  0%, 100% { opacity: 0.32; transform: scale(0.98); }
  50% { opacity: 0.72; transform: scale(1.03); }
}

@keyframes live-dot {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes bar-rise {
  from { transform: scaleY(0.15); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1024px) {
  .ideal-grid,
  .faq-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
    gap: 28px;
  }

  .hero-visual {
    min-height: auto;
  }

  .results-snapshot {
    width: min(100%, 660px);
    margin: 0 0 0 auto;
  }

  .process-grid,
  .three {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1240px);
  }

  .section {
    padding: 76px 0;
  }

  .section-large {
    padding: 96px 0 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .hero-copy {
    max-width: 460px;
    margin-inline: auto;
    min-width: 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .brand img {
    height: 28px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
      linear-gradient(135deg, rgba(238, 0, 0, 0.08), transparent 46%),
      rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    clip-path: inset(0 0 100% 0 round 12px);
    transition: opacity 240ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), clip-path 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    clip-path: inset(0 0 0 0 round 12px);
  }

  .nav-links a {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 220ms ease, transform 240ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.is-open a:nth-child(1) { transition-delay: 45ms; }
  .nav-links.is-open a:nth-child(2) { transition-delay: 80ms; }
  .nav-links.is-open a:nth-child(3) { transition-delay: 115ms; }
  .nav-links.is-open a:nth-child(4) { transition-delay: 150ms; }

  .nav-links .btn {
    width: 100%;
    min-height: 44px;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.025);
  }

  .eyebrow {
    margin-bottom: 14px;
    padding: 7px 12px;
    border-color: rgba(238, 0, 0, 0.38);
    background: rgba(238, 0, 0, 0.065);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 360px;
    margin-inline: auto;
    margin-bottom: 14px;
    font-size: clamp(2.05rem, 9.5vw, 3.05rem);
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 340px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.55;
  }

  .ig-profile-card {
    max-width: 340px;
    gap: 10px;
    margin: 18px auto 0;
    padding: 8px 12px 8px 8px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
  }

  .ig-profile-card img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .ig-profile-card strong {
    font-size: 12px;
  }

  .ig-profile-card small {
    max-width: 230px;
    font-size: 10px;
  }

  .hero-visual {
    width: 100%;
    margin-top: 2px;
  }

  .red-glow {
    inset: -18px;
    opacity: 0.7;
    filter: blur(34px);
  }

  .results-snapshot {
    width: min(100%, 420px);
    min-width: 0;
    margin: 0 auto;
    padding: 7px;
    border-radius: 10px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42), 0 0 32px rgba(238, 0, 0, 0.12);
    animation-duration: 8.5s;
  }

  .results-snapshot img {
    border-radius: 7px;
  }

  .results-snapshot::after {
    inset: 7px;
    border-radius: 7px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    max-width: 340px;
    margin: 20px auto 0;
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 11px;
  }

  .room-meta,
  .dashboard-title-row {
    align-items: center;
    flex-direction: row;
    gap: 8px 10px;
  }

  .dashboard-head h2 {
    font-size: 21px;
  }

  .dashboard-title-row p {
    display: none;
  }

  .room-stats {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .stats-grid,
  .process-grid,
  .three,
  .check-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stats-grid div:first-child {
    border-top: 0;
  }

  .metric-badge {
    display: none;
  }

  .dashboard {
    max-width: 520px;
    margin-inline: auto;
    padding: 12px;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .chart-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .panel {
    padding: 12px;
  }

  .panel-title span {
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .panel-title svg {
    width: 18px;
    height: 18px;
  }

  .chart-panel strong {
    margin-top: 8px;
    font-size: 22px;
  }

  .chart {
    height: 92px;
    margin-top: 10px;
  }

  .bars {
    height: 78px;
    margin-top: 12px;
  }

  .mini-panel strong {
    margin-top: 8px;
    font-size: 20px;
  }

  .mini-panel p {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .split-head {
    display: block;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
