:root {
  --bg: #f4efe6;
  --bg-deep: #e7dfd2;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #fffdfa;
  --surface-alt: rgba(255, 251, 245, 0.84);
  --text: #1c1f23;
  --muted: #59606b;
  --accent: #0f766e;
  --accent-deep: #113936;
  --accent-soft: #d8ebe7;
  --border: rgba(17, 57, 54, 0.12);
  --shadow: 0 26px 70px rgba(28, 31, 35, 0.06);
  --shadow-tight: 0 18px 42px rgba(17, 57, 54, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --code-font: "JetBrains Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}

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

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.1), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(17, 57, 54, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 36%, #f2ece2 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
  opacity: 0.32;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(15, 118, 110, 0.1), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(15, 118, 110, 0.08), transparent 16%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 60%);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: ambientSweep 18s linear infinite;
}

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

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

p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.2rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--accent-deep);
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.03em;
}

h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  line-height: 1.22;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
}

.section-shell {
  padding: 5.5rem 0;
  position: relative;
  scroll-margin-top: 96px;
}

.alt-surface::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 251, 245, 0.88));
  border-top: 1px solid rgba(17, 57, 54, 0.05);
  border-bottom: 1px solid rgba(17, 57, 54, 0.05);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 230, 0.82);
  border-bottom: 1px solid rgba(17, 57, 54, 0.08);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: rgba(17, 57, 54, 0.06);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.45), var(--accent), rgba(17, 57, 54, 0.85));
  box-shadow: 0 0 18px rgba(15, 118, 110, 0.35);
}

.site-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.05rem;
  padding: 0;
  margin: 0;
  align-items: center;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(17, 57, 54, 0.75);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 57, 54, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--accent-deep);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  padding-top: 4.5rem;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  z-index: -1;
}

.hero::before {
  width: 280px;
  height: 280px;
  top: 6rem;
  left: -4rem;
  background: rgba(15, 118, 110, 0.18);
  animation: floatGlow 9s ease-in-out infinite;
}

.hero::after {
  width: 220px;
  height: 220px;
  right: 2rem;
  top: 10rem;
  background: rgba(17, 57, 54, 0.12);
  animation: floatGlow 12s ease-in-out infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.hero-insight-card,
.hero-value-card,
.feature-card,
.offer-card,
.proof-card,
.quote-card,
.contact-shell,
.timeline-item {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -10% 8% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.12), transparent 68%);
  pointer-events: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.05), transparent);
  transform: translateX(-35%);
  animation: panelShift 12s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow,
.card-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 9.5ch;
  margin-top: 1rem;
  text-wrap: balance;
}

.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.14rem;
  line-height: 1.95;
  max-width: 58ch;
  color: rgba(17, 57, 54, 0.9);
}

.hero-support {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 61ch;
  color: var(--muted);
}

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

.hero-value-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-tight);
  background: rgba(255, 255, 255, 0.88);
}

.hero-value-card::before,
.hero-insight-card::before,
.metric-card::before,
.roi-copy-card::before,
.feature-card::before,
.offer-card::before,
.proof-card::before,
.quote-card::before,
.timeline-item::before,
.faq-item::before,
.contact-form::before,
.audience-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.35), transparent);
}

.hero-value-card p:last-child {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.7;
}

.code-stream {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.code-stream span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.09);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(17, 57, 54, 0.06);
  animation: floatSnippet 4.6s ease-in-out infinite;
}

.code-stream span:nth-child(2) {
  animation-delay: 0.45s;
}

.code-stream span:nth-child(3) {
  animation-delay: 0.9s;
}

.code-stream span:nth-child(4) {
  animation-delay: 1.35s;
}

.code-stream span:nth-child(5) {
  animation-delay: 1.8s;
}

.code-stream code {
  font-family: var(--code-font);
  font-size: 0.8rem;
  color: var(--accent-deep);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 40%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-24deg);
  animation: buttonSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-deep), #14514b);
  color: #fffdfa;
  box-shadow: 0 18px 32px rgba(17, 57, 54, 0.18);
  animation: primaryBreath 3.8s ease-in-out infinite;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 57, 54, 0.16);
  color: var(--accent-deep);
}

.button-block {
  width: 100%;
}

.hero-notes {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-notes span,
.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 57, 54, 0.1);
  font-size: 0.94rem;
  color: var(--accent-deep);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-line span {
  font-weight: 700;
  color: rgba(17, 57, 54, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.trust-line strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.1);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-card {
  border-radius: var(--radius-lg);
}

.hero-rail {
  display: grid;
  gap: 1rem;
}

.profile-card {
  border-radius: var(--radius-lg);
}

.profile-media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(17, 57, 54, 0.18), rgba(15, 118, 110, 0.06));
}

.profile-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.86);
  border: 1px solid rgba(17, 57, 54, 0.12);
  box-shadow: var(--shadow-tight);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0ea672;
  box-shadow: 0 0 0 0 rgba(14, 166, 114, 0.5);
  animation: pulseDot 2s ease-out infinite;
}

.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.18) 34%, transparent 46%);
  transform: translateX(-110%);
  animation: imageSweep 7s ease-in-out infinite;
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.7;
  animation: portraitDrift 14s ease-in-out infinite;
}

.profile-content {
  padding: 1.6rem;
}

.profile-content h2 {
  margin-top: 0.8rem;
  font-size: 2rem;
}

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

.profile-metrics article {
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.profile-metrics strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-deep);
}

.profile-metrics span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.signal-list,
.detail-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-insight-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 249, 0.88));
}

.hero-insight-card h3 {
  margin-top: 0.75rem;
  font-size: 1.5rem;
}

.pipeline-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 1rem 0 0.35rem;
}

.pipeline-board::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 57, 54, 0.16), rgba(15, 118, 110, 0.48), rgba(17, 57, 54, 0.16));
}

.pipeline-board::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 10%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.12);
  animation: pipelineMove 6s ease-in-out infinite;
}

.pipeline-node {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.35rem 0.4rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 57, 54, 0.1);
  background: rgba(255, 255, 255, 0.88);
  font-family: var(--code-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  box-shadow: 0 12px 26px rgba(17, 57, 54, 0.06);
}

.code-terminal {
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 57, 54, 0.12);
  background: #11201f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.terminal-top span:first-child {
  background: #ff6b6b;
}

.terminal-top span:nth-child(2) {
  background: #ffd166;
}

.terminal-top span:nth-child(3) {
  background: #4cd964;
}

.terminal-top small {
  margin-left: auto;
  font-family: var(--code-font);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
}

.terminal-body {
  position: relative;
  padding: 1rem 1rem 0.95rem;
  font-family: var(--code-font);
  color: #d7f5e7;
}

.terminal-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(76, 217, 100, 0.05) 55%, transparent 100%);
  transform: translateY(-100%);
  animation: terminalScan 4.8s linear infinite;
  pointer-events: none;
}

.terminal-body p {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0;
  color: #d7f5e7;
  opacity: 0;
  transform: translateY(8px);
  animation: terminalLineIn 0.55s ease forwards;
}

.terminal-body p:nth-child(2) {
  animation-delay: 0.45s;
}

.terminal-body p:nth-child(3) {
  animation-delay: 0.9s;
}

.code-prompt {
  color: #8ff0b3;
}

.code-keyword {
  color: #76d9ff;
}

.code-operator {
  color: #ffd166;
}

.proof-strip {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-strip article {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.56);
  position: relative;
  overflow: hidden;
}

.ops-ribbon {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(17, 57, 54, 0.92);
  box-shadow: var(--shadow-tight);
}

.ops-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: max-content;
  padding: 0.9rem 1rem;
  animation: ribbonMove 24s linear infinite;
}

.ops-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-family: var(--code-font);
  font-size: 0.82rem;
  color: #d7f5e7;
}

.ops-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #71e6b6;
  box-shadow: 0 0 0 0 rgba(113, 230, 182, 0.5);
  animation: pulseDot 2.8s ease-out infinite;
}

.proof-value {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.proof-strip p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}

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

.metric-card,
.roi-copy-card,
.faq-item {
  padding: 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.metric-card:hover,
.roi-copy-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 28px 70px rgba(17, 57, 54, 0.1);
}

.metric-value {
  display: block;
  margin-top: 0.7rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-deep);
}

.metric-card p:last-child {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.72;
}

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

.impact-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.process-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.14), transparent);
  transform: skewX(-20deg);
  animation: processSweep 7.5s ease-in-out infinite;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 28px 70px rgba(17, 57, 54, 0.1);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  font-family: var(--code-font);
  font-size: 0.8rem;
  color: #fffdfa;
  background: var(--accent-deep);
}

.process-card h3 {
  margin-top: 0.85rem;
  font-size: 1.4rem;
}

.process-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  text-wrap: balance;
}

.section-heading p:last-child {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.section-heading.compact {
  max-width: 520px;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.feature-card,
.offer-card,
.proof-card {
  padding: 1.55rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.offer-card:hover,
.proof-card:hover,
.quote-card:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.2);
  box-shadow: 0 28px 70px rgba(17, 57, 54, 0.1);
}

.feature-card h3,
.offer-card h3,
.proof-card h3 {
  margin-top: 0.75rem;
  font-size: 1.48rem;
}

.feature-card p:last-child,
.offer-summary {
  margin-top: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.benefit-line,
.offer-roi {
  margin-top: 0.85rem;
  color: rgba(17, 57, 54, 0.88);
  font-weight: 700;
  line-height: 1.65;
}

.featured-offer {
  border-color: rgba(15, 118, 110, 0.22);
  background:
    linear-gradient(180deg, rgba(236, 248, 245, 0.98), rgba(255, 255, 255, 0.9));
  box-shadow: 0 28px 80px rgba(15, 118, 110, 0.12);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.audience-panel {
  margin-top: 2rem;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

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

.audience-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 57, 54, 0.08);
  position: relative;
  overflow: hidden;
}

.audience-grid h3 {
  font-size: 1.15rem;
}

.audience-grid p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.65;
}

.stack-section {
  margin-top: 2rem;
}

.stack-marquee {
  margin-top: 1.3rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.stack-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  padding: 1rem;
  animation: marqueeMove 26s linear infinite;
}

.stack-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.1);
  background: rgba(255, 255, 255, 0.88);
  font-family: var(--code-font);
  font-size: 0.84rem;
  color: var(--accent-deep);
  white-space: nowrap;
}

.intent-panel {
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 57, 54, 0.09);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.intent-panel h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.intent-panel p {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

.intent-tags {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.intent-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.12);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.offer-top {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.proof-layout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
}

.proof-column,
.testimonial-column {
  display: grid;
  gap: 1rem;
}

.detail-list-tight {
  margin-top: 0.9rem;
}

.quote-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-copy {
  font-size: 1.02rem;
  line-height: 1.82;
  color: rgba(17, 57, 54, 0.9);
}

.quote-meta {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.quote-meta strong {
  color: var(--accent-deep);
}

.quote-meta span {
  color: var(--muted);
}

.timeline {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.timeline-period {
  display: inline-flex;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.timeline-item h3 {
  font-size: 1.3rem;
}

.timeline-item p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.education-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 1.25rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.contact-copy h2 {
  margin-top: 0.9rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-wrap: balance;
}

.contact-copy p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  margin-top: 1.4rem;
}

.contact-form {
  padding: 1.45rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 57, 54, 0.09);
  position: relative;
  overflow: hidden;
}

.buyer-assurance {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.buyer-assurance article {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-tight);
}

.buyer-assurance strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-deep);
}

.buyer-assurance span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-form label {
  display: block;
  margin-top: 0.95rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 57, 54, 0.12);
  background: #fffdfa;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

.form-hint,
.contact-note,
.form-status {
  font-size: 0.92rem;
}

.form-hint {
  margin-top: 0.85rem;
  color: var(--muted);
}

.form-status {
  margin-top: 0.65rem;
  min-height: 1.2rem;
  color: var(--accent);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  color: rgba(17, 57, 54, 0.72);
  font-size: 0.92rem;
}

.mobile-cta {
  display: none;
}

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

.detail-page {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.detail-shell {
  width: min(760px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.detail-shell h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.detail-shell p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

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

.faq-item h3 {
  font-size: 1.34rem;
}

.faq-item p {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes ambientSweep {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(2%, 1.5%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatSnippet {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes panelShift {
  0%,
  100% {
    transform: translateX(-35%);
  }

  50% {
    transform: translateX(8%);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 166, 114, 0.5);
  }

  80%,
  100% {
    box-shadow: 0 0 0 12px rgba(14, 166, 114, 0);
  }
}

@keyframes imageSweep {
  0%,
  70%,
  100% {
    transform: translateX(-110%);
  }

  35% {
    transform: translateX(110%);
  }
}

@keyframes portraitDrift {
  0%,
  100% {
    transform: scale(1.03) translateY(0);
  }

  50% {
    transform: scale(1.07) translateY(-6px);
  }
}

@keyframes terminalScan {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes terminalLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSweep {
  0%,
  74%,
  100% {
    left: -120%;
  }

  84% {
    left: 140%;
  }
}

@keyframes primaryBreath {
  0%,
  100% {
    box-shadow: 0 18px 32px rgba(17, 57, 54, 0.18);
  }

  50% {
    box-shadow: 0 22px 42px rgba(15, 118, 110, 0.22);
  }
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ribbonMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes processSweep {
  0%,
  70%,
  100% {
    left: -35%;
  }

  35% {
    left: 135%;
  }
}

@keyframes pipelineMove {
  0%,
  100% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(420%);
  }

  55% {
    transform: translateX(420%);
  }
}

@media (max-width: 1200px) {
  .impact-grid,
  .expertise-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.95);
    border: 1px solid rgba(17, 57, 54, 0.12);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
  }

  .hero-grid,
  .hero-rail,
  .impact-grid,
  .roi-copy-grid,
  .process-grid,
  .expertise-grid,
  .offer-grid,
  .proof-layout,
  .contact-shell,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-value-grid,
  .profile-metrics,
  .buyer-assurance {
    grid-template-columns: 1fr;
  }

  .code-stream {
    gap: 0.55rem;
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding: 4.25rem 0;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero-copy,
  .metric-card,
  .roi-copy-card,
  .process-card,
  .profile-content,
  .hero-insight-card,
  .hero-value-card,
  .feature-card,
  .offer-card,
  .proof-card,
  .quote-card,
  .contact-shell,
  .contact-form,
  .timeline-item,
  .audience-panel,
  .faq-item,
  .intent-panel {
    padding: 1.25rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .terminal-top small {
    display: none;
  }

  .stack-track {
    animation-duration: 34s;
  }

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

  .pipeline-board::before,
  .pipeline-board::after {
    display: none;
  }

  .trust-line {
    gap: 0.55rem;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .site-header-inner {
    min-height: 74px;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2 {
    text-wrap: pretty;
  }

  .trust-line strong {
    font-size: 0.78rem;
  }

  .mobile-cta {
    position: fixed;
    left: 0.7rem;
    right: 0.7rem;
    bottom: calc(0.7rem + env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.75rem;
    border-radius: 22px;
    border: 1px solid rgba(17, 57, 54, 0.1);
    background: rgba(255, 253, 250, 0.94);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 50px rgba(17, 57, 54, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-cta .button {
    min-height: 50px;
    padding: 0 0.95rem;
    font-size: 0.9rem;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header,
  .site-nav,
  .hero-copy,
  .hero-card,
  .hero-insight-card,
  .feature-card,
  .offer-card,
  .proof-card,
  .quote-card,
  .contact-shell,
  .contact-form,
  .timeline-item {
    background: rgba(255, 253, 250, 0.96);
  }
}

.page-hero {
  padding-top: 4rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: rgba(17, 57, 54, 0.68);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 700;
}

.page-hero-shell,
.page-section-shell,
.content-card,
.story-card,
.article-card,
.cta-panel,
.resource-list,
.contact-panel,
.contact-method-card,
.value-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.page-hero-shell,
.page-section-shell,
.cta-panel,
.contact-panel {
  padding: clamp(1.6rem, 4vw, 2.6rem);
}

.page-hero-grid,
.page-section-grid,
.content-layout,
.story-grid,
.resource-grid,
.contact-method-grid,
.value-grid,
.service-summary-grid,
.insight-feature-grid {
  display: grid;
  gap: 1rem;
}

.page-hero-grid,
.content-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.page-intro h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  text-wrap: balance;
}

.page-intro p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.88;
}

.page-intro .hero-actions {
  margin-top: 1.6rem;
}

.page-side-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-tight);
}

.page-side-card h2,
.page-side-card h3 {
  margin-top: 0.7rem;
  font-size: 1.6rem;
}

.page-side-card p,
.page-side-card li,
.content-card p,
.story-card p,
.article-card p,
.resource-list p,
.resource-list li {
  color: var(--muted);
  line-height: 1.78;
}

.page-kpi-grid,
.story-grid,
.resource-grid,
.contact-method-grid,
.value-grid,
.service-summary-grid,
.insight-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-kpi-card,
.contact-method-card,
.story-card,
.article-card,
.value-panel,
.content-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.page-kpi-card {
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-tight);
}

.page-kpi-card strong {
  display: block;
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-deep);
}

.page-kpi-card span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-cluster {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.section-cluster h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-wrap: balance;
}

.section-cluster h3 {
  font-size: 1.35rem;
}

.section-cluster .section-heading {
  max-width: 860px;
}

.content-card h3,
.story-card h3,
.article-card h3,
.value-panel h3,
.contact-method-card h3 {
  margin-top: 0.7rem;
  font-size: 1.25rem;
}

.article-card time,
.meta-line,
.support-line {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 57, 54, 0.62);
}

.resource-list ul,
.content-card ul,
.page-side-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.sticky-card {
  position: sticky;
  top: 108px;
}

.link-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.global-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.global-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.2rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 57, 54, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-summary-grid .offer-card,
.resource-grid .article-card,
.story-grid .story-card {
  height: 100%;
}

.article-prose,
.proof-prose {
  display: grid;
  gap: 1.2rem;
}

.article-prose h2,
.proof-prose h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.article-prose h3,
.proof-prose h3 {
  font-size: 1.2rem;
}

.article-prose p,
.proof-prose p,
.article-prose li,
.proof-prose li {
  color: var(--muted);
  line-height: 1.9;
}

.article-prose ul,
.proof-prose ul,
.article-prose ol,
.proof-prose ol {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
  margin: 0;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(17, 57, 54, 0.95), rgba(22, 80, 74, 0.94));
  color: #f7f5ef;
}

.cta-panel h2,
.cta-panel h3,
.cta-panel p,
.cta-panel li {
  color: inherit;
}

.cta-panel .eyebrow,
.cta-panel .card-kicker {
  color: rgba(177, 237, 222, 0.92);
}

.cta-panel .button-primary {
  background: #f7f5ef;
  color: var(--accent-deep);
}

.cta-panel .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7f5ef;
}

.contact-method-card {
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.contact-method-card a {
  color: var(--accent);
  font-weight: 800;
}

.text-link {
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(0.38);
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.site-footer {
  margin-top: 1rem;
}

.header-cta {
  margin-left: auto;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.logos-strip,
.brand-logos,
.booking-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.brand-logos {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 1rem;
  border: 1px solid rgba(17, 57, 54, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text);
}

.testimonial-card footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  margin-top: 2rem;
}

.booking-shell,
.video-shell,
.pricing-shell {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.embed-placeholder,
.loom-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(15, 118, 110, 0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(232, 244, 241, 0.75));
  padding: 1.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.price-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 57, 54, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

.price-card strong {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.6rem;
  color: var(--accent-deep);
}

.price-card ul {
  margin-top: 0.9rem;
}

.intake-form {
  display: grid;
  gap: 0.8rem;
}

.intake-form input,
.intake-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(17, 57, 54, 0.14);
  background: rgba(255,255,255,0.9);
}

.intake-form textarea {
  min-height: 120px;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .page-kpi-grid,
  .story-grid,
  .resource-grid,
  .contact-method-grid,
  .value-grid,
  .service-summary-grid,
  .insight-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-card {
    position: static;
  }

  .brand-logos,
  .pricing-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: 2.75rem;
  }

  .page-hero-shell,
  .page-section-shell,
  .cta-panel,
  .contact-panel {
    padding: 1.3rem;
  }

  .page-kpi-grid,
  .story-grid,
  .resource-grid,
  .contact-method-grid,
  .value-grid,
  .service-summary-grid,
  .insight-feature-grid {
    grid-template-columns: 1fr;
  }

  .global-strip span {
    width: 100%;
    justify-content: center;
  }

  .brand-logo-card {
    min-height: 56px;
  }

  .mobile-cta .button {
    min-height: 50px;
  }
}
