:root {
  --navy: #17324d;
  --navy-deep: #10263a;
  --teal: #287a70;
  --teal-dark: #1f625b;
  --teal-soft: #dfeee9;
  --warm: #f7f7f2;
  --warm-deep: #efefe8;
  --ink: #202a33;
  --ink-soft: #56636e;
  --white: #ffffff;
  --line: #daddd7;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 8px 28px rgba(23, 50, 77, 0.08);
  --shadow-md: 0 24px 64px rgba(23, 50, 77, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --page-gutter: 1rem;
  --content-width: 1120px;
  --text-width: 720px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: "Inter", Arial, system-ui, Helvetica, sans-serif !important;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #55a99f;
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 11vw, 4.85rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 8vw, 3.35rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 50, 77, 0.06);
}

.header-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-descriptor {
  display: none;
  max-width: 220px;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.67rem;
  line-height: 1.4;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button-small {
  min-height: 2.55rem;
  padding: 0.62rem 0.8rem;
  font-size: 0.76rem;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(40, 122, 112, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(40, 122, 112, 0.28);
}

.button-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 25px rgba(16, 38, 58, 0.16);
}

.button-light:hover {
  background: var(--warm);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(40, 122, 112, 0.18);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -85px;
  bottom: -190px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(40, 122, 112, 0.055);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3.5rem;
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 1.15rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(40, 122, 112, 0.1);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 4vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.text-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--teal);
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  padding: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(23, 50, 77, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-visual::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(40, 122, 112, 0.08);
  content: "";
}

.visual-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.status-pill span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
}

.flow-route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  min-height: 3.9rem;
  align-items: start;
  gap: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 2rem;
  bottom: 0;
  left: 1.16rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.flow-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--warm);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
}

.flow-step.is-active .flow-marker {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.flow-step > span:last-child {
  padding-top: 0.42rem;
}

.visual-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.75rem;
  padding: 1rem 0.3rem 0;
  border-top: 1px solid var(--line);
}

.visual-summary > div {
  min-width: 0;
  padding: 0 0.4rem;
}

.visual-summary > div + div {
  border-left: 1px solid var(--line);
}

.summary-label {
  display: block;
  margin-bottom: 0.3rem;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.57rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visual-summary strong {
  display: block;
  overflow: hidden;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding: 5.25rem 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  max-width: 760px;
}

.section-intro,
.two-column-heading > p,
.method-heading > p,
.audience-copy > p {
  max-width: var(--text-width);
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.problem-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.issue-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.issue-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.issue-list li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  content: "→";
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
}

.insight-card {
  position: relative;
  align-self: stretch;
  margin: 0;
  padding: 2rem 1.5rem 1.65rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
}

.insight-card::after {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.quote-mark {
  display: block;
  height: 2.25rem;
  color: #69b4aa;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.insight-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.35rem, 5.8vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.34;
}

.system-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.system-section::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-kicker-light {
  color: #7cc6bc;
}

.system-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.system-intro h2,
.why-title h2,
.contact-section h2 {
  color: var(--white);
}

.system-intro p {
  max-width: 620px;
  font-size: 1.04rem;
}

.system-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.8rem;
}

.system-card {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.8rem;
  min-height: 7rem;
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.045);
}

.system-card > span {
  color: #7cc6bc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-card p {
  margin: 0;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
}

.system-principle {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-top: 2.6rem;
  padding: 1.5rem 0 0 1.25rem;
  border-top: 1px solid var(--line-dark);
  border-left: 3px solid var(--teal);
}

.principle-title {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
}

.system-principle p:last-child {
  margin: 0;
}

.change-section {
  background: var(--warm);
}

.change-grid {
  display: grid;
  gap: 1rem;
}

.change-card {
  display: grid;
  min-height: 12rem;
  align-content: space-between;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.change-card:hover {
  transform: translateY(-3px);
  border-color: rgba(40, 122, 112, 0.5);
  box-shadow: var(--shadow-sm);
}

.change-number {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.change-card p {
  margin: 2rem 0 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.52;
}

.method-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef2ee;
}

.method-layout {
  display: grid;
  gap: 2.5rem;
}

.method-heading {
  max-width: 520px;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1.1rem;
  padding: 0 0 2rem;
}

.method-steps li:not(:last-child)::after {
  position: absolute;
  top: 2.45rem;
  bottom: 0;
  left: 1.29rem;
  width: 1px;
  background: #cdd8d2;
  content: "";
}

.method-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid #c9d5cf;
  border-radius: 50%;
  background: var(--warm);
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.method-steps h3 {
  margin-bottom: 0.5rem;
}

.method-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.growth-section {
  background: var(--white);
}

.growth-grid {
  display: grid;
  gap: 1rem;
}

.growth-card {
  position: relative;
  min-height: 18rem;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--warm);
}

.growth-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(40, 122, 112, 0.16);
  border-radius: 50%;
  content: "";
}

.growth-index {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 700;
}

.growth-card h3 {
  max-width: 420px;
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.growth-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
}

.growth-note {
  max-width: 850px;
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-section {
  background: var(--warm);
}

.audience-layout {
  display: grid;
  gap: 2.5rem;
}

.audience-copy {
  max-width: 530px;
}

.fit-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
}

.fit-list li::before {
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
}

.scope-note {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.85rem;
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.scope-note span {
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1.5;
}

.scope-note p {
  max-width: 850px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.why-section {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.82);
}

.why-section::before,
.why-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.why-section::before {
  top: -230px;
  right: -180px;
  width: 480px;
  height: 480px;
}

.why-section::after {
  right: 60px;
  bottom: -240px;
  width: 360px;
  height: 360px;
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}

.why-title {
  max-width: 520px;
}

.why-copy {
  max-width: 650px;
}

.why-copy p {
  font-size: 1.02rem;
}

.validation-note {
  margin: 2rem 0 0;
  padding: 1rem 0 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid #7cc6bc;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem !important;
}

.diagnosis-section {
  background: var(--white);
}

.diagnosis-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.diagnosis-intro {
  max-width: 550px;
}

.diagnosis-intro > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.diagnosis-benefits {
  display: grid;
  gap: 0;
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.diagnosis-benefits > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.diagnosis-benefits span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
}

.diagnosis-benefits p {
  margin: 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--warm);
  box-shadow: var(--shadow-sm);
}

.form-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.2rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.form-card-header p {
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
}

.form-card-header span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 600;
}

#flujo-tally-form {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  background: transparent;
}

.privacy-note,
.noscript-note {
  margin: 0.75rem 0 0;
  padding: 0 0.2rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.privacy-note a,
.noscript-note a {
  color: var(--teal-dark);
  font-weight: 600;
}

.contact-section {
  padding: 4.5rem 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.contact-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact-inner > div:first-child {
  max-width: 690px;
}

.contact-section h2 {
  max-width: 670px;
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 7vw, 3rem);
}

.contact-section p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.contact-email {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  padding: 3.5rem 0 2.5rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

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

.footer-brand p {
  max-width: 330px;
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
}

.footer-contact,
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-label {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-legal a {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.footer-legal p {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
}

/* Política de datos */

.legal-page {
  background: var(--white);
}

.legal-hero {
  padding: 4.5rem 0 3.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.legal-narrow {
  max-width: 800px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 9vw, 4rem);
}

.legal-meta {
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.legal-warning {
  padding: 1.2rem;
  border: 1px solid rgba(40, 122, 112, 0.28);
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
}

.legal-warning strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--teal-dark);
  font-size: 0.84rem;
}

.legal-warning p {
  margin: 0;
  color: #355b56;
  font-size: 0.85rem;
}

.legal-content {
  padding: 3.5rem 0 5rem;
}

.legal-content section {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #3e4a54;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-content a:not(.button) {
  color: var(--teal-dark);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.legal-details {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--line);
}

.legal-details > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.legal-details dd {
  color: var(--navy);
  font-size: 0.84rem;
}

.legal-emphasis {
  margin-bottom: 1rem;
  padding: 1.1rem 1.2rem;
  border-left: 4px solid var(--teal);
  background: var(--warm);
}

.legal-emphasis p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
}

.legal-end {
  padding-top: 2.5rem;
}

@media (min-width: 560px) {
  :root {
    --page-gutter: 1.5rem;
  }

  .brand-descriptor {
    display: inline-block;
  }

  .button-small {
    padding-inline: 1rem;
    font-size: 0.8rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button {
    min-width: 195px;
  }

  .text-link {
    justify-content: flex-start;
  }

  .hero-visual {
    padding: 1.65rem;
  }

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

  .change-card-wide,
  .system-card-wide {
    grid-column: 1 / -1;
  }

  .contact-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 760px) {
  :root {
    --page-gutter: 2rem;
  }

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

  .hero {
    padding: 6.5rem 0 7rem;
  }

  .section {
    padding: 7rem 0;
  }

  .problem-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
    gap: 2.5rem;
  }

  .insight-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.3rem;
  }

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

  .system-card-wide {
    grid-column: 1 / -1;
    min-height: 6.25rem;
  }

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

  .change-card-wide {
    grid-column: span 2;
  }

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

  .growth-card {
    padding: 2rem;
  }

  .audience-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 4rem;
  }

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

  .why-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 5rem;
  }

  .diagnosis-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1.15fr);
    gap: 4rem;
  }

  .form-card {
    padding: 1.5rem;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 0.7fr;
    gap: 3rem;
  }

  .footer-legal {
    align-items: flex-end;
    text-align: right;
  }

  .legal-hero {
    padding: 6rem 0 4rem;
  }

  .legal-content {
    padding: 4.5rem 0 7rem;
  }
}

@media (min-width: 940px) {
  .desktop-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 5rem;
  }

  .hero {
    min-height: calc(100vh - 5rem);
    display: grid;
    align-items: center;
  }

  .two-column-heading,
  .system-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: end;
    gap: 4rem;
    max-width: none;
  }

  .two-column-heading > p,
  .system-intro > p {
    margin-bottom: 1.25rem;
  }

  .method-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 6rem;
  }

  .method-heading {
    position: sticky;
    top: 7rem;
    align-self: start;
  }
}

@media (min-width: 1120px) {
  .header-cta {
    min-width: 150px;
  }

  .hero-visual {
    padding: 1.9rem;
  }

  .system-card {
    min-height: 8rem;
    padding: 1.5rem;
  }

  .change-card {
    padding: 1.6rem;
  }
}

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

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