:root {
  color-scheme: light;
  --bg: #efe8de;
  --bg-strong: #fffaf4;
  --ink: #243846;
  --ink-soft: #607589;
  --panel: rgba(255, 250, 244, 0.76);
  --panel-strong: #fffdf8;
  --panel-dark: #243746;
  --panel-dark-alt: #31495c;
  --line: rgba(36, 56, 70, 0.11);
  --line-strong: rgba(36, 56, 70, 0.18);
  --accent: #f09a1c;
  --accent-soft: #ffd39a;
  --sage: #6f8798;
  --gold: #ffbf52;
  --white: #ffffff;
  --success: #3d8b5f;
  --shadow-lg: 0 30px 90px rgba(18, 30, 42, 0.14);
  --shadow-md: 0 20px 50px rgba(18, 30, 42, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(240, 154, 28, 0.16), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(111, 135, 152, 0.16), transparent 22%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 48%, #e6ddd1 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(4.75rem, 7vw, 7rem) 0;
}

.page-orb {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.orb-left {
  top: -8rem;
  left: -10rem;
  background: rgba(240, 154, 28, 0.16);
}

.orb-right {
  top: 18rem;
  right: -9rem;
  background: rgba(111, 135, 152, 0.14);
}

/* Urgency bar */
.urgency-bar {
  padding: 0.65rem 0;
  background: linear-gradient(135deg, rgba(16, 26, 37, 0.98), rgba(26, 40, 56, 0.98));
  color: var(--white);
  font-size: 0.88rem;
  text-align: center;
}

.urgency-bar p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.urgency-bar strong {
  color: var(--accent-soft);
}

.pulse-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 251, 246, 0.94);
  border-color: rgba(19, 33, 47, 0.08);
  box-shadow: 0 12px 30px rgba(18, 30, 42, 0.08);
}

.header-bar {
  position: relative;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-mark {
  width: 3.3rem;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 20px rgba(36, 56, 70, 0.14));
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.3;
  max-width: 26ch;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 33, 47, 0.12);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(19, 33, 47, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: clamp(4.2rem, 7vw, 6.25rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-family: "Syne", sans-serif;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3.15rem, 8vw, 6rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h3 {
  font-size: 1.5rem;
}

.hero-lead,
.hero-sublead,
.section-intro > p:last-child,
.service-card p,
.industry-card p,
.industry-card li,
.process-card p,
.result-card p,
.result-card li,
.faq-list p,
.contact-card small,
.signal-pill p,
.summary-stack p,
#estimate-note,
.problem-card p,
.comparison-card li,
.testimonial-card p,
.guarantee-copy p,
.audit-checklist li {
  color: var(--ink-soft);
}

.hero-lead,
.hero-sublead {
  max-width: 62ch;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
}

.hero-sublead {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.button {
  min-height: 3.65rem;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #ba5429 80%);
  box-shadow: 0 18px 35px rgba(217, 107, 62, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 33, 47, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics article {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Retention showcase */
.retention-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: start;
  justify-items: center;
  padding: 1rem 0 2.5rem;
  max-width: 520px;
  margin: 0 auto;
}

.retention-hub {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 210px;
}

.retention-glow {
  position: absolute;
  inset: -1.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 154, 28, 0.22), transparent 70%);
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.retention-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.3rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--panel-strong), var(--bg-strong));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: floatCard 5s ease-in-out infinite;
}

.retention-card-main {
  padding: 1.5rem 1.15rem;
  border: 1px solid rgba(240, 154, 28, 0.35);
  box-shadow: 0 24px 60px rgba(18, 30, 42, 0.14), 0 0 0 1px rgba(240, 154, 28, 0.15);
  animation-delay: 0s;
}

.retention-card-sat {
  padding: 1rem 0.85rem;
  animation-delay: -2.5s;
}

.retention-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.retention-card-main .retention-icon {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(240, 154, 28, 0.35);
}

.retention-card-sat .retention-icon {
  background: rgba(36, 56, 70, 0.08);
  color: var(--ink);
}

.retention-card strong {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.retention-card-main strong {
  font-size: 1.1rem;
}

.retention-card span:not(.retention-icon) {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.retention-sat {
  grid-row: 2;
  width: 100%;
  max-width: 155px;
}

.retention-sat-left {
  grid-column: 1;
  justify-self: end;
  padding-right: 0.25rem;
}

.retention-sat-right {
  grid-column: 3;
  justify-self: start;
  padding-left: 0.25rem;
}

.retention-link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240, 154, 28, 0.4), transparent);
  z-index: 0;
}

.link-left {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  width: 34%;
  top: 56%;
  left: 14%;
  transform: rotate(-26deg);
  transform-origin: left center;
}

.link-right {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  width: 34%;
  top: 56%;
  right: 14%;
  transform: rotate(26deg);
  transform-origin: right center;
}

.retention-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(18, 30, 42, 0.16);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.retention-float div {
  display: grid;
  line-height: 1.2;
}

.retention-float strong {
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.retention-float small {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.85;
}

.float-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.7rem;
}

.float-speed {
  left: 0.5rem;
  top: 2rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(19, 33, 47, 0.08);
  animation-delay: -1s;
}

.float-speed .float-dot {
  background: #3d8b5f;
  color: var(--white);
}

.float-leads {
  right: 0.5rem;
  bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(16, 26, 37, 0.95), rgba(26, 40, 56, 0.95));
  color: var(--white);
  animation-delay: -2s;
}

.float-leads .float-dot {
  background: var(--accent);
  color: var(--white);
}

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

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}

.signal-strip {
  padding-bottom: 0.75rem;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.signal-pill {
  position: relative;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.signal-pill::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 154, 28, 0));
}

.signal-pill span {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.signal-pill p {
  margin: 0;
}

.section-intro {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.section-intro > p:last-child {
  max-width: 60ch;
  margin: 0;
}

/* Problem section */
.problem-section {
  background:
    radial-gradient(circle at top right, rgba(217, 107, 62, 0.08), transparent 26%),
    radial-gradient(circle at bottom left, rgba(115, 143, 120, 0.08), transparent 22%);
}

.problem-layout {
  display: grid;
  gap: 2rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.problem-card {
  position: relative;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d45d3a, rgba(217, 107, 62, 0));
}

.problem-icon {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: #d45d3a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.problem-card p {
  margin: 0;
  font-size: 0.96rem;
}

.problem-card-solution {
  background: linear-gradient(135deg, rgba(16, 26, 37, 0.95), rgba(26, 40, 56, 0.95));
  color: var(--white);
}

.problem-card-solution::before {
  background: linear-gradient(90deg, var(--accent), rgba(240, 154, 28, 0));
}

.problem-card-solution h3 {
  color: var(--white);
}

.problem-card-solution p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
}

.problem-icon-solution {
  color: var(--accent-soft);
}

/* Services */
.service-grid,
.industry-grid,
.process-grid,
.results-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  position: relative;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(217, 107, 62, 0));
}

.service-number {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card p {
  margin: 0.8rem 0 1rem;
}

.service-card small {
  color: var(--ink);
  font-weight: 700;
}

/* Contrast / Industries */
.contrast-section {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(217, 107, 62, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(115, 143, 120, 0.18), transparent 22%),
    linear-gradient(180deg, var(--panel-dark) 0%, var(--panel-dark-alt) 100%);
}

.contrast-section .section-intro > p:last-child,
.contrast-section .industry-card p,
.contrast-section .industry-card li {
  color: rgba(241, 245, 249, 0.78);
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 2rem;
  align-items: start;
}

.industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.industry-tag,
.result-tag {
  color: var(--gold);
}

.industry-card h3,
.result-card h3 {
  margin-top: 0.8rem;
}

.industry-card p,
.result-card p {
  margin: 0.8rem 0 0.85rem;
}

.industry-card ul,
.result-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

/* Process */
.process-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(240, 154, 28, 0.06), transparent 22%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(240, 154, 28, 0));
  opacity: 0.3;
  z-index: 0;
}

.process-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.process-step,
.summary-label,
.summary-stack span {
  color: var(--accent);
}

.process-card h3 {
  margin-top: 0.8rem;
}

.process-card p {
  margin: 0.7rem 0 0;
}

/* Comparison */
.comparison-section {
  background:
    radial-gradient(circle at top left, rgba(217, 107, 62, 0.06), transparent 24%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.comparison-card {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
}

.comparison-faded {
  opacity: 0.7;
}

.comparison-highlight {
  background: linear-gradient(135deg, rgba(16, 26, 37, 0.95), rgba(26, 40, 56, 0.95));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.comparison-highlight .comparison-label {
  color: var(--accent-soft);
}

.comparison-highlight li {
  color: rgba(255, 255, 255, 0.85);
}

.comparison-highlight li strong {
  color: var(--white);
}

.comparison-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.comparison-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.96rem;
}

.comparison-faded li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #c45d3a;
  font-weight: 800;
}

.comparison-highlight li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-weight: 800;
}

.comparison-highlight .button {
  margin-top: 1.2rem;
  width: 100%;
}

/* Results / Portfolio */
.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-card {
  padding: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  gap: 0;
}

.result-preview {
  aspect-ratio: 16 / 10;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-browser {
  width: 100%;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.mockup-bar {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.mockup-bar span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.mockup-content {
  padding: 1.2rem 1rem;
  text-align: center;
}

.mockup-content strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-family: "Syne", sans-serif;
}

.mockup-content small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.result-card .result-tag,
.result-card h3,
.result-card p,
.result-card ul,
.result-card > p:last-child {
  padding-left: 1.55rem;
  padding-right: 1.55rem;
}

.result-card .result-tag {
  margin-top: 1.2rem;
}

.result-card > p:last-child {
  padding-bottom: 1.55rem;
  margin: 0;
}

.result-card a {
  color: var(--accent);
  font-weight: 800;
  transition: color 180ms ease;
}

.result-card a:hover {
  color: #ba5429;
}

/* Testimonials */
.testimonial-section {
  background:
    radial-gradient(circle at bottom right, rgba(217, 107, 62, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(115, 143, 120, 0.08), transparent 22%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
  margin: 0;
}

.testimonial-card > p {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
}

.testimonial-card footer {
  display: grid;
  gap: 0.15rem;
}

.testimonial-card footer strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-card footer span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Pricing / Estimator */
.estimator-section {
  padding-top: 1rem;
}

.estimator-shell {
  display: grid;
  gap: 2rem;
}

.estimator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.35rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 245, 235, 0.8));
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-lg);
}

.estimator-config {
  display: grid;
  gap: 1.25rem;
}

.config-group {
  display: grid;
  gap: 0.95rem;
}

.config-group h3 {
  font-size: 1.25rem;
}

.package-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.package-card,
.addon-card {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.package-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.package-card:hover,
.package-card:focus-within,
.addon-card:hover,
.addon-card:focus-within {
  transform: translateY(-2px);
}

.package-card.is-active {
  background: rgba(217, 107, 62, 0.1);
  border-color: rgba(217, 107, 62, 0.32);
  box-shadow: 0 20px 40px rgba(217, 107, 62, 0.14);
}

.package-card input,
.addon-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.package-name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.package-price {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.package-copy {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.addon-card {
  grid-template-columns: 1fr auto;
  align-items: center;
  background: rgba(19, 33, 47, 0.04);
  border: 1px solid rgba(19, 33, 47, 0.08);
}

.addon-card span {
  max-width: 22ch;
  font-weight: 700;
}

.addon-card strong {
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.addon-card.is-active {
  background: rgba(115, 143, 120, 0.12);
  border-color: rgba(115, 143, 120, 0.28);
}

.estimate-summary {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: calc(var(--radius-xl) - 8px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(217, 107, 62, 0.26), transparent 25%),
    linear-gradient(180deg, rgba(16, 26, 37, 0.98), rgba(23, 37, 53, 0.98));
}

.estimate-summary p {
  margin: 0;
}

.estimate-summary strong {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.summary-stack {
  display: grid;
  gap: 0.95rem;
}

.summary-stack p {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.76);
}

/* Guarantee */
.guarantee-section {
  background:
    radial-gradient(circle at top left, rgba(240, 154, 28, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(115, 143, 120, 0.08), transparent 22%);
}

.guarantee-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 240, 0.84));
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-lg);
}

.guarantee-badge {
  width: 7rem;
  height: 7rem;
  color: var(--accent);
}

.guarantee-badge svg {
  width: 100%;
  height: 100%;
}

.guarantee-copy {
  display: grid;
  gap: 0.85rem;
}

.guarantee-copy h2 {
  max-width: 20ch;
}

.guarantee-copy ul {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.guarantee-copy li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.guarantee-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0.85rem 0 0;
}

/* Audit / Lead Magnet Form */
.audit-section {
  padding-top: 1rem;
}

.audit-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2.5rem;
  align-items: start;
}

.audit-copy {
  display: grid;
  gap: 0.85rem;
}

.audit-copy h2 {
  max-width: 18ch;
}

.audit-checklist {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.audit-checklist li {
  position: relative;
  padding-left: 1.5rem;
}

.audit-checklist li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(217, 107, 62, 0.14);
}

.audit-social-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.audit-social-proof p {
  margin: 0;
}

.audit-form {
  display: grid;
  gap: 1.1rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 245, 235, 0.88));
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-lg);
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(19, 33, 47, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 154, 28, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--sage);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23243846' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

/* CTA */
.cta-section {
  padding-top: 1rem;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 1.35rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(217, 107, 62, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(115, 143, 120, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 240, 0.84));
  border: 1px solid rgba(19, 33, 47, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-copy p:last-child {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
}

.contact-stack {
  display: grid;
  gap: 0.95rem;
}

.contact-card {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 33, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card-primary {
  background: linear-gradient(135deg, rgba(16, 26, 37, 0.95), rgba(26, 40, 56, 0.95));
  color: var(--white);
}

.contact-card-primary span {
  color: var(--accent-soft);
}

.contact-card-primary small {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-card strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

/* Footer */
.site-footer {
  padding: 0 0 2rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 33, 47, 0.1);
}

.footer-brand {
  display: grid;
  gap: 0.85rem;
}

.footer-logo {
  width: clamp(12rem, 26vw, 17rem);
  height: auto;
}

.footer-brand p,
.footer-meta p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-meta a {
  color: var(--ink-soft);
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--ink);
}

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Responsive */
@media (max-width: 1120px) {
  .hero-layout,
  .industries-layout,
  .faq-layout,
  .cta-shell,
  .estimator-panel,
  .audit-shell,
  .guarantee-shell {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .results-grid,
  .process-timeline,
  .signal-grid,
  .comparison-grid,
  .testimonial-grid,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retention-showcase {
    gap: 0.85rem;
    padding-bottom: 3rem;
    max-width: 460px;
  }

  .retention-card-main {
    padding: 1.25rem 1rem;
  }

  .retention-card-sat {
    padding: 0.9rem 0.75rem;
  }

  .retention-card strong {
    font-size: 0.9rem;
  }

  .retention-card-main strong {
    font-size: 1rem;
  }

  .retention-card span:not(.retention-icon) {
    font-size: 0.75rem;
  }

  .retention-sat {
    max-width: 145px;
  }

  .float-speed {
    left: 0.25rem;
    top: 1.25rem;
  }

  .float-leads {
    right: 0.25rem;
    bottom: 1.25rem;
  }

  .guarantee-badge {
    width: 5rem;
    height: 5rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: 1.3rem;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(19, 33, 47, 0.1);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-radius: 1rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(19, 33, 47, 0.05);
  }

  .hero-metrics,
  .industry-grid,
  .package-options,
  .addon-grid,
  .screen-panels,
  .problem-grid,
  .comparison-grid,
  .testimonial-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .browser-screen {
    grid-template-columns: 1fr;
  }

  .stage-logo {
    width: min(100%, 17rem);
  }

  .info-card-primary,
  .info-card-metric {
    grid-column: auto;
  }

  .urgency-bar p {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.35rem 0;
  }

  h1 {
    max-width: 12ch;
  }

  .service-grid,
  .results-grid,
  .process-grid,
  .signal-grid,
  .metric-row,
  .problem-grid,
  .comparison-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .header-bar {
    min-height: 5rem;
  }

  .brand-copy small {
    display: none;
  }

  .retention-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.85rem;
    padding: 0.5rem 0 2rem;
  }

  .retention-hub {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 200px;
  }

  .retention-sat-left {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    padding-right: 0;
  }

  .retention-sat-right {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
    padding-left: 0;
  }

  .retention-link {
    display: none;
  }

  .retention-float {
    position: relative;
    grid-row: 3;
    justify-self: center;
    animation: none;
  }

  .float-speed {
    grid-column: 1;
    left: auto;
    top: auto;
  }

  .float-leads {
    grid-column: 2;
    right: auto;
    bottom: auto;
  }

  .monitor-frame,
  .estimator-panel,
  .cta-shell,
  .audit-form,
  .guarantee-shell {
    padding: 1rem;
  }

  .footer-bar,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .audit-shell {
    gap: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Credibility refresh */
:root {
  --bg: #ece6dc;
  --bg-strong: #f7f3ed;
  --ink: #1e2f3d;
  --ink-soft: #5f7080;
  --panel: rgba(255, 251, 245, 0.92);
  --panel-strong: #fffdf9;
  --panel-dark: #1f2e3b;
  --panel-dark-alt: #283847;
  --line: rgba(30, 47, 61, 0.11);
  --line-strong: rgba(30, 47, 61, 0.18);
  --accent: #b86a30;
  --accent-soft: #e7b07f;
  --shadow-lg: 0 24px 60px rgba(18, 28, 36, 0.08);
  --shadow-md: 0 16px 36px rgba(18, 28, 36, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

body {
  background: linear-gradient(180deg, #f6f1ea 0%, #ece6dc 100%);
}

.page-orb,
.orb-left,
.orb-right {
  display: none;
}

.urgency-bar {
  background: #1f2e3b;
}

.pulse-dot {
  animation-duration: 2.4s;
}

.site-header {
  background: rgba(247, 243, 237, 0.94);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(247, 243, 237, 0.98);
  box-shadow: 0 10px 28px rgba(18, 28, 36, 0.06);
}

.brand {
  gap: 0;
}

.brand-logo {
  width: clamp(11rem, 18vw, 15rem);
  height: auto;
}

.nav-cta,
.button-secondary,
.menu-toggle,
.hero-metrics article,
.signal-pill,
.problem-card,
.service-card,
.process-card,
.result-card,
.testimonial-card,
.faq-list details,
.audit-form,
.contact-card,
.guarantee-shell,
.cta-shell {
  background: var(--panel);
  box-shadow: var(--shadow-md);
}

.button-primary {
  background: #b86a30;
  box-shadow: 0 14px 28px rgba(184, 106, 48, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a05a25;
}

.button-secondary,
.nav-cta {
  background: rgba(255, 255, 255, 0.7);
}

.signal-pill::before,
.service-card::before,
.problem-card::before {
  background: #b86a30;
}

.trust-avatars span {
  background: #d3dbe3;
  border-color: #f7f3ed;
}

.hero-metrics article,
.signal-pill,
.problem-card,
.service-card,
.industry-card,
.process-card,
.comparison-card,
.result-card,
.testimonial-card,
.faq-list details,
.audit-form,
.contact-card,
.guarantee-shell,
.cta-shell {
  border-color: rgba(30, 47, 61, 0.12);
}

.problem-section,
.comparison-section,
.process-section,
.testimonial-section,
.guarantee-section,
.cta-section {
  background: transparent;
}

.contrast-section {
  background: linear-gradient(180deg, #233442 0%, #2d3f4f 100%);
}

.industry-card {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.comparison-highlight,
.contact-card-primary {
  background: linear-gradient(180deg, #213241 0%, #2a3b49 100%);
}

.comparison-faded {
  opacity: 0.88;
}

.result-preview {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-browser {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.faq-list summary::after {
  color: #b86a30;
}

@media (max-width: 860px) {
  .brand-logo {
    width: 12.25rem;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 10.75rem;
  }

}

/* Regression fixes */
.hero-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

h1 {
  max-width: 7.2ch;
  font-size: clamp(3rem, 6.6vw, 5.35rem);
}

.problem-card-solution {
  background: linear-gradient(180deg, #213241 0%, #2b3c4a 100%);
  color: var(--white);
  border-color: transparent;
}

.problem-card-solution h3 {
  color: var(--white);
}

.problem-card-solution p {
  color: rgba(255, 255, 255, 0.82);
}

.problem-card-solution .problem-icon-solution {
  color: var(--accent-soft);
}

.problem-card-solution .button-primary {
  background: #b87644;
  box-shadow: none;
}

.problem-card-solution .button-primary:hover,
.problem-card-solution .button-primary:focus-visible {
  background: #a66737;
}

@media (max-width: 1220px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}

/* Audit recommendation pass */
:root {
  --accent: #9a5528;
  --accent-soft: #f0c097;
  --ink-soft: #526675;
}

.eyebrow,
.contact-card span,
.result-card a {
  color: var(--accent);
}

.portfolio-disclosure {
  display: grid;
  gap: 0.45rem;
  max-width: 58rem;
  margin: -1.4rem 0 2rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-md);
}

.portfolio-disclosure strong {
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.portfolio-disclosure p {
  margin: 0;
  color: var(--ink-soft);
}

.result-card {
  position: relative;
}

.result-card::before {
  content: "Sample";
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #243846;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-section {
  background: linear-gradient(180deg, #1f2e3b 0%, #2b3d4b 100%);
  color: var(--white);
}

.founder-layout {
  display: grid;
  gap: 2rem;
}

.founder-section .eyebrow {
  color: var(--accent-soft);
}

.founder-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

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

.founder-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.founder-card span {
  color: var(--accent-soft);
  font-weight: 800;
}

.founder-card h3 {
  color: var(--white);
}

.founder-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.audit-social-proof {
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(30, 47, 61, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.68);
}

.hidden-field {
  display: none;
}

.form-group label span {
  color: var(--ink-soft);
  font-weight: 600;
}

.audit-form .button {
  width: 100%;
}

@media (max-width: 1120px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .urgency-bar {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 12vw, 3rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-lead,
  .hero-sublead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 0.75rem;
    margin-top: 1.35rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 1.35rem;
  }

  .portfolio-disclosure {
    margin-top: 0;
  }
}

/* Final typography fit */
h1,
h2,
h3,
.button,
.contact-card strong,
.brand-copy strong,
.hero-metrics strong {
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: 4.8rem;
}

h2 {
  font-size: 3.45rem;
}

@media (max-width: 1220px) {
  h1 {
    max-width: 12ch;
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.15rem;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 11ch;
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.2rem;
  }
}

/* Annotation fixes */
.comparison-card {
  color: var(--ink);
}

.comparison-faded {
  opacity: 1;
  background: #f7f3ed;
  border-color: rgba(247, 243, 237, 0.22);
  color: #1e2f3d;
}

.comparison-faded .comparison-label {
  color: #8b4a24;
}

.comparison-faded li {
  color: #31495c;
}

.comparison-faded li::before {
  color: #a8432e;
}

.comparison-highlight {
  background: linear-gradient(180deg, #223341 0%, #2d4050 100%);
}

.comparison-highlight li {
  color: rgba(255, 255, 255, 0.9);
}

/* Palmetto Canopy hero */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 7rem);
  padding-top: clamp(2.8rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.4rem, 5vw, 4.8rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 20%, rgba(154, 85, 40, 0.14), transparent 28%),
    linear-gradient(115deg, rgba(247, 243, 237, 0.72), rgba(247, 243, 237, 0.2));
}

.palmetto-canopy {
  position: absolute;
  inset: -12% -6%;
  z-index: 0;
  width: 112%;
  height: 124%;
  pointer-events: none;
  opacity: 0.94;
}

.canopy-labels {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.canopy-label {
  --label-x: 70%;
  --label-y: 34%;
  position: absolute;
  left: var(--label-x);
  top: var(--label-y);
  display: grid;
  gap: 0.05rem;
  min-width: 8.5rem;
  padding-left: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.25;
  opacity: 0.72;
  transform: translate3d(0, -50%, 0);
  transition: opacity 180ms ease;
}

.canopy-label::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 50%;
  width: 1.65rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  transform: translate3d(-100%, -50%, 0);
}

.canopy-label strong {
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.canopy-label small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.canopy-label-scope {
  --label-x: 72%;
  --label-y: 24%;
}

.canopy-label-timeline {
  --label-x: 81%;
  --label-y: 43%;
}

.canopy-label-positioning {
  --label-x: 65%;
  --label-y: 63%;
}

.canopy-label-trust {
  --label-x: 56%;
  --label-y: 36%;
}

.canopy-label-simplicity {
  --label-x: 78%;
  --label-y: 76%;
}

.hero .hero-layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 54rem);
  align-items: center;
  gap: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}

.hero h1 {
  max-width: 15.4ch;
  font-size: clamp(3.1rem, 6.15vw, 5rem);
}

.hero-metrics article {
  backdrop-filter: blur(16px);
}

@media (max-width: 980px) {
  .canopy-label {
    opacity: 0.48;
  }

  .canopy-label-trust,
  .canopy-label-positioning {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .canopy-labels {
    display: none;
  }

  .palmetto-canopy {
    inset: -8% -24%;
    width: 148%;
    height: 112%;
    opacity: 0.58;
  }
}

@media (prefers-reduced-motion: reduce) {
  .palmetto-canopy {
    opacity: 0.72;
  }
}
