:root {
  --white: #fff;
  --paper: #f7f7f8;
  --ink: #0b0c0f;
  --muted: #5e6470;
  --line: rgba(11, 12, 15, 0.12);
  --red: #d51435;
  --red-dark: #950f25;
  --black: #070708;
  --shadow: 0 22px 60px rgba(11, 12, 15, 0.12);
  --radius: 10px;
  --container: 1040px;
  --page-nudge: -120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:where([id]) {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(213, 20, 53, 0.08) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(213, 20, 53, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f6f6f7 48%, #fff 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: inherit;
}

body.page-inner {
  --page-nudge: 0px;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); letter-spacing: 0; }
p { color: var(--muted); line-height: 1.58; }

.shell {
  width: min(calc(100vw - 32px), var(--container)) !important;
  max-width: var(--container) !important;
  margin: 0 auto !important;
  padding: 18px 0 46px;
  transform: translateX(var(--page-nudge));
}

.site-header {
  position: sticky;
  top: 14px;
  left: auto;
  z-index: 20;
  width: 100% !important;
  max-width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 12, 15, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(11, 12, 15, 0.12);
  backdrop-filter: blur(18px);
  transform: none;
}

.shell > main,
.shell > footer,
.shell > header {
  margin-right: auto;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.brand b { color: var(--red); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: #2f333a;
  font-size: 0.9rem;
  font-weight: 850;
}

.main-nav a:hover {
  color: var(--red);
  background: rgba(213, 20, 53, 0.08);
}

.nav-cta,
.button.primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--black), var(--red));
  box-shadow: 0 14px 34px rgba(213, 20, 53, 0.22);
}

main {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  overflow: visible;
}

.hero,
.video-section,
.performance-suite,
.conversion-panel,
.services,
.split,
.proof,
.cta,
.site-footer,
.logo-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero,
.video-section,
.performance-suite,
.conversion-panel,
.services,
.split,
.proof,
.cta,
.site-footer,
.logo-strip {
  width: 100%;
  max-width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
  gap: 24px;
  align-items: center;
  padding: 30px 26px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 1.06rem;
}

.eyebrow {
  margin-bottom: 11px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.4vw, 3.35rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.button.secondary { color: var(--ink); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.hero-stats article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-growth-widget {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(213, 20, 53, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 20%, rgba(213, 20, 53, 0.26), transparent 28%),
    linear-gradient(135deg, #08080a, #230610 52%, #cf1234);
  box-shadow: 0 28px 70px rgba(213, 20, 53, 0.18);
}

.widget-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.widget-head span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.widget-head strong {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

#salesGrowthCanvas {
  width: 100%;
  height: auto;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 100% 25%, 25% 100%, auto;
}

.widget-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.widget-kpis article {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.widget-kpis span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.widget-kpis b {
  color: #fff;
  font-size: 1.05rem;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: min(100%, 260px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid var(--black);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(213, 20, 53, 0.34), rgba(7, 7, 8, 0.92)),
    var(--black);
  box-shadow: 0 30px 76px rgba(11, 12, 15, 0.22);
}

.hero-media video,
.video-pair video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-card,
.media-note {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 7, 8, 0.68);
  backdrop-filter: blur(14px);
}

.metric-card {
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.metric-card span,
.media-note span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  color: #fff;
  font-size: 1.8rem;
}

.media-note {
  top: 14px;
  right: 14px;
  display: grid;
  gap: 3px;
  max-width: 170px;
  padding: 12px;
}

.media-note b {
  color: #fff;
  font-size: 0.88rem;
}

.hero-board {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(11, 12, 15, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 247, 0.92)),
    #fff;
  box-shadow: 0 30px 76px rgba(11, 12, 15, 0.15);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(213, 20, 53, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 12, 15, 0.05) 0 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-board > * {
  position: relative;
  z-index: 1;
}

.board-top {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.board-top span,
.board-metric span,
.board-list span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.board-top strong {
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
}

.board-metric {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
}

.board-metric span { color: rgba(255, 255, 255, 0.72); }

.board-metric strong {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  min-height: 180px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.mini-chart i {
  display: block;
  height: var(--h);
  min-height: 46px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #ff224d, var(--red-dark), var(--black));
  box-shadow: 0 16px 28px rgba(213, 20, 53, 0.18);
}

.board-list {
  display: grid;
  align-content: center;
  gap: 8px;
}

.board-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.board-list span::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
}

.logo-strip {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  gap: 1px;
  border-color: rgba(213, 20, 53, 0.14);
  background: rgba(213, 20, 53, 0.12);
}

.logo-strip span {
  flex: 1 1 0;
  padding: 18px 12px;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 242, 245, 0.95));
}

.logo-strip span:nth-child(1) {
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red-dark));
}

.logo-strip span:nth-child(2),
.logo-strip span:nth-child(3),
.logo-strip span:nth-child(4) {
  box-shadow: inset 0 -3px 0 rgba(213, 20, 53, 0.18);
}

.logo-strip span:last-child {
  border-right: 0;
}

.video-section,
.performance-suite,
.proof,
.cta { padding: 26px; }

.section-title {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.video-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 100%;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.video-pair article {
  position: relative;
  flex: 0 0 170px;
  width: 170px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: var(--black);
  box-shadow: 0 16px 38px rgba(11, 12, 15, 0.18);
  scroll-snap-align: start;
}

.video-pair article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.video-pair article div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}

.video-pair span,
.services span,
.proof article strong {
  color: var(--red);
  font-weight: 900;
}

.video-pair span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.video-pair strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.conversion-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 285px;
  height: 285px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(11, 12, 15, 0.06) 1px, transparent 1px),
    #fff;
  background-size: 100% 25%;
}

.conversion-chart article {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 9px;
  min-width: 0;
  height: 100%;
}

.conversion-chart article::before {
  content: "";
  align-self: end;
  display: block;
  height: var(--h);
  min-height: 58px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #ff234c, var(--red-dark), var(--black));
  box-shadow: 0 16px 34px rgba(213, 20, 53, 0.20);
}

.conversion-chart span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

.conversion-chart strong {
  color: var(--ink);
  font-size: 1.24rem;
}

.performance-suite {
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 247, 0.94)),
    #fff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-card:last-child {
  grid-column: 1 / -1;
}

.dashboard-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #fff, #fbfbfc);
  box-shadow: 0 16px 42px rgba(11, 12, 15, 0.08);
}

.sales-card {
  background:
    linear-gradient(135deg, rgba(7, 7, 8, 0.98), rgba(80, 8, 22, 0.96)),
    var(--black);
}

.sales-card .card-heading span,
.sales-card .card-heading strong,
.sales-card .bar-chart b,
.sales-card .bar-chart span {
  color: #fff;
}

.card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.card-heading span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-heading strong {
  color: var(--red);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1;
  white-space: nowrap;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  min-height: 145px;
  height: 145px;
  align-items: stretch;
}

.bar-chart div {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 6px;
  min-width: 0;
  height: 100%;
}

.bar-chart div::before {
  content: "";
  align-self: end;
  display: block;
  height: var(--h);
  min-height: 32px;
  border-radius: 9px 9px 2px 2px;
  background: linear-gradient(180deg, #ff2a52, var(--red), #24030a);
  box-shadow: 0 18px 36px rgba(213, 20, 53, 0.28);
}

.bar-chart span,
.bar-chart b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.74rem;
}

.bar-chart span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.bar-chart b {
  color: #fff;
  font-size: 0.86rem;
}

.rank-chart {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.rank-chart div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.rank-chart span,
.rank-chart b {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.rank-chart i {
  display: block;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #ececef;
}

.rank-chart i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--black));
}

.sparkline { display: none; }

.compact-chart {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 130px;
  height: 130px;
  margin-bottom: 14px;
}

.dashboard-card:not(.sales-card) .bar-chart span {
  color: var(--muted);
}

.dashboard-card:not(.sales-card) .bar-chart b {
  color: var(--ink);
}

.dashboard-card:not(.sales-card) .bar-chart div::before {
  background: linear-gradient(180deg, #ff234c, var(--red), var(--black));
}

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(255,245,247,.96));
}

.services article {
  position: relative;
  min-height: 280px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 12, 15, 0.08);
}

.service-intro {
  grid-column: 1 / -1;
  min-height: 210px !important;
  display: grid;
  align-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(255,255,255,.18), transparent 26%),
    linear-gradient(135deg, #08080a, #2a0710 45%, var(--red)) !important;
}

.service-intro::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(42%, 320px);
  height: 104px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.20) 0 10%, transparent 10% 18%, rgba(255,255,255,.36) 18% 32%, transparent 32% 42%, rgba(255,255,255,.24) 42% 58%, transparent 58% 70%, rgba(255,255,255,.42) 70% 100%),
    rgba(255,255,255,.08);
  opacity: 0.8;
}

.service-intro h2,
.service-intro .eyebrow,
.service-intro p { color: #fff; }

.service-intro h2,
.service-intro p {
  max-width: 620px;
}

.services span {
  display: block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.visual-service h3 {
  font-size: 1.22rem;
}

.visual-service::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 56px;
  height: 104px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 0 0 999px rgba(7, 7, 8, 0.14),
    0 14px 30px rgba(11, 12, 15, 0.12);
}

.visual-service.ranking::after {
  background-image:
    linear-gradient(90deg, rgba(213, 20, 53, 0.28), rgba(7, 7, 8, 0.34)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80");
}

.visual-service.ads::after {
  background-image:
    linear-gradient(90deg, rgba(213, 20, 53, 0.24), rgba(7, 7, 8, 0.36)),
    url("https://images.unsplash.com/photo-1557838923-2985c318be48?auto=format&fit=crop&w=900&q=80");
}

.visual-service.creator::after {
  background-image:
    linear-gradient(90deg, rgba(213, 20, 53, 0.24), rgba(7, 7, 8, 0.34)),
    url("https://images.unsplash.com/photo-1611162616475-46b635cb6868?auto=format&fit=crop&w=900&q=80");
}

.visual-service.web::after {
  background-image:
    linear-gradient(90deg, rgba(213, 20, 53, 0.24), rgba(7, 7, 8, 0.34)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80");
}

.visual-service p { margin-bottom: 132px; }

.visual-service b {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
  font-size: 0.86rem;
  box-shadow: 0 12px 26px rgba(213, 20, 53, 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.25fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
}

.split > div:first-child { align-self: center; }

.image-panel {
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.56)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.lead-form {
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: #30343b;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(213, 20, 53, 0.10);
}

.lead-form textarea { resize: vertical; }
.success-message { margin: 0; color: var(--red); font-weight: 900; }

.proof {
  background: linear-gradient(135deg, #fff, #f8f8f9);
}

.audit-preview {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.audit-preview article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.audit-preview span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.audit-preview strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.audit-preview p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-mini-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  height: 140px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--black), var(--red-dark));
}

.contact-mini-chart span {
  display: block;
  height: var(--h);
  min-height: 34px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #ff3158, var(--red), #180207);
}

.proof-head { margin-bottom: 20px; }

.proof-head h2 {
  max-width: 920px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.proof-metrics article {
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
}

.proof-metrics span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-metrics strong {
  color: #fff;
  font-size: 1.65rem;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quotes article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(11, 12, 15, 0.08);
}

.quotes p { margin-bottom: 0; }

.testimonial-shell {
  display: grid;
  gap: 18px;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, #fff, #fff5f7);
  box-shadow: 0 18px 50px rgba(11, 12, 15, 0.10);
  transform: translateX(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.testimonial-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.testimonial-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--black), var(--red));
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card strong {
  color: var(--ink) !important;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
}

.testimonial-card p {
  max-width: 760px;
  margin-bottom: 0;
  color: #2b3038;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.testimonial-card small {
  color: var(--muted);
  font-weight: 850;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.testimonial-controls button {
  min-width: 92px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.testimonial-controls button:hover {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--black), var(--red));
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots button {
  min-width: 0;
  width: 10px;
  height: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 12, 15, 0.18);
}

.testimonial-dots button.is-active {
  width: 28px;
  background: var(--red);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 7, 8, 0.96), rgba(149, 15, 37, 0.94)),
    linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px);
}

.cta > div {
  min-width: 0;
}

.cta h2,
.cta p,
.cta .eyebrow { color: #fff; }

.cta h2 { margin-bottom: 0; }

.cta h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.8fr) minmax(200px, 0.8fr);
  gap: 28px;
  justify-self: center;
  width: 100%;
  max-width: 100%;
  padding: 28px;
  justify-items: center;
  text-align: center;
  transform: translateX(calc(var(--page-nudge) * -1));
  background:
    linear-gradient(135deg, rgba(7, 7, 8, 0.98), rgba(76, 8, 21, 0.94)),
    var(--black);
  overflow: hidden;
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
}

.footer-brand-logo {
  color: #fff;
}

.footer-brand-logo img {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.footer-column {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
}

.footer-column > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  justify-items: center;
  gap: 9px;
}

.site-footer div:last-child,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: center;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer a:hover { color: #ff6d86; }

.footer-bottom {
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 850;
}

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

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

@media (max-width: 1240px) {
  h1 {
    font-size: clamp(2.45rem, 4vw, 3.75rem);
  }
}

@media (max-width: 1080px) {
  .hero-stats {
    max-width: 100%;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .conversion-chart {
    height: 230px;
    min-height: 230px;
  }
}

@media (max-width: 980px) {
  .hero,
  .dashboard-grid,
  .conversion-panel,
  .split,
  .site-footer { grid-template-columns: 1fr; }

  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotes,
  .proof-metrics { grid-template-columns: 1fr; }
  .hero-media { width: min(100%, 300px); justify-self: center; }
}

@media (max-width: 720px) {
  :root {
    --page-nudge: 0px;
    --container: 100%;
  }

  * {
    max-width: 100%;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .shell {
    width: calc(100vw - 16px) !important;
    max-width: none;
    margin: 0 auto !important;
    padding-top: 8px;
    padding-bottom: 24px;
    transform: none;
  }

  .site-header {
    position: sticky;
    top: 6px;
    left: auto;
    right: auto;
    width: 100% !important;
    max-width: 100% !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: hidden;
    transform: none;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
  }

  .main-nav a {
    min-width: 0;
    padding: 8px 4px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
  }

  .nav-cta { grid-column: auto; }

  .hero,
  .video-section,
  .performance-suite,
  .conversion-panel,
  .split,
  .proof,
  .cta,
  .site-footer { padding: 16px; }

  .hero,
  .video-section,
  .performance-suite,
  .conversion-panel,
  .split,
  .proof,
  .cta,
  .site-footer {
    width: 100%;
    border-radius: 8px;
  }

  main {
    gap: 14px;
    overflow: hidden;
  }

  .hero {
    padding: 18px 14px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-growth-widget {
    padding: 14px;
  }

  #salesGrowthCanvas {
    min-height: 160px;
  }

  .site-footer {
    transform: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
    line-height: 1.06;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    white-space: normal;
  }

  .hero-stats,
  .form-row,
  .services,
  .dashboard-grid,
  .conversion-panel,
  .split,
  .site-footer { grid-template-columns: 1fr; }

  .footer-bottom {
    grid-column: auto;
  }

  .bar-chart {
    min-height: 190px;
    gap: 8px;
  }

  .rank-chart div {
    grid-template-columns: 74px minmax(0, 1fr) 38px;
  }

  .testimonial-track {
    min-height: 320px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonial-controls button {
    width: 100%;
  }

  .logo-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .logo-strip span {
    padding: 13px 8px;
    font-size: 0.82rem;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-media {
    width: min(100%, 260px);
    border-width: 6px;
    border-radius: 18px;
  }

  .hero-board {
    max-width: 100%;
    padding: 16px;
  }

  .board-top {
    display: grid;
    gap: 4px;
  }

  .board-top strong {
    text-align: left;
  }

  .mini-chart {
    min-height: 150px;
  }

  .metric-card {
    left: 10px;
    bottom: 10px;
    padding: 11px;
  }

  .metric-card strong { font-size: 1.45rem; }

  .media-note {
    top: 10px;
    right: 10px;
    max-width: 145px;
    padding: 10px;
  }

  .video-gallery {
    width: 100%;
    gap: 8px;
    padding-bottom: 12px;
  }

  .video-pair article {
    flex: 0 0 128px;
    width: 128px;
    border-radius: 10px;
  }

  .conversion-chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 190px;
    height: 190px;
    padding: 14px;
  }

  .dashboard-card:last-child {
    grid-column: auto;
  }

  .bar-chart,
  .compact-chart {
    height: 118px;
    min-height: 118px;
  }

  .rank-chart div {
    grid-template-columns: 68px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .conversion-chart span,
  .conversion-chart strong {
    overflow-wrap: anywhere;
  }

  .services article { min-height: auto; }

  .service-intro::after {
    display: none;
  }

  .visual-service::after {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    height: 120px;
    margin-top: 16px;
  }

  .visual-service p { margin-bottom: 0; }

  .visual-service b {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .image-panel { min-height: 260px; }

  .cta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-brand-logo {
    justify-content: center;
  }

  .button { width: 100%; }
}

@media (max-width: 420px) {
  .shell {
    width: calc(100vw - 12px) !important;
    padding-top: 6px;
  }

  .site-header {
    left: auto;
    right: auto;
    padding: 8px;
  }

  .main-nav a {
    font-size: 0.66rem;
  }

  .hero,
  .video-section,
  .performance-suite,
  .conversion-panel,
  .split,
  .proof,
  .cta,
  .site-footer {
    padding: 16px;
  }

  h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.45rem);
  }

  .video-pair article {
    flex: 0 0 118px;
    width: 118px;
  }

  .conversion-chart {
    gap: 9px;
  }

  .hero-stats article,
  .dashboard-card,
  .quotes article,
  .testimonial-card {
    padding: 14px;
  }

  .testimonial-track {
    min-height: 330px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
  }

  body {
    display: block;
  }

  .shell {
    width: min(100% - 12px, 430px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 8px 0 22px !important;
    transform: none !important;
  }

  .site-header,
  .hero,
  .logo-strip,
  .performance-suite,
  .video-section,
  .conversion-panel,
  .services,
  .split,
  .proof,
  .cta,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 6px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px !important;
    transform: none !important;
  }

  .brand {
    min-width: 0;
    justify-content: center;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
  }

  .main-nav a {
    min-width: 0;
    padding: 8px 6px;
    text-align: center;
    white-space: nowrap;
    font-size: 0.72rem;
  }

  main {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero,
  .performance-suite,
  .video-section,
  .conversion-panel,
  .split,
  .proof,
  .cta,
  .site-footer {
    padding: 16px !important;
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 100%;
    font-size: 2.18rem;
    line-height: 1;
  }

  h2 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  p {
    font-size: 0.95rem;
  }

  .hero-actions,
  .hero-stats,
  .dashboard-grid,
  .conversion-panel,
  .conversion-chart,
  .services,
  .split,
  .proof-metrics,
  .quotes,
  .site-footer {
    grid-template-columns: 1fr !important;
  }

  .button,
  .hero-actions .button,
  .testimonial-controls button {
    width: 100%;
    min-width: 0;
  }

  .logo-strip {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .logo-strip span {
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .video-gallery {
    display: flex;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .video-pair article {
    flex: 0 0 128px !important;
    width: 128px !important;
  }

  .dashboard-card:last-child,
  .footer-bottom {
    grid-column: auto;
  }

  .bar-chart,
  .compact-chart {
    height: 118px;
    min-height: 118px;
    gap: 7px;
  }

  .rank-chart div {
    grid-template-columns: 64px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .testimonial-track {
    min-height: 340px;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    transform: none !important;
    text-align: center;
    justify-items: center;
  }
}
