:root {
  --bg: #f7f8f6;
  --surface: #ffffff;
  --ink: #17201d;
  --muted: #5c6964;
  --line: #dfe5df;
  --teal: #0e5f59;
  --teal-dark: #0a403d;
  --amber: #c8842f;
  --sage: #dfe8df;
  --shadow: 0 24px 70px rgba(20, 32, 29, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.consent-field a,
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 0;
}

.legal-content h1 {
  max-width: 760px;
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-bottom: 38px;
  color: var(--muted);
}

.legal-pending {
  padding: 16px 18px;
  color: #593706;
  background: #fff4df;
  border: 1px solid #e6bd78;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 246, 0.92);
  border-bottom: 1px solid rgba(223, 229, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.proof-list,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-logo {
  width: clamp(168px, 18vw, 224px);
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--teal);
  border-radius: 7px;
}

.main-nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-services {
  position: relative;
}

.nav-services-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
}

.nav-services-trigger::after {
  color: var(--teal);
  content: "▾";
  font-size: 0.72rem;
  transition: transform 160ms ease;
}

.nav-services-trigger[aria-expanded="true"] {
  color: var(--ink);
}

.nav-services-trigger[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.nav-services-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: 310px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-services-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.nav-services-menu[hidden] {
  display: none;
}

.nav-services-menu a {
  padding: 11px 12px;
  color: var(--muted);
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-services-menu a:hover,
.nav-services-menu a[aria-current="page"] {
  color: var(--teal-dark);
  background: #edf2ed;
}

.header-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 7px;
  font-weight: 700;
}

.mobile-menu-trigger,
.mobile-menu {
  display: none;
}

.mobile-menu-trigger {
  place-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
}

.mobile-menu-trigger span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-trigger[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-trigger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-trigger[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 25;
  max-height: calc(100vh - 68px);
  padding: 14px 18px 20px;
  overflow-y: auto;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 42px rgba(20, 32, 29, 0.12);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a,
.mobile-menu-label {
  display: block;
  padding: 11px 8px;
}

.mobile-menu a {
  color: var(--ink);
  font-weight: 750;
}

.mobile-menu a[aria-current="page"] {
  color: var(--teal);
}

.mobile-menu-label {
  padding-top: 18px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 8px;
  color: #fff;
  text-align: center;
  background: var(--teal);
  border-radius: 7px;
}

.section,
.final-cta {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: clamp(42px, 7vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 870px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.why-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button.wide {
  width: 100%;
}

.proof-list {
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li {
  padding: 9px 12px;
  color: var(--teal-dark);
  background: var(--sage);
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 750;
}

.proof-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal);
}

.hero-media {
  position: relative;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.impact-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(260px, calc(100% - 36px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 223, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(20, 32, 29, 0.14);
  backdrop-filter: blur(14px);
}

.impact-panel span,
.impact-panel small {
  display: block;
  color: var(--muted);
}

.impact-panel strong {
  display: block;
  color: var(--teal);
  font-size: 2.3rem;
  line-height: 1;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 690px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.problem-grid,
.card-grid,
.use-case-grid,
.why-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.problem-grid article,
.solution-card,
.use-case-grid article,
.why-list div,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-grid article,
.solution-card,
.use-case-grid article,
.why-list div {
  padding: 24px;
}

.problem-grid p,
.solution-card p,
.use-case-grid p,
.why-list p,
.faq-list p,
.audit-details p,
.audit-details li {
  color: var(--muted);
}

.calculator {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-content: center;
}

.calc-controls label {
  color: var(--ink);
  font-weight: 800;
}

.calc-controls input {
  grid-column: 1 / -1;
  accent-color: var(--teal);
}

.calc-controls output {
  color: var(--teal);
  font-weight: 900;
}

.calc-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.calc-result {
  display: grid;
  align-content: center;
  min-height: 270px;
  padding: clamp(22px, 4vw, 40px);
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.calc-result span {
  color: rgba(255, 255, 255, 0.72);
}

.calc-result strong {
  display: block;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.calc-result p {
  color: rgba(255, 255, 255, 0.74);
}

.cost-impact {
  display: grid;
  gap: 2px;
  margin: 4px 0 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
}

.calc-result .cost-impact span,
.calc-result .cost-impact small {
  color: rgba(255, 255, 255, 0.7);
}

.cost-impact b {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.impact-equation {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 1.15fr auto 1.2fr;
  gap: 12px;
  align-items: stretch;
  margin: 34px 0 22px;
}

.impact-equation div,
.scope-grid div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.impact-equation div {
  display: grid;
  align-content: center;
  min-height: 152px;
  padding: 22px;
  text-align: center;
}

.impact-equation strong {
  display: block;
  color: var(--teal);
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.impact-equation span {
  color: var(--muted);
  font-weight: 750;
}

.impact-equation .operator {
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.8rem;
  font-weight: 950;
}

.impact-equation .annual {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.impact-equation .annual strong {
  color: #fff;
}

.impact-equation .annual span {
  color: rgba(255, 255, 255, 0.74);
}

.center-action {
  display: flex;
  justify-content: center;
}

.section-action {
  margin-top: 28px;
}

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

.recovered-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.recovered-grid article p {
  color: var(--muted);
}

.recovered-main {
  grid-row: span 2;
  display: grid;
  align-content: center;
  color: #fff;
  background: var(--teal-dark) !important;
  border-color: var(--teal-dark) !important;
}

.recovered-main span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.recovered-main strong {
  display: block;
  margin: 8px 0 14px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.recovered-main p {
  color: rgba(255, 255, 255, 0.76) !important;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.timeline article {
  min-height: 230px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f5f0 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.solutions,
.why,
.audit {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  background: #edf2ed;
}

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

.solution-card .result {
  color: var(--teal);
  font-weight: 900;
}

.solution-card {
  display: flex;
  flex-direction: column;
}

.solution-card .solution-number {
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 950;
}

.solution-card h3 {
  min-height: 2.5em;
  font-size: 1.22rem;
}

.solution-card ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: auto 0 20px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

.solution-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 950;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 900;
}

.solution-link span {
  transition: transform 160ms ease;
}

.solution-link:hover span {
  transform: translateX(3px);
}

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

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px 44px;
  padding: clamp(26px, 5vw, 48px);
  background: #163b3a;
  color: #fff;
  border-radius: var(--radius);
}

.featured-case-copy {
  align-self: center;
}

.featured-case-copy h3 {
  max-width: 430px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.featured-case-copy > p:last-child,
.case-note {
  color: #d4e4df;
}

.case-kicker {
  margin-bottom: 10px;
  color: #84d6bd;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
}

.case-metrics li {
  padding-left: 16px;
  border-left: 3px solid #84d6bd;
}

.case-metrics strong,
.case-metrics span {
  display: block;
}

.case-metrics strong {
  margin-bottom: 4px;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

.case-metrics span {
  color: #d4e4df;
}

.case-capabilities {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 8px 20px;
  padding-top: 22px;
  border-top: 1px solid #47706c;
  color: #e8f3ef;
  font-weight: 800;
}

.case-capabilities span::before {
  content: "✓";
  margin-right: 7px;
  color: #84d6bd;
}

.case-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
}

.use-case-heading {
  margin-top: clamp(54px, 8vw, 82px);
}

.founder {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.founder-media {
  position: sticky;
  top: 104px;
  max-width: 380px;
}

.founder-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: var(--radius);
}

.founder-copy {
  max-width: 720px;
}

.founder-copy h2 {
  margin-bottom: 8px;
}

.founder-copy > p:not(.eyebrow, .founder-role, .founder-principle) {
  color: var(--muted);
  font-size: 1.04rem;
}

.founder-role {
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 850;
}

.founder-specialties {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.founder-specialties ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.founder-specialties li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 750;
}

.founder-specialties li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 950;
}

.founder-principle {
  margin-top: 30px;
  padding-left: 18px;
  color: var(--teal-dark);
  border-left: 4px solid var(--amber);
  font-size: 1.08rem;
  font-weight: 850;
}

.why {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

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

.audit-scope {
  width: min(1160px, calc(100% - 36px));
}

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

.scope-grid div {
  position: relative;
  min-height: 92px;
  padding: 22px 18px 18px 44px;
  color: var(--ink);
  font-weight: 850;
}

.scope-grid div::before {
  content: "✓";
  position: absolute;
  top: 22px;
  left: 18px;
  color: var(--teal);
  font-weight: 950;
}

.audit-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.audit-card .eyebrow,
.audit-card h2,
.audit-card h3 {
  color: #fff;
}

.audit-card p,
.audit-card li {
  color: rgba(255, 255, 255, 0.78);
}

.audit-benefits {
  padding-left: 18px;
}

.audit-card .audit-assurance {
  margin: 22px 0 0;
  padding: 12px 14px;
  color: #d9eee6;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #6fc6ad;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 750;
}

.audit-card > div h3 {
  margin-top: 28px;
}

.audit-form {
  position: relative;
  display: grid;
  gap: 16px;
  color: #fff;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.consent-field {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b9c9c4;
  border-radius: 6px;
  font: inherit;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(31, 126, 115, 0.22);
  border-color: var(--teal);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.4;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.audit-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status,
.form-alternative {
  margin: 0;
  font-size: 0.88rem;
}

.audit-card .form-status,
.audit-card .form-alternative {
  color: rgba(255, 255, 255, 0.78);
}

.form-status:not(:empty) {
  padding: 10px 12px;
  background: #e6f2ed;
  border-left: 3px solid var(--teal);
  border-radius: 4px;
}

.form-status.is-error:not(:empty) {
  color: #7a2525;
  background: #f8e8e5;
  border-left-color: #a13b32;
}

.form-alternative {
  text-align: center;
}

.form-alternative a {
  color: #bce8d7;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.recording-notice {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.recording-notice h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.recording-notice p {
  margin-bottom: 8px;
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.5;
}

.recording-notice p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.service-page-main {
  background: var(--bg);
}

.service-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 72vh, 680px);
  color: #fff;
  background-image: url("assets/gaaia-hero-productividad.webp");
  background-position: center;
  background-size: cover;
}

.service-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(7, 31, 29, 0.78);
}

.service-hero-inner,
.service-band-inner {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.service-hero-copy {
  max-width: 850px;
}

.service-hero .eyebrow {
  color: #9edbc5;
}

.service-hero h1 {
  margin-bottom: 24px;
  font-size: 4.5rem;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.2rem;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-hero .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.service-intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.service-outcomes article {
  padding-top: 20px;
  border-top: 3px solid var(--teal);
}

.service-band {
  width: 100%;
  padding: clamp(64px, 9vw, 100px) 0;
  background: #edf2ed;
}

.service-band-inner > .section-heading {
  margin-bottom: 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 18px 0 18px 30px;
  border-top: 1px solid #cbd7cf;
  font-weight: 800;
}

.service-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 950;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-process article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-process span {
  display: block;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-final {
  padding: clamp(64px, 9vw, 100px) 18px;
  color: #fff;
  text-align: center;
  background: var(--teal-dark);
}

.service-final h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.service-final p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.resources-main,
.article-main {
  background: var(--bg);
}

.resources-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 12vw, 132px) 0 clamp(34px, 6vw, 62px);
}

.resources-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.4vw, 4.9rem);
}

.resources-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.resources-list {
  padding-top: 24px;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(20, 32, 29, 0.08);
}

.resource-card h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.resource-card p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.resource-meta {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 11vw, 118px) 0 clamp(32px, 6vw, 60px);
}

.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
}

.article-back::before {
  content: "←";
  margin-right: 8px;
}

.article-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 1.02;
}

.article-hero > p:last-child {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(34px, 7vw, 84px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(64px, 10vw, 112px);
}

.article-toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px 0 18px 18px;
  border-left: 3px solid var(--line);
}

.article-toc strong {
  color: var(--ink);
}

.article-toc a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.article-toc a:hover {
  color: var(--teal);
}

.article-content {
  color: var(--ink);
  font-size: 1.08rem;
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content h2 {
  margin-top: 54px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.1vw, 2.55rem);
}

.article-content h3 {
  margin-top: 30px;
  font-size: 1.18rem;
}

.article-content ul {
  display: grid;
  gap: 9px;
  padding-left: 22px;
  margin: 20px 0 26px;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 22px 24px;
  color: var(--teal-dark);
  background: #edf2ed;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  font-weight: 850;
  line-height: 1.45;
}

.article-checklist {
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.article-checklist li::before {
  position: absolute;
  top: 14px;
  left: 17px;
  color: var(--teal);
  content: "✓";
  font-weight: 950;
}

.article-cta {
  margin-top: 58px;
  padding: clamp(24px, 5vw, 40px);
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.article-cta h2 {
  margin-top: 0;
  color: #fff;
}

.article-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  color: var(--ink);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a,
.footer-email {
  color: var(--muted);
  font-weight: 750;
}

.footer-nav a:hover,
.footer-email:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero,
  .calculator,
  .why,
  .founder,
  .audit-card {
    grid-template-columns: 1fr;
  }

  .founder-media {
    position: static;
    width: min(100%, 380px);
  }

  .hero {
    min-height: auto;
  }

  .problem-grid,
  .timeline,
  .impact-equation,
  .recovered-grid,
  .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recovered-main {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .impact-equation .operator {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-trigger {
    display: grid;
  }

  .mobile-menu:not([hidden]) {
    display: block;
  }

  .service-intro {
    grid-template-columns: 1fr;
  }

  .service-outcomes {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-logo {
    width: min(190px, calc(100vw - 104px));
  }

  .header-cta {
    display: none;
  }

  .section,
  .final-cta {
    width: min(100% - 28px, 1160px);
    padding: 58px 0;
  }

  .hero {
    padding-top: 36px;
  }

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

  .proof-list {
    align-items: stretch;
  }

  .proof-list li {
    width: 100%;
  }

  .problem-grid,
  .timeline,
    .card-grid,
    .use-case-grid,
    .why-list,
    .founder-specialties ul,
    .impact-equation,
    .recovered-grid,
    .scope-grid {
    grid-template-columns: 1fr;
  }

  .featured-case {
    grid-template-columns: 1fr;
  }

  .case-capabilities,
  .case-note {
    grid-column: auto;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .impact-panel {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .calc-result {
    min-height: 250px;
  }

  .solutions,
  .why,
  .audit {
    padding-right: 14px;
    padding-left: 14px;
  }

  .audit-card {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 610px;
  }

  .service-hero h1 {
    font-size: 2.5rem;
  }

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

  .service-list,
  .service-process,
  .resource-card {
    grid-template-columns: 1fr;
  }

  .resource-card .button {
    width: 100%;
  }

  .article-content {
    font-size: 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  * {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
  }

  .skip-link,
  .mobile-menu-trigger,
  .mobile-menu,
  .nav-services-menu {
    display: none !important;
  }

  .site-header {
    position: static;
    padding: 12px 0 18px;
    background: #fff;
    backdrop-filter: none;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
  }

  .section,
  .final-cta {
    width: 100%;
    padding: 30px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-footer {
    padding: 24px 0 0;
  }

  article,
  .calculator,
  .impact-equation div,
  .audit-card,
  .why-list div,
  .scope-grid div,
  .faq-list details,
  .founder-specialties {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .faq-list details:not([open]) > :not(summary) {
    display: block;
  }

  .button {
    transform: none !important;
  }
}
