<!-- start Simple Custom CSS and JS -->
<style type="text/css">
:root {
  --bg: #090909;
  --surface: #121212;
  --surface-2: #191919;
  --text: #f3efe8;
  --muted: rgba(243, 239, 232, 0.68);
  --muted-2: rgba(243, 239, 232, 0.42);
  --line: rgba(243, 239, 232, 0.12);
  --bone: #c9b89a;
  --accent: #c61f1f;
  --accent-strong: #ee3636;
  --container: 1200px;
  --radius: 28px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Onest", sans-serif;
  cursor: none;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(198, 31, 31, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(201, 184, 154, 0.08), transparent 22%),
    var(--bg);
}

.site-shell h1,
.site-shell h2,
.site-shell h3,
.site-shell p,
.site-shell ul,
.site-shell li,
.site-shell article,
.site-shell section,
.site-shell div {
  max-width: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 60;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: width 160ms ease, height 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.cursor-ring.is-hover {
  width: 72px;
  height: 72px;
  border-color: rgba(198, 31, 31, 0.8);
  background: rgba(198, 31, 31, 0.08);
}

.spark-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  filter: saturate(1.15);
}

.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(198,31,31,0.5) 55%, transparent 75%);
  box-shadow:
    0 0 14px rgba(198, 31, 31, 0.4),
    0 0 34px rgba(198, 31, 31, 0.2);
  opacity: 0.16;
  will-change: transform;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 9, 0.82);
  border-bottom: 1px solid rgba(243, 239, 232, 0.06);
}

.site-header__inner,
.section,
.footer,
.hero,
.page-hero {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.brand__dot,
.accent {
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.header-cta,
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.header-cta::after,
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.12) 46%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.12) 54%,
      rgba(255, 255, 255, 0) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 220% 220%;
  background-position: 140% 50%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlint 2.8s ease-in-out infinite;
  opacity: 0.95;
}

.btn-secondary,
.btn-outline {
  border: 1px solid rgba(243, 239, 232, 0.16);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

main {
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.hero,
.page-hero {
  padding-top: 72px;
}

.hero__panel,
.content-panel,
.cta-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(198, 31, 31, 0.08), rgba(9, 9, 9, 0.06) 40%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: 52px;
}

.hero__panel {
  padding: 72px;
}

.hero__eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
}

.hero__eyebrow::before,
.section-tag::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--accent);
}

.hero__layout,
.cta-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
}

.hero h1,
.page-title,
.section h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 9rem);
}

.page-title,
.section h2 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.landing-panel > h2,
.calc-shell > h2,
.landing-panel > .section-tag,
.calc-shell > .section-tag {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
  text-align: left;
}

.landing-panel > h2,
.calc-shell > h2 {
  margin: 0 0 28px !important;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.landing-panel > .section-tag,
.calc-shell > .section-tag {
  margin-bottom: 20px !important;
  font-family: "Onest", sans-serif !important;
  font-size: 0.78rem !important;
  line-height: 1.1 !important;
  letter-spacing: 0.28em !important;
  font-weight: 500 !important;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--bone);
}

.hero p,
.lead,
.section p,
.intro-copy,
.card p,
.service-card p,
.package-card p,
.step-card p,
.report-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.hero p,
.intro-copy {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.stat-list,
.mini-list,
.process-timeline {
  display: grid;
  gap: 16px;
}

.stat-card,
.mini-card,
.report-card,
.contact-card,
.quote-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.14);
}

.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
}

.stat-label,
.tiny-label {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.section {
  padding-top: 72px;
}

.section--compact {
  padding-top: 48px;
}

.section__head {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card,
.package-card,
.step-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(243, 239, 232, 0.08);
}

.card-index,
.step-card__num {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  color: rgba(243, 239, 232, 0.16);
}

.card-index {
  font-size: 3rem;
}

.step-card__num {
  font-size: 4rem;
}

.card h3,
.service-card h3,
.package-card h3,
.step-card h3,
.report-card h3,
.contact-card h3 {
  margin: 16px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
}

.package-card--featured {
  background: linear-gradient(180deg, rgba(198, 31, 31, 0.22), rgba(198, 31, 31, 0.06)), var(--surface);
  border-color: rgba(198, 31, 31, 0.4);
}

.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(198, 31, 31, 0.18);
  color: #ffd5d5;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price {
  margin: 18px 0 4px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.8rem;
  line-height: 1;
}

.price span {
  color: var(--accent);
}

.price-note {
  margin-bottom: 24px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
}

.feature-list,
.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li,
.contact-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.calc-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(243, 239, 232, 0.08);
}

.calc-group {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.calc-group label {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 232, 0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.calc-tab.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.calc-tab.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.calc-result__label,
.field label {
  color: var(--bone);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.calc-result__value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  color: var(--accent);
}

.calc-lines {
  display: grid;
  gap: 10px;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(243, 239, 232, 0.08);
  color: var(--muted);
}

.calc-line strong {
  color: var(--text);
}

.calc-note {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted-2);
}

.step-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(243, 239, 232, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
}

.field-error {
  min-height: 18px;
  margin-top: 6px;
  color: #ee3636;
  font-size: 0.82rem;
  line-height: 1.35;
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid,
.custom-select.is-invalid .custom-select__trigger {
  border-color: #ee3636 !important;
  box-shadow: 0 0 0 1px rgba(238, 54, 54, 0.18);
}

.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid rgba(243, 239, 232, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus {
  border-color: var(--accent);
  outline: none;
}

.custom-select__arrow {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--muted);
  transition: transform 160ms ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(217, 31, 31, 0.18);
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.custom-select__option {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.custom-select__option:hover,
.custom-select__option.is-active {
  background: rgba(217, 31, 31, 0.12);
  color: #fff;
}

.success-box {
  display: none;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(198, 31, 31, 0.4);
  background: rgba(198, 31, 31, 0.08);
}

.success-box.is-visible {
  display: block;
}

.footer {
  padding: 28px 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .hero__layout,
  .contact-grid,
  .cta-grid,
  .calc-box {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__panel,
  .content-panel,
  .cta-panel,
  .contact-panel {
    padding: 28px;
  }

  .grid-2,
  .grid-3,
  .form-grid,
  .step-card {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 14px;
  }
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.landing-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.landing-nav a:hover {
  color: var(--text);
}

.landing-hero {
  position: relative;
  min-height: calc(90vh - 72px);
  display: flex;
  align-items: stretch;
  padding-top: 18px;
}

.landing-hero__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: calc(90vh - 90px);
  display: flex;
  align-items: center;
  padding: 34px 58px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 82% 24%, rgba(198, 31, 31, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(198, 31, 31, 0.12), rgba(9, 9, 9, 0.02) 34%),
    var(--surface);
  box-shadow: var(--shadow);
}

.landing-hero__panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle, rgba(198, 31, 31, 0.16), transparent 36%);
  animation: drift 18s linear infinite;
  pointer-events: none;
}

.landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  width: 100%;
  align-items: stretch;
}

.hero-copy-panel {
  display: flex;
  min-height: 100%;
  width: 100%;
  padding: 20px 0;
}

.hero-copy-column {
  max-width: 100%;
}

.hero-side-column {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.hero-image-column {
  display: flex;
  justify-content: stretch;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: min(60vh, 520px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--bone);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.landing-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--accent);
}

.landing-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.landing-title--depth {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.02em;
  max-width: 920px;
}

.landing-title__line {
  display: block;
  line-height: 0.9;
  font-size: clamp(3rem, 7.2vw, 5.9rem);
  letter-spacing: 0.01em;
  color: #e9e4dc;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.landing-title__line--soft {
  color: #e9e4dc;
  -webkit-text-stroke: 0 transparent;
  text-shadow:
    0 0 0 rgba(255, 255, 255, 0),
    0 14px 36px rgba(0, 0, 0, 0.2);
}

.landing-title__line--accent {
  color: #d91f1f;
  text-shadow:
    0 10px 26px rgba(217, 31, 31, 0.14),
    0 24px 60px rgba(0, 0, 0, 0.24);
}

.landing-copy {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.54;
  color: var(--muted);
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.btn-primary--glow {
  position: relative;
  box-shadow: 0 0 0 rgba(198, 31, 31, 0.4);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.hero-card-stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.hero-support-copy {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(243, 239, 232, 0.78);
}

.selection-summary {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(217, 31, 31, 0.22);
  background: linear-gradient(180deg, rgba(217, 31, 31, 0.1), rgba(255,255,255,0.025));
  backdrop-filter: blur(14px) saturate(1.06);
  -webkit-backdrop-filter: blur(14px) saturate(1.06);
}

.selection-summary__label {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 8px;
}

.selection-summary__content {
  color: var(--text);
  line-height: 1.55;
  font-size: 0.96rem;
}

.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metric {
  padding: 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.16);
  transform: translateY(10px);
  opacity: 0;
  animation: riseIn 0.8s ease forwards;
}

.hero-metric:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-metric:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-metric__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--accent);
}

.hero-metric__num--free {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-metric__label {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.3;
  font-size: 0.82rem;
}

.landing-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-top: 76px;
  position: relative;
  z-index: 2;
}

.landing-panel {
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.16);
}

.report-panel {
  position: relative;
  overflow: hidden;
}

.report-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 31, 31, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(217, 31, 31, 0.06), transparent 34%);
  background-repeat: no-repeat;
  background-position: right center, center;
  background-size: 100% 100%, 100% 100%;
  opacity: 0.95;
}

.report-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 520'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23c61f1f' stop-opacity='0'/%3E%3Cstop offset='18%25' stop-color='%23c61f1f' stop-opacity='.16'/%3E%3Cstop offset='55%25' stop-color='%23ff4a4a' stop-opacity='.42'/%3E%3Cstop offset='100%25' stop-color='%23ff6a6a' stop-opacity='.08'/%3E%3C/linearGradient%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='6' result='b'/%3E%3CfeMerge%3E%3CfeMergeNode in='b'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg opacity='.22'%3E%3Cpath d='M40 410 L250 370 L430 392 L620 300 L790 328 L980 240 L1170 210 L1360 128 L1540 96' fill='none' stroke='url(%23g)' stroke-width='4' filter='url(%23glow)' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg fill='%23ff5757'%3E%3Ccircle cx='620' cy='300' r='4'/%3E%3Ccircle cx='980' cy='240' r='4'/%3E%3Ccircle cx='1360' cy='128' r='5'/%3E%3Ccircle cx='1540' cy='96' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 26px bottom 34px;
  background-size: min(70%, 900px) auto;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left center;
  filter: drop-shadow(0 0 20px rgba(217, 31, 31, 0.24));
}

.report-panel.is-drawing::after {
  animation: graphDraw 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-section--plain .landing-panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.sales-grid-2,
.sales-grid-3,
.report-grid {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.sales-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-grid-3,
.report-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-card,
.service-line,
.report-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.14);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.pain-card::after,
.service-line::after,
.report-box::after {
  display: none;
}

.pain-card:hover,
.service-line:hover,
.report-box:hover {
  border-color: rgba(217, 31, 31, 0.35);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(217, 31, 31, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.16),
    0 0 34px rgba(217, 31, 31, 0.12);
  transform: translateY(-2px);
}

.pain-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(243, 239, 232, 0.12);
}

.pain-card h3,
.service-line h3,
.report-box h3 {
  display: block;
  width: 100%;
  max-width: none;
  clear: both;
  margin: 12px 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.pain-card p,
.service-line p,
.report-box p {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  clear: both;
  float: none;
  text-align: left;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
  min-width: 0;
}

.price-card > * {
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
  text-align: left;
}

.price-card > .price-tag {
  width: auto !important;
  max-width: max-content !important;
  clear: none !important;
  flex: 0 0 auto !important;
}

.price-card h3 {
  margin: 18px 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.price-card p,
.price-card ul,
.price-card li {
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
  text-align: left;
}

.price-card:hover {
  border-color: rgba(217, 31, 31, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.16),
    0 0 28px rgba(217, 31, 31, 0.1);
  transform: translateY(-2px);
}

.price-card.is-selected {
  border-color: rgba(217, 31, 31, 0.24);
  background: linear-gradient(180deg, rgba(217, 31, 31, 0.08), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.16);
  transform: none;
}

.price-card--featured {
  background: linear-gradient(180deg, rgba(198, 31, 31, 0.18), rgba(255,255,255,0.04));
  border-color: rgba(255, 255, 255, 0.12);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(198, 31, 31, 0.18);
  color: #ffd4d4;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  white-space: nowrap;
}

.price-value {
  margin: 18px 0 4px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

.calc-shell {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 44px rgba(0, 0, 0, 0.15);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(240px, 1fr));
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  align-items: stretch;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 280px;
  scroll-snap-align: start;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.14);
}

.timeline-step > * {
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
}

.timeline-step > div {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  columns: auto !important;
  column-count: 1 !important;
}

.timeline-step h3,
.timeline-step p {
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
  text-align: left;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.timeline-step__num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  color: rgba(243, 239, 232, 0.16);
  line-height: 1;
}

.price-card:focus,
.price-card:focus-visible,
.timeline-step:focus,
.timeline-step:focus-visible {
  outline: none !important;
}

.report-panel::before,
.report-panel::after {
  z-index: 0;
}

.report-panel > * {
  position: relative;
  z-index: 2;
}

.contact-landing {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 20px;
}

.floating-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(198, 31, 31, 0.12);
  border: 1px solid rgba(198, 31, 31, 0.22);
  color: #ffd2d2;
}

.reveal-up {
  opacity: 0;
  transform: translateY(42px) scale(0.94);
  filter: blur(8px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes drift {
  0% { transform: translate3d(-2%, 0, 0) rotate(0deg); }
  50% { transform: translate3d(2%, 2%, 0) rotate(180deg); }
  100% { transform: translate3d(-2%, 0, 0) rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(198, 31, 31, 0.15); }
  50% { box-shadow: 0 0 28px rgba(198, 31, 31, 0.35); }
}

@keyframes borderGlint {
  0% {
    background-position: 140% 50%;
    opacity: 0;
  }
  12% {
    opacity: 0.95;
  }
  48% {
    background-position: -40% 50%;
    opacity: 0.95;
  }
  60% {
    opacity: 0;
  }
  100% {
    background-position: -40% 50%;
    opacity: 0;
  }
}

@keyframes graphDraw {
  0% {
    transform: scaleX(0);
    opacity: 0.28;
  }
  40% {
    transform: scaleX(0.38);
    opacity: 0.72;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .landing-hero__grid,
  .hero-metrics-row,
  .contact-landing,
  .pricing-grid,
  .sales-grid-3,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-column {
    max-width: none;
  }

  .hero-image-column {
    justify-content: flex-start;
  }

  .hero-copy-panel {
    padding: 10px 0 0;
  }

  .hero-image-frame {
    height: min(52vh, 380px);
  }

  .landing-hero {
    min-height: auto;
    max-height: none;
    padding-top: 24px;
  }

  .landing-hero__panel {
    min-height: auto;
    max-height: none;
    padding: 40px 34px;
  }

  .bones-header__nav {
    gap: 14px;
  }

  .bones-header__nav a {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .bones-header__brand {
    max-width: 170px;
  }
}

@media (max-width: 760px) {
  body {
    cursor: auto;
    padding-bottom: 92px;
  }

  .cursor-dot,
  .cursor-ring,
  .spark-layer {
    display: none;
  }

  .landing-hero__panel,
  .landing-panel,
  .calc-shell {
    padding: 26px;
  }

  .landing-title {
    font-size: clamp(3.2rem, 14vw, 5.3rem);
  }

  .landing-title__line {
    font-size: clamp(3rem, 12.8vw, 4.8rem);
  }

  .landing-copy {
    font-size: 0.94rem;
  }

  .sales-grid-2,
  .timeline-step {
    grid-template-columns: 1fr;
  }

  .bones-header {
    width: calc(100% - 24px);
    padding-top: 12px;
  }

  .bones-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 22px;
    min-height: 68px;
  }

  .bones-header__brand {
    max-width: 150px;
    margin-right: auto;
  }

  .bones-header__nav,
  .bones-header__cta {
    display: none !important;
  }

  .mobile-audit-bar {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
  }

  .mobile-audit-bar .btn-primary {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    box-shadow:
      0 14px 34px rgba(198, 31, 31, 0.28),
      0 6px 18px rgba(0, 0, 0, 0.22);
  }
}

.bones-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 18px;
}

.bones-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 14px 36px rgba(0,0,0,0.18);
}

.bones-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 220px;
}

.bones-header__brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.bones-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
}

.bones-header__nav a {
  color: rgba(243,239,232,0.74);
  font-family: "Onest", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.bones-header__nav a:hover {
  color: #fff;
}

.bones-header__cta {
  flex: 0 0 auto;
}

.mobile-audit-bar {
  display: none;
}
</style>
<!-- end Simple Custom CSS and JS -->
